]> git.saurik.com Git - bison.git/blame - ChangeLog
Version 2.5.
[bison.git] / ChangeLog
CommitLineData
28801043
JD
12011-05-14 Joel E. Denny <joeldenny@joeldenny.org>
2
3 Version 2.5.
4 * NEWS (2.5): Set date.
5
84f6a6ca
JD
62011-05-14 Joel E. Denny <joeldenny@joeldenny.org>
7
8 Don't use IF_LINT in Bison sources.
9 It creates unnecessary differences between the sources that Bison
10 maintainers build and test (given that maintainers normally
11 configure with --enable-gcc-warnings) and the sources that Bison
12 users build. Instead, use PACIFY_CC, which doesn't. This change
13 fixes compiler warnings reported by Tys Lefering at
14 <http://lists.gnu.org/archive/html/bison-patches/2011-05/msg00004.html>.
15 * configure.ac: Don't AC_DEFINE lint regardless of the configure
16 options. This change affects imported gnulib sources, where
17 IF_LINT still appears and depends on lint.
18 * src/scan-gram.l, src/scan-skel.l: Replace uses of IF_LINT with
19 PACIFY_CC.
20 * src/system.h (IF_LINT): Remove cpp macro.
21 (PACIFY_CC): New cpp macro.
22
1f36f544
JD
232011-05-01 Joel E. Denny <joeldenny@joeldenny.org>
24
25 Fix precedence for end token.
26 Since Bison 2.3b, which restored the ability of precedence
27 directives to assign user token numbers, doing so for user token
28 number 0 has produced an assertion failure.
29 * NEWS (2.5): Document fix.
30 * src/symtab.c (symbol_user_token_number_set): In the case of the
31 end token, don't decrement ntokens if it was never incremented.
32 * tests/regression.at (Token number in precedence declaration):
33 Extend.
34
ba60c395
JD
352011-05-01 Joel E. Denny <joeldenny@joeldenny.org>
36
37 Pacify -DGNULIB_POSIXCHECK.
38 * bootstrap.conf (gnulib_modules): Add all modules suggested by
39 -DGNULIB_POSIXCHECK.
40 * src/files.c (file_name_split)
41 * src/getargs.c (getargs)
42 * src/location.c (boundary_set_from_string)
43 * src/output.c (output_skeleton)
44 * src/parse-gram.y (prologue_declaration)
45 * src/scan-gram.l (handle_syncline)
46 * src/symtab.c (symbol_new): Use mbschr and mbsrchr instead of
47 strchr and strrchr. In the cases of command-line options, file
48 names, and thus locations, functionality may be improved. In the
49 case of symbol names, there should be no functional difference as
50 all characters are ASCII, so the intended benefit is just warning
51 suppression.
52
7262f54f
JD
532011-05-01 Joel E. Denny <joeldenny@joeldenny.org>
54
55 * NEWS (2.5): Fix minor typos.
56
4b568fc0
JD
572011-05-01 Joel E. Denny <joeldenny@joeldenny.org>
58
59 doc: clean up quotation style in NEWS.
60 * NEWS (2.5): For multi-character tokens in example grammar rules,
61 use "token" not 'token'. In English, use a consistent quotation
62 style; we might as well follow the precedent seen in info pages:
63 `quote' not "quote".
64
9fc4c025
JD
652011-04-16 Joel E. Denny <joeldenny@joeldenny.org>
66
67 tests: pacify gcc 4.6.0's -Wunused-but-set-variable.
68 Reported by Jim Meyering at
69 <http://lists.gnu.org/archive/html/bug-bison/2011-04/msg00002.html>.
70 * tests/actions.at
71 (Default %printer and %destructor for mid-rule values): Define
72 YYLLOC_DEFAULT so that it uses its Rhs argument.
73
67b8cfbd
JD
742011-04-16 Joel E. Denny <joeldenny@joeldenny.org>
75
76 glr.c: omit yyresolveLocations when locations are disabled.
77 This prevents gcc 4.6.0's -Wunused-but-set-variable from warning
78 about yyresolveLocations's local yyrhsloc. When locations are
79 enabled, there's no such warning because YYLLOC_DEFAULT then uses
80 yyrhsloc. Reported by Jim Meyering at
81 <http://lists.gnu.org/archive/html/bug-bison/2011-04/msg00002.html>.
82 * data/glr.c (yyresolveLocations): Omit definition when locations
83 are disabled.
84 (yyresolveValue): Omit yyresolveLocations invocation when
85 locations are disabled.
86
a801089c
JD
872011-04-16 Joel E. Denny <joeldenny@joeldenny.org>
88
89 gnulib, autoconf: update.
90 * README-hacking (Updating a submodule): Give advice on how to
91 determine the versions of gnulib and autoconf to which we should
92 update.
93 (Release Procedure): Note that submodules should be updated.
94 * bootstrap.conf (gnulib_modules): Rename pipe to spawn-pipe as
95 suggested in updated gnulib NEWS.
96 * gnulib: Choose a stable snapshot according to advice in Bison's
97 README-hacking.
98 * po/POTFILES.in (lib/pipe.c): Rename to...
99 (lib/spawn-pipe.c): ... this.
100 * src/output.c: Update to include spawn-pipe.h.
101 * submodules/autoconf: Update to latest for improvement in m4.m4
102 that excludes M4 with buggy strstr. The only other changes to
103 files that we use are copyright updates.
104
2f658d53
JD
1052011-04-09 Joel E. Denny <joeldenny@joeldenny.org>
106
107 Fix missing updates to GPLv3.
108 Reported by Tys Lefering at
109 <http://lists.gnu.org/archive/html/bison-patches/2011-04/msg00000.html>.
110 * src/print-xml.c, src/print-xml.h: In these files.
111
786743d5
JD
1122011-03-27 Joel E. Denny <joeldenny@joeldenny.org>
113
114 Add -Wconflicts-sr and -Wconflicts-rr.
115 Thus, conflict reports are now affected by -Werror and -Wnone
116 (unless %expect or %expect-rr is specified). Reported by George
117 Neuner at
118 <http://lists.gnu.org/archive/html/bug-bison/2010-08/msg00002.html>.
119 * NEWS (2.5): Document.
120 * doc/bison.texinfo (Bison Options): Document.
121 * src/complain.c, src/complain.h (set_warning_issued): Export
122 function.
123 * src/conflicts.c (conflicts_print): Suppress conflict report
124 based on -Wno-conflicts-sr and -Wno-conflicts-rr, and treat
125 conflicts as errors if -Werror.
126 * src/getargs.c (warnings_flag): Initialize with
127 warnings_conflicts_sr and warnings_conflicts_rr as well.
128 (warnings_args, warnings_types): Add entries for
129 warnings_conflicts_sr and warnings_conflicts_rr.
130 (usage): Update.
131 * src/getargs.h (enum warnings): Add entries for
132 warnings_conflicts_sr and warnings_conflicts_rr.
133 * tests/conflicts.at (-W versus %expect and %expect-rr): New test
134 group.
135 * tests/local.at (AT_BISON_CHECK_NO_XML): Update now that the
136 conflict report can produce a "warnings being treated as errors"
137 message. Also, check that stderr is now fully scrubbed by -Wnone
138 when the exit status is 0.
139
e4a14879
JD
1402011-03-27 Joel E. Denny <joeldenny@joeldenny.org>
141
142 Pacify maintainer-check-posix.
143 Adding command-line options after the grammar file name is not
144 permitted, so disable checks that do that when
145 maintainer-check-posix is running.
146 * tests/local.at (AT_BISON_CHECK_NO_XML): Don't run the
147 problematic checks when POSIXLY_CORRECT=1. Also, for readability,
148 remove an unnecessary m4_if.
149
c39014ae
JD
1502011-03-27 Joel E. Denny <joeldenny@joeldenny.org>
151
152 Add -Wother so -Wnone suppresses all warnings.
153 Reported by George Neuner at
154 <http://lists.gnu.org/archive/html/bug-bison/2010-08/msg00002.html>.
155 * NEWS (2.5): Document.
156 * THANKS (George Neuner): Add.
157 * doc/bison.texinfo (Bison Options): Document.
158 * src/complain.c, src/complain.h
159 (warn_at, warn_at_indent, warn): Suppress warning if -Wno-other.
160 (midrule_value_at): New warning function, similar to yacc_at in
161 that it's controlled by its own warning category.
162 * src/getargs.c (warnings_flag): Initialize to warnings_other.
163 (warnings_args, warnings_types): Add entry for warnings_other.
164 (usage): Update.
165 * src/getargs.h (enum warnings): Add entry for warnings_other.
166 * src/gram.c (grammar_rules_useless_report): If -Wno-other, then
167 don't print useless rules.
168 * src/reader.c (symbol_should_be_used): Rather than adjusting the
169 return value based on whether midrule value warnings are enabled,
170 accept a new parameter for telling the caller whether true is
171 being returned for a potential midrule warning.
172 (grammar_rule_check): Use midrule_value_at for midrule value
173 warnings, and continue to use warn_at for all other warnings. Let
174 them check whether the warnings are enabled.
175 * tests/local.at (AT_BISON_CHECK): Update documentation.
176 (AT_BISON_CHECK_NO_XML): Check that -Wnone and --warnings=none
177 disable all warnings exercised in the test suite.
178
bf0e44e8
JD
1792011-03-27 Joel E. Denny <joeldenny@joeldenny.org>
180
181 Don't let -Wnone disable -Werror.
182 Discussed at
183 <http://lists.gnu.org/archive/html/bison-patches/2010-08/msg00009.html>.
184 * NEWS (2.5): Document.
185 * src/getargs.c (flags_argmatch): Accept a new argument that
186 specifies what flags "all" and thus "none" affect.
187 (FLAGS_ARGMATCH): Update flags_argmatch invocation.
188 * tests/input.at (-Werror is not affected by -Wnone and -Wall):
189 New test group.
190
86408959
JD
1912011-03-27 Joel E. Denny <joeldenny@joeldenny.org>
192
193 * NEWS (2.5): Document fix for -Wno-CATEGORY.
194
709c7d11
JD
1952011-03-20 Joel E. Denny <joeldenny@joeldenny.org>
196
197 doc: fix confusing citation of LAC publication.
198 Suggested by Akim Demaille.
199 * doc/bison.texinfo (LAC): Here.
200
f0ad1b2f
JD
2012011-03-20 Joel E. Denny <joeldenny@joeldenny.org>
202
203 lr.default-reductions: rename "full" value to "most".
204 Unlike "consistent" and "accepting", "full" doesn't answer the
205 question of "which states".
206 * doc/bison.texinfo (%define Summary): Update.
207 (Default Reductions): Update.
208 * src/print.c (print_reductions): Update.
209 * src/reader.c (prepare_percent_define_front_end_variables):
210 Update.
211 * src/tables.c (action_row): Update.
212 * tests/input.at (%define enum variables): Update.
213 * tests/reduce.at (%define lr.default-reductions): Update.
214
f9d52903
JD
2152011-03-13 Joel E. Denny <joeldenny@joeldenny.org>
216
217 * src/parse-gram.c, src/parse-gram.h: Regenerate.
218
a4d1bf6a
AD
2192011-03-09 Akim Demaille <akim@lrde.epita.fr>
220
221 named references: fix double free.
222 In `rhs[name]: "a" | "b"', do not free "name" twice.
223 Reported by Tys Lefering.
224 <http://lists.gnu.org/archive/html/bug-bison/2010-06/msg00002.html>
225 * src/named-ref.h, src/named-ref.c (named_ref_copy): New.
226 * src/parse-gram.y (current_lhs): Rename as...
227 (current_lhs_symbol): this.
228 (current_lhs): New function. Use it to free the current lhs
229 named reference.
230 * src/reader.c: Bind lhs to a copy of the current named reference.
231 * src/symlist.c: Rely on free (0) being valid.
232 * tests/named-refs.at: Test this.
233
17d7bf83
AD
2342011-03-09 Akim Demaille <akim@lrde.epita.fr>
235
236 tests: style changes.
237 * tests/named-refs.at (Redundant words in LHS brackets)
238 (Unresolved references): here.
239
02803d55
JD
2402011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
241
242 java: fix parser tracing bug.
243 * NEWS (2.5): Document.
244 * data/lalr1.java (YYParser::YYStack::print): Don't skip top
245 element.
246
1a33f4f6
JD
2472011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
248
249 java: finish fixing parser stack popping bug.
250 * NEWS (2.5): Document.
251 * data/lalr1.java (YYParser::YYStack::pop): Fix off-by-one error
252 in clearing the location stack. Also fix pop function that
253 accepts no arguments.
254
3f8ffd15
AB
2552011-03-06 Angelo Borsotti <angelo.borsotti@gmail.com> (tiny change)
256
257 java: fix parser stack popping bug.
258 Reported at
259 <http://lists.gnu.org/archive/html/bug-bison/2011-02/msg00005.html>.
260 * THANKS (Angelo Borsotti): Add.
261 * data/lalr1.java (YYParser::YYStack::pop): Fix off-by-one error
262 in clearing the value stack. Previously, the top element of the
263 stack wasn't cleared and so the value was not garbage collected.
264
15e46f2d
JD
2652011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
266
267 doc: cite publication for LAC.
268 * doc/bison.texinfo (LAC): Here.
269
cc09e5be
JD
2702011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
271
272 doc: clean up terminology for mysterious conflicts.
273 * doc/bison.texinfo (Mystery Conflicts): Rename node to...
274 (Mysterious Conflicts): ... this, which is already the section
275 title and the name used in the index. Update all cross-references
276 to this node. Also, don't imply that R/R conflicts are the only
277 kind of mysterious conflict.
278
32493bc8
JD
2792011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
280
281 lr.default-reductions: rename "all" value to "full".
282 States that shift the error token do not have default reductions,
283 and GLR disables some default reductions, so "all" was a misnomer.
284 * doc/bison.texinfo (%define Summary): Update.
285 (Default Reductions): Update.
286 * src/print.c (print_reductions): Update.
287 * src/reader.c (prepare_percent_define_front_end_variables):
288 Update.
289 * src/tables.c (action_row): Update.
290 * tests/input.at (%define enum variables): Update.
291 * tests/reduce.at (%define lr.default-reductions): Update.
292
7fceb615
JD
2932011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
294
295 doc: create a new Tuning LR section in the manual.
296 And clean up all other documentation of the features described
297 there.
298 * NEWS (2.5): Tweak wording of lr.type and parse.lac entries a
299 bit, update the cross-references to the manual, and point out that
300 LAC has caveats. Don't be so adamant that IELR+LAC=canonical LR.
301 That is, as the referenced section in the manual documents, LAC
302 does not fix infinite parsing loops on syntax errors.
303 * doc/bison.texinfo: Consistently drop the "(1)" suffix from LALR,
304 IELR, and LR in @cindex.
305 (%define Summary): Condense the entries for lr.default-reductions,
306 lr.keep-unreachable-states, lr.type, and parse.lac into brief
307 summaries, and cross-reference the appropriate subsections of
308 Tuning LR. For parse.lac, mention that it's only implemented for
309 deterministic parsers in C. In parse.error entry, mention LAC,
310 and add cross-reference to the LAC section.
311 (Error Reporting): When mentioning parse.error, mention LAC, and
312 add cross-reference to the LAC section.
313 (Tuning LR): New section with an extended version of the
314 documentation removed from %define Summary. Change all
315 cross-references in the manual to point here instead of there.
316 (Calc++ Parser): When mentioning parse.error, mention LAC, and add
317 cross-reference to the LAC section.
318 (Table of Symbols): In %error-verbose entry, add cross-reference
319 to Error Reporting.
320 (Glossary): Capitalize entry titles consistently. Add definitions
321 for "defaulted state" and "unreachable state". Expand IELR
322 acronym in IELR's entry.
323
5e528941
JD
3242011-02-20 Joel E. Denny <joeldenny@joeldenny.org>
325
326 doc: add bibliography to manual.
327 * doc/bison.texinfo (Mystery Conflicts): Cross-reference
328 bibliography instead of citing publications directly.
329 (Generalized LR Parsing): Likewise.
330 (Bibliography): New section. Not all entries are cross-referenced
331 yet, but that will come in future patches.
332
6771a463
JD
3332011-02-19 Joel E. Denny <joeldenny@joeldenny.org>
334
335 java: test and document previous bug fix.
336 * NEWS (2.5): Document it.
337 * tests/java.at (_AT_DATA_JAVA_CALC_Y): To one of the yyerror
338 invocations, pass a location that spans multiple tokens. Change
339 yyerror to report all of a location rather than just the begin
340 position. Extend yylex and Position to count tokens on a line.
341 Remove getHashCode as it's unused. Update all expected output.
342
aa3bcdf3
BK
3432011-02-19 Bernd Kiefer <kiefer@dfki.de> (tiny change)
344
345 java: fix location handling bug.
346 Reported at
347 <http://lists.gnu.org/archive/html/bison-patches/2011-02/msg00005.html>.
348 * data/lalr1.java (YYParser::yylloc): For non-empty RHS, fix
349 reversed access to location stack.
350 * THANKS (Bernd Kiefer): Add.
351
84072495
JD
3522011-02-13 Joel E. Denny <joeldenny@joeldenny.org>
353
354 doc: fix some minor inconsistencies.
355 * doc/bison.texinfo (%define Summary): Fix mislabeled entry for
356 lex_symbol.
357 (%code Summary): For consistency with the variable list in the
358 %define Summary, enclose the list of %code qualifiers in a table
359 instead of an itemize.
360
51151d91
JD
3612011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
362
363 doc: clean up new subsections in manual.
364 * doc/bison.texinfo (%define Summary): Reword so it reads well as
365 a separate section. For example, add an intro, and move most of
366 the text outside of the @deffn so it is not indented so far.
367 (%code Summary): Likewise.
368 (Table of Symbols): Reword %code entry to match the %code entry in
369 Decl Summary.
370
35c1e5f0
JD
3712011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
372
373 doc: finish splitting apart the manual's Decl Summary section.
374 Suggested by Akim Demaille at
375 <http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00013.html>.
376 * doc/bison.texinfo (Decl Summary): Extract most of the %define
377 entry into...
378 (%define Summary): ... this new subsection, and update all
379 cross-references. For readability of the patches, rewriting of
380 the text so it makes sense as a separate subsection will come in a
381 later patch. Moreover, the majority of the text describing the
382 various new LR features should likely move to another new section
383 somewhere.
384
e0c07222
JD
3852011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
386
387 doc: begin to split apart the manual's Decl Summary section.
388 Discussed in thread starting at
389 <http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00013.html>.
390 * doc/bison.texinfo (Decl Summary): Extract most of the %code
391 entry into...
392 (%code Summary): ... this new subsection, and update all
393 cross-references. For readability of the patches, rewriting of
394 the text so it makes sense as a separate subsection will come in a
395 later patch.
396
ff7571c0
JD
3972011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
398
399 doc: clean up naming of various Bison files.
400 The Bison manual's names for various files associated with a Bison
401 parser has devolved into inconsistency. This patch makes the
402 naming consistent for the most important files. First, it chooses
403 "grammar file" over "input file". The former appears to be more
404 traditional in the Bison manual, and Bison has other input
405 files (skeletons). Second, it chooses "parser implementation
406 file" over names like "parser file", "parser source file", "parser
407 source code file", and "parser output file". The new name makes
408 it clearer where Bison generates the main parser implementation,
409 and it is easily distinguishable from "parser header file".
410 * doc/bison.texinfo: Implement throughout.
411
679e9935
JD
4122011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
413
414 doc: give credit to more of Bison's developers.
415 * doc/bison.texinfo (Introduction): Don't imply that only Robert
416 Corbett, Richard Stallman, and Wilfred Hansen have contributed to
417 Bison. However, I don't have time to write a full history, so
418 just point readers to THANKS and ChangeLog.
419
af28d414
JD
4202011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
421
422 doc: document experimental features better.
423 * doc/bison.texinfo (Introduction): Say that IELR(1) and canonical
424 LR(1) are experimental. Mention Java. Normally experimental
425 features probably shouldn't be mentioned in the introduction.
426 However, if Bison's limitations to LALR(1), C, and C++ are so
427 important that they should be mentioned here, then it's important
428 to point out that Bison is beginning to escape those limitations.
429 Moreover, these particular experimental features have very little
430 chance of being removed.
431 * src/getargs.c (usage): Say that IELR(1) and canonical LR(1) are
432 experimental.
433
82f3355e
JD
4342011-01-29 Joel E. Denny <joeldenny@joeldenny.org>
435
436 Do not allow identifiers that start with a dash.
437 This cleans up our previous fixes for a bug whereby Bison
438 discarded `.field' in `$-1.field'. The previous fixes were less
439 restrictive about where a dash could appear in an identifier, but
440 the restrictions were hard to explain. That bug was reported and
441 this final fix was originally suggested by Paul Hilfinger. This
442 also fixes a remaining bug reported by Paul Eggert whereby Bison
443 parses `%token ID -123' as `%token ID - 123' and handles `-' as an
444 identifier. Now, `-' cannot be an identifier. Discussed in
445 threads beginning at
446 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00000.html>,
447 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00004.html>.
448 * NEWS (2.5): Update entry describing the dash extension to
449 grammar symbol names. Also, move that entry before the named
450 references entry because the latter mentions the former.
451 * doc/bison.texinfo (Symbol): Update documentation for symbol
452 names. As suggested by Paul Eggert, mention the effect of periods
453 and dashes on named references.
454 (Decl Summary): Update documentation for unquoted %define values,
455 which, as a side effect, can no longer start with dashes either.
456 * src/scan-code.l (id): Implement.
457 * src/scan-gram.l (id): Implement.
458 * tests/actions.at (Exotic Dollars): Extend test group to exercise
459 bug reported by Paul Hilfinger.
460 * tests/input.at (Symbols): Update test group, and extend to
461 exercise bug reported by Paul Eggert.
462 * tests/named-refs.at (Stray symbols in brackets): Update test
463 group.
464 ($ or @ followed by . or -): Likewise.
465 * tests/regression.at (Invalid inputs): Likewise.
466
fe3cae17
JD
4672011-01-24 Joel E. Denny <joeldenny@joeldenny.org>
468
469 * data/yacc.c: Fix last apostrophe warning from xgettext.
470
3c9b20ff
PE
4712011-01-09 Paul Eggert <eggert@cs.ucla.edu>
472
473 Fix minor problems encountered by a fresh bootstrap.
474 * data/glr.c, data/yacc.c: Do not use apostrophes in '#' comments,
475 as they confuse xgettext, which tries to parse them as C character
476 constants in a preprocessor directive.
477 * data/yacc.c (yy_lac): Don't use printf %d format on *yyesp, as
478 that expression might not promote to int on some platforms.
479 * src/parse-gram.c, src/parse-gram.h: Regenerate.
480
5c9efc75
JD
4812011-01-09 Joel E. Denny <joeldenny@joeldenny.org>
482
483 Improve error messages for `$' or `@' followed by `.' or `-'.
484 Previously, for this special case of an invalid reference, the
485 usual "symbol not found in production:" was printed. However,
486 because the symbol name was parsed as the empty string, that
487 message was followed immediately by a newline instead of a symbol
488 name. In reality, this is a syntax error, so the reference is
489 invalid regardless of the symbols actually appearing in the
490 production. Discussed at
491 <http://lists.gnu.org/archive/html/bison-patches/2011-01/msg00012.html>.
492 * src/scan-code.l (parse_ref): Report the above case as a syntax
493 error. Other than that, continue to handle this case like any
494 other invalid reference that Bison manages to parse because
495 "possibly meant" messages can still be helpful to the user.
496 * tests/named-refs.at ($ or @ followed by . or -): New test group.
497
8a4281b9
JD
4982011-01-08 Joel E. Denny <joeldenny@joeldenny.org>
499
500 doc: don't use @acronym.
501 Lately, many GNU packages are dropping it. See
502 <http://lists.gnu.org/archive/html/bison-patches/2011-01/msg00003.html>.
503 * doc/bison.texinfo: Remove all uses.
504
e0319547
AR
5052011-01-05 Alex Rozenman <rozenman@gmail.com>
506
507 Do not allow identifiers that start with a negative number.
508 Reported by Paul Hilfinger as a side effect of named references
509 support at
510 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00000.html>.
511 Suggested by Paul Eggert.
512 * src/scan-code.l ({letter}, {id}): Adjust lexical definitions.
513 * src/scan-gram.l ({letter}, {id}): Likewise.
514
15fe6bb4
JD
5152011-01-03 Joel E. Denny <joeldenny@joeldenny.org>
516
517 * ChangeLog (2011-01-02): improve description.
518
355bdbdc
JD
5192011-01-03 Joel E. Denny <joeldenny@joeldenny.org>
520
521 maint: don't update copyright years in bootstrap.
522 * .x-update-copyright: Add entry for bootstrap.
523 * bootstrap: Remove 2011 from copyright years. The bootstrap
524 version we're currently using comes from an older version of
525 gnulib.
526 * bootstrap.conf (bootstrap_sync): Add comments explaining this
527 issue.
528
575619af
JD
5292011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
530
531 maint: run "make update-copyright".
532
cb3f7f33
JD
5332011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
534
15fe6bb4 535 maint: prepare to use year ranges in copyright notices.
cb3f7f33 536 * README (Copyright statements): New section explaining the range
15fe6bb4
JD
537 notation. The GNU maintainers document requires this explanation:
538 <http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices>.
539 I copied our explanation from coreutils.
cb3f7f33
JD
540 * build-aux/update-b4-copyright: Revert 2010-06-17 changes that
541 disabled Bison's automated use of ranges.
542 * cfg.mk (update-copyright-env): Likewise.
543
1eb63504
JD
5442011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
545
546 Correct my email address.
547 * ChangeLog: In all recent entries.
548 * THANKS (Joel E. Denny): Here.
549
5502010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
d397d9f0
JD
551
552 doc: cleanup.
553 * NEWS (2.5): Try to sort entries according to how interesting
554 users might find them.
555
1eb63504 5562010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
f1b238df
JD
557
558 doc: cleanup.
559 * NEWS (2.5): Make some minor improvements to wording, and format
560 entries more consistently.
561 * doc/bison.texinfo (Language and Grammar): Point out that IELR
562 and canonical LR are experimental features.
563 (Decl Summary): In list of %define variables, make wording more
564 consistent. Improve discussion of using LALR for GLR.
565
1eb63504 5662010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
fcf834f9
JD
567
568 parse.lac: document.
569 * NEWS (2.5): Add entry for LAC, and mention LAC in entry for
570 other corrections to verbose syntax error messages.
571 * doc/bison.texinfo (Decl Summary): Rewrite entries for
572 lr.default-reductions and lr.type to be clearer, to mention
573 %nonassoc's effect on canonical LR, and to mention LAC. Add entry
574 for parse.lac.
575 (Glossary): Add entry for LAC.
576
1eb63504 5772010-12-11 Joel E. Denny <joeldenny@joeldenny.org>
107844a3
JD
578
579 parse.lac: implement exploratory stack reallocations.
580 * data/yacc.c: Rename %define variable parse.lac.es-capacity to
581 parse.lac.es-capacity-initial. Accept parse.lac.memory-trace
582 with values of "failures" (default) or "full".
583 (b4_declare_parser_state_variables): Add yyesa, yyes, and
584 yyes_capacity variables.
585 (YYSTACK_USE_ALLOCA): Ignore it if LAC requested.
586 (YYSTACK_ALLOC, YYSTACK_FREE, YYSTACK_ALLOC_MAXIMUM): Define if
587 LAC requested.
588 (YYCOPY_NEEDED): New cpp macro.
589 (YYCOPY): Define if LAC requested.
590 (yy_lac_stack_realloc): New function implementing stack
591 reallocations. Use YYMAXDEPTH for maximum stack size given that
592 the stack should never need to grow larger than the main state
593 stack needs to grow without LAC.
594 (YY_LAC_ESTABLISH): Update yy_lac invocation.
595 (yy_lac): Add arguments for exploratory stack memory data
596 recorded in the main parser. Invoke yy_lac_stack_realloc when
597 reallocation is necessary.
598 (yysyntax_error): Add the same new arguments and pass them to
599 yy_lac.
600 (yypstate_delete): Free yyes if necessary.
601 (yyesa, yyes, yyes_capacity): #define these to yypstate members
602 in the case of push parsing.
603 (yyparse, yypush_parse): Initialize yyes and yyes_capacity.
604 Update yysyntax_error invocations. At yyreturn, free yyes if
605 necessary.
606 * src/parse-gram.y: %define parse.lac full.
607 * tests/input.at (LAC: errors for %define): Extend for
608 parse.lac-memory-trace.
609 * tests/regression.at (LAC: Exploratory stack): Extend to check
610 that stack reallocs happen when expected.
611 (LAC: Memory exhaustion): Update to use YYMAXDEPTH and
612 parse.lac.es-capacity-initial.
613
1eb63504 6142010-12-11 Joel E. Denny <joeldenny@joeldenny.org>
bf35c71c
JD
615
616 parse.lac: implement as %define variable.
617 LAC = lookahead correction. See discussion at
618 <http://lists.gnu.org/archive/html/bison-patches/2009-09/msg00034.html>.
619 However, one point there must be corrected: because of %nonassoc,
620 LAC is *not* always redundant for lr.type=canonical-lr.
621 * data/yacc.c: Accept values of "none" (default) or "full" for
622 parse.lac. Accept %define parse.lac.es-capacity to specify
623 capacity of LAC's temporary exploratory stack. It defaults to 20
624 and, for now, will not grow dynamically.
625 (b4_lac_flag, b4_lac_if): New m4 macros. Evaluate as true for
626 parse.lac!=none.
627 (YYBACKUP): Invoke YY_LAC_DISCARD.
628 (YY_LAC_ESTABLISH, YY_LAC_DISCARD): New cpp macros that invoke
629 yy_lac and track when it needs to be invoked
630 (yy_lac): New function that, given the current stack, determines
631 whether a token can eventually be shifted. Return status mimics
632 yyparse return status.
633 (yysyntax_error): Change yystate argument to yyssp so stack top
634 can be passed to yy_lac. If LAC is requested, build expected
635 token list by invoking yy_lac for every token instead of just
636 checking the current state for lookaheads. Return 2 if yy_lac
637 exhausts memory.
638 (yyparse, yypush_parse): Use local variable yy_lac_established and
639 cpp macros YY_LAC_ESTABLISH and YY_LAC_DISCARD to implement LAC.
640 Update yysyntax_error invocation. Add yyexhaustedlab code if LAC
641 is requested.
642 * tests/conflicts.at (%nonassoc and eof): Extend to check the
643 effect of each of -Dlr.type=canonical-lr and -Dparse.lac=full.
644 (parse.error=verbose and consistent errors): Likewise.
645 (LAC: %nonassoc requires splitting canonical LR states): New test
646 group demonstrating how LAC can fix canonical LR.
647 * tests/input.at (LAC: Errors for %define): New test group.
648 * tests/regression.at (LAC: Exploratory stack): New test group.
649 (LAC: Memory exhaustion): New test group.
650
1eb63504 6512010-11-21 Joel E. Denny <joeldenny@joeldenny.org>
10bae98a
JD
652
653 build: use gnulib's new bootstrap_sync option.
654 Now, whenever we update bison's copy of gnulib, bootstrap will
655 update itself the next time it's run.
656 * bootstrap: Copy from latest gnulib for bootstrap_sync support.
657 * bootstrap.conf (bootstrap_sync): Set to true.
658 * gnulib: Update to latest so bootstrap is in sync now.
659
1eb63504 6602010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
d2060f06
JD
661
662 yysyntax_error: fix for consistent error with lookahead.
663 * NEWS (2.5): Document.
664 * data/yacc.c (yysyntax_error): In a verbose syntax error
665 message while in a consistent state with a default action (which
666 must be an error action given that yysyntax_error is being
667 invoked), continue to drop the expected token list, but don't
668 drop the unexpected token unless there actually is no lookahead.
669 Moreover, handle that internally instead of returning 1 to tell
670 the caller to do it. With that meaning of 1 gone, renumber
671 return codes more usefully.
672 (yyparse, yypush_parse): Update yysyntax_error usage. Most
673 importantly, set yytoken to YYEMPTY when there's no lookahead.
674 * data/glr.c (yyreportSyntaxError): As in yacc.c, don't drop the
675 unexpected token unless there actually is no lookahead.
676 * data/lalr1.cc (yy::parser::parse): If there's no lookahead,
677 pass yyempty_ not yyla.type to yysyntax_error_.
678 (yy::parser::yysyntax_error_): Again, don't drop the unexpected
679 token unless there actually is no lookahead.
680 * data/lalr1.java (YYParser::parse): If there's no lookahead,
681 set yytoken to yyempty_ before invoking yysyntax_error.
682 (YYParser::yysyntax_error): Again, don't drop the unexpected
683 token unless there actually is no lookahead.
684 * tests/conflicts.at (parse.error=verbose and consistent
685 errors): Extend test group to further reveal how the previous
686 use of the simple "syntax error" message was too general. Test
687 yacc.c, glr.c, lalr1.cc, and lalr1.java. No longer an expected
688 failure.
689 * tests/java.at (AT_JAVA_COMPILE, AT_JAVA_PARSER_CHECK): Move
690 to...
691 * tests/local.at: ... here.
692 (_AT_BISON_OPTION_PUSHDEFS): Push AT_SKEL_JAVA_IF definition.
693 (AT_BISON_OPTION_POPDEFS): Pop it.
694 (AT_FULL_COMPILE): Extend to handle Java.
695
1eb63504 6962010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
25a648d8
JD
697
698 yysyntax_error: more preparation for readability of next patch.
699 There are no behavioral changes here.
700 * data/glr.c (yyreportSyntaxError): Reorganize.
701 * data/lalr1.cc (yy::parser::yysyntax_error_): Reorganize.
702 * tests/conflicts.at (parse.error=verbose and consistent errors):
703 Reorganize.
704
1eb63504 7052010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
b4bbc4a0
JD
706
707 yysyntax_error: prepare for readability of next patches.
708 These are purely whitespace changes that result in ugly code
709 but that make the next couple of patches much easier to read.
710 * data/glr.c (yyreportSyntaxError): Reindent.
711 * data/lalr1.cc (yy::parser::yysyntax_error_): Reindent.
712 * data/lalr1.java (YYParser::yysyntax_error): Reindent.
713 * data/yacc.c (yysyntax_error): Reindent.
714
71431084
JD
7152010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
716
717 Fix memory leak.
718 * src/output.c (prepare_rules): Free temporary array.
719
34db451c
JD
7202010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
721
722 yysyntax_error: improve invocation readability.
723 * data/yacc.c (yyparse, yypush_parse): For yysyntax_error
724 invocation, get rid of the while loop, which is misleading
725 because there are really at most two iterations.
726
9d6bc5c4
JD
7272010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
728
729 * ChangeLog: Correct some errors in previous entries.
730
e503b9cb
JD
7312010-10-17 Joel E. Denny <joeldenny@joeldenny.org>
732
733 maint: re-anchor all .gitignore entries.
734 * bootstrap: Copy from gnulib's latest for the fix to
735 automatically anchor entries it constructs.
736 * gnulib: Update to latest just so it has the same bootstrap.
737 * .gitignore, build-aux/.gitignore, doc/.gitignore:
738 * lib/.gitignore, m4/.gitignore, po/.gitignore:
739 * runtime-po/.gitignore: Re-anchor all entries.
740
95aed8db
PE
7412010-10-08 Paul Eggert <eggert@cs.ucla.edu>
742
8ff146cd
PE
743 Fix portability problem on OpenBSD 4.7.
744
745 Jim Meyering reported this in
746 <http://lists.gnu.org/archive/html/bug-bison/2010-10/msg00007.html>.
747 * data/yacc.c: Use EXIT_SUCCESS as a witness for stdlib.h,
748 not _STDLIB_H. EXIT_SUCCESS has been defined by the standard
749 for quite some time.
750 * src/parse-gram.c, src/parse-gram.h: Regenerate.
751 * tests/regression.at: Tamper with the renamed witness.
752
95aed8db
PE
753 Adjust to recent changes to gnulib bootstrap.
754
755 * .cvsignore, build-aux/.cvsignore, doc/.cvsignore, etc/.cvsignore:
756 * examples/calc++/.cvsignore, lib/.cvsignore, m4/.cvsignore:
757 * po/.cvsignore, runtime-po/.cvsignore, src/.cvsignore:
758 * tests/.cvsignore: Remove; I don't use CVS to maintain Bison
759 anymore and don't know of anybody else who does. If someone needs
760 these files, they can resurrect them.
761 * .gitignore, build-aux/.gitignore, doc/.gitignore, lib/.gitignore:
762 * m4/.gitignore, po/.gitignore, runtime-po/.gitignore:
763 Omit leading '/', since bootstrap omits it.
764 Adjust file names to match current contents better.
765 * bootstrap: Sync from gnulib: this contains the new gnulib_mk_hook
766 installed just for us.
767 * bootstrap.conf (excluded_files): Don't exclude codeset.m4,
768 glibc21.m4, inttypes_h.m4, size_max.m4, xsize.m4, as they are now
769 needed somehow. Don't have time to look into why.
770 (gnulib_modules): Change malloc to malloc-gnu. Do we really assume
771 the GNU malloc behavior, where malloc (0) != NULL unless we're
772 out of storage? If not, we can omit malloc-gnu; but for now I left
773 it in to be safe.
774 (vc_ignore): Remove.
775 (gnulib_mk_hook): New function.
776 * README-hacking: Renamed from HACKING, since gnulib bootstrap now
777 uses that convention.
778
39f5757a
PH
7792010-09-09 Paul Hilfinger <hilfinger@cs.berkeley.edu>
780
781 * data/glr.c (yySymbol): Define as int to avoid compiler warnings about
782 possible change of value.
783
d467f443
PH
7842010-09-08 Paul Hilfinger <hilfinger@cs.berkeley.edu>
785
786 * data/glr.c (yy_reduce_print): Change yyrhsVals to yyvsp to remove
787 compiler errors when using %debug.
788 Add declaration of yylow when locations in use to avoid compilation
789 error.
790 (yyglrReduce): Conditionalize message "Parse ... rejected by rule..."
791 on whether we are in split mode, for consistency with behavior of
792 non-GLR parsing.
793
c49784f5
AD
7942010-09-01 Akim Demaille <demaille@gostai.com>
795
796 Address GCC warnings about shadowed local variables (yyflag).
797 * data/glr.c (YYCHK): Rename yyflag as yychk_flag.
798 (yyprocessOneStack): Reduce the scope of yyaction, yyconflicts,
799 yyrule, and yyflag.
800
64877e5e
JD
8012010-08-05 Joel E. Denny <joeldenny@joeldenny.org>
802
803 Version 2.4.3.
804 * NEWS (2.4.3): Set date.
805
83af6585
JD
8062010-08-04 Joel E. Denny <joeldenny@joeldenny.org>
807
808 maint: add gettext version to release announcements.
809 Suggested by Paul Hilfinger at
810 <http://lists.gnu.org/archive/html/bison-patches/2010-07/msg00019.html>
811 <http://lists.gnu.org/archive/html/bison-patches/2010-08/msg00002.html>.
812 * cfg.mk (bootstrap-tools): Add gettext.
813
93d7dde9
JD
8142010-08-04 Joel E. Denny <joeldenny@joeldenny.org>
815
816 doc: fix -W and %expect documentation some.
817 * NEWS (2.4.3): Mention that there are documentation fixes.
818 * doc/bison.texinfo (Expect Decl): Make it clear that %expect
819 turns conflicts into errors not warnings.
820 (Shift/Reduce): Likewise.
821 (Bison Options): Don't mention -Wsyntax. It doesn't exist.
822
2bfcac9a
JD
8232010-08-01 Joel E. Denny <joeldenny@joeldenny.org>
824
825 -Werror: fix for rules useless in parser after conflicts.
826 * NEWS (2.4.3): Document fix.
827 * src/complain.c (error_message): Extend to handle incomplete
828 error messages so warn and warn_at can be used in more cases.
829 * src/gram.c (grammar_rules_useless_report): Use warn_at so that
830 -Werror is always obeyed.
831 * src/reduce.c (reduce_print): Use warn so that the "warnings
832 being treated as errors" message is printed consistently before
833 the first warning message. This makes testing easier.
834 * tests/local.at (AT_BISON_WERROR_MSG): New macro.
835 (AT_BISON_CHECK_NO_XML): Extend to check -Werror and
836 --warnings=error when warnings appear in bison's stderr.
837
c61d4fa1
JD
8382010-07-29 Joel E. Denny <joeldenny@joeldenny.org>
839
840 maint: enable gnits only at stable releases.
841 * configure.ac (AM_INIT_AUTOMAKE): Underscore or dash in a
842 version string should disable gnits. Explain in comments.
843
825c88e8
JD
8442010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
845
846 i18n: update.
847 * po/POTFILES.in: Add src/graphviz.c.
848
343c3db8
JD
8492010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
850
851 i18n: fix for gnulib.
852 * po/POTFILES.in: Add remaining gnulib files that have
853 translatable strings.
854
42765f8e
JD
8552010-07-25 Joel E. Denny <joeldenny@joeldenny.org>
856
857 build: fix our adjustments for gnulib files in lib.
858 * configure.ac: For prepending lib/ to the values of config
859 variables, fix detection of empty values. Also, due to recent
860 gnulib changes, add LIBUNISTRING_UNITYPES_H and
861 LIBUNISTRING_UNIWIDTH_H to the list of those variables.
862
e35bc778
JD
8632010-07-25 Joel E. Denny <joeldenny@joeldenny.org>
864
865 maint: use announce-gen's new --mail-headers.
866 * HACKING (Announce): Update instructions.
867 * cfg.mk (announcement_Cc_): Define.
868 * configure.ac (AM_GNU_GETTEXT_VERSION): Update to 0.18 as
869 required by latest gnulib.
870 * gnulib: Update to latest.
871
b6ca79e8
JD
8722010-07-24 Joel E. Denny <joeldenny@joeldenny.org>
873
874 tests: handle Valgrind that complains about >&-.
875 * tests/output.at (AT_CHECK_OUTPUT): Extend to accept pre-tests.
876 (Output files: -dv >&-): Skip test group if running
877 maintainer-check-valgrind.
878
ca2a6d15
PH
8792010-07-23 Paul Hilfinger <hilfingr@EECS.Berkeley.EDU>
880
881 * NEWS: Describe new semantic-predicate feature.
9d6bc5c4
JD
882 * data/c.m4 (b4_predicate_case): New definition.
883 * data/java.m4 (b4_predicate_case): New definition.
884 * data/glr.c (yyimmediate): Add definition.
885 (yydoAction): Remove comment, now obsolete.
886 Do YY_REDUCE_PRINT here.
887 (yyglrReduce): Alter comment to indicate that semantic values
888 need not be deferred.
889 Remove YY_REDUCE_PRINT from here; done in yydoAction.
890 (yyprocessOneStack): Pass immediate flag.
891 Delete stacks rejected by predicates in newly split-off parsers.
892 Change handling of yyerr so that only current stack gets deleted
893 when semantic predicate fails.
894 (yyfillin): Don't crash if a semantic value is unresolved (as may
895 happen in predicate rules).
896 Copy lr state as well in debugging mode.
897 Update comment on setting of yysval to include yyloc as well.
898 (yy_reduce_print): Add yynormal argument. Perform fillin properly.
899 Report unresolved RHS values.
900 (yyimmediate): New table.
901 * src/gram.h (struct rule): Add is_predicate field.
902 * src/output.c (user_actions_output): Use b4_predicate_case for
903 predicates.
904 (prepare_symbols): Output yyimmediate.
905 * src/scan-gram.l: Add %? token, SC_PREDICATE state.
906 * src/scan-code.l (code_props_rule_action_init): Add is_predicate
907 argument.
908 * src/scan-code.h (struct code_props): Add is_predicate field.
909 (code_props_rule_action_init): New interface.
910 * src/parse-gram.y (%?{...}): New token.
911 (rhs): Add %?{...} rule.
912 * src/parse-gram.c: Regenerate.
913 * src/parse-gram.h: Regenerate.
914 * src/reader.c (grammar_current_rule_action_append): Add
915 immediate argument.
916 (grammar_midrule_action): Use new interface for
917 code_props_rule_action_init.
918 (grammar_current_rule_action_append): Ditto.
919 (packgram): Transfer is_predicate value.
920 * src/reader.h (grammar_current_rule_action_append): New interface.
921 * doc/bison.texinfo: Document semantic predicates (%?).
922
923 * data/glr.c (yylhsNonterm, yyisDefaultedState,yyDefaultAction)
924 (yygetLRActions,yynewGLRStackItem,yyaddDeferredAction,yyinitStateSet)
925 (yyinitGLRStack,yyexpandGLRStack,yyupdateSplit,yymarkStackDeleted)
926 (yyundeleteLastStack,yyglrShift,yyglrShiftDefer,yydoAction,yyglrReduce)
927 (yyidenticalOptions,yymergeOptionSets,yyresolveStates,yyresolveAction)
928 (yyresolveLocations,yyresolveValue,yyreducePrint): Update parameter
929 names in comments and mention all parameters.
930 (struct yyGLRState): Fix description of yyposn field.
931 (yyresolveLocations): Correct comment so as not to imply action when
932 yyn1==0.
c49784f5 933
7d424de1
PE
9342010-06-17 Paul Eggert <eggert@cs.ucla.edu>
935
804e83b2
PE
936 Update from GFDL GFDL 1.2 to 1.3.
937 * doc/bison.texinfo: Update GFDL version number.
938 * doc/fdl.texi: Update to version 1.3, taken from:
939 http://www.gnu.org/licenses/fdl.texi
940
7d424de1
PE
941 Do not use date ranges in copyright notices.
942 See http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices
943
944 * HACKING, Makefile.am, NEWS, PACKAGING, README, README-alpha:
945 * TODO, bootstrap, bootstrap.conf:
946 * build-aux/update-b4-copyright, cfg.mk, configure.ac:
947 * data/README, data/bison.m4, data/c++-skel.m4, data/c++.m4:
948 * data/c-skel.m4, data/c.m4, data/glr.c, data/glr.cc:
949 * data/java-skel.m4, data/java.m4, data/lalr1.cc:
950 * data/lalr1.java, data/local.mk, data/location.cc:
951 * data/stack.hh, data/variant.hh, data/xslt/bison.xsl:
952 * data/xslt/xml2dot.xsl, data/xslt/xml2text.xsl:
953 * data/xslt/xml2xhtml.xsl, data/yacc.c, djgpp/Makefile.maint:
954 * djgpp/README.in, djgpp/config.bat, djgpp/config.sed:
955 * djgpp/config.site, djgpp/config_h.sed, djgpp/djunpack.bat:
956 * djgpp/local.mk, djgpp/subpipe.c, djgpp/subpipe.h:
957 * djgpp/testsuite.sed, doc/bison.texinfo, doc/local.mk:
958 * doc/refcard.tex, etc/README, etc/bench.pl.in, etc/local.mk:
959 * examples/calc++/Makefile.am, examples/extexi:
960 * examples/local.mk, lib/abitset.c, lib/abitset.h:
961 * lib/bbitset.h, lib/bitset.c, lib/bitset.h:
962 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
963 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
964 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
965 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
966 * lib/libiberty.h, lib/local.mk, lib/main.c, lib/timevar.c:
967 * lib/timevar.def, lib/timevar.h, lib/vbitset.c:
968 * lib/vbitset.h, lib/yyerror.c, m4/bison-i18n.m4:
969 * m4/c-working.m4, m4/cxx.m4, m4/subpipe.m4, m4/timevar.m4:
970 * src/AnnotationList.c, src/AnnotationList.h:
971 * src/InadequacyList.c, src/InadequacyList.h, src/LR0.c:
972 * src/LR0.h, src/Sbitset.c, src/Sbitset.h, src/assoc.c:
973 * src/assoc.h, src/closure.c, src/closure.h, src/complain.c:
974 * src/complain.h, src/conflicts.c, src/conflicts.h:
975 * src/derives.c, src/derives.h, src/files.c, src/files.h:
976 * src/flex-scanner.h, src/getargs.c, src/getargs.h:
977 * src/gram.c, src/gram.h, src/graphviz.c, src/ielr.c:
978 * src/ielr.h, src/lalr.c, src/lalr.h, src/local.mk:
979 * src/location.c, src/location.h, src/main.c:
980 * src/muscle-tab.c, src/muscle-tab.h, src/named-ref.c:
981 * src/named-ref.h, src/nullable.c, src/nullable.h:
982 * src/output.c, src/output.h, src/parse-gram.y:
983 * src/print-xml.c, src/print-xml.h, src/print.c, src/print.h:
984 * src/print_graph.c, src/print_graph.h, src/reader.c:
985 * src/reader.h, src/reduce.c, src/reduce.h, src/relation.c:
986 * src/relation.h, src/scan-code.h, src/scan-code.l:
987 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
988 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
989 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
990 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
991 * tests/actions.at, tests/atlocal.in, tests/c++.at:
992 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
993 * tests/existing.at, tests/glr-regression.at:
994 * tests/headers.at, tests/input.at, tests/java.at:
995 * tests/local.at, tests/local.mk, tests/named-refs.at:
996 * tests/output.at, tests/push.at, tests/reduce.at:
997 * tests/regression.at, tests/sets.at, tests/skeletons.at:
998 * tests/synclines.at, tests/testsuite.at, tests/torture.at:
999 Don't use date ranges in copyright notices.
1000
38435078
AD
10012010-05-11 Akim Demaille <demaille@gostai.com>
1002
1003 lalrl1.cc: give a chance to user defined YYLLOC_DEFAULT.
1004 * data/lalr1.cc (YYLLOC_DEFAULT): Move its definition from the
1005 header file to the implementation file, after the user %code
1006 sections.
1007 * NEWS (2.5): Document this.
1008
e944aaff
AD
10092010-05-11 Akim Demaille <demaille@gostai.com>
1010
1011 doc: please Emacs.
1012 * doc/bison.texinfo (Local Variables): Move this after the
1013 LocalWords, since the latter are looked for in the whole document,
1014 while the former are looked for only at its end.
1015 Require american spell checking.
1016
86e5b440
AD
10172010-05-10 Akim Demaille <demaille@gostai.com>
1018
1019 doc: fix lalr1.cc documentation.
1020 * doc/bison.texinfo (C++ Scanner Interface): Fix yylex signature.
1021 (C++ Bison Interface): Fix lalr1.cc skeleton name.
1022 (C++ Parser Interface): Fix semantic_type and location_type names.
1023 Document yy::parser::token.
1024 Reported by Jerry Quinn.
1025
bb9191dd
AD
10262010-05-10 Akim Demaille <demaille@gostai.com>
1027
1028 c++: use YYRHSLOC.
1029 * data/lalr1.cc (YYRHSLOC): New.
1030 (YYLLOC_DEFAULT): Use it.
1031 * data/glr.cc: If location_type was user defined, do not include
1032 location.hh, and do not produce location.hh and position.hh.
1033 * tests/calc.at (YYLLOC_DEFAULT): Use YYRHSLOC.
1034 Check that glr.cc supports user defined location_type.
1035 * NEWS: Document this.
1036
8aec287e
AD
10372010-05-07 Akim Demaille <demaille@gostai.com>
1038
1039 doc: fix typo.
1040 * tests/synclines.at: here.
1041
c826013f
AD
10422010-05-04 Akim Demaille <demaille@gostai.com>
1043
1044 tests: enhance AT_SYNCLINES_COMPILE.
1045 * tests/synclines.at (AT_SYNCLINES_COMPILE): More distcc patterns.
1046 (AT_TEST_SYNCLINE): Remove GCC 4.5 protection which is already
1047 taken care of in AT_SYNCLINES_COMPILE.
1048
7789b6e3
AD
10492010-05-04 Akim Demaille <demaille@gostai.com>
1050
1051 lalr1.cc: don't generate location.hh when location_type is defined
1052 * data/bison.m4 (b4_percent_define_get): Accept a default value.
1053 * data/c++.m4: Do not provide a default value for the %define
1054 variable location_type, rather, use b4_percent_define_get with a
1055 default argument where its value is needed.
1056 * data/lalr1.cc: Do not load location.cc (which outputs both
1057 location.hh and position.hh) if the user defined location_type.
1058 Do not include location.hh either.
1059
19ad326b
AD
10602010-05-04 Akim Demaille <demaille@gostai.com>
1061
1062 lalr1.cc: minor refactoring.
1063 * data/lalr1.cc: Don't issue empty namespaces.
1064
f5da8149
AD
10652010-05-04 Akim Demaille <demaille@gostai.com>
1066
1067 tests: fix %printer.
1068 Currently, there is no check that %printer ... <foo> (nor
1069 %destructor) is about an existing <foo> type. This C++ test had
1070 it wrong (<::std::string> vs. <std::string>).
1071
1072 * tests/c++.at (AT_CHECK_VARIANTS): In list.yy, redefine the
1073 pretty-printing of lists into something better for parser traces.
1074 Update the expected output.
1075 Fix correspondance between %type/%token and %printer.
1076
49976d5c
AD
10772010-05-04 Akim Demaille <demaille@gostai.com>
1078
1079 lalr1.cc: location_type: make sure we don't depend on loc.(begin|end).
1080 * tests/calc.at (Span): Instead of begin/end, as in the built-in
1081 location class, use first and last.
1082 Define YYLLOC_DEFAULT to adjust to these changes.
1083 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Adjust to the
1084 location_type changes.
1085
bc81de36
JD
10862010-05-01 Joel E. Denny <joeldenny@joeldenny.org>
1087
1088 tests: fix maintainer-xml-check.
1089 * data/xslt/xml2dot.xsl (xsl:template match="bison-xml-report"):
1090 Update output to include comments now produced by --graph.
1091 (xsl:template match="automaton"): As for --graph, name the
1092 digraph after the grammar file.
1093 * src/print-xml.c (escape_bufs): Enlarge array.
1094 (print_xml): Add bug-report and url attributes to
1095 bison-xml-report element.
1096
b7666378
JD
10972010-05-01 Joel E. Denny <joeldenny@joeldenny.org>
1098
1099 In DOT output, convert from "/*" comments to "//" comments.
1100 This handles the possibility that a "*/" might appear in
1101 variable portions of those comments at some point in the future.
1102 * src/graphviz.c (start_graph): Implement.
1103
9b5049bd
JD
11042010-04-30 Joel E. Denny <joeldenny@joeldenny.org>
1105
1106 Document that undefined %prec identifier warnings will remain.
1107 * NEWS (2.4.3): Here.
1108 (2.4.2): Here.
1109
02354690
JD
11102010-04-30 Joel E. Denny <joeldenny@joeldenny.org>
1111
1112 Revert 2009-12-30 change for undefined %prec token complaints.
1113 That is, keep them as warnings because that should be sufficient
1114 to satisfy POSIX without creating backward compatibility issues.
1115 Suggested by Richard Stallman at
1116 <http://lists.gnu.org/archive/html/bison-patches/2010-03/msg00033.html>.
1117 * NEWS (2.5): Remove mention of complaint.
56e92e0b
JD
1118 * src/reader.c (grammar_rule_check): Convert complaint back to
1119 warning.
02354690
JD
1120 * tests/input.at (%prec's token must be defined): Update.
1121
a7ddefd1
JD
11222010-04-25 Joel E. Denny <joeldenny@joeldenny.org>
1123
1124 build: don't require src/bison during bootstrap.
1125 Suggested by Eric Blake at
1126 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00003.html>.
1127 * bootstrap.conf (bootstrap_epilogue): New function to make sure
1128 src/parse-gram.[ch] are stamped later than src/parse-gram.y.
1129
c1bd4b2b
JD
11302010-04-25 Joel E. Denny <joeldenny@joeldenny.org>
1131
1132 i18n: fix untranslatable string.
1133 Reported by Goran Uddeborg at
1134 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00000.html>.
1135 * src/muscle-tab.c (muscle_percent_define_insert): Here.
1136
67f1a2c2
AD
11372010-04-13 Akim Demaille <demaille@gostai.com>
1138
1139 tests: calc: minor refactoring.
1140 * tests/calc.at (_AT_DATA_CALC_Y): Simplify yylex.
1141
4f756f88
AD
11422010-04-13 Akim Demaille <demaille@gostai.com>
1143
1144 tests: calc: simplify location management.
1145 * tests/local.at (AT_LOC_PUSHDEF, AT_LOC_POPDEF): New.
1146 (_AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS): Use them to
1147 define the appropriate AT_LOC accessors.
1148 * tests/calc.at: Use AT_LOC accessors.
1149
24bb8c8c
AD
11502010-04-13 Akim Demaille <demaille@gostai.com>
1151
1152 test location_type.
1153 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS):
1154 Define AT_LOCATION_TYPE_IF.
1155 (_AT_BISON_OPTION_POPDEFS): Undefine AT_LOCATION_TYPE_IF.
1156 * tests/calc.at (_AT_DATA_CALC_Y): When %define location_type is
1157 used, provide a user location type and use it.
1158 (Simple LALR1 C++ Calculator): Add a test case for location_type.
1159
af129079
AD
11602010-04-13 Akim Demaille <demaille@gostai.com>
1161
1162 tests: check fclose's return value.
1163 * tests/calc.at (_AT_DATA_CALC_Y): Check fclose's return status.
1164
36dc3637
AD
11652010-04-13 Akim Demaille <demaille@gostai.com>
1166
1167 tests: don't depend on the actual location type.
1168 * tests/calc.at: Use yy::parser::location_type rather than
1169 yy::location, since the former is always right, and might point to
1170 another type than the latter.
1171
c499231d
AD
11722010-04-13 Akim Demaille <demaille@gostai.com>
1173
1174 formatting changes.
1175 * tests/calc.at: Formatting changes.
1176
7799ef15
AD
11772010-04-13 Akim Demaille <demaille@gostai.com>
1178
1179 lalr1.cc: remove useless forward declaration.
1180 * data/lalr1.cc: Include location.hh before stack.hh.
1181 Remove the useless forward declarations of position and location.
1182 Reported by Chris Morley.
1183 * data/glr.cc: Likewise.
1184
06cb07d5
JD
11852010-04-11 Joel E. Denny <joeldenny@joeldenny.org>
1186
1187 * NEWS (2.4.3): Mention fix for Sun Studio C++.
1188
4586c8cd
JD
11892010-04-10 Joel E. Denny <joeldenny@joeldenny.org>
1190
1191 tests: fix for newer Sun Studio C++.
1192 Reported by Dagobert Michelsen at
1193 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00023.html>.
1194 * THANKS (Dagobert Michelsen): Add.
1195 * configure.ac (AC_PREREQ): Set to 2.64 so we get the latest
1196 Autoconf macro for handling the restrict keyword.
1197 * gnulib: Update to latest, which no longer overrides that macro
1198 from Autoconf.
1199
44c2b42d
JD
12002010-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1201
1202 portability: fix pointer arithmetic to conform to C standard.
1203 Reported by Tys Lefering at
1204 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00035.html>.
1205 This fix is already implemented in glr.c and does not apply to
1206 lalr1.java.
1207 * data/lalr1.cc (yy::parser::parse): Increase size of
1208 yyerror_range and adjust subscripting so you don't have to
1209 subtract one from the beginning of the array.
1210 * data/yacc.c (b4_declare_parser_state_variables,
1211 yyparse, yypush_parse): Likewise.
1212
218287f5
AD
12132010-04-05 Akim Demaille <demaille@gostai.com>
1214
1215 remove useless include.
1216 * src/graphviz.h: Don't include stdbool.h.
1217
8176ab33
AD
12182010-04-05 Akim Demaille <demaille@gostai.com>
1219
1220 graph: sign the output file.
1221 * src/graphviz.c (start_graph): Issue comments about Bison.
1222 Suggested by Tys Lefering.
1223
4ad3921d
JD
12242010-03-31 Joel E. Denny <jdenny@ces.clemson.edu>
1225
1226 portability: fix test suite for GCC 4.5's new #error message.
1227 Reported by Tys Lefering at
1228 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00030.html>.
1229 * NEWS (2.4.3): Mention.
1230 * tests/synclines.at (AT_TEST_SYNCLINE): Implement.
1231
10a697de
AD
12322010-03-30 Akim Demaille <demaille@gostai.com>
1233
1234 fix comments.
1235 * src/graphviz.h: Add missing license notice.
1236 Document.
1237
d6b347e4
AD
12382010-03-25 Akim Demaille <demaille@gostai.com>
1239
1240 tests: fix 250: parse.error=verbose overflow.
1241 * tests/regression.at (parse.error=verbose overflow): Avoid the
1242 double inclusion of stdlib.h as it triggers hard errors.
1243
b8675840
JD
12442010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
1245
1246 portability: fix for BSD make.
1247 Reported by Johan van Selst at
1248 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00016.html>.
1249 * tests/local.mk ($(TESTSUITE)): Qualify package.m4 in
1250 this dependency list as in package.m4's target rule.
1251
8b9e021f
JD
12522010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
1253
1254 portability: fix spawning on at least FreeBSD 8 and FreeBSD 9.
1255 Reported by Johan van Selst at
1256 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00014.html>.
1257 * NEWS (2.4.3): New.
1258 * THANKS (Johan van Selst): Add.
1259 * etc/prefix-gnulib-mk (prefix): Adjust regex for makefile
1260 targets so that gnulib's new c++defs.h is matched.
1261 * gnulib: Update to latest.
1262
96a381c5
JD
12632010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
1264
1265 maint: update for changes to gnulib's announce-gen.
1266 * HACKING (Announce): RELEASE_TYPE=major must now be written
1267 RELEASE_TYPE=stable.
1268
e19a049c
JD
12692010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
1270
1271 Version 2.4.2.
1272 * NEWS (2.4.2): Set version and date. For the recent test suite
1273 portability fixes, don't be so optimistic about their success
1274 given the lack of feedback on the affected platforms.
1275
890aeb28
JD
12762010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
1277
1278 tests: fix maintainer-xml-check for recent changes.
1279 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Use
1280 AT_BISON_CHECK_NO_XML rather than AT_BISON_CHECK because an
1281 output file whose name conflicts with a previous output file
1282 is now never generated.
1283
f39ab286
JD
12842010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
1285
1286 portability: fix several issues with M4 subprocess.
1287
1288 M4's output pipe was not being drained upon fatal errors during
1289 scan_skel. As a result, broken-pipe messages from M4 were seen
1290 on at least AIX, HP-UX, Solaris, and RHEL4, and this caused a
1291 failure in the test suite. The problem was that, on platforms
1292 where the default disposition for SIGPIPE is ignore instead of
1293 terminate, M4 sometimes saw fwrite fail with errno=EPIPE and
1294 then reported it. However, there's some sort of race condition,
1295 because the new test group occasionally succeeded.
1296 Reported by Albert Chin at
1297 <http://lists.gnu.org/archive/html/bug-bison/2010-02/msg00004.html>.
1298
1299 There were also problems with the test suite livelocking on
1300 Tru64 5.1b. Reported by Didier Godefroy at
1301 <http://lists.gnu.org/archive/html/bug-bison/2009-05/msg00005.html>.
1302 Switching to create_pipe_bidi suggested by Akim Demaille.
1303
1304 To attempt to solve both of these problems, switch to gnulib's
1305 create_pipe_bidi and register M4 process as a slave. Along the
1306 way, clean up file name conflict handling, which was affected by
1307 the broken-pipe problem before the switch.
1308 * NEWS (2.4.2): Document.
1309 * THANKS (Didier Godefroy): Add.
1310 * bootstrap.conf (gnulib_modules): Add pipe.
1311 * gnulib: Update to latest to make sure we have all the latest
1312 fixes.
1313 * lib/local.mk (lib_libbison_a_SOURCES): Remove subpipe.h and
1314 subpipe.c.
1315 * po/POTFILES.in (lib/subpipe.c): Remove.
1316 * src/files.c (compute_output_file_names): Update invocations
1317 of output_file_name_check.
1318 (output_file_name_check): In the case that the grammar file
1319 would be overwritten, use complain instead of fatal, but replace
1320 the output file name with /dev/null. Use the /dev/null solution
1321 for the case of two conflicting output files as well because it
1322 seems safer in case Bison one day tries to open both files at
1323 the same time.
1324 * src/files.h (output_file_name_check): Update prototype.
1325 * src/output.c (output_skeleton): Use create_pipe_bidi and
1326 wait_subprocess. Assert that scan_skel completely drains the
1327 pipe.
1328 * src/scan-skel.l (at_directive_perform): Update
1329 output_file_name_check invocation.
1330 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Check that the
1331 grammar file actually isn't overwritten.
1332 (Conflicting output files: -o foo.y): Update expected output.
1333 * tests/skeletons.at (Fatal errors but M4 continues producing
1334 output): New test group.
1335
e32050b0
JD
13362010-02-04 Joel E. Denny <jdenny@ces.clemson.edu>
1337
1338 Update POTFILES.
1339 * HACKING (Release Procedure): Add reminder about keeping
1340 POTFILES files up-to-date.
1341 * po/POTFILES.in (src/muscle-tab.c, src/scan-skel.l): Add.
1342
efc4ed4a
JD
13432010-02-01 Joel E. Denny <jdenny@clemson.edu>
1344
1345 Code cleanup.
1346 * tests/atlocal.in (abs_top_srcdir): Remove shell variable,
1347 which is already defined in atconfig.
1348
95611b56
JD
13492010-01-22 Joel E. Denny <jdenny@clemson.edu>
1350
1351 tests: fix missing include caught by g++ 4.4.1.
1352 Reported by Tys Lefering.
1353 * HACKING (Release checks): Add note about trying a recent GCC.
1354 * tests/regression.at (_AT_DATA_DANCER_Y): For C++, include
1355 cstdlib for abort.
1356 (_AT_DATA_EXPECT2_Y): Likewise.
1357
d6e40cba
JD
13582010-01-21 Joel E. Denny <jdenny@clemson.edu>
1359
1360 * cfg.mk (gnulib_dir): Assume gnulib is a subdirectory.
1361
80b70223
JD
13622010-01-21 Joel E. Denny <jdenny@clemson.edu>
1363
1364 maint: automate PACKAGE_COPYRIGHT_YEAR update, and update it.
1365 * HACKING (Release Procedure): Update notes on copyright years.
1366 * Makefile.am (update-package-copyright-year): New target rule.
1367 * build-aux/update-package-copyright-year: New file.
1368 * cfg.mk (update-copyright): Add update-package-copyright-year
1369 as a dependency.
1370
3320a276
JD
13712010-01-19 Joel E. Denny <jdenny@clemson.edu>
1372
1373 * bootstrap: Import improvements from latest gnulib.
1374
e30c0477
JD
13752010-01-19 Joel E. Denny <jdenny@clemson.edu>
1376
1377 build: require Automake 1.11.1 to avoid a security flaw.
1378 * HACKING (Release Procedure): Don't document Automake security
1379 flaw here.
1380 * configure.ac (AM_INIT_AUTOMAKE): Require 1.11.1, and explain
1381 why here.
1382
a538eeb1
JD
13832010-01-19 Joel E. Denny <jdenny@clemson.edu>
1384
1385 gnulib: update to latest.
1386
d6bdb90a
JD
13872010-01-19 Joel E. Denny <jdenny@clemson.edu>
1388
1389 ChangeLog (2006-09-15): add Odd Arild Olsen's role for push.c.
1390
326e5cf8
JD
13912010-01-15 Joel E. Denny <jdenny@clemson.edu>
1392
1393 Thank the developer of the initial push parser implementation.
1394 This unfortunate oversight is several years old.
1395 * THANKS (Odd Arild Olsen): Add.
1396
fca9c5ef
JD
13972010-01-04 Joel E. Denny <jdenny@clemson.edu>
1398
1399 Fix some comments concerning LR(0) versus LALR(1).
1400
1401 Stop equating LR(0) with nondeterminism and LALR(1) with
1402 determinism. That is, if all states are consistent, then LR(0)
1403 tables are deterministic. On the other hand, LALR(1) tables
1404 might be nondeterministic before conflict resolution, and GLR
1405 permits LALR(1) tables to remain nondeterministic.
1406 * src/LR0.c, src/LR0.h: Here.
1407 * src/lalr.c, src/lalr.h: Here.
1408 * src/main.c (main): Here.
1409 * src/state.c, src/state.h: Here.
1410
1411 * src/ielr.h (ielr): In preconditions, expect LR(0) not LALR(1)
1412 parser tables.
1413
e141f4d4
JD
14142010-01-04 Joel E. Denny <jdenny@clemson.edu>
1415
1416 maint: run "make update-copyright"
1417
882be728
JD
14182009-12-30 Joel E. Denny <jdenny@clemson.edu>
1419
1420 POSIX: complain if %prec's token was not defined.
1421 * NEWS (2.5): Document.
1422 * src/reader.c (grammar_rule_check): Convert warning to
1423 complaint.
1424 * tests/input.at (%prec's token must be defined): Update.
1425
8bb3a2e7
JD
14262009-12-30 Joel E. Denny <jdenny@clemson.edu>
1427
1428 POSIX: warn if %prec's token was not defined.
1429 Reported by Florian Krohm at
1430 <http://lists.gnu.org/archive/html/bug-bison/2009-12/msg00005.html>.
1431 * NEWS (2.4.2): Document.
1432 * src/reader.c (grammar_rule_check): Implement.
1433 (grammar_current_rule_prec_set): Add comments explaining that we
1434 here assume a %prec identifier is a token, but we still manage
1435 to support POSIX.
1436 * tests/input.at (%prec's token must be defined): New test
1437 group.
1438
505e1551
JD
14392009-12-31 Joel E. Denny <jdenny@clemson.edu>
1440
1441 * HACKING (Release Procedure): Recommend a secure automake.
1442
b8d19cf8
JD
14432009-12-29 Joel E. Denny <jdenny@clemson.edu>
1444
1445 portability: `<' and `>' are not always defined on addresses.
1446 Specifically, don't sort objects by their memory addresses when
1447 they're not allocated in the same array or other object. Though
1448 I haven't found a test case where that fails on my platform, C
1449 says the behavior is undefined.
1450 * src/AnnotationList.c (AnnotationList__insertInto): Remove
1451 FIXME. Use new id field of InadequacyList nodes rather than
1452 their memory addresses when sorting.
1453 (AnnotationList__compute_from_inadequacies): Add
1454 inadequacy_list_node_count argument to pass to
1455 InadequacyList__new_conflict.
1456 * src/AnnotationList.h
1457 (AnnotationList__compute_from_inadequacies): Update prototype
1458 and documentation for new argument.
1459 * src/InadequacyList.c (InadequacyList__new_conflict): Add
1460 node_count argument and use it to assign a unique ID.
1461 * src/InadequacyList.h (InadequacyListNodeCount): New typedef.
1462 (InadequacyList): Add id field.
1463 (InadequacyList__new_conflict): Update prototype and
1464 documentation for new argument.
1465 * src/ielr.c (ielr_compute_annotation_lists): Update
1466 AnnotationList__compute_from_inadequacies invocation.
1467
df222dfa
JD
14682009-12-20 Joel E. Denny <jdenny@clemson.edu>
1469
1470 Fix handling of yychar manipulation in user semantic actions.
1471 The problem was that yacc.c didn't always update the yychar
1472 translation afterwards. However, other skeletons appear to be
1473 fine. glr.c appears to already translate yychar before every
1474 use. lalr1.cc does not define yychar and does not document its
1475 replacement, yyla, for users. It does provide yyclearin, but
1476 that does not manipulate yyla and thus requires no translation
1477 update. In lalr1.java, yychar is out of scope during semantic
1478 actions.
1479 * NEWS (2.5): Document.
1480 * data/yacc.c (YYBACKUP): Don't bother translating yychar into
1481 yytoken here.
1482 (yyparse, yypush_parse): Instead, translate before every use of
1483 yytoken, and add comments explaining this approach.
1484 * tests/actions.at (Destroying lookahead assigned by semantic
1485 action): New test group checking that translation happens before
1486 lookahead destructor calls at parser return. Previously,
1487 incorrect destructors were called.
1488 * tests/conflicts.at (parse.error=verbose and consistent
1489 errors): New test group checking that translation happens at
1490 syntax error detection before the associated verbose error
1491 message and the associated lookahead destructor calls. While
1492 the destructor call is fixed by this patch, the verbose error
1493 message is currently incorrect due to another bug (see
1494 comments in test group), so this is an expected failure for now.
1495
4395a9ff
JD
14962009-12-21 Joel E. Denny <jdenny@clemson.edu>
1497
1498 YYFAIL: warn about uses and remove from lalr1.java.
1499 * NEWS (2.5): Document.
9d6bc5c4 1500 * data/lalr1.java (YYParser::YYFAIL): Rename to YYERRLAB,
4395a9ff
JD
1501 and make it private. Update all uses.
1502 * src/scan-code.l (SC_RULE_ACTION): Implement warning.
1503
1625df5b
JD
15042009-12-21 Joel E. Denny <jdenny@clemson.edu>
1505
1506 YYFAIL: deprecate.
1507 * NEWS (2.4.2): Document deprecation and the phase-out plan.
9d6bc5c4 1508 * data/lalr1.java (YYParser::YYFAIL): Add comment about
1625df5b
JD
1509 deprecation.
1510 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
1511 YYFAIL from GCC cpp's -Wunused-macros.
1512 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
1513 documentation.
1514 (LocalWords): Remove YYFAIL.
1515
5335b65a
JD
15162009-12-20 Joel E. Denny <jdenny@clemson.edu>
1517
1518 tests: cleanup.
1519 * tests/c++.at (Syntax error discarding no lookahead): Don't
1520 ignore stderr. Instead, eliminate remaining warnings.
1521
d59beda0
JD
15222009-12-18 Joel E. Denny <jdenny@clemson.edu>
1523
1524 lalr1.cc: don't discard non-existent lookahead on syntax error.
9d6bc5c4 1525 * data/lalr1.cc (yy::parser::parse): Check yyempty first.
d59beda0
JD
1526 * tests/c++.at (Syntax error discarding no lookahead): New test
1527 group.
1528
387b4d50
JD
15292009-12-17 Joel E. Denny <jdenny@clemson.edu>
1530
1531 Code cleanup.
1532 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
1533 function, which is no longer used.
1534
a603c6e0
JD
15352009-12-16 Joel E. Denny <jdenny@clemson.edu>
1536
1537 Add gcc's -Wundef to test suite and fix another warning from it.
1538 * NEWS (2.4.2): Update description of -Wundef fix.
1539 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
1540 (WARN_CFLAGS_TEST): New substitution.
1541 * data/glr.c: Avoid warning about __STRICT_ANSI__.
1542 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
1543 WARN_CFLAGS.
1544 (NO_WERROR_CFLAGS): Likewise.
1545 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
1546
19750d31
JD
15472009-12-16 Joel E. Denny <jdenny@clemson.edu>
1548
1549 * data/yacc.c: Reformat m4 a little.
1550
c938d650
JD
15512009-12-16 Joel E. Denny <jdenny@clemson.edu>
1552
1553 Document gcc -Wundef fix.
1554 * NEWS (2.4.2): Here.
1555 * THANKS (Jonathan Nieder): Add.
1556
fcd32abd
JN
15572009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
1558
1559 Simplify y.tab.c when location tracking is disabled.
1560 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
1561 tracking is not enabled. Instead, unconditionally define
1562 YY_LOCATION_PRINT as a no-op for backward compatibility.
1563
ae93128c
JN
15642009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
1565
1566 Avoid warnings from gcc -Wundef y.tab.c.
1567 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
1568 defined before using them.
1569 * data/lalr1.cc: Likewise.
1570 * data/yacc.c: Likewise.
1571
c843aaab
JD
15722009-12-15 Joel E. Denny <jdenny@clemson.edu>
1573
1574 autoconf: update to latest for fix of M4 detection.
1575 Reported by Eric Blake.
1576 * submodules/autoconf: Update.
1577
5c99151a
JD
15782009-12-15 Joel E. Denny <jdenny@clemson.edu>
1579
1580 portability: use -DGNULIB_POSIXCHECK.
1581 Reported by Eric Blake. See discussions at
1582 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
1583 and
1584 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
1585 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
1586 * bootstrap.conf (gnulib_modules): Add all the printf modules
1587 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
1588 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
1589 (excluded_files): Remove m4/printf-posix.m4.
1590 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
1591 lib/libbison.a so gnulib libraries can be linked.
1592
75f94c6d
JD
15932009-12-15 Joel E. Denny <jdenny@clemson.edu>
1594
1595 gnulib: update for fix of fprintf-posix, which we'll use soon.
1596 * etc/prefix-gnulib-mk (prefix): Adjust regex for make file
1597 targets so that gnulib's new arg-nonnull.h and link-warning.h
1598 are matched.
1599 * gnulib: Update.
1600
ca01f454
JD
16012009-12-14 Joel E. Denny <jdenny@clemson.edu>
1602
1603 Enable assertion output and --disable-assert for configure.
1604 * bootstrap.conf (gnulib_modules): Add assert module.
1605 * src/system.h (aver): Define as assert, and summarize the
1606 discussion on this issue.
1607
9dc3ee6d
JD
16082009-12-14 Joel E. Denny <jdenny@clemson.edu>
1609
1610 Expand GLR acronym in summary of Bison.
1611 Based on discussion with Akim Demaille starting at
1612 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
1613 * doc/bison.texinfo (Introduction): Here.
1614 * src/getargs.c (usage): Here.
1615
d013372c
AR
16162009-10-03 Alex Rozenman <rozenman@gmail.com>
1617
1618 Document named references.
1619 * doc/bison.texinfo (Actions): Add new example and xref to
1620 Using Named References node.
1621 (Using Named References): New node.
1622
5297ebb3
JD
16232009-10-16 Joel E. Denny <jdenny@clemson.edu>
1624
1625 cleanup.
1626 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
1627 of char*.
1628 (Sbitset__isEmpty): Use Sbitset instead of char*.
1629 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
1630 instead of char. This helps to avoid casting errors.
1631 (Sbitset__or): Use Sbitset instead of char*.
1632
175620d3
JD
16332009-10-16 Joel E. Denny <jdenny@clemson.edu>
1634
1635 portability: don't assume 8-bit bytes.
1636 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
1637 * src/Sbitset.h (Sbitset__nbytes): Here.
1638 (Sbitset__byteAddress): Here.
1639 (Sbitset__bit_mask): Here.
1640 (Sbitset__last_byte_mask): Here.
1641 (Sbitset__ones): Here.
1642 (SBITSET__FOR_EACH): Here.
1643
786578e3
JD
16442009-10-11 Joel E. Denny <jdenny@clemson.edu>
1645
1646 portability: use va_start and va_end in the same function.
1647 * src/complain.c (error_message): Move va_end from here...
1648 (ERROR_MESSAGE): ... to here.
1649
416a9da6
JD
16502009-10-08 Joel E. Denny <jdenny@clemson.edu>
1651
1652 * data/bison.m4: Update comments for rename to muscle-tab.h.
1653
10659d0e
JD
16542009-10-07 Joel E. Denny <jdenny@clemson.edu>
1655
1656 Minor code cleanup.
1657 * src/muscle-tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
1658 replace all uses with UNIQSTR_CONCAT.
1659 * src/uniqstr.c (uniqstr_vsprintf): New function.
1660 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
1661 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
1662 macros.
1663
3c5362b8
JD
16642009-10-06 Joel E. Denny <jdenny@clemson.edu>
1665
1666 * TODO (Complaint submessage indentation): New.
1667
b143f404
JD
16682009-10-04 Joel E. Denny <jdenny@clemson.edu>
1669
1670 Minor code cleanup.
1671 * src/parse-gram.y: Clean up sorting of declarations.
1672 Use types to simplify %printer declarations where possible.
1673 Provide %printer for BRACKETED_ID and symbol.prec.
1674 * src/symtab.c: Whitespace change.
1675
7439c5c0
JD
16762009-10-04 Joel E. Denny <jdenny@clemson.edu>
1677
1678 tests: skip tests of file names that platform does not support.
1679 Reported by Michael Raskin at
1680 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
1681 * THANKS (Michael Raskin): Add.
1682 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
1683 to fail at least for file names containing ":" or "\".
1684
45319f13
JD
16852009-09-23 Joel E. Denny <jdenny@clemson.edu>
1686
1687 yysyntax_error: avoid duplicate lookahead collection.
1688 Except when memory reallocation is required, this change
1689 eliminates the need to invoke yysyntax_error twice and thus to
1690 repeat the collection of lookaheads. It also prepares for
1691 future extensions that will make those repetitions more
1692 expensive and that will require additional memory management in
1693 yysyntax_error. Finally, it fixes an obscure bug already
1694 exercised in the test suite.
1695 * data/yacc.c (yysyntax_error): Add arguments for message
1696 buffer variables stored in the parser. Instead of size, return
1697 status similar to yyparse status but indicating success of
1698 message creation. Other than the actual reallocation of the
1699 message buffer, import and clean up memory management code
1700 from...
1701 (yyparse, yypush_parse): ... here.
1702 * tests/regression.at (parse.error=verbose overflow): No longer
1703 an expected failure.
1704
52cea04a
JD
17052009-09-23 Joel E. Denny <jdenny@clemson.edu>
1706
1707 yysyntax_error: test memory management more.
1708 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
1709 * tests/regression.at (parse.error=verbose and
1710 YYSTACK_USE_ALLOCA): New test group.
1711 (parse.error=verbose overflow): New test group that reveals an
1712 obscure bug. Expected fail for now.
1713
37318e2f
JD
17142009-10-04 Joel E. Denny <jdenny@clemson.edu>
1715
1716 benchmarks: use %debug consistently among grammars.
1717 * etc/bench.pl.in (generate_grammar_triangular): Do not activate
1718 %debug by default. It can affect the timings even if yydebug=0.
1719 (generate_grammar_calc): For consistency with other grammars,
1720 use YYDEBUG environment variable to set yydebug.
1721
f74d6d25
JD
17222009-10-03 Joel E. Denny <jdenny@clemson.edu>
1723
1724 Remove dead code.
1725 * src/symtab.c (symbol_pack): Here because every symbol's number
1726 is always defined by this time.
1727
5b1ff423
AR
17282009-10-03 Alex Rozenman <rozenman@gmail.com>
1729
1730 Add additional space after periods in NEWS.
1731 * NEWS (2.5): here.
1732
47eced30
JD
17332009-09-29 Joel E. Denny <jdenny@clemson.edu>
1734
1735 Use the correct conversion specifier for size_t.
1736 Reported by Jim Meyering.
1737 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
1738 because Sbitset__Index is size_t.
1739 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
1740
d8f68fc2
JD
17412009-09-27 Joel E. Denny <jdenny@clemson.edu>
1742
1743 tests: don't abuse AT_BISON_CHECK.
1744 * tests/regression.at (parse-gram.y: LALR = IELR): Move
1745 additional shell commands outside of AT_BISON_CHECK.
1746
43aabb70
JD
17472009-09-26 Joel E. Denny <jdenny@clemson.edu>
1748
1749 tests: check that parse-gram.y's IELR and LALR are identical.
1750 * tests/atlocal.in (abs_top_srcdir): New shell variable.
1751 * tests/regression.at (parse-gram.y: LALR = IELR): New test
1752 group.
1753
66381412
AR
17542009-09-19 Alex Rozenman <rozenman@gmail.com>
1755
1756 Keep sub-messages aligned. Fix strings for translation.
5b1ff423
AR
1757 * src/location.h (location_print): Add return value.
1758 * src/location.c (location_print): Return number of printed
66381412 1759 characters.
5b1ff423
AR
1760 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
1761 new functions.
1762 * src/complain.cpp (indent_ptr): New static variable.
1763 (error_message, complain_at_indent, warn_at_indent): Implement
1764 the alignment mechanism.
1765 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
1766 for translations. Use new alignment mechanism.
1767 * tests/named-ref.at: Adjust test-cases.
66381412
AR
1768 * NEWS (2.5): Add an announcement about named references.
1769
a6ca4ce2
AD
17702009-09-17 Akim Demaille <demaille@gostai.com>
1771
1772 doc: fixes.
1773 * doc/bison.texinfo: here.
1774 Reported by Alex Rozenman.
1775
3cdc21cf
AD
17762009-09-16 Akim Demaille <demaille@gostai.com>
1777
1778 doc: lalr1.cc and variants.
1779 * doc/bison.texinfo (Decl Summary): Document the "lex_symbol" and
1780 "variant" %define variables.
1781 (C++ Semantic Values): Split into...
1782 (C++ Unions, C++ Variants): these.
1783 The latter is new.
1784 (C++ Parser Interface): Fix type names.
1785 Document parser::syntax_error.
1786 Document the fact that locations are not mandatory.
1787 (C++ Scanner Interface): Split into...
1788 (Split Symbols, Complete Symbols): these.
1789 The later is new.
1790 (Calc++ Parsing Driver): Use variants.
1791 Add more comments.
1792 Adjust style.
1793 (Calc++ Parser): Declare all the tokens, no
1794 longer accept raw characters.
1795 Remove %union.
1796 Adjust types and printers.
1797 Remove destructors.
1798 (Calc++ Scanner): Use make_<SYMBOL> functions.
1799 Use strerror in error message.
1800
f50bfcd6
AD
18012009-09-16 Akim Demaille <demaille@gostai.com>
1802
1803 doc: spell checking.
1804 * doc/bison.texinfo: here.
1805
6b5a0de9
AD
18062009-09-16 Akim Demaille <demaille@gostai.com>
1807
1808 doc: comment changes.
1809 * doc/bison.texinfo: Comment changes.
1810
2b08bceb
AD
18112009-09-16 Akim Demaille <demaille@gostai.com>
1812
1813 lalr1.cc: factor the yytranslate_ invocation in make_SYMBOLS.
1814 * data/c++.m4, data/lalr1.cc (parser::symbol_type): Change the
1815 constructor to take a token_type instead of the (internal) symbol
1816 number.
1817 Call yytranslate_.
1818 * data/variant.hh (b4_symbol_constructor_define_): Therefore,
1819 don't call yytranslate_ here.
1820
c981ce9b
AD
18212009-09-16 Akim Demaille <demaille@gostai.com>
1822
1823 TODO: statistics.
1824 * TODO (Figures): New.
1825
00d80a9c
JD
18262009-09-13 Joel E. Denny <jdenny@clemson.edu>
1827
1828 tests: clean up push.at test group titles.
1829 * tests/push.at: Remove "Push Parsing: " from test group titles
1830 because these are already under the banner "Push Parsing Tests".
1831
f64e406b
AR
18322009-09-12 Alex Rozenman <rozenman@gmail.com>
1833
1834 Provide an additional sub-message for clarity.
1835 Add "symbol not found in production" error message when
1836 an "invalid reference" is detected in named references
1837 resolution.
1838 * src/scan-code.l: Update "invalid reference" case.
1839 * tests/named-ref.at: Adjust test-cases.
1840
bb31eb56
JD
18412009-09-10 Joel E. Denny <jdenny@clemson.edu>
1842
1843 Clean up yacc.c a little.
1844 * data/yacc.c: Clean up M4 for readability, and make output
1845 whitespace more consistent. For the main parse function
1846 comment, instead of saying "yyparse or yypush_parse", say either
1847 "yyparse" or "yypush_parse" depending on which it actually is.
1848
2d399888
JD
18492009-09-10 Joel E. Denny <jdenny@clemson.edu>
1850
1851 Fix --enable-gcc-warnings.
1852 * src/parse-gram.y (%printer <param>): Handle param_none.
1853
ff601366
AD
18542009-09-09 Akim Demaille <demaille@gostai.com>
1855
1856 lalr1.cc: syntax_error as exceptions.
1857 It is common to use sort of factories in the user actions. These
1858 factories may check some "syntactic" constraints that are not
1859 enforced by the grammar itself. This is possible using YYERROR
1860 within the action itself. Provide the user with a means to throw
1861 a syntax_error exception.
1862
1863 * data/c++.m4 (b4_public_types_declare, b4_public_types_define):
1864 Declare and define yy::parser::syntax_error.
1865 * data/lalr1.cc: Include stdexcept.
1866 (yy::parser::parse): Wrap the user action within a try/catch.
1867 * data/glr.cc: Include stdexcept.
1868
29660062
AD
18692009-09-09 Akim Demaille <demaille@gostai.com>
1870
1871 lalr1.cc: add missing "inline".
1872 * data/c++.m4 (b4_public_types_define): Add missing inline to
1873 implementations provided in headers.
1874
2055a44e
AD
18752009-09-09 Akim Demaille <demaille@gostai.com>
1876
1877 %param: documentation.
1878 * NEWS (2.6): Document %param, %lex-param, and %parse-param
1879 changes.
1880 * doc/bison.texinfo: Document that %lex-param and %parse-param
1881 are n-ary.
1882 Changes some examples to demonstrate it.
1883 (Calc++ Parser): Use %param.
1884
dd875058
AD
18852009-09-09 Akim Demaille <demaille@gostai.com>
1886
1887 Regen.
1888
f71db70b
AD
18892009-09-09 Akim Demaille <demaille@gostai.com>
1890
1891 style changes.
1892 * src/parse-gram.y (add_param): Scope changes.
1893
eaca4c11
AD
18942009-09-09 Akim Demaille <demaille@gostai.com>
1895
1896 %parse: support several arguments.
1897 * src/parse-gram.y (current_param): New.
1898 (param_type): Add param_none.
1899 (params): New nonterminal.
1900 Use it.
1901
b18cdd91
AD
19022009-09-09 Akim Demaille <demaille@gostai.com>
1903
1904 Regen.
1905
a7706735
AD
19062009-09-09 Akim Demaille <demaille@gostai.com>
1907
1908 %param.
1909 Provide a means to factor lex-param and parse-param common
1910 declarations.
1911
1912 * src/parse-gram.y (param_type): New.
1913 Define a %printer for it.
1914 (add_param): Use it.
1915 (%parse-param, %lex-param): Merge into...
1916 (%parse): this new token.
1917 Adjust the grammar to use it.
1918 * src/scan-gram.l (RETURN_VALUE): New.
1919 (RETURN_PERCENT_FLAG): Use it.
1920 (RETURN_PERCENT_PARAM): New.
1921 Use it to support %parse-param, %lex-param and %param.
1922
9789acf0
JD
19232009-09-03 Joel E. Denny <jdenny@clemson.edu>
1924
1925 Use aver not assert.
1926 * src/output.c: Don't include assert.h.
1927 (output_skeleton): Use aver not assert.
1928 * src/system.h (aver): In documentation of why, add links to
1929 Paul Eggert's explanations in the mailing lists.
1930
61bc57e5
AR
19312009-09-05 Alex Rozenman <rozenman@gmail.com>
1932
1933 Use "Unresolved reference" error message when no symbols were found
1934 in a symbolic reference resolution. Remove .expr and -expr from
1935 the shown reference when the reference is unresolved.
1936 * src/scan-code.l: Change the error message, adjust location columns,
1937 rename variable "exact_mode" to "explicit_bracketing".
1938 * tests/named-ref.at: Adjust existing tests and add a new one.
1939
f4c75eaf
AD
19402009-09-04 Akim Demaille <demaille@gostai.com>
1941
1942 Adjust synclines in src/parse-gram.[ch].
1943 * tests/bison.in: Do some magic (including working around issues
1944 with ylwrap) when this wrapper is used to compile
1945 src/parse-gram.y.
1946
c6abeab1
JD
19472009-09-03 Joel E. Denny <jdenny@clemson.edu>
1948
1949 Complain about unused %define variables and %code qualifiers.
1950 * NEWS (2.5): Document.
1951 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
1952 * doc/bison.texinfo (Decl Summary): Document complaint, and
1953 improve %define documentation a little otherwise.
1954 * tests/input.at (Reject unused %code qualifiers): Update.
1955 (%define errors): Update.
1956 (%define, --define, --force-define): Update.
1957 (%define backward compatibility): Update.
1958 (Unused %define api.pure): Update.
1959 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
1960
82db7cdb
JD
19612009-09-03 Joel E. Denny <jdenny@clemson.edu>
1962
1963 Don't suppress warnings about unused parse.error.
1964 * data/bison.m4 (b4_error_verbose_flag): Don't examine value of
1965 %define variable parse.error unless b4_error_verbose_flag is
1966 actually expanded in a skeleton.
1967
2755de8f
AD
19682009-09-03 Akim Demaille <demaille@gostai.com>
1969
1970 * NEWS (2.4.2): Add "Internationalization" item.
1971
1deef26d
AD
19722009-09-03 Akim Demaille <demaille@gostai.com>
1973
1974 bootstrap: fix/improve find_tool.
1975 * bootstrap (find_tool): Improve error messages.
1976 Fix typo about find_tool_names.
1977
2646cd54
JD
19782009-08-29 Joel E. Denny <jdenny@clemson.edu>
1979
1980 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
1981 See
1982 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
1983 * src/scan-code.h (code_props_rule_action_init): Rename
1984 named_ref arg to name so it doesn't shadow named_ref type. This
1985 makes it consistent with the function definition in scan-code.l
1986 anyway.
1987
cf499cff
JD
19882009-08-28 Joel E. Denny <jdenny@clemson.edu>
1989
1990 %define: accept unquoted values.
1991 * NEWS (2.5): Group all %define changes together, and document
1992 this one. Remove quotes in IELR and canonical LR entry.
1993 * doc/bison.texinfo: Remove quotes in most examples throughout.
1994 (Decl Summary): Update %define documentation.
1995 (Table of Symbols): Likewise.
1996 * src/ielr.c (LrType): Update documentation.
1997 * src/parse-gram.y (content.opt): Add production for ID.
1998 * tests/actions.at: Remove quotes in most tests.
1999 * tests/calc.at: Likewise.
2000 * tests/existing.at: Likewise.
2001 * tests/input.at: Likewise.
2002 * tests/local.at: Likewise.
2003 * tests/push.at: Likewise.
2004 * tests/reduce.at: Likewise.
2005 * tests/torture.at: Likewise.
2006
6ba96404
JD
20072009-08-28 Joel E. Denny <jdenny@clemson.edu>
2008
2009 %define lr.type: make values lowercase IDs.
2010 That is, "LALR" => "lalr", "IELR" => "ielr", and
2011 "canonical LR" => "canonical-lr".
2012 * NEWS (2.5): Update documentation.
2013 * doc/bison.texinfo (Decl Summary): Likewise.
2014 * src/ielr.c (ielr): Use new values.
2015 * src/ielr.h (ielr): Update documentation.
2016 * src/reader.c (prepare_percent_define_front_end_variables): Use
2017 and validate new values.
2018 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
2019 grammars.
2020 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
2021
4413bbd3
EB
20222009-08-27 Eric Blake <ebb9@byu.net>
2023
2024 scan-gram: avoid portability trap with ctype usage.
2025 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
2026 Avoid compiler warning.
2027
b70c7fb4
JD
20282009-08-27 Joel E. Denny <jdenny@clemson.edu>
2029
2030 tests: use perl for printing special sequences to files.
2031 And skip tests if perl is not available. This is better than
2032 playing tricks with shell portability. Suggested by Akim
2033 Demaille.
2034 * tests/input.at (Bad character literals): Use it here for
2035 omitting final newlines.
2036 (Bad escapes in literals): Use it here for special characters.
2037
d1cc31c5
JD
20382009-08-26 Joel E. Denny <jdenny@clemson.edu>
2039
2040 tests: show a use of %define lr.default-reductions "consistent"
2041 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
2042 prevents the omission of expected tokens for %error-verbose.
2043
3bed3a75
AD
20442009-08-26 Akim Demaille <demaille@gostai.com>
2045
2046 tests: portability fix.
2047 * tests/input.at (Bad escapes in literals): Don't expect "echo
2048 '\0'" to output \ then 0.
2049
aa0cb40d
JD
20502009-08-26 Joel E. Denny <jdenny@clemson.edu>
2051
2052 Actually handle the yytable zero value correctly this time.
2053 * data/bison.m4 (b4_integral_parser_tables_map): Don't mention
2054 zero values in the YYTABLE comments.
2055 * data/glr.c (yytable_value_is_error): Don't check for zero
2056 value.
2057 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
2058 * data/yacc.c (yytable_value_is_error): Likewise.
2059 * data/lalr1.java (yy_table_value_is_error_): Likewise.
2060 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
2061 * src/tables.h: In header comments, explain why it's useless to
2062 check for a zero value in yytable.
2063
f2b30bdf
JD
20642009-08-25 Joel E. Denny <jdenny@clemson.edu>
2065
2066 More fixes related to last two patches.
2067 * data/bison.m4 (b4_integral_parser_tables_map): Fix YYTABLE
2068 comments: zero indicates syntax error not default action.
2069 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
2070 defined.
2071 * data/glr.c (yyis_pact_ninf): Rename to...
2072 (yypact_value_is_default): ... this.
2073 (yyisDefaultedState): Update for rename.
2074 (yyis_table_ninf): Rename to...
2075 (yytable_value_is_error): ... this, and check for value zero
2076 besides just YYTABLE_NINF.
2077 (yygetLRActions): Check for default value from yypact. It
2078 appears that this check is always performed before this function
2079 is invoked, and so adding the check here is probably redundant.
2080 However, the code may evolve after this subtlety is forgotten.
2081 Also, update for rename to yytable_value_is_error. Because that
2082 macro now checks for zero, a different but equivalent branch of
2083 the if-then-else here is evaluated.
2084 (yyreportSyntaxError): Update for rename to
2085 yytable_value_is_error. The zero condition was mishandled
2086 before.
2087 (yyrecoverSyntaxError): Update for renames. No behavioral
2088 changes.
2089 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
2090 New function.
2091 (yy_table_value_is_error_): New function.
2092 (parse): Use new functions where possible. No behavioral
2093 changes.
2094 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
2095 The zero condition was mishandled before.
2096 * data/yacc.c (yyis_pact_ninf): Rename to...
2097 (yypact_value_is_default): ... this.
2098 (yyis_table_ninf): Rename to...
2099 (yytable_value_is_error): ... this, and check for value zero
2100 besides just YYTABLE_NINF.
2101 (yysyntax_error): Update for rename to yytable_value_is_error.
2102 The zero condition was mishandled before.
2103 (yyparse): Update for renames. No behavioral changes.
2104 * src/tables.h: Improve comments about yypact, yytable, etc.
2105 more. Most importantly, say yytable value of zero means syntax
2106 error not default action.
2107
53f036ce
JD
21082009-08-25 Joel E. Denny <jdenny@clemson.edu>
2109
2110 Fix %error-verbose for conflicts resolved by %nonassoc.
2111 * NEWS (2.5): Document.
2112 * data/glr.c (yyreportSyntaxError): Fix this by checking
2113 yyis_table_ninf.
2114 * data/yacc.c (yysyntax_error): Likewise.
2115 * data/lalr1.cc (yysyntax_error_): Fix this by checking
2116 yytable_ninf_.
2117 * data/lalr1.java (yysyntax_error): Likewise.
2118 * tests/conflicts.at (%nonassoc and eof): Update expected output
2119 and remove FIXME.
2120
87412882
JD
21212009-08-25 Joel E. Denny <jdenny@clemson.edu>
2122
2123 Some code and documentation improvements.
2124 * data/c.m4 (b4_table_value_equals): New macro to capture
2125 some repeated code.
2126 * data/glr.c (yyis_pact_ninf): Use it here.
2127 (yyis_table_ninf): Likewise.
2128 (yyreportSyntaxError): Improve internal comments.
2129 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
2130 Use it everywhere possible.
2131 (yyis_table_ninf): Likewise.
2132 (yysyntax_error): Improve internal comments.
2133 * data/lalr1.cc (yysyntax_error_): Likewise.
2134 * data/lalr1.java (yysyntax_error): Likewise.
2135 * src/tables.h: Improve comments about yypact, yytable, etc.
2136
e6c849d8
JD
21372009-08-21 Joel E. Denny <jdenny@clemson.edu>
2138
2139 Use locale when quoting.
2140 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
2141 quote rather than implementing quoting here.
2142
d8911864
EB
21432009-08-20 Eric Blake <ebb9@byu.net>
2144
b0778bdd
EB
2145 Make previous patch more robust.
2146 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
2147 argmatch.h.
2148 (output_skeleton): Use it.
2149 Suggested by Akim Demaille.
2150
d8911864
EB
2151 Import latest m4/m4.m4.
2152 * submodules/autoconf: Update to autoconf 2.64.
2153 * configure.ac (M4_GNU_OPTION): New define.
2154 * src/output.c (output_skeleton): Use it to resolve FIXME.
2155 * NEWS: Mention this.
2156
c2724603
JD
21572009-08-19 Joel E. Denny <jdenny@clemson.edu>
2158
2159 Fix complaints about escape sequences.
2160 Discussed starting at
2161 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
2162 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
2163 For a \0 and similar escape sequences meaning the null
2164 character, report an invalid escape sequence instead of an
2165 invalid null character because the latter does not actually
2166 appear in the user's input.
2167 In all escape sequence complaints, don't escape the initial
2168 backslash, and don't quote when the sequence appears at the end
2169 of the complaint line unless there's whitespace that quotearg
2170 won't escape.
2171 Consistently say "invalid" not "unrecognized".
2172 Consistently prefer "empty character literal" over "extra
2173 characters in character literal" warning for invalid escape
2174 sequences; that is, consistently discard those sequences.
2175 * tests/input.at (Bad escapes in literals): New.
2176
17aed602
AD
21772009-08-19 Akim Demaille <demaille@gostai.com>
2178
2179 doc: fixes.
2180 * doc/bison.texinfo: Fix minor Texinfo errors.
2181
9142239a
AD
21822009-08-19 Akim Demaille <demaille@gostai.com>
2183
2184 tests: distcc compliance.
2185 * tests/synclines.at (AT_SYNCLINES_COMPILE): Discard distcc's
2186 error messages from the output.
2187
171ad99d
AD
21882009-08-19 Akim Demaille <demaille@gostai.com>
2189
2190 variables: simplify the upgrade of namespace into api.namespace.
2191
2192 This patch simplifies "variables: rename namespace as
2193 api.namespace", commit 67501061076ba46355cfd9f9361c7eed861b389c.
2194 Suggested by Joel E. Denny in
2195 http://lists.gnu.org/archive/html/bison-patches/2009-07/msg00006.html
2196
2197 * src/muscle-tab.c (muscle_percent_variable_update): New.
2198 (muscle_percent_define_insert): Use it in replacement of the
2199 previous tr invocation.
2200 Remove variable_tr, no longer needed.
2201 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
2202 Remove.
2203 * data/c++.m4: No longer handle namespace -> api.namespace.
2204 * tests/input.at (%define backward compatibility): Check that
2205 namespace is treated as api.namespace.
2206
d59e456d
AD
22072009-08-19 Akim Demaille <demaille@gostai.com>
2208
2209 doc: %initial-action to initialize yylloc.
2210 Reported by Bill Allombert.
2211 * doc/bison.texinfo: Set fill-column to 76.
2212 (Location Type): Document the use of %initial-action to initialize
2213 yylloc.
2214
ceb8b8e6
AD
22152009-08-19 Akim Demaille <demaille@gostai.com>
2216
2217 lalr1.cc: use state_type.
2218 * data/lalr1.cc (yysyntax_error_): Use state_type.
2219 Move argument names into yy*.
2220
7580c379
AD
22212009-08-19 Akim Demaille <demaille@gostai.com>
2222
2223 lalr1.cc: get rid of yyparse's yystate.
2224 yystate and yystack_[0].state are equal, keep only the latter.
2225 The former was also used as a temporary variable to compute the
2226 post-reduction state. Move this computation into an auxiliary
2227 function.
2228
2229 * data/glr.c (yyLRgotoState): Fuse variable definition and first
2230 assignment.
2231 * data/lalr1.cc (yy_lr_goto_state_): New.
2232 (yyparse): Use it.
2233 Replace remaining uses of yystate by yystate_[0].state.
2234 Remove the former.
2235
c4dc4c46
AD
22362009-08-19 Akim Demaille <demaille@gostai.com>
2237
2238 lalr1.cc: destroy $$ when YYERROR is called.
2239 * data/lalr1.cc (yyreduce): Compute the resulting state before
2240 running the user action so that yylhs is a valid symbol.
2241 (yyerrorlab): Since yylhs is complete (it knows its type), we can
2242 simply call yy_destroy_ to destroy $$ on YYERROR invocations.
2243 * tests/c++.at (AT_CHECK_VARIANTS): Test YYERROR with variants.
2244
c67e466f
JD
22452009-08-18 Joel E. Denny <jdenny@clemson.edu>
2246
2247 maint: update for gnulib's recent update-copyright changes
2248 * gnulib: Update.
2249 * .x-update-copyright (COPYING): Add as it's no longer implied
2250 when .x-update-copyright is present.
2251 * cfg.mk (update-copyright-local): Remove, now ignored.
2252 (update-copyright): Declare update-b4-copyright as a dependency.
2253
af6d2358
AD
22542009-08-17 Akim Demaille <demaille@gostai.com>
2255
2256 build: require gettext 0.17.
2257
2258 Suggested by Bruno Haible.
2259 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
2260 * configure.ac: require gettext 0.17 to ensure compatibility with
2261 gnulib.
2262
91a2b9b1
AD
22632009-08-17 Akim Demaille <demaille@gostai.com>
2264
2265 build: lower gettext requirements.
2266
2267 Bison was uselessly requiring the formatstring macros from
2268 gettext, which resulted in mo files not being installed on systems
2269 that perfectly supported Bison mo files. Lower the requirement.
2270 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
2271
b0778bdd
EB
2272 * configure.ac: Require need-ngettext instead of
2273 need-formatstring-macros.
2274 Reported by Martin Jabocs.
2275 Suggested by Bruno Haible.
2276 * INSTALL: Restructure.
2277 (Internationalization): New.
91a2b9b1 2278
585935e8
JD
22792009-08-14 Joel E. Denny <jdenny@clemson.edu>
2280
2281 maint: fix use of copyright year intervals.
2282 * gnulib: Update.
2283 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
2284 as now recommended in gnulib/NEWS.
2285 * build-aux/update-b4-copyright: Fix.
2286 * cfg.mk (update-copyright-env): Configure update-copyright.
2287
83b60c97
JD
22882009-08-13 Joel E. Denny <jdenny@clemson.edu>
2289
2290 Make it easier to write deterministic tests.
2291 Continues Akim's work from his 2009-06-10 commits.
2292 * src/reader.c (check_and_convert_grammar): Don't add any
2293 symbols after the first symbols_do invocation.
2294 * src/symtab.c (symbols_sorted): New static global.
2295 (user_token_number_redeclaration): Update comments.
2296 (symbol_from_uniqstr): If a new symbol is being created, assert
2297 that symbols_sorted hasn't been allocated yet.
2298 (symbols_free): Free symbols_sorted.
2299 (symbols_cmp, symbols_cmp_qsort): New functions.
2300 (symbols_do): Sort symbol_table into symbols_sorted on first
2301 invocation.
2302 * tests/input.at (Numbered tokens): Recombine tests now that the
2303 output should be deterministic across multiple numbers.
2304
28169bab
AD
23052009-08-12 Akim Demaille <demaille@gostai.com>
2306
2307 tests: GCC 4.5 compliance.
2308 * tests/synclines.at (AT_SYNCLINES_COMPILE): Adjust to GCC 4.5's
2309 messages about #error.
2310
9f14e187
AD
23112009-08-12 Akim Demaille <demaille@gostai.com>
2312
2313 build: fix the generation of the documentation.
2314 Some of our targets use "bison --help", but they can't depend on
2315 "bison" itself (to avoid additional requirements on the user), so
2316 they used to call "make src/bison" in the commands. Then
2317 concurrent builds may fail: one make might be aiming one of its
2318 jobs at compiling src/bison, and another job at generating the man
2319 page. If the latter is faster than the former, then we have two
2320 makes that concurrently try to compile src/bison.
2321
2322 This might also be a more convincing explanation for the failure
2323 described in the patch "build: fix paths".
2324
2325 * Makefile.am (SUFFIXES): Initialize.
2326 * build-aux/move-if-change: New, symlink to gnulib's.
2327 * build-aux/local.mk: Ship it.
2328 * doc/common.x: Remove, merged into...
2329 * doc/bison.x: here.
2330 * doc/local.mk (doc/bison.help): New.
2331 ($(CROSS_OPTIONS_TEXI)): Depend on it.
2332 Use src/bison.
2333 (.x.1): Replace with...
2334 (doc/bison.1): this explicit, simpler, target.
2335 (common_dep): Remove, inlined where appropriate.
2336 (SUFFIXES, PREPATH): Remove, unused.
2337
d1b55e81
AD
23382009-08-12 Akim Demaille <demaille@gostai.com>
2339
2340 gnulib: improve prefixing.
2341 * configure.ac (gl_PREFIXED_LIBOBJS): Don't rename it, rather,
2342 change the value of...
2343 (gl_LIBOBJS): this.
2344 Adjust more variables.
2345 * etc/prefix-gnulib-mk (prefix_assignment): Don't rename
2346 gl_LIBOBJS.
2347 (prefix): Also transform rules whose targets have slashes.
2348 Use $prefix liberally.
2349 Map @MKDIR_P@ to $(MKDIR_P).
2350 Prefix directories that are mkdir'd.
2351
838205d5
AD
23522009-08-12 Akim Demaille <demaille@gostai.com>
2353
2354 build: fix paths.
2355 When using $(top_builddir) inconsistently, Make (including GNU
2356 Make) is sometimes confused. As a result it may want to build
2357 lib/libbison.la and $(top_builddir)/lib/libbison.la (the same
2358 file, different names) concurrently, which, amusingly enough,
2359 might end with:
2360
2361 ranlib lib/libbison.a
2362 ranlib lib/libbison.a
2363 make[2]: *** [lib/libbison.a] Segmentation fault
2364
2365 on OS X.
2366
2367 * doc/local.mk, src/local.mk: Do not use $(top_builddir) when not
2368 needed.
2369
67af7198
AD
23702009-08-12 Akim Demaille <demaille@gostai.com>
2371
2372 distcheck: fix.
2373
b0778bdd 2374 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
67af7198 2375
c467dc42
JD
23762009-08-10 Joel E. Denny <jdenny@clemson.edu>
2377
2378 * tests/local.mk (TESTSUITE_AT): Add named-refs.at.
2379
dfaa4860
JD
23802009-08-10 Joel E. Denny <jdenny@clemson.edu>
2381
2382 Miscellaneous code readability improvements.
2383
2384 * src/reader.c (reader): Move %define front-end variable
2385 defaults and checking into...
2386 (prepare_percent_define_front_end_variables): ... this new
2387 function.
2388
2389 * src/scan-gram.l (INITIAL): For consistency with string
2390 literals, don't store open quote on character literal. It's
2391 discarded before returning anyway.
2392 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
2393 Make length test more readable, and make the character stored
2394 for an empty literal more obvious while consistent with the
2395 previous behavior.
2396
2397 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
2398 USER_NUMBER_HAS_STRING_ALIAS throughout.
2399 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
2400 that is repeated in symtab.h. Improve argument names to make it
2401 clear which side of the symbol-string alias pair is which.
2402 (symbol_check_alias_consistency): Improve local variable names
2403 for the same purpose.
2404 * src/symtab.h (struct symbol): Make comments about aliases
2405 clearer.
2406 (symbol_make_alias): Improve comments and argument name.
2407 * src/output.c (token_definitions_output): Update for rename to
2408 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
2409
ce268795
AR
24102009-08-08 Alex Rozenman <rozenman@gmail.com>
2411
2412 Convert "misleading reference" messages to warnings.
2413 * src/scan-code.l: New function 'show_sub_messages', more
2414 factoring.
2415 * tests/named-ref.at: Adjust tests.
2416
401b73af
JD
24172009-08-06 Joel E. Denny <jdenny@clemson.edu>
2418
2419 maint: run "make update-copyright"
2420
a1a9422d
JD
24212009-08-06 Joel E. Denny <jdenny@clemson.edu>
2422
2423 maint: make update-b4-copyright easier to use
2424 * build-aux/update-b4-copyright: In warnings, report line
2425 numbers rather than character positions.
2426 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
2427 that update-copyright runs it.
2428 * gnulib: Update.
2429
0b61a8ec
JD
24302009-08-05 Joel E. Denny <jdenny@clemson.edu>
2431
2432 maint: clean up update-b4-copyright code
2433 * build-aux/update-b4-copyright: Do not accept 2-digit
2434 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
2435 Don't accept a `[' in a b4_copyright argument.
2436 Format code more consistently.
2437 Don't assume b4*copyright never occurs.
2438
269e222e
JD
24392009-08-04 Joel E. Denny <jdenny@clemson.edu>
2440
2441 maint: automate b4_copyright updates.
2442 * Makefile.am (update-b4-copyright): New target rule.
2443 * build-aux/local.mk (EXTRA_DIST): Add update-b4-copyright.
2444 * build-aux/update-b4-copyright: New.
2445 * data/yacc.c: Remove stray characters around b4_copyright
2446 invocations.
2447
35905f2b
JD
24482009-08-04 Joel E. Denny <jdenny@clemson.edu>
2449
2450 maint: automate annual package-wide copyright-year update.
2451 * .x-update-copyright: New.
2452 * Makefile.am (EXTRA_DIST): Remove maint.mk.
2453 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
2454 update-copyright. Remove gnumakefile, which is implied by
2455 maintainer-makefile.
2456 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
2457 * gnulib: Update.
2458 * maint.mk: Remove, now copied from gnulib.
2459 * examples/extexi: Add missing "(C)" in copyright statement so
2460 update-copyright can recognize it.
2461 * src/LR0.h: Likewise.
2462 * src/print.h: Likewise.
2463 * src/print_graph.h: Likewise.
2464 * src/gram.c: Add missing comma in copyright statement.
2465 * src/gram.h: Likewise.
2466
b30e18dc
JD
24672009-08-04 Joel E. Denny <jdenny@clemson.edu>
2468
2469 Fix "make distcheck".
2470 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
2471 of just calc.stamp.
2472
8d90395d
JD
24732009-08-01 Joel E. Denny <jdenny@clemson.edu>
2474
2475 Pacify "gcc -Wunused" for the input function from Flex.
2476 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
2477 and later.
2478 * src/scan-code.l: Add "%option noinput", which I cannot find in
2479 the Flex manual, but which Flex has supported since at least as
2480 far back as 2.5.4. However, if any of our developers still use
2481 Flex 2.5.4, they'll need to stop configuring with
2482 --enable-gcc-warnings because "%option noinput" didn't work
2483 correctly until Flex 2.5.6.
2484 * src/scan-gram.l: Likewise.
2485 * src/scan-skel.l: Likewise.
2486
ba4184ec
AR
24872009-07-31 Alex Rozenman <rozenman@gmail.com>
2488
2489 Fix --enable-gcc-warnings problems.
2490 * src/reader.c: Adjust variable names.
2491 * src/scan-code.l: Fix prototypes and adjust names.
2492 * src/named-ref.c: Remove redundant "if".
2493
91a2af97
JD
24942009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
2495
2496 Fix a --enable-gcc-warnings problem.
2497 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
2498 variable.
2499
3208e3f4
JD
25002009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
2501
2502 Warn about character literals not of length one.
2503 * NEWS (2.5): Document.
2504 * src/scan-gram.l (INITIAL): Remove comment that we don't check
2505 the length.
2506 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
2507 * tests/input.at (Bad character literals): New test group.
2508
5add20ab 25092009-07-24 Alex Rozenman <rozenman@gmail.com>
13cdf208
AR
2510
2511 Fix some memory leaks.
2512 * src/named-ref.c: Add a pointer check (named_ref_free).
2513 * src/scan-code.l: New function (variant_table_free). Called in
2514 code_scanner_free.
2515 * src/symlist.c: Call to named_ref_free (symbol_list_free).
2516
e459fb0e
JD
25172009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
2518
2519 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
2520
c4be5517
JD
25212009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
2522
2523 Some M4 cleanup in the testsuite.
2524 Suggested by Eric Blake at
2525 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
2526 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
2527 complicate the code by distinguishing between a missing value
2528 and an empty string value for an optional argument. This fix is
2529 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
2530 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
2531 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
2532 arguments are not needed because of the following changes.
2533 Fix stale comments.
2534 Bison developers should use GNU M4 and should not use
2535 POSIXLY_CORRECT when building the test suite, so do not
2536 complicate the code by avoiding $10 and above.
2537 Do not quote an empty string value for an optional argument, and
2538 do not distinguish between a missing value and an empty string
2539 value.
2540
feeb56cd
JD
25412009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
2542
2543 Revert unnecessary column realignment in --help output.
2544 Reported by Akim Demaille at
2545 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
2546 * src/getargs.c (usage): Here.
2547
5add20ab 25482009-07-04 Alex Rozenman <rozenman@gmail.com>
629e4def
AR
2549
2550 Alphabetical order in src/local.mk.
2551 * src/local.mk: Adjust.
2552
5add20ab 25532009-07-04 Alex Rozenman <rozenman@gmail.com>
872b52bc
AR
2554
2555 Style changes and factoring.
2556 * src/named-ref.h: Add comments.
2557 * src/parse-gram.y: Readability and style changes.
2558 * src/reader.c: Factoring: assign_named_ref function.
2559 * src/scan-code.l: Factoring and style changes. Rename
2560 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
2561 Use "unsigned" type for variant index. Improve readablity.
2562 * src/scan-gram.l: Change error messages and add comments.
2563 * src/symlist.h: symbol_list_null: New function decl.
2564 * src/symlist.c: symbol_list_null: Implement here.
2565 * tests/named-refs.at: Adjust for new error messages.
2566
83ea2423
EB
25672009-06-29 Eric Blake <ebb9@byu.net>
2568
2569 scan-code: avoid compiler warnings
2570 * src/scan-code.l (parse_named_ref): Use correct specifiers.
2571
5ece73ea
AD
25722009-06-29 Akim Demaille <demaille@gostai.com>
2573
2574 build: avoid concurrent extraction of calc++.
2575 * examples/calc++/Makefile.am (calc.stamp): New.
2576 Depend on it to create the sources of calc++ so that concurrent
2577 builds don't launch several "extexi" in parallel.
2578 Not only this is inefficient, this also builds incorrect sources
2579 with several extractions mixed together.
2580
ad597a78
AD
25812009-06-29 Akim Demaille <demaille@gostai.com>
2582
2583 parse.error: fix.
2584 * data/bison.m4: Move code related to specific variables after the
2585 definition of the variable-maintaining macros so that we don't
2586 "invoke" b4_percent_define_check_values before it is defined.
2587
31b850d2
AD
25882009-06-29 Akim Demaille <demaille@gostai.com>
2589
2590 variables: parse.error
2591
2592 Implement, document, and test the replacement of %error-verbose
2593 by %define parse.error "verbose".
2594 * data/bison.m4 (b4_error_verbose_if): Reimplement to track the
2595 values of the parse.error variable.
2596 Make "simple" its default value.
2597 Check the valid values.
2598 * src/parse-gram.y: Use %define parse.error.
2599 (PERCENT_ERROR_VERBOSE): New token.
2600 Support it.
2601 * src/scan-gram.l: Support %error-verbose.
2602
2603 * doc/bison.texinfo (Decl Summary): Replace the documentation of
2604 %define error-verbose by that of %define parse.error.
2605 * NEWS: Document it.
2606
2607 * tests/actions.at, tests/calc.at: Use parse.error instead of
2608 %error-verbose.
2609
b9f1d9a4
AR
26102009-06-27 Alex Rozenman <rozenman@gmail.com>
2611
2612 Implement support for named symbol references.
2613 * src/parse-gram.y: Add new syntax (named_ref.opt).
2614 * src/reader.c: Store named refs in symbol lists.
2615 * src/reader.h: New argument for symbol_append and
2616 action_append functions.
2617 * src/scan-code.h: Add new field (named_ref) into
2618 code_props data structure. Keeps named ref of midrule
2619 actions.
2620 * src/scan-code.l: Support for named refs in semantic
2621 action code. New function 'parse_named_ref'.
2622 * src/scan-gram.l: Support bracketed id.
2623 * src/symlist.c: Store named refs in symbol lists.
2624 * src/symlist.h: New field in symbol list: named_ref.
2625 * src/named-ref.h: New file, a struct for named_ref.
2626 * src/named-ref.cp: New file, named_ref_new function.
2627 * src/local.mk: Add two new files.
2628 * tests/testsuite.at: Include new test group:
2629 * tests/named-refs.at: this new file.
2630
b5c212b6
AD
26312009-06-25 Akim Demaille <demaille@gostai.com>
2632
2633 hash: check insertion for memory exhaustion.
2634 * src/uniqstr.c (uniqstr_new): New.
2635
67501061
AD
26362009-06-24 Akim Demaille <demaille@gostai.com>
2637
2638 variables: rename namespace as api.namespace.
2639 Discussed in
2640 http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00033.html
2641
2642 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
2643 New.
2644 (b4_percent_define_use): New.
2645 Use it where applicable.
2646 * data/c++.m4: Replace uses of the variable "namespace" by
2647 "api.namespace".
2648 Default the latter to the former.
2649 * doc/bison.texinfo (Decl Summary): Document "namespace" as
2650 obsolete.
2651 Document api.namespace.
2652 Use @samp to document %define uses, keep @code for identifiers.
2653 * NEWS: Likewise.
2654 * tests/c++.at, tests/input.at: Test api.namespace instead of
2655 namespace. (The tests passed with namespace.)
2656
41976786
AD
26572009-06-11 Akim Demaille <demaille@gostai.com>
2658
2659 style changes.
2660 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
2661 * src/print-xml.c: Style changes.
2662 * tests/conflicts.at: Comment changes.
2663
44bb9084
AD
26642009-06-11 Akim Demaille <demaille@gostai.com>
2665
2666 xml: beware of user strings used to give a %prec to rules.
2667 * tests/conflicts.at (%prec with user strings): New.
2668 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
2669 XML output.
2670
04d1e39d
AD
26712009-06-11 Akim Demaille <demaille@gostai.com>
2672
2673 hash: check insertion for memory exhaustion.
2674 * src/muscle-tab.c (muscle_insert, muscle_grow)
2675 * src/state.c (state_hash_insert): Check the return value of
2676 hash_insert.
2677
a8873669
AD
26782009-06-11 Akim Demaille <demaille@gostai.com>
2679
2680 tests: honor TESTSUITEFLAGS in every check target.
2681 * tests/local.mk (RUN_TESTSUITE): New.
2682 (check-local, installcheck-local, maintainer-check-g++)
2683 (maintainer-check-posix, maintainer-check-valgrind): Use it.
2684
8893145a
AD
26852009-06-10 Akim Demaille <demaille@gostai.com>
2686
2687 deterministic test suite.
2688 Some consistency checks on symbols are performed after all the
2689 symbols were read, by an iteration over the symbol table. This
2690 traversal is nondeterministic, which can be a problem for test
2691 cases.
2692 Avoid this.
2693 Addresses another form of nondeterminism reported by Joel E. Denny.
2694 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
2695
2696 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
2697 test in two.
2698 Use different file names for the three tests to make the
2699 maintenance easier.
2700
92d7a23a
AD
27012009-06-10 Akim Demaille <demaille@gostai.com>
2702
2703 gnulib: update.
b0778bdd
EB
2704 * gnulib: Update to latest.
2705 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
2706 * m4/.gitignore: Regen.
2707 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
2708 Call xalloc_die on hash_insert failures.
2709 Requested by the new __warn_unused_result__ attribute of
2710 hash_insert.
92d7a23a 2711
12cf133f
AD
27122009-06-10 Akim Demaille <demaille@gostai.com>
2713
2714 deterministic user-token-number redeclaration errors.
2715 Address nondeterminism reported by Joel E. Denny.
2716 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
2717
2718 * src/uniqstr.h: Comment changes.
2719 * src/location.h (boundary_cmp, location_cmp): New.
2720 * src/symtab.c (user_token_number_redeclaration): New.
2721 (symbol_translation): Use it.
2722 * tests/input.at (Numbered tokens): Adjust the expected output.
2723
796a2b0a
AD
27242009-05-25 Akim Demaille <demaille@gostai.com>
2725
2726 build: avoid ignored errors.
2727 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Don't generate ignored
2728 errors, they pollute the output.
2729
0b6d43c5
JD
27302009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2731
2732 Convert multiple variable definition warnings to complaints.
2733 * NEWS (2.5): Add a new entry for that change.
2734 * doc/bison.texinfo (Decl Summary): Update %define entry.
2735 (Bison Options): Update -D/--define/-F/--force-define entry.
2736 * src/muscle-tab.c (muscle_percent_define_insert): Implement.
2737 * src/muscle-tab.h (muscle_percent_define_insert): Update
2738 comments.
2739 * tests/input.at (`%define errors'): Update.
2740 (`%define, --define, --force-define'): Update.
2741
de5ab940
JD
27422009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2743
2744 -F/--force-define and relative %define/-D/--define priorities.
2745 * NEWS (2.5): Add documentation to -D/--define entry.
2746 * build-aux/cross-options.pl: Hard-code association of
2747 --force-define with %define.
2748 * doc/bison.texinfo (Decl Summary): In %define entry,
2749 cross-reference command-line options.
2750 (Bison Options): Add documentation to -D/--define entry.
2751 (Option Cross Key): Widen column for --force-define row.
2752 * src/getargs.c (usage): Document -F/--force-define. Realign
2753 options in output.
2754 (short_options, long_options, getargs): Parse -F/--force-define,
2755 and update muscle_percent_define_insert invocations.
2756 * src/muscle-tab.h (muscle_percent_define_how): New enum type.
2757 (muscle_percent_define_insert): Add argument with that type.
2758 * src/muscle-tab.c (muscle_percent_define_insert): Implement
2759 -F/--force-define behavior and priorities.
2760 (muscle_percent_define_ensure): Update
2761 muscle_percent_define_insert invocation.
2762 * src/parse-gram.y (prologue_declaration): Update
2763 muscle_percent_define_insert invocations.
2764 * tests/input.at (`%define, --define'): Rename to...
2765 (`%define, --define, --force-define'): ... this and extend.
2766
f8e7258f
JD
27672009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2768
2769 Update some comments to make sense for -D.
2770 * data/bison.m4 (b4_check_user_names): In header comments, say
2771 "user occurrence" instead of "grammar occurrence".
2772 * src/muscle-tab.h (muscle_percent_define_insert): Likewise.
2773 (muscle_percent_code_grow): Likewise just for consistency.
2774
b987342b
JD
27752009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
2776
2777 * data/c++.m4 (b4_namespace_close): Simplify slightly.
2778
4977e0a7
JD
27792009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
2780
2781 Handle a trailing `:' in a user-supplied C++ namespace better.
2782 * data/c++.m4 (b4_namespace_close): Don't let it be printed
2783 among the closing braces here. This fix might make the
2784 generated code easier to debug, but otherwise it should be
2785 insignificant because a trailing `:' is a C++ error already.
2786
9b04dad7
AD
27872009-05-19 Akim Demaille <demaille@gostai.com>
2788
2789 remove useless variable.
2790 * src/getargs.c (skeleton_arg): Remove now useless variable.
2791 Should help the compiler see that this printf-like call is sane.
2792
4c6622c2
AD
27932009-05-15 Akim Demaille <demaille@gostai.com>
2794
2795 Rename token.prefix as api.tokens.prefix.
2796 Discussed here.
2797 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00024.html.
2798
2799 * NEWS, data/bison.m4, data/c.m4, data/java.m4, doc/bison.texinfo,
2800 * tests/c++.at, tests/calc.at, tests/java.at, tests/local.at
2801 (token.prefix): Rename as...
2802 (api.tokens.prefix): this.
2803
3c248d70
AD
28042009-05-11 Akim Demaille <demaille@gostai.com>
2805
2806 doc: use C++ headers.
2807 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
2808 headers.
2809
99c08fb6
AD
28102009-05-11 Akim Demaille <demaille@gostai.com>
2811
2812 doc: token.prefix
2813 * doc/bison.simple (Decl Summary): Document token.prefix.
2814 (Calc++ Parser): Various fixes.
2815 Formatting changes.
2816 Use token.prefix.
2817 Introduce a macro TOKEN to shorten the code and make it more
2818 readable.
2819 (Calc++ Scanner): Adjust.
2820 * NEWS (Variable token.prefix): New.
2821
84a1cb5a
AD
28222009-05-04 Akim Demaille <demaille@gostai.com>
2823
2824 bison: catch bad symbol names.
2825 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
2826 * tests/input.at: Adjust.
2827
cdf3f113
AD
28282009-05-04 Akim Demaille <demaille@gostai.com>
2829
2830 identifiers: dashes are letters.
2831 Dashes can now start identifiers (symbols and directives).
84a1cb5a 2832
cdf3f113
AD
2833 * src/scan-gram.l ({letter}): Add dash.
2834 ({id}): Remove it.
2835 * tests/input.at (Symbols): Adjust.
2836 Remove stray comment.
2837 * tests/regression.at (Invalid inputs): Adjust error message.
2838 * doc/bison.texinfo (Symbols): Update.
2839
98a345a2
JD
28402009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
2841
2842 Declare %code to be a permanent feature.
2843 * NEWS (2.4.2): Here.
2844 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
2845 experimental.
2846 (Decl Summary): Likewise.
2847
67212941
JD
28482009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
2849
2850 Convert underscores to dashes in some %define variable names.
2851 For now, just api.push-pull and lr.keep-unreachable-states.
2852 Maintain old names for backward compatibility.
2853 * NEWS (2.5): Document.
2854 * data/c.m4 (b4_identification): Update comment.
2855 * data/yacc.c: Update access.
2856 * doc/bison.texinfo: Update.
2857 * etc/bench.pl.in (bench_push_parser): Update use.
2858 * src/files.c (tr): Move to...
2859 * src/getargs.c, src/getargs.h (tr): ... here because I can't
2860 think of a better place to expose it. My logic is that, for all
2861 uses of tr so far, command-line arguments can be involved, and
2862 getargs.h is already included.
2863 * src/main.c (main): Update access.
2864 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
2865 variable names to new variable names before assigning value.
2866 * src/reader.c (reader): Update setting default.
2867 * tests/calc.at: Update uses.
2868 * tests/conflicts.at (Unreachable States After Conflict
2869 Resolution): Update use.
2870 * tests/input.at (%define enum variables): Update use.
2871 (%define backward compatibility): New test group.
2872 * tests/push.at: Update uses.
2873 * tests/reduce.at: Update uses.
2874 * tests/torture.at: Update uses.
2875
ba5c6d94
JD
28762009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
2877
2878 Set all front-end %define defaults in one place.
2879 * src/main.c (main): Move lr.keep_unreachable_states default...
2880 * src/reader.c (reader): ... to here.
2881
5bab9d08
JD
28822009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2883
2884 Rename lr.default_reductions to lr.default-reductions.
2885 * NEWS (2.5): Here.
2886 * doc/bison.texinfo: Here.
2887 * src/lalr.c (initialize_LA): Here.
2888 * src/print.c (print_reductions): Here.
2889 * src/reader.c (reader): Here.
2890 * src/tables.c (action_row): Here.
2891 * tests/input.at (%define enum variables): Here.
2892 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
2893
d521ee19
JD
28942009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2895
2896 Pacify ./configure --enable-gcc-warnings.
2897 * tests/input.at (Symbols): Prototype yyerror and yylex.
2898
28992009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
c9aded4b
JD
2900
2901 Document how `%define "var" "value"' is not M4-friendly.
2902 * src/parse-gram.y (variable): In comments here.
2903
8f0d265e
JD
29042009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
2905
2906 Clean up recent patches a little.
2907 Reported by Akim Demaille.
2908 * doc/bison.texinfo (Understanding): Fix typos.
2909 * src/print.c (print_reductions): Don't use negated variable.
2910
f4909773
JD
29112009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
2912
2913 List accepted values for a %define enum variable with an invalid value.
2914 Suggested by Akim Demaille at
2915 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
2916 * data/bison.m4 (_b4_percent_define_check_values): Implement.
2917 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
2918 * tests/input.at (%define lr.default_reductions invalid values): Merge
2919 into...
2920 (%define enum variables): ... here, and update output.
2921
110ef36a
JD
29222009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
2923
2924 Rename "default rule" to "default reduction".
2925 This includes changing variable names in code, changing
2926 comments, and renaming %define lr.default_rules to %define
2927 lr.default_reductions.
2928 * NEWS (2.5): Update IELR documentation.
2929 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
2930 documentation.
2931 * data/glr.c, data/lalr1.java: Sync copyright dates.
2932 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
2933 and lr.type documentation. Make some other wording
2934 improvements.
2935 (Glossary): Adjust cross-references and Default Reduction
2936 definition.
2937 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
2938 Remove a confusing comment pointed out by Akim Demaille.
2939 (initialize_LA): Adjust code.
2940 * src/print-xml.c (print_reductions): Adjust code.
2941 * src/print.c (print_reductions): Adjust code.
2942 * src/reader.c (reader): Adjust code.
2943 * src/tables.c (action_row): Adjust code.
2944 (token_actions): Adjust code.
2945 * src/tables.h: Adjust YYDEFACT documentation.
2946 * tests/input.at (%define lr.default_rules invalid values):
2947 Rename test group to...
2948 (%define lr.default_reductions invalid values): ... this, and
2949 update grammar file and expected output.
2950 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
2951 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
2952
746ee38c
AD
29532009-04-21 Akim Demaille <demaille@gostai.com>
2954
2955 tests: check the use of dashes and periods in symbols.
2956 * tests/input.at (Symbol): New test group.
2957
eb45ef3b
JD
29582009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2959
2960 Document %define lr.type and lr.default_rules.
2961 * NEWS (2.5): Add an entry.
2962 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
2963 besides just LALR(1) and GLR(1).
2964 * doc/bison.texinfo (Introduction): Likewise.
2965 (Language and Grammar): Bison is no longer limited to LALR(1)
2966 restrictions.
2967 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
2968 when trying to distinguish from GLR. Talk about LR(1) grammars
2969 rather than LALR(1) grammars.
2970 (Decl Summary): In %define api.push_pull entry, say it applies
2971 to deterministic parsers in C rather than LALR(1) parsers in C.
2972 Add lr.default_rules entry.
2973 Add lr.type entry.
2974 (Mystery Conflicts): Bison is no longer limited to LALR(1)
2975 restrictions.
2976 (Generalized LR Parsing): Same changes as for the previous GLR
2977 section.
2978 (Memory Management): Say deterministic rather than LALR(1).
2979 (Understanding): Correct some bison output.
2980 Index discussion of "accepting state".
2981 Say deterministic rather than LALR(1).
2982 (Bison Options): In --yacc entry, say deterministic rather than
2983 LALR(1).
2984 In --report, --graph, and --xml entries, just don't mention
2985 LALR(1).
2986 (C++ Parsers): Say deterministic rather than LALR(1).
2987 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
2988 (Glossary): Add Accepting State, Consistent State, Default Rule,
2989 and IELR(1) definitions.
2990 In Generalized LR (GLR) definition, make same changes as in
2991 previous GLR sections.
2992 In LALR(1) definition, say Bison uses LALR(1) by default rather
2993 than implying Bison is limited to LALR(1).
2994 (LocalWords): Add IELR.
2995
db34f798
JD
29962009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2997
2998 Finish implementing %define lr.type.
2999 Its value can be "LALR", "IELR", or "canonical LR".
3000 * lib/timevar.def (TV_IELR_PHASE1): New var.
3001 (TV_IELR_PHASE2): New var.
3002 (TV_IELR_PHASE3): New var.
3003 (TV_IELR_PHASE4): New var.
3004 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
3005 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
3006 Sbitset.h, ielr.h, and ielr.c.
3007 * src/getargs.h, src/getargs.c (enum trace, trace_args,
3008 trace_types): Add trace_ielr.
3009 * src/lalr.h, src/lalr.c (ngotos): Export it.
3010 (F): Rename to...
3011 (goto_follows): ... this, update all uses, and export it.
3012 (set_goto_map): Export it.
3013 (map_goto): Export it.
3014 (compute_lookahead_tokens): Don't free goto_follows yet. Now
3015 handled in ielr.
3016 (initialize_LA): Export it. Move lookback allocation to...
3017 (lalr): ... here because, for canonical LR, initialize_LA must
3018 be invoked but lookback and much of the rest of LALR isn't
3019 needed.
3020 * main.c (main): Instead of lalr, invoke ielr, which invokes
3021 lalr.
3022 * src/reader.c (reader): Default lr.type to "LALR".
3023 Default lr.default_rules to "accepting" if lr.type is "canonical
3024 LR". Leave the default as "all" otherwise.
3025 Check for a valid lr.type value.
3026 * src/state.h, src/state.c (struct state_list): Add state_list
3027 member.
3028 (state_new): Initialize state_list member to NULL.
3029 (state_new_isocore): New function, exported.
3030 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
3031 exercises all values of lr.type.
3032 (GNU AWK Grammar): Rename test group to...
3033 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
3034 AT_TEST_EXISTING_GRAMMAR.
3035 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
3036 (GNU pic Grammar): Rename test group to...
3037 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
3038 AT_TEST_EXISTING_GRAMMAR.
3039 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
3040 all values of lr.type.
3041 (Single State Split): New test groups using AT_TEST_LR_TYPE.
3042 (Lane Split): Likewise.
3043 (Complex Lane Split): Likewise.
3044 (Split During Added Lookahead Propagation): Likewise.
3045
7fe11bb5
JD
30462009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3047
3048 Add new files for IELR and canonical LR implementation.
3049 * src/AnnotationList.c: New.
3050 * src/AnnotationList.h: New.
3051 * src/InadequacyList.c: New.
3052 * src/InadequacyList.h: New.
3053 * src/Sbitset.c: New.
3054 * src/Sbitset.h: New.
3055 * src/ielr.c: New.
3056 * src/ielr.h: New.
3057
7254f6a8
JD
30582009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
3059
3060 Implement %define lr.default_rules.
3061 Its value describes the states that are permitted to contain
3062 default rules: "all", "consistent", or "accepting".
3063 * src/reader.c (reader): Default lr.default_rules to "all".
3064 Check for a valid lr.default_rules value.
3065 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
3066 is "accepting", then only mark the accepting state as
3067 consistent.
3068 (initialize_LA): Tell state_lookahead_tokens_count whether
3069 lr.default_rules is "accepting".
3070 * src/tables.c (action_row): If lr.default_rules is not "all",
3071 then disable default rules in inconsistent states.
3072 * src/print.c (print_reductions): Use this opportunity to
3073 perform some assertions about whether lr.default_rules was
3074 obeyed correctly.
3075 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
3076 helps with checking the parser tables for a grammar.
3077 * tests/input.at (%define lr.default_rules invalid values): New
3078 test group.
3079 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
3080 AT_TEST_TABLES_AND_PARSE.
3081 (`no %define lr.default_rules'): New test group generated by
3082 AT_TEST_LR_DEFAULT_RULES.
3083 (`%define lr.default_rules "all"'): Likewise.
3084 (`%define lr.default_rules "consistent"'): Likewise.
3085 (`%define lr.default_rules "accepting"'): Likewise.
3086
72e727f2
AD
30872009-04-20 Akim Demaille <demaille@gostai.com>
3088
3089 Formatting change.
3090
90462b8d
AD
30912009-04-20 Akim Demaille <demaille@gostai.com>
3092
3093 bison: factoring.
3094 * src/output.c (token_definitions_output): Use symbol_id_get
3095 instead of duplicating its logic.
3096 * TODO (YYERRCODE): Extend.
3097
4f646c37
AD
30982009-04-20 Akim Demaille <demaille@gostai.com>
3099
71b00ed8
AD
3100 variables: prefer error-verbose to error_verbose.
3101 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
3102 instead of error_verbose.
3103 * src/scan-gram.l (%error-verbose): Map to the error-verbose
3104 variable.
3105 * doc/bison.texinfo: Promote %define error-verbose instead of
3106 %error-verbose.
3107 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
3108
31092009-04-15 Akim Demaille <demaille@gostai.com>
3110
4f646c37
AD
3111 variables: accept dashes.
3112 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
3113 underscores.
3114 * src/scan-gram.l ({id}): Also accept dashes after the initial
3115 letter.
3116 ({directive}): Use {id}.
3117 * src/parse-gram.y: Comment and formatting changes.
3118 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
3119 symbols.
3120 * src/complain.h, src/complain.c (yacc_at): New.
3121 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
3122 symbol names.
3123 * src/output.c (token_definitions_output): Do not #define token
3124 names with dashes.
3125
184e3179
AD
31262009-04-20 Akim Demaille <demaille@gostai.com>
3127
3128 Consistently refer to Yacc, not YACC.
3129 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
3130
41253c3a
JD
31312009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
3132
3133 Pacify make maintainer-check-posix.
3134 * tests/input.at (%define, --define): Move bison command-line
3135 options before grammar file name.
3136
197b82ba
JD
31372009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
3138
3139 Document semicolon warnings.
3140 * NEWS (2.5): Here.
3141
0c90a1f5
AD
31422009-04-14 Akim Demaille <demaille@gostai.com>
3143
3144 variables: use `parse.assert' instead of `assert'.
3145 * TODO (assert): Remove.
3146 * data/bison.m4 (b4_assert_if): Replace with...
3147 (b4_parse_assert_if): this.
3148 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
3149 * doc/bison.texinfo (Decl Summary): Document parse.assert.
3150
fa819509
AD
31512009-04-14 Akim Demaille <demaille@gostai.com>
3152
16dc0d90 3153 variables: use `parse.trace' instead of `debug'.
fa819509
AD
3154 * src/getargs.c (getargs): Map -t to %define trace.parse.
3155 * src/scan-gram.l (%debug): Map to %define trace.parse.
3156 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
3157 names to `_' in macro names.
3158 (b4_debug_if): Replace with...
3159 (b4_parse_trace_if): this.
3160 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
3161 * data/yacc.c: Adjust.
3162 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
3163 Use @code to label the variable list.
3164 Document the variable parse.trace.
3165 (Tracing): Promote the parse.trace variable.
3166 * TODO: %printer is not documented.
3167
f7dae1ea
AD
31682009-04-14 Akim Demaille <demaille@gostai.com>
3169
3170 doc: minor fixes.
3171 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
3172 (Table of Symbols): Remove duplicate entry for %debug.
3173
3535c071
EB
31742009-04-10 Eric Blake <ebb9@byu.net>
3175
3176 submodules: update to latest
3177 * submodules/autoconf: Use latest upstream Autoconf.
3178
cf48f675
EB
31792009-04-06 Eric Blake <ebb9@byu.net>
3180
3181 Work around autoconf 2.63b bug in testsuite.
3182 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
3183 autoconf bug related to # in test.
3184
50cca368
JD
31852009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
3186
3187 * NEWS (2.5): New section. Describe new -D/--define feature.
3188
3583d96b
AD
31892009-04-06 Akim Demaille <demaille@gostai.com>
3190
3191 Regen.
3192 * src/parse-gram.h, src/parse-gram.c: Regen.
3193
00f5d575
AD
31942009-04-06 Akim Demaille <demaille@gostai.com>
3195
3196 rename muscle_tab.* as muscle-tab.* for consistency.
3197 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
3198 * src/muscle-tab.h, src/muscle-tab.c: these.
3199 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
3200 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
3201
76bf5102
AD
32022009-04-06 Akim Demaille <demaille@gostai.com>
3203
3204 Makefile: introduce $(BISON).
3205 * src/local.mk (BISON): New.
3206 (YACC): Use it.
3207
bc0f5737
AD
32082009-04-06 Akim Demaille <demaille@gostai.com>
3209
3210 parser: handle %locations as %define locations.
3211 * src/getargs.h, src/getargs.c (locations_flag): Remove.
3212 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
3213 to set "locations" to true.
3214 * src/output.c (prepare): Don't output "locations".
3215 * src/scan-gram.l (%locations): Handle it as a %<flag>.
3216 * src/parse-gram.y: It's no longer a token.
3217 Don't handle it.
3218 * data/bison.m4 (b4_locations_if): Define it with
3219 b4_percent_define_if_define.
3220 * data/c.m4, data/glr.cc: Adjust.
3221
697c912f
AD
32222009-04-06 Akim Demaille <demaille@gostai.com>
3223
3224 Regen.
3225 * src/parse-gram.c: Regen.
3226
4920ae8b
AD
32272009-04-06 Akim Demaille <demaille@gostai.com>
3228
3229 muscle: factor the handling of obsolete of obsolete directives.
3230 Suggested by Joel E. Denny.
50cca368 3231
4920ae8b
AD
3232 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
3233 New, extracted from...
3234 * src/parse-gram.y (prologue_declaration: pure-parser): here.
3235 Remove it.
3236 (prologue_declaration: "%<flag>"): Use
3237 muscle_percent_define_ensure.
3238 (%error-verbose, %pure-parser): No longer tokens.
3239 * src/scan-gram.l (pure-parser): Return as a %<flag>.
3240
1d5b3c08
JD
32412009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
3242
3243 Fix options documentation.
3244 * build-aux/cross-options.pl: As in --help output, write optional
3245 arguments as [=ARG] not =[ARG].
3246 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
3247
62c99cf4
JD
32482009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
3249
3250 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
3251 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
3252 requirements for a correct m4 are stricter.
3253 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
3254 * configure.ac: Update to use AC_PROG_GNU_M4.
3255 Reported by Eric Blake.
3256
1c93f35b
JD
32572009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
3258
3259 Help with updating web manual.
3260 * HACKING: Incorporate instructions from gnulib/doc/README.
3261 * bootstrap.conf (gnulib_modules): Add gendocs.
3262
86cfae0a
AD
32632009-04-03 Akim Demaille <demaille@gostai.com>
3264
3265 Regen.
3266 * src/parse-gram.h, src/parse-gram.c: Regen.
3267
ba061fa6
AD
32682009-04-03 Akim Demaille <demaille@gostai.com>
3269
3270 Factor %FLAG at scan level.
3271 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
3272 definitions and associated rules, replaced by....
3273 (PERCENT_FLAG): this new token type, and rule.
3274 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
3275 Use it for %debug and %error-verbose.
3276
b19ebeb3
AD
32772009-04-03 Akim Demaille <demaille@gostai.com>
3278
3279 Regen.
3280 * src/parse-gram.h, src/parse-gram.c: Regen.
3281
001a16a9
AD
32822009-04-03 Akim Demaille <demaille@gostai.com>
3283
3284 Treat %debug as %define debug.
3285 * data/bison.m4 (b4_debug_if): New.
3286 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
3287 * data/lalr1.java: Use it instead of b4_debug_flag.
3288 * src/getargs.h, src/getargs.c (debug_flag): Remove.
3289 * src/output.c (prepare): Don't output it.
3290 * src/parse-gram.y: Treat %debug as %define debug.
3291
32922009-04-03 Akim Demaille <demaille@gostai.com>
3293
3294 Treat %error-verbose as %define error_verbose.
3295 This allows to pass -Derror_verbose on the command line. Better
3296 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
3297 ERROR_VERBOSE being defined as false or true.
3298 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
3299 on b4_percent_define_ifdef, for does not check the defined value,
3300 but only whether the symbol is defined, rely on
3301 b4_percent_define_flag_if, so that a value of "false" is processed
3302 as a false.
3303 If not defined, define the flag to "false".
3304 (b4_error_verbose_if): New.
3305 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
3306 b4_error_verbose_flag.
3307 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
3308 * src/output.c (prepare): Don't output it.
3309 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
3310
92822aff
JD
33112009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
3312
3313 Fix strange %define locations for default values.
3314 Reported by Akim Demaille at
3315 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
3316 and discussed again starting at
3317 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
3318 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
3319 because location information is bogus.
3320 Use angle brackets to delimit fake file name because square brackets
3321 look like underexpanded m4. Choose a better fake file name.
3322 Use negative line numbers.
3323 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
3324 * src/location.c (location_print): If line for a boundary is negative,
3325 only print that boundary's file name.
3326 * src/location.h: Document that.
3327 * tests/skeletons.at (%define Boolean variables: invalid skeleton
3328 defaults): Update output.
3329
e021191b
JD
33302009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
3331
3332 Pacify ./configure --enable-gcc-warnings.
3333 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
3334 in lib won't compile with it.
3335 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
3336
78f65418
AD
33372009-03-31 Akim Demaille <demaille@gostai.com>
3338
3339 bootstrap: --help to stdout.
3340 * bootstrap (usage): Don't send --help to stderr.
3341 Use a here doc instead of a long string.
3342
f7e241f4
AD
33432009-03-31 Akim Demaille <demaille@gostai.com>
3344
3345 bootstrap: README-hacking no longer exists
3346 * bootstrap (checkout_only_file): Set to HACKING.
3347
31d3e510
AD
33482009-03-26 Akim Demaille <demaille@gostai.com>
3349
3350 doc: merge HACKING and README-hacking.
3351 Two files is confusing.
3352 Reported by Alexandre Duret-Lutz.
1f9d8248 3353
31d3e510
AD
3354 * README-hacking: Merge into...
3355 * HACKING (Working from the repository): here.
3356
81535bfa
AD
33572009-03-26 Akim Demaille <demaille@gostai.com>
3358
3359 doc: update README-hacking.
3360 * README-hacking: We now use git and git submodules.
3361 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
3362
56f772e9
AD
33632009-03-26 Akim Demaille <demaille@gostai.com>
3364
3365 lalr1.cc: avoid GCC 4.3 warnings.
3366 GCC 4.3 now warns about "a || b && c" and asks for explicit
3367 parentheses.
3368 Reported by Alexandre Duret-Lutz.
3369 * data/location.cc: Update copyright years.
3370 (Position::operator==): Use parens to make precedence explicit.
3371 Compare lines and columns first, as they are more likely to be
3372 different, and they are faster to compare.
3373
11c073b7
AD
33742009-03-26 Akim Demaille <demaille@gostai.com>
3375
3376 gnulib: update.
3377 * gnulib: Update to latest.
3378 * src/local.mk (AM_CFLAGS): Move to...
3379 * Makefile.am: here.
3380 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
3381 AM_CFLAGS.
3382
91be6b28
AD
33832009-03-02 Akim Demaille <demaille@gostai.com>
3384
3385 Comment changes.
3386
cbf25ce7
AD
33872009-03-02 Akim Demaille <demaille@gostai.com>
3388
3389 Share b4_yytranslate_define.
3390 * data/lalr1.cc (b4_yytranslate_define): Move to...
3391 * data/c++.m4: here.
3392
882f02ed
AD
33932009-03-02 Akim Demaille <demaille@gostai.com>
3394
3395 Use locations in the variant example.
1f9d8248
AD
3396 Yes, this obfuscates the point of this example, variants only.
3397 But glr.cc cannot work (yet?) without locations. This change
3398 makes it easier to use this example with glr.cc.
11c073b7 3399
882f02ed
AD
3400 * examples/variant.yy (assert): %define it.
3401 (locations): Request them.
3402 (yylex): Bind the location to the stage.
3403
0623bacc
AD
34042009-03-02 Akim Demaille <demaille@gostai.com>
3405
3406 Dub make_TOKEN as a public type interface.
3407 * data/c++.m4 (b4_symbol_constructor_declare)
3408 (b4_symbol_constructor_define): New empty stubs.
3409 (b4_public_types_declare, b4_public_types_define): Use them.
3410 * data/lalr1.cc (b4_symbol_constructor_declare)
3411 (b4_symbol_constructor_declare_)
3412 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
3413 Move to...
3414 * data/variant.hh: here.
3415 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
3416 needed.
3417 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
3418 b4_symbol_constructor_declare, as it is now done by
3419 b4_public_types_define and b4_public_types_declare.
3420
5f5a90df
AD
34212009-03-02 Akim Demaille <demaille@gostai.com>
3422
3423 Coding style changes.
3424 * data/lalr1.cc (b4_symbol_constructor_declaration_)
3425 (b4_symbol_constructor_declarations)
3426 (b4_symbol_constructor_definition_)
3427 (b4_symbol_constructor_definitions)
3428 (b4_yytranslate_definition): Rename as...
3429 (b4_symbol_constructor_declare_)
3430 (b4_symbol_constructor_declare)
3431 (b4_symbol_constructor_define_)
3432 (b4_symbol_constructor_define)
3433 (b4_yytranslate_define): these.
3434 * data/variant.hh (b4_variant_definition): Rename as...
3435 (b4_variant_define): this.
3436
b47b6ff7
AD
34372009-03-02 Akim Demaille <demaille@gostai.com>
3438
3439 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
3440 * data/bison.m4 (b4_percent_define_if_define): New.
3441 * data/c++.m4 (b4_variant_if): Move to...
3442 * data/bison.m4: Here, using b4_percent_define_if_define.
3443 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
3444 * data/bison.m4: Here, using b4_percent_define_if_define.
3445
1d6b689b
AD
34462009-03-02 Akim Demaille <demaille@gostai.com>
3447
3448 Dub symbol_type_base as a public type.
3449 * data/c++.m4 (b4_public_types_declare): Now define
3450 symbol_type_base and symbol_type.
3451 (b4_public_types_define): New.
3452 In both cases, the definitions are taken verbatim from lalr1.cc.
3453 * data/lalr1.cc: Adjust.
3454
4f84717d
AD
34552009-03-02 Akim Demaille <demaille@gostai.com>
3456
3457 b4_public_types_declare.
3458 * data/c++.m4 (b4_public_types_declare): New.
3459 * data/glr.cc, data/lalr1.cc: Use it.
3460
b9e4eb5b
AD
34612009-03-02 Akim Demaille <demaille@gostai.com>
3462
3463 b4_semantic_type_declare.
3464 * data/c++.m4 (b4_semantic_type_declare): New.
3465 Factors and generalizes what was in glr.cc and lalr1.cc.
3466 * data/variant.hh (b4_semantic_type_declare): Redefine it for
3467 variants.
3468 * data/lalr1.cc, data/glr.cc: Use it.
3469
6a6e7f0c
AD
34702009-02-26 Akim Demaille <demaille@gostai.com>
3471
3472 Upgrade gnulib.
3473 * gnulib: Upgrade from master.
3474 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
3475 Regen.
3476
e9e61b00
AD
34772009-02-25 Akim Demaille <demaille@gostai.com>
3478
3479 Remove useless arguments.
3480 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
3481 relevant.
3482
3eead995
AD
34832009-02-25 Akim Demaille <demaille@gostai.com>
3484
3485 Comment changes.
3486 * data/lalr1.cc: here.
3487
87f28efe
AD
34882009-02-25 Akim Demaille <demaille@gostai.com>
3489
3490 Fix glr.cc's debug level handling.
3491 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
3492 glr.c which is used.
3493 (debug_level, set_debug_level): Adjust.
3494
9be2a009
AD
34952009-02-25 Akim Demaille <demaille@gostai.com>
3496
3497 Copyright years.
3498 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
3499
07a6e87d
AD
35002009-02-25 Akim Demaille <demaille@gostai.com>
3501
3502 Style changes.
3503 * etc/bench.pl.in (generate_grammar_list): Consitently use
3504 location_type, not yy::location.
3505
33c78bd2
AD
35062009-02-25 Akim Demaille <demaille@gostai.com>
3507
3508 Comment change.
3509 * data/lalr1.cc: here.
3510
49572920
AD
35112009-02-19 Akim Demaille <demaille@gostai.com>
3512
3513 Make yyparser::error public.
3514 * data/lalr1.cc: here.
3515 There is no good reason to keep it private (and it is convenient
3516 to use it from the scanner for instance). It is already public in
3517 glr.cc.
3518
88654b47
AD
35192009-02-19 Akim Demaille <demaille@gostai.com>
3520
3521 Comment changes.
3522 * data/glr.cc: here.
3523
4524c55b
AD
35242009-02-19 Akim Demaille <demaille@gostai.com>
3525
3526 Remove trailing blanks.
6a6e7f0c
AD
3527 The epilogue has its own ending \n, no need to add another.
3528
4524c55b
AD
3529 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
3530 epilogue.
3531 * data/glr.cc: dnl when extending the epilogue.
3532 Remove stray "private:".
3533
6ceccee8
AD
35342009-02-19 Akim Demaille <demaille@gostai.com>
3535
3536 Use b4_c_modern.
3537 * data/c.m4 (b4_c_function_decl): Here.
3538
9c6a8966
AD
35392009-02-19 Akim Demaille <demaille@gostai.com>
3540
3541 Comment changes.
3542 * data/lalr1.cc: here.
3543
507aa0e2
AD
35442009-02-19 Akim Demaille <demaille@gostai.com>
3545
3546 Extract variant.hh
3547 * data/variant.hh: New, extracted from...
3548 * data/lalr1.cc: here.
3549 Adjust.
3550 * data/local.mk: Adjust.
3551
51bacae6
AD
35522009-02-19 Akim Demaille <demaille@gostai.com>
3553
3554 Extract stack.hh from lalr1.cc.
3555 * data/stack.hh: New.
3556 * data/lalr1.cc: Extract from here.
3557 * data/local.mk: Adjust.
3558
06c3084f
JD
35592009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
3560
3561 Add reminder about uploading public key to keys.gnupg.net.
3562 * HACKING (Release Procedure): Here.
3563
0ea583d2
AD
35642009-01-28 Akim Demaille <demaille@gostai.com>
3565
3566 * NEWS: Update information about 2.4.1 and 2.4.2.
3567
402b123d
AD
35682008-11-04 Akim Demaille <demaille@gostai.com>
3569
3570 Reformat NEWS.
3571 * NEWS: Use more outline-mode markup.
3572 Suggested by Jim Meyering.
3573
74553c98
AD
35742009-01-08 Akim Demaille <demaille@gostai.com>
3575
3576 Fix grep portability issues.
3577 Grep on Solaris does not support -q.
3578 Reported by Summum Bonum.
3579
3580 * NEWS: Add a stub for 2.4.2.
3581 * THANKS: Add Summum Bonum.
3582 * tests/atlocal.in (EGREP): New.
3583 (CC, CXX, XSLTPROC): Make it possible to override them via
3584 envvars.
3585 * tests/java.at: Use $EGREP instead of egrep.
3586 Use AT_CHECK's ignore instead of grep's -q.
3587
84eedf86
AD
35882008-12-11 Akim Demaille <demaille@gostai.com>
3589
3590 Pass the token type to yysyntax_error.
3591 * data/yacc.c (yysyntax_error): Take the transated token instead
3592 of the raw number.
3593 Adjust callers.
3594 * TODO: Update.
3595
5860cc8c
AD
35962008-12-11 Akim Demaille <demaille@gostai.com>
3597
3598 Formatting changes.
3599 * data/glr.c: Formatting changes.
3600
2b008529
AD
36012008-12-11 Akim Demaille <demaille@gostai.com>
3602
3603 Propagate i18n changes into glr.c.
3604 * TODO: Update.
3605 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
3606 building the error message format dynamically.
3607 * data/lalr1.java: Formatting changes.
3608
2cd1af95
AD
36092008-12-11 Akim Demaille <demaille@gostai.com>
3610
3611 Use testsuite -C.
3612 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
3613 Solves problems when top_srcdir is an absolute path.
3614 Suggested by Eric Blake.
3615 * configure.ac: Require Autoconf 2.62.
3616
eeb29422
AD
36172008-12-11 Akim Demaille <demaille@gostai.com>
3618
3619 Simplify the i18n of the error messages.
3620 * data/lalr1.cc: Comment changes.
3621 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
3622 lalr1.cc instead of building dynamically the format string.
3623
6617622c
AD
36242008-12-08 Akim Demaille <demaille@gostai.com>
3625
3626 Fix portability issue in the test suite.
3627 * tests/local.at (AT_MATCHES_CHECK): New.
3628 Based on Perl instead of Sed. Sed has too many portability
3629 pitfalls, not ever Sed is GNU Sed.
3630 * tests/actions.at (Fix user actions without a trailing semicolon):
3631 Use it.
3632
2ca1136c
AD
36332008-12-08 Akim Demaille <demaille@gostai.com>
3634
3635 Update data/README.
3636 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
3637
6c63b895
AD
36382008-12-08 Akim Demaille <demaille@gostai.com>
3639
3640 Install autoconf as a submodule to get m4sugar.
3641 * .gitmodules: Add submodules/autoconf.
3642 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
3643 submodules/autoconf.
3644
417e31d2
AD
36452008-12-08 Akim Demaille <demaille@gostai.com>
3646
3647 Test token.prefix in all the skeletons.
3648 * data/java.m4 (b4_token_enum): Use the token.prefix.
3649 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
3650 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
3651 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
3652 * tests/java.at: Comment changes.
3653 (AT_CHECK_JAVA_MINIMAL): Define the END token.
3654 (Java parser class and package names): Add token.prefix check.
3655
97abf544
AD
36562008-12-08 Akim Demaille <demaille@gostai.com>
3657
3658 Fix regeneration of atconfig.
3659 * tests/local.mk (tests/atconfig): The rule was incorrect, but
3660 remove it: now that there is no tests/Makefile.am, the top-level
3661 Makefile properly updates atconfig when needed.
3662
e8cd1ad6
DJ
36632008-12-07 Di-an Jan <dianj@freeshell.org>
3664
3665 Implement the FIXME that ends an user action with a semicolon
3666 if it seems necessary.
3667 * src/scan-code.l (flex rules section): Flag cpp directive from
3668 any `#' to the first unescaped end-of-line. Semicolon is not
3669 needed after `;', `{', '}', or cpp directives and is needed after
3670 any other token (whitespaces and comments have no effect).
3671 * tests/actions.at (Fix user actions without a trailing semicolon):
3672 New test.
3673 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
3674 to make user actions complete statements.
3675 Adjust column numbers in error messages.
3676 * tests/regression.at (Fix user actions without a trailing semicolon):
3677 Remove. Covered by new test.
3678
ce9447fc
AD
36792008-12-07 Akim Demaille <demaille@gostai.com>
3680
3681 Update gnulib.
3682 * gnulib: Update from master.
3683
d333175f
EB
36842008-12-05 Eric Blake <ebb9@byu.net>
3685
3686 Avoid compiler warning.
3687 * src/output.c (muscle_insert_item_number_table): Delete unused
3688 function.
3689
215b40ac
EB
36902008-12-02 Eric Blake <ebb9@byu.net>
3691
3692 Build testsuite with newer autoconf.
3693 * tests/output.at (m4_expand): Don't override in newer autoconf,
3694 where the underlying implementation changed.
3695 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
3696 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
3697 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
3698 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
3699 since some of them contain unbalanced ')'.
3700
3bb21113
AD
37012008-12-01 Akim Demaille <demaille@gostai.com>
3702
3703 Use b4_symbol for printers and destructors everywhere.
3704 * data/bison.m4 (b4_symbol_action_location): New.
3705 * data/c.m4 (b4_symbol_actions): Remove.
3706 Adjust all callers to use by b4_symbol_foreach and the corresponding
3707 b4_symbol_printer/destructor macro.
3708 * data/glr.cc: Adjust.
3709 * data/lalr1.java: Adjust the %destructor sanity check.
3710 * src/output.c (symbol_code_props_output): Remove, we no longer
3711 need the b4_symbol_printers/destructors tables.
3712
fb7c5b1f
AD
37132008-12-01 Akim Demaille <demaille@gostai.com>
3714
3715 Use b4_symbol_case_.
3716 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
3717 b4_symbol_case_.
3718
cf6fb222
AD
37192008-12-01 Akim Demaille <demaille@gostai.com>
3720
3721 Move b4_symbol based macro to bison.m4.
3722 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
3723 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
3724 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
3725 (b4_type_foreach): Move to...
3726 * data/bison.m4: Here.
3727 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
3728 b4_symbol_value_template instead of b4_symbol_value.
cf6fb222 3729
e3c52a63
AD
37302008-12-01 Akim Demaille <demaille@gostai.com>
3731
3732 b4_symbol/type_foreach.
3733 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
3734 Use them.
3735
2bde9113
AD
37362008-12-01 Akim Demaille <demaille@gostai.com>
3737
3738 Use the symbol properties to output the printer/destructor for lalr1.cc.
30c10faf
AD
3739 Instead of defining complex list of tuples to define various
3740 properties of the symbols, we now prefer to define symbols as
3741 "structs" in m4: using the symbol key (its number), and the
3742 property name, b4_symbol gives it value. Use this to handle
3743 destructors and printers.
3744
2bde9113
AD
3745 * src/output.c (CODE_PROP): New.
3746 (prepare_symbol_definitions): Use it to define the printer and
3747 destructor related attributes of the symbols.
3748 * data/lalr1.cc (b4_symbol_actions): Rename as...
3749 (b4_symbol_action): this.
3750 Use b4_symbol instead of 6 arguments.
3751 (b4_symbol_printer, b4_symbol_destructor): New.
3752 Use them instead of b4_symbol_actions.
3753
44494bf6
AD
37542008-12-01 Akim Demaille <demaille@gostai.com>
3755
3756 Avoid capturing variables too easily.
3757 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
3758 v__ and p__ instead of v and p.
3759
fad814bd
AD
37602008-12-01 Akim Demaille <demaille@gostai.com>
3761
3762 Remove spurious empty line before syncline.
3763 * data/bison.m4 (b4_syncline): Don't output an empty line before
3764 the output.
3765
feda5527
AD
37662008-11-26 Akim Demaille <demaille@gostai.com>
3767
3768 Convert lib/Makefile.am into lib/local.mk.
3769 The real problem is rather gnulib.mk, which itself is extracted
3770 from a Makefile.am that gnulib expects to the "recursive". The
3771 tool prefix-gnulib-mk converts such a gnulib.mk to be
3772 non-recursive. Also, some AC_SUBST variables need to be adjusted.
3773
3774 * etc/prefix-gnulib-mk: New.
3775 * bootstrap (slurp): Use it to convert further gnulib.mk.
3776 No longer try to avoid re-creation of lib/gnulib.mk as the changes
3777 are deeper.
3778 * lib/Makefile.am: Rename as...
3779 * lib/local.mk: this.
3780 Adjust to be prefixed.
3781 * Makefile.am, configure.ac: Adjust.
3782 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
3783
56ddee7f
AD
37842008-11-26 Akim Demaille <demaille@gostai.com>
3785
3786 s/_FLAGS/FLAGS/.
3787 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
3788 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
3789 Reported by Eric Blake.
3790
728e89a0
AD
37912008-11-26 Akim Demaille <demaille@gostai.com>
3792
3793 Use b4_parser_tables_define in glr.cc.
3794 * data/glr.c: Use b4_parser_tables_define instead of defining the
3795 (deterministic integral) tables by hand.
3796
2c1bf9bd
AD
37972008-11-26 Akim Demaille <demaille@gostai.com>
3798
3799 Use b4_parser_tables_define in Java.
3800 * data/java.m4 (b4_typed_parser_table): Rename as...
3801 (b4_typed_parser_table_define): this, for consistency.
3802 Accept a comment as $4.
3803 Move $2 into yy*_.
3804 (b4_integral_parser_table): Rename as...
3805 (b4_integral_parser_table_define): this.
3806 * data/lalr1.java: Adjust all uses.
3807 Use b4_parser_tables_define instead of generation by hand.
3808
ba206cf4
AD
38092008-11-26 Akim Demaille <demaille@gostai.com>
3810
3811 Prepare the convergence bw C style and Java table generation.
3812 * data/bison.m4 (b4_tables_map, b4_tables_declare)
3813 (b4_tables_define): Rename as...
3814 (b4_integral_parser_tables_map, b4_parser_tables_declare)
3815 (b4_parser_tables_define): these.
3816 * data/c.m4 (b4_table_define): Rename as...
3817 (b4_integral_parser_table_define): this.
3818 * data/lalr1.cc: Adjust.
3819 (b4_table_define, b4_table_declare): Rename as...
3820 (b4_integral_parser_table_define)
3821 (b4_integral_parser_table_declare): these.
3822 (yyrline_): Move the comment where it is actually used.
3823 * data/yacc.c: Adjust.
3824 (yyrline): Use b4_integral_parser_table_define.
3825
d12f8e49
AD
38262008-11-26 Akim Demaille <demaille@gostai.com>
3827
3828 Regen.
3829 * src/parse-gram.h, src/parse-gram.c: Regen.
3830
0991e29b
AD
38312008-11-26 Akim Demaille <demaille@gostai.com>
3832
3833 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
3834 * data/lalr1.cc (b4_tables_map): Move to...
3835 * data/bison.m4: here.
3836 Update the comment for yytable during the flight.
3837 (b4_tables_declare, b4_tables_define): New.
3838 * data/lalr1.cc: Use them.
3839 * data/c.m4 (b4_table_define): New.
3840 * data/yacc.c: Use b4_tables_define instead of output the tables
3841 by hand.
3842 * tests/regression.at (Web2c Actions): Adjust the expected output,
3843 the order of the tables changed.
3844
3d3bc1fe
AD
38452008-11-26 Akim Demaille <demaille@gostai.com>
3846
3847 Get rid of (yy)rhs and (yy)prhs.
3848 These tables are no longer needed in the parsers, and they don't seem to
3849 be useful. They are not documented either.
feda5527 3850
3d3bc1fe
AD
3851 * src/output.c (prepare_rules): Get rid of rhs and prhs.
3852 Adjust the computation of (yy)r2.
3853
08c81469
AD
38542008-11-26 Akim Demaille <demaille@gostai.com>
3855
3856 Rule length is unsigned.
3857 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
3858
932b0c96
AD
38592008-11-26 Akim Demaille <demaille@gostai.com>
3860
3861 Get rid of lalr1-split.cc.
3862 It was no longer maintainer.
feda5527 3863
932b0c96
AD
3864 * data/lalr1-split.cc: Remove.
3865 * etc/bench.pl.in (bench_fusion_parser): Remove.
3866 Adjust.
3867
8452c667
AD
38682008-11-26 Akim Demaille <demaille@gostai.com>
3869
3870 Use yy* consistently.
3871 * data/glr.c: Now that yyrhs no longer exists as a global
3872 variable, rename local "rhs" variables into "yyrhs" for
3873 consistency.
3874
783aa653
AD
38752008-11-25 Akim Demaille <demaille@gostai.com>
3876
3877 Get rid of yyrhs and yyprhs in glr.c.
3878 * data/glr.c (yyrhs, yyprhs): Remove.
3879 Instead, use the state stack and yystos.
3880
6130b755
AD
38812008-11-25 Akim Demaille <demaille@gostai.com>
3882
3883 Flag glr tests.
3884 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
3885 as an Autotest keyword.
3886
95a7b1c9
AD
38872008-11-25 Akim Demaille <demaille@gostai.com>
3888
3889 Prefer TESTSUITE_FLAGS.
3890 TESTSUITEFLAGS is barely readable.
feda5527 3891
95a7b1c9
AD
3892 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
3893 for backward compatibility.
3894 Use the former instead of the latter.
3895
b4f18401
AD
38962008-11-25 Akim Demaille <demaille@gostai.com>
3897
3898 Get rid of yyrhs and yyprhs in larl1.java.
3899 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
3900 (yy_reduce_print): Rather, use yystos_ and the state stack.
3901
c265fd6b
AD
39022008-11-25 Akim Demaille <demaille@gostai.com>
3903
3904 Formatting changes.
3905
68dbdee8
AD
39062008-11-25 Akim Demaille <demaille@gostai.com>
3907
3908 Get rid of yyrhs and yyprhs in yacc.c.
30c10faf
AD
3909 They were used to get the symbol types, given a rule number, when
3910 displaying the top of the stack before a reduction. But the
3911 symbol type is available from the state stack. This has two be
3912 benefits: two tables less in the parser (making it smaller), and a
3913 more consistent use of the three stacks which will help to fuse
3914 them.
feda5527 3915
68dbdee8
AD
3916 * data/yacc.c (yyprhs, yyrhs): Remove.
3917 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
3918 (yy_reduce_print): Take yyssp as argument.
3919 Use it, together with yystos, to get the symbol type.
3920 * tests/regression.at (Web2c Report): Remove these tables from the
3921 expected output.
3922
6ab1adbe
AD
39232008-11-25 Akim Demaille <demaille@gostai.com>
3924
3925 b4_tables_map.
3926 The point is to factor the generation of the tables across skeletons.
3927 This is language dependant.
feda5527 3928
6ab1adbe
AD
3929 * data/c.m4 (b4_comment_): New.
3930 Should be usable to define how to generate tables independently of
3931 the language.
3932 (b4_c_comment): New.
3933 (b4_comment): Bounce to b4_c_comment.
3934 Now support $2 = [PREFIX] for indentation.
3935 * data/lalr1.cc (b4_table_declare): Don't output a comment if
3936 there is no comment.
3937 Indent it properly when there is one.
3938 Output the ending semicolon.
3939 (b4_table_define): Space changes.
3940 Output the ending semicolon.
3941 (b4_tables_map): New.
3942 Use it twice instead of declaring and defining the (integral)
3943 tables by hand.
3944
0fddb3d5
AD
39452008-11-25 Akim Demaille <demaille@gostai.com>
3946
3947 b4_table_declare.
3948 * data/lalr1.cc (b4_table_declare): New.
3949 Use it to declare the tables defined with b4_table_define.
3950 (b4_table_define): Declare a third arg to match b4_table_declare
3951 signature.
3952 Move all the comments around invocations of b4_table_define into
3953 the invocations itselves.
3954 Move things around to have the order for declarations and
3955 definitions.
3956
c4ddc0fb
AD
39572008-11-25 Akim Demaille <demaille@gostai.com>
3958
3959 Formatting changes.
3960 * data/lalr1.java: here.
3961
e0c653e7
AD
39622008-11-25 Akim Demaille <demaille@gostai.com>
3963
3964 b4_args is more general than only C++.
3965 * data/lalr1.cc (b4_args, _b4_args): Move to...
3966 * data/bison.m4: here.
3967
4182a0a1
DJ
39682008-11-21 Di-an Jan <dianj@freeshell.org>
3969
3970 Implement no-XXX arguments for --warnings, --report, --trace.
3971 * src/getargs.c (flags_argmatch): Handles no-XXX.
3972 Fix typo in doxygen comment.
3973
01466c3e
AD
39742008-11-21 Akim Demaille <demaille@gostai.com>
3975
3976 Display the changes in cross-options.texi.
3977 * build-aux/cross-options.pl ($sep): New, to separate items.
3978 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
3979 changes.
3980
a7c09cba
DJ
39812008-11-20 Di-an Jan <dianj@freeshell.org>
3982
3983 Improves options in the manual.
3984 * doc/bison.texinfo (-g, -x): Add space before argument.
3985 (Option Cross Key): Implement FIXME: listing directives also.
3986 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
3987 (Short Option): Special case -d. Put arguments inside @option.
feda5527 3988 (Bison Directive): Add column, automatically extracted from
a7c09cba
DJ
3989 src/scan-gram.l (actual name passed as the first argument)
3990 with special case for %define.
3991 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
3992 to build-aux/cross-options.pl.
3993 * src/getargs.c (usage): Document limitations of cross-options.pl.
3994 * src/scan-gram.l: Likewise.
3995
6c88b51e
JD
39962008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
3997
3998 Fix unexpanded macros in GLR defines file.
3999 Reported by Csaba Raduly at
4000 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
4001 * THANKS (Csaba Raduly): Add.
4002 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
4003 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
4004 lexer in a separate module that includes the defines file.
4005 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
4006 source.
4007 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
4008 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
4009 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
4010 (AT_DATA_SOURCE_PROLOGUE): New.
4011 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
4012 (AT_DATA_SOURCE): New.
4013 (AT_FULL_COMPILE): Extend to support an additional source file.
4014
1e034807
AD
40152008-11-18 Akim Demaille <demaille@gostai.com>
4016
4017 More TODO.
4018 * TODO: More short term issues.
4019
e3dda35c
AD
40202008-11-18 Akim Demaille <demaille@gostai.com>
4021
4022 Regen.
4023 * src/parse-gram.h, src/parse-gram.c: Regen.
4024
bd187d7b
AD
40252008-11-18 Akim Demaille <demaille@gostai.com>
4026
4027 Use b4_subtract where possible.
4028 * data/lalr1.cc (b4_subtract): Move to...
4029 * data/bison.m4: here.
4030 * data/glr.c (b4_rhs_data): Use it.
4031 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
4032
6085ab0d
AD
40332008-11-18 Akim Demaille <demaille@gostai.com>
4034
4035 Remove incorrect mode specification.
4036 * data/glr.cc: Don't pretend it's C code.
4037
9ce405ce
JD
40382008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
4039
4040 Simplify last patch slightly.
4041 * src/getargs.c (getargs): Here.
4042
a8beef7e
JD
40432008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
4044
4045 Fix last warning from --enable-gcc-warnings.
4046 * src/getargs.c (getargs): Don't assign const address to non-const
4047 pointer.
4048
d50eea6d
JD
40492008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
4050
4051 Don't let maintainer-*-check targets force a version update.
4052 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
4053 handled.
4054
f5f419de
DJ
40552008-11-17 Di-an Jan <dianj@freeshell.org>
4056
4057 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
4058 Align menus. Adjust word wrapping. Use node names for menu names.
4059 (Examples): Don't abbreviate node names.
4060 (LocalWords): Remove abbreviations.
4061 (Copying): Make description a sentence.
d50eea6d 4062 (Java Action Features): Remove period to match the rest of menu.
f5f419de 4063
d73e55e0
DJ
40642008-11-17 Di-an Jan <dianj@freeshell.org>
4065
4066 Handles several --enable-gcc-warnings.
4067 * src/getargs.c (command_line_location): Set parameters to void.
4068 * src/output.c (symbol_type_name_cmp): Make static.
4069 (symbols_by_type_name): Set parameters to void.
4070 (symbol_definitions_output): Remove unused parameter. Rename as...
4071 (prepare_symbol_definitions): this.
4072 (muscles_output): Move symbol_definitions_output to...
4073 (output): here as prepare_symbol_definitions.
4074 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
d50eea6d 4075 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
d73e55e0 4076
68c989de
DJ
40772008-11-17 Di-an Jan <dianj@freeshell.org>
4078
4079 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
4080 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
4081
23ce6f4c
AD
40822008-11-16 Akim Demaille <demaille@gostai.com>
4083
4084 Add missing $(EXEEXT).
4085 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
4086 "src/bison$(EXEEXT)".
4087 Reported by Di-an Jan.
4088
dd704c35
AD
40892008-11-15 Akim Demaille <demaille@gostai.com>
4090
4091 * TODO: Update.
4092
dab244d5
AD
40932008-11-15 Akim Demaille <demaille@gostai.com>
4094
4095 Formatting changes.
4096 * tests/input.at: here.
4097
4b4da9fb
AD
40982008-11-15 Akim Demaille <demaille@gostai.com>
4099
4100 Remove duplicate header inclusion.
4101 * src/LR0.c: here.
4102
4ea3f53d
AD
41032008-11-15 Akim Demaille <demaille@gostai.com>
4104
4105 * src/parse-gram.h, src/parse-gram.c: Regen.
4106
cb823b6f
AD
41072008-11-15 Akim Demaille <demaille@gostai.com>
4108
4109 Support parametric types.
b06df3c2
AD
4110
4111 There are two issues to handle: first scanning nested angle
4112 bracket pairs to support types such as std::pair< std::string,
4113 std::list<std::string> > >.
4114
4115 Another issue is to address idiosyncracies of C++: do not glue two
4116 closing angle brackets together (otherwise it's operator>>), and
4117 avoid sticking blindly a TYPE to the opening <, as it can result
4118 in '<:' which is a digraph for '['.
4119
cb823b6f
AD
4120 * src/scan-gram.l (brace_level): Rename as...
4121 (nesting): this.
4122 (SC_TAG): New.
4123 Implement support for complex tags.
b06df3c2 4124 (tag): Accept
cb823b6f
AD
4125 , but not <.
4126 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
4127 (b4_symbol_variant): Leave space around types as parameters.
4128 * examples/variant.yy: Use nested template types and leading ::.
4129 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
4130 Rename as...
4131 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
4132 * tests/c++.at: Test parametric types.
4133
7b6e6753
AD
41342008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
4135
4136 Test token.prefix.
4137 This is not sufficient, but we test at least that the make_SYMBOL
4138 interface is not affected by token.prefix. A more general test
4139 will be implemented when the support of token.prefix is generalized
4140 to more skeletons.
b06df3c2 4141
7b6e6753
AD
4142 * tests/c++.at: One more variant test, using token.prefix.
4143
dddec537
AD
41442008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
4145
4146 Test the make_TOKEN interface.
4147 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
4148 Factor the common code in yylex.
4149 Use it to test "%define lex_symbol".
4150
7d3e21ba
AD
41512008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
4152
4153 Formatting change.
4154
4fc55348
AD
41552008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
4156
4157 Simplify code for variants bench marks.
4158 * etc/bench.pl.in (&generate_grammar_list): Define and use
4159 location_type.
4160 Factor the common code in yylex.
4161
070e6509
AD
41622008-11-15 Akim Demaille <demaille@gostai.com>
4163
4164 Better error message.
4165 * bootstrap (find_tool): Fix the error message.
4166
0078681b
AD
41672008-11-15 Akim Demaille <demaille@gostai.com>
4168
4169 Update variant.yy to newest interface.
4170 * examples/variant.yy: Define lex_symbol.
4171 Adjust.
4172
ff084799
AD
41732008-11-15 Akim Demaille <demaille@gostai.com>
4174
4175 Don't use locations in variant.yy.
4176 * examples/variant.yy: Adjust to not using locations.
4177
b0d79ec6
AD
41782008-11-15 Akim Demaille <demaille@gostai.com>
4179
4180 Comment changes.
4181 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
4182 comments for the license.
4183
d4977ce3
AD
41842008-11-15 Akim Demaille <demaille@gostai.com>
4185
4186 Remove tests/Makefile.am.
4187 * tests/Makefile.am: Rename as...
4188 * tests/local.mk: this.
4189 * Makefile.am, configure.ac: Adjust.
4190 * Makefile.am (DISTCLEANFILES): Define.
4191 (maintainer-check, maintainer-xml-check, maintainer-push-check):
4192 Remove, we no longer need to bounce to the real targets.
4193
87f1149a
AD
41942008-11-15 Akim Demaille <demaille@gostai.com>
4195
4196 Comment changes.
4197
36415906
AD
41982008-11-15 Akim Demaille <demaille@gostai.com>
4199
4200 djgpp/local.mk.
4201 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
4202 * djgpp/local.mk: this new file.
4203
e2c2f696
AD
42042008-11-15 Akim Demaille <demaille@gostai.com>
4205
4206 Remove doc/Makefile.am.
4207 * doc/Makefile.am: Rename as...
4208 * doc/local.mk: this.
4209 Adjust paths
4210 * Makefile.am, configure.ac: Adjust.
4211 * Makefile.am (MOSTLYCLEANFILES): New.
4212 * src/local.mk: Adjust.
4213
2ead32e6
AD
42142008-11-15 Akim Demaille <demaille@gostai.com>
4215
4216 Move sc_tight_scope into maint.mk.
b06df3c2
AD
4217 It does not work, and I don't know how it was supposed to work: it
4218 seems to be looking for sources in the build tree. I just moved
4219 it at a better place, fixing it is still required.
4220
2ead32e6
AD
4221 * src/local.mk (echo): Remove.
4222 (sc_tight_scope): Move to...
4223 * maint.mk: here.
4224
2df9ec37
AD
42252008-11-15 Akim Demaille <demaille@gostai.com>
4226
4227 Regen.
4228 * src/parse-gram.h, src/parse-gram.h: Regen.
4229
0305d25e
AD
42302008-11-15 Akim Demaille <demaille@gostai.com>
4231
4232 Remove src/Makefile.am.
4233 * src/Makefile.am: Rename as...
4234 * src/local.mk: this.
4235 Prefix all the paths with src/.
4236 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
4237 (AM_CPPFLAGS): Find find in builddir/src.
4238 (YACC): Move the flags into...
4239 (AM_YFLAGS): here.
4240 * maint.mk (sc_tight_scope): Disable.
4241 It used to bounce to the version in src/Makefile.am which is now
4242 part of this very Makefile.
4243 * Makefile.am, configure.ac: Adjust.
4244 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
4245 include "..." to find files "here": we are no longer in src/, so
4246 qualify the includes with src/.
4247 * doc/Makefile.am (PREPATH): No longer include the top_builddir
4248 prefix.
4249 (.x.1): Adjust to be able to create src/foo from the top level
4250 Makefile, instead of going bounce to src/Makefile the creation of
4251 foo.
4252
5277c0a3
AD
42532008-11-15 Akim Demaille <demaille@gostai.com>
4254
4255 Remove useless variable.
4256 * doc/Makefile.am (srcsrcdir): Remove.
4257
6a5aa0cd
AD
42582008-11-15 Akim Demaille <demaille@gostai.com>
4259
4260 Remove data/Makefile.am.
4261 * data/Makefile.am: Rename as...
4262 * data/local.mk: this.
4263 Adjust paths.
4264 * Makefile.am, configure.ac: Adjust.
4265
7cb794dc
AD
42662008-11-15 Akim Demaille <demaille@gostai.com>
4267
4268 Remove etc/Makefile.am.
4269 * etc/Makefile.am: Rename as...
4270 * etc/local.mk: this.
4271 Adjust.
4272 * Makefile.am, configure.ac: Adjust.
4273
cd409e3b
AD
42742008-11-15 Akim Demaille <demaille@gostai.com>
4275
4276 Remove examples/local.mk.
4277 examples/calc++/Makefile.am might be interesting to keep as is, since
4278 it is an example in itself.
2df9ec37 4279
cd409e3b
AD
4280 * examples/Makefile.am: Rename as...
4281 * examples/local.mk: this.
4282 Adjust.
4283 * Makefile.am, configure.ac: Adjust.
4284
9a1e4214
AD
42852008-11-15 Akim Demaille <demaille@gostai.com>
4286
4287 Remove build-aux/Makefile.am.
4288 Recursive Makefiles are really way too slow, let's get rid of some of
4289 them.
2df9ec37 4290
9a1e4214
AD
4291 * build-aux/Makefile.am: Rename as...
4292 * build-aux/local.mk: this.
4293 Adjust paths.
4294 * Makefile.am, configure.ac: Adjust.
4295
0634493c
AD
42962008-11-15 Akim Demaille <demaille@gostai.com>
4297
4298 Provide convenience constructors for locations and positions.
4299 * data/location.cc (position::position): Accept file, line and
4300 column as arguments with default values.
4301 Always qualify initial line and column literals as unsigned.
4302 (location::location): Provide convenience constructors.
4303
fe1b448a
AD
43042008-11-15 Akim Demaille <demaille@gostai.com>
4305
b06df3c2
AD
4306 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
4307 token type.
fe1b448a
AD
4308 Using template buys us nothing, and makes it uselessly complex to
4309 construct a symbol. Besides, it could not be generalized to other
4310 languages, while make_FOO would work in C/Java etc.
2df9ec37 4311
fe1b448a
AD
4312 * data/lalr1.cc (b4_symbol_): New.
4313 (b4_symbol): Use it.
4314 (b4_symbol_constructor_declaration_)
4315 (b4_symbol_constructor_definition_): Instead of generating
4316 specializations of an overloaded template function, just generate
4317 several functions whose names are forged from the token names
4318 without the token.prefix.
4319 (b4_symbol_constructor_declarations): Generate them for all the
4320 symbols, not just by class of symbol type, now that instead of
4321 specializing a function template by the token, we generate a
4322 function named after the token.
4323 (b4_symbol_constructor_specialization_)
4324 (b4_symbol_constructor_specializations): Remove.
4325 * etc/bench.pl.in: Adjust to this new API.
4326
5679f311
AD
43272008-11-13 Akim Demaille <demaille@gostai.com>
4328
4329 %define token.prefix.
b06df3c2
AD
4330 Provide a means to add a prefix to the name of the tokens as
4331 output in the generated files. Because of name clashes, it is
4332 good to have such a prefix such as TOK_ that protects from names
4333 such as EOF, FILE etc. But it clutters the grammar itself.
2df9ec37 4334
5679f311
AD
4335 * data/bison.m4 (token.prefix): Empty by default.
4336 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
4337 * data/lalr1.cc (b4_symbol): Ditto.
4338
3204049e
AD
43392008-11-13 Akim Demaille <demaille@gostai.com>
4340
4341 Compute at M4 time some of the subtractions.
90290ce5 4342 * data/lalr1.cc (b4_subtract): New.
3204049e
AD
4343 (b4_rhs_data): Use it.
4344
202598d3
AD
43452008-11-13 Akim Demaille <demaille@gostai.com>
4346
4347 symbol::token.
b06df3c2 4348 This allows the user to get the type of a token returned by yylex.
2df9ec37 4349
202598d3
AD
4350 * data/lalr1.cc (symbol::token): New.
4351 (yytoknum_): Define when %define lex_symbol, independently of
4352 %debug.
4353 (yytoken_number_): Move into...
4354 (symbol::token): here, since that's the only use.
4355 The other one is YYPRINT which was not officially supported
4356 by lalr1.cc, and anyway it did not work since YYPRINT uses this
4357 array under a different name (yytoknum).
4358
fc2476c7
AD
43592008-11-13 Akim Demaille <demaille@gostai.com>
4360
4361 YYERRCODE.
4362 * TODO (YYERRCODE): Mention the case of $undef.
4363
865f1e9f
AD
43642008-11-13 Akim Demaille <demaille@gostai.com>
4365
4366 TODO: YYPRINT.
4367 * TODO (YYPRINT): New.
4368
cb0b136a
AD
43692008-11-13 Akim Demaille <demaille@gostai.com>
4370
4371 Comment changes.
4372 * data/lalr1.cc, data/yacc.c: Fix the description of the
4373 yytranslate and yytoknum tables.
4374
2c086d29
AD
43752008-11-13 Akim Demaille <demaille@gostai.com>
4376
4377 Define make_symbol in the header.
b06df3c2
AD
4378 To reach good performances these functions should be inlined (yet
4379 this is to measure precisely). To this end they must be available
4380 to the caller.
2df9ec37 4381
2c086d29
AD
4382 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
4383 location_type with the class name.
4384 Since will now be output in the header, declare "inline".
4385 No longer use b4_symbol_constructor_specializations, but
4386 b4_symbol_constructor_definitions in the header.
4387 Don't call it in the *.cc file.
4388
1c4af381
AD
43892008-11-13 Akim Demaille <demaille@gostai.com>
4390
4391 Define yytranslate in the header for lex_symbol.
4392 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
4393 into the header file when using %define lex_symbol.
4394 (yytranslate_): Declare inline.
4395
e51b0a82
AD
43962008-11-13 Akim Demaille <demaille@gostai.com>
4397
b06df3c2
AD
4398 Define the constructors of symbol_type in
4399 b4_symbol_constructor_definitions.
e51b0a82 4400 The constructors are called by the make_symbol functions, which a
b06df3c2
AD
4401 forthcoming patch will move elsewhere. Hence the interest of
4402 putting them together.
2df9ec37 4403
b06df3c2
AD
4404 The stack_symbol_type does not need to be moved, it is used only
4405 by the parser.
2df9ec37 4406
e51b0a82
AD
4407 * data/lalr1.cc: Move symbol_type and symbol_base_type
4408 constructors into...
4409 (b4_symbol_constructor_definitions): here.
4410 Adjust.
4411
78835571
AD
44122008-11-13 Akim Demaille <demaille@gostai.com>
4413
4414 Make it easier to move the definition of yytranslate_.
4415 Forthcoming changes will make it possible to use yytranslate_
4416 from outside the parser implementation file.
2df9ec37 4417
78835571
AD
4418 * data/lalr1.cc (b4_yytranslate_definition): New.
4419 Use it.
4420
c1e6c88c
AD
44212008-11-13 Akim Demaille <demaille@gostai.com>
4422
4423 Remove useless class specification.
4424 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
4425 to refer to the class name to use a type defined by the class for
4426 arguments of member functions.
4427
4654b0c0
AD
44282008-11-13 Akim Demaille <demaille@gostai.com>
4429
4430 Finer input type for yytranslate.
4431 This patch is debatable: the tradition expects yylex to return an int
4432 which happens to correspond to token_number (which is an enum). This
4433 allows for instance to return characters (such as '*' etc.). But this
4434 goes against the stronger typing I am trying to have with the new
4435 lex interface which return a symbol_type. So in this case, feed
4436 yytranslate_ with a token_type.
2df9ec37 4437
4654b0c0
AD
4438 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
4439 expect a token_type.
4440
dd735e4e
AD
44412008-11-13 Akim Demaille <demaille@gostai.com>
4442
4443 Honor lex-params in %define lex_symbol mode.
4444 * data/lalr1.cc: Use b4_lex_param.
4445
6659366c
AD
44462008-11-13 Akim Demaille <demaille@gostai.com>
4447
4448 Simplify names.
4449 * src/output.c (symbol_definitions_output): Rename symbol
4450 attributes type_name and has_type_name as type and has_type.
4451 * data/lalr1.cc: Adjust uses.
4452
e9805e57
AD
44532008-11-13 Akim Demaille <demaille@gostai.com>
4454
4455 Use b4_type_names for the union type.
b06df3c2
AD
4456 The union used to compute the size of the variant used to iterate
4457 over the type of all the symbols, with a lot of redundancy. Now
4458 iterate over the lists of symbols having the same type-name.
2df9ec37 4459
e9805e57
AD
4460 * data/lalr1.cc (b4_char_sizeof_): New.
4461 (b4_char_sizeof): Use it.
4462 Adjust to be called with a list of numbers instead of a single
4463 number.
4464 Adjust its caller for new-line issues.
4465
aea10ef4
AD
44662008-11-13 Akim Demaille <demaille@gostai.com>
4467
4468 Define the "identifier" of a symbol.
b06df3c2
AD
4469 Symbols may have several string representations, for instance if
4470 they have an alias. What I call its "id" is a string that can be
4471 used as an identifier. May not exist.
2df9ec37 4472
b06df3c2
AD
4473 Currently the symbols which have the "tag_is_id" flag set are
4474 those that don't have an alias. Look harder for the id.
2df9ec37 4475
aea10ef4
AD
4476 * src/output.c (is_identifier): Move to...
4477 * src/symtab.c (is_identifier): here.
4478 * src/symtab.h, src/symtab.c (symbol_id_get): New.
4479 * src/output.c (symbol_definitions_output): Use it to define "id"
4480 and "has_id".
4481 Remove the definition of "tag_is_id".
4482 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
4483 "tag_is_id" were used to produce code.
4484 We still use "tag" for documentation.
4485
2ea7730c
AD
44862008-11-11 Akim Demaille <demaille@gostai.com>
4487
4488 Locations are no longer required by lalr1.cc.
4489 * data/lalr1.cc (_b4_args, b4_args): New.
4490 Adjust all uses of locations to make them optional.
4491 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
4492 (AT_CHECK_NAMESPACE): Check the use of locations.
4493 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
4494 without locations with lalr1.cc.
4495 Test these cases.
4496 * tests/output.at: Check lalr1.cc with and without location
4497 support.
4498 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
4499 Don't use locations.
4500
7ca2266a
AD
45012008-11-11 Akim Demaille <demaille@gostai.com>
4502
4503 AT_FULL_COMPILE.
4504 * tests/local.at (AT_FULL_COMPILE): New.
4505 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
4506
1a7a65f9
AD
45072008-11-11 Akim Demaille <demaille@gostai.com>
4508
4509 Support parens in calc++.
4510 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
4511 * examples/calc++/test (run): Check the expected output.
4512 Adjust callers.
4513 Check parens too.
4514
c944f7f2
AD
45152008-11-11 Akim Demaille <demaille@gostai.com>
4516
4517 Simplify lalr1.cc since %defines is mandatory.
4518 * data/lalr1.cc: Remove useless calls to b4_defines_if.
4519
dada3cd1
AD
45202008-11-11 Akim Demaille <demaille@gostai.com>
4521
4522 TODO: yyfmt.
4523 * TODO (yysyntax_error): New item.
4524
422c18f4
AD
45252008-11-11 Akim Demaille <demaille@gostai.com>
4526
4527 Prefer M4 to CPP.
4528 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
4529 YYERROR_VERBOSE.
4530
a0ffc175
AD
45312008-11-11 Akim Demaille <demaille@gostai.com>
4532
4533 Support i18n of the parse error messages.
4534 * TODO (lalr1.cc/I18n): Remove.
4535 * data/lalr1.cc (yysyntax_error_): Support the translation of the
4536 error messages, as done in yacc.c.
4537 Stay within the yy* pseudo namespace.
4538
00a8a083
AD
45392008-11-11 Akim Demaille <demaille@gostai.com>
4540
4541 More TODO.
4542 * TODO (single stack, yysyntax_error): New.
4543
09277875
AD
45442008-11-11 Akim Demaille <demaille@gostai.com>
4545
4546 Make it possible to return a symbol_type from yylex.
4547 * data/lalr1.cc (b4_lex_symbol_if): New.
4548 (parse): When lex_symbol is defined, expected yylex to return the
4549 complete lookahead.
4550 * etc/bench.pl.in (generate_grammar_list): Extend to support this
4551 yylex interface.
4552 (bench_variant_parser): Exercise it.
4553
64c1b92a
AD
45542008-11-11 Akim Demaille <demaille@gostai.com>
4555
4556 Remove useless bench case.
4557 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
4558 no longer used.
4559
2722aa42
AD
45602008-11-11 Akim Demaille <demaille@gostai.com>
4561
4562 Improve display of directives.
4563 * etc/bench.pl.in (parse_term): Don't add useless eol.
4564
918eb7c5
AD
45652008-11-11 Akim Demaille <demaille@gostai.com>
4566
4567 Use string_cast in the bench.
4568 * etc/bench.pl.in (generate_grammar_list): Define and use
4569 string_cast.
4570
39be9022
AD
45712008-11-11 Akim Demaille <demaille@gostai.com>
4572
4573 Replace yychar with a Boolean.
4574 * data/lalr1.cc (parse::yychar): Replace by...
4575 (parse::yyempty): this.
4576
a2e3fa77
AD
45772008-11-11 Akim Demaille <demaille@gostai.com>
4578
4579 Factor the tables.
4580 * TODO: New item.
4581
aba12ad1
AD
45822008-11-11 Akim Demaille <demaille@gostai.com>
4583
4584 Let yytranslate handle the eof case.
4585 * data/lalr1.cc (yytranslate_): Handle the EOF case.
4586 Adjust callers.
4587 No longer expect yychar to be equal to yyeof_, rather, test the
4588 lookahead's (translated) kind.
4589
27cb5b59
AD
45902008-11-11 Akim Demaille <demaille@gostai.com>
4591
4592 yychar cannot be empty in yyerrlab.
4593 * TODO (yychar == yyempty_): New.
4594 * data/lalr1.cc: Remove the handling of this case.
4595 This eases forthcoming changes related to yychar and yytranslate.
4596
fce629c0
AD
45972008-11-11 Akim Demaille <demaille@gostai.com>
4598
4599 Bench: syntactic sugar for %define/#define.
4600 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
4601 (&bench_push_parser, bench_variant_parser): Use this feature.
4602 (&eat): New.
4603 Use it.
4604
ce671960
AD
46052008-11-11 Akim Demaille <demaille@gostai.com>
4606
4607 Less memory pressure on the "list" bench.
4608 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
4609 the values, to limit memory pressure.
4610
2873fdf8
AD
46112008-11-11 Akim Demaille <demaille@gostai.com>
4612
4613 Introduce make_symbol.
b06df3c2
AD
4614 make_symbol provides a means to construct a full symbol (kind,
4615 value, location) in a single shot. It is meant to be a Symbol
4616 constructor, parameterized by the symbol kind so that overloading
4617 would prevent incorrect kind/value pairs. Unfortunately
4618 parameterized constructors do not work well in C++ (unless the
4619 parameter also appears as an argument, which is not acceptable),
4620 hence the use of a function instead of a constructor.
2df9ec37 4621
2873fdf8
AD
4622 * data/lalr1.cc (b4_symbol_constructor_declaration_)
4623 (b4_symbol_constructor_declarations)
4624 (b4_symbol_constructor_specialization_)
4625 (b4_symbol_constructor_specializations)
4626 (b4_symbol_constructor_definition_)
4627 (b4_symbol_constructor_definitions): New.
4628 Use them where appropriate to generate declaration, declaration of
4629 the specializations, and implementations of the templated
4630 overloaded function "make_symbol".
4631 (variant::variant): Always define a default ctor.
4632 Also provide a copy ctor.
4633 (symbol_base_type, symbol_type): New ctor overloads for value-less
4634 symbols.
4635 (symbol_type): Now public, so that functions such as yylex can use
4636 it.
4637
8be046d7
AD
46382008-11-11 Akim Demaille <demaille@gostai.com>
4639
4640 Inform m4 whether a tag is a valid id.
4641 * src/output.c (is_identifier): New.
4642 (symbol_definitions_output): Use it to define tag_is_id.
4643 But maybe this should be done at m4 level?
4644
de62edee
AD
46452008-11-11 Akim Demaille <demaille@gostai.com>
4646
4647 Test 214 was failing: it greps with a pattern containing [ ]*
4648 which obviously meant to catch spaces and tabs, but contained only
4649 spaces. Tabulations in sources are a nuisance, so to simplify the
4650 matter, get rid of all the tabulations in the Java sources. The
4651 other skeletons will be treated equally later.
4652
4653 * data/java.m4, data/lalr1.java: Untabify.
4654 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
4655 tabulations are no longer generated.
4656
905f0697
PB
46572008-11-11 Paolo Bonzini <bonzini@gnu.org>
4658
4659 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
4660 * configure.ac: Adjust usage.
4661 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
4662 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
4663 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
4664
09ccae9b
DJ
46652008-11-10 Di-an Jan <dianj@freeshell.org>
4666
4667 Workaround Java's ``code too large'' problem for parser tables
4668 in most cases, by using one function per initialization.
4669 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
4670 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
4671 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
4672 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
4673 (yytname_): Use b4_typed_parser_table.
4674 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
4675 ``code too large'' error.
4676
1979121c
DJ
46772008-11-10 Di-an Jan <dianj@freeshell.org>
4678
4679 * NEWS: Document them.
de62edee 4680
1979121c
DJ
4681 General Java skeleton improvements.
4682 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
4683 using gcj < 4.3 in the testsuite, according to comments in
4684 gnulib/m4/javacomp.m4.
4685 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
4686 location_type, position_type): Remove extraneous brackets from
4687 b4_percent_define_default.
4688 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
4689 m4_define and m4_define_default.
4690 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
4691 which marks the end of user code with appropriate syncline, like all
4692 the other skeletons.
4693 (b4_user_post_prologue): Add. Don't silently drop.
4694 (yylex): Remove.
4695 (parse): Inline yylex.
4696 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
4697 (%{...%}): Fix typo of %code imports.
4698 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
4699
4700 Support annotations on parser class with %define annotations.
4701 * data/lalr1.java (annotations): Add to parser class modifier.
4702 * doc/bison.texinfo (Java Parser Interface): Document
4703 %define annotations.
4704 (Java Declarations Summary): Document %define annotations.
4705 * tests/java.at (Java parser class modifiers): Test annotations.
4706
4707 Do not generate code for %error-verbose unless requested.
4708 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
4709 Make private. Make conditional on %error-verbose.
4710 (getErrorVerbose, setErrorVerbose): New.
4711 (yytnamerr_): Make conditional on %error-verbose.
4712 (yysyntax_error): Make some code conditional on %error-verbose.
4713 * doc/bison.texinfo (Java Bison Interface): Remove the parts
4714 about %error-verbose having no effect.
4715 (getErrorVerbose, setErrorVerbose): Document.
4716
4717 Move constants for token names to Lexer interface.
4718 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
4719 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
4720 (parse): Qualify EOF to Lexer.EOF.
4721 * doc/bison.texinfo (Java Parser Interface): Move documentation of
4722 EOF and token names to Java Lexer Interface.
4723 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
4724
4725 Make yyerror public.
4726 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
4727 (yyerror): Change to public. Add Javadoc comments. Use longer
4728 parameter names. Make the body rather than the declarator
4729 conditional on %locations.
4730 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
4731
4732 Allow user to add code to the constructor with %code init.
4733 * data/java.m4 (b4_init_throws): New, for %define init_throws.
4734 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
4735 Add %code init to the front of the constructor body.
4736 * doc/bison.texinfo (YYParser.YYParser): Document %code init
4737 and %define init_throws.
4738 (Java Declarations Summary): Document %code init and
4739 %define init_throws.
4740 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
4741 (Java constructor init and init_throws): Add tests.
de62edee 4742
42f832d6
AD
47432008-11-10 Akim Demaille <demaille@gostai.com>
4744
4745 Update TODO.
4746 * TODO (-D): is implemented.
4747 (associativity): Same precedence must have the same associativity.
4748 For instance, how can a * b / c be parsed if * is %left and / is
4749 %right?
4750 (YYERRORCODE, YYFAIL, YYBACKUP): New.
4751
247efe34
AD
47522008-11-10 Akim Demaille <demaille@gostai.com>
4753
4754 Formatting changes.
4755
5d731440
AD
47562008-11-10 Akim Demaille <demaille@gostai.com>
4757
4758 More information about the symbols.
4759 * src/output.c (type_names_output): Document all the symbols,
4760 including those that don't have a type-name.
4761 (symbol_definitions_output): Define "is_token" and
4762 "has_type_name".
4763 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
4764 type-name, now that they are defined too in b4_type_names.
4765
21db118b
AD
47662008-11-10 Akim Demaille <demaille@gostai.com>
4767
4768 Regen.
4769
6ed15cde
AD
47702008-11-10 Akim Demaille <demaille@gostai.com>
4771
4772 Make parser::yytranslate static.
b06df3c2
AD
4773 Small speedup (1%) on the list grammar. And makes yytranslate_
4774 available in non member functions.
de62edee 4775
6ed15cde
AD
4776 * data/lalr1.cc (yytranslate_): Does not need to be a instance
4777 function.
4778
30bb2edc
AD
47792008-11-10 Akim Demaille <demaille@gostai.com>
4780
4781 Avoid trailing spaces.
4782 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
4783 * data/lalr1.cc: Don't indent before rule and symbol actions, as
4784 they can be empty, and anyway this incorrectly indents the first
4785 action.
4786
b3a28fd4
AD
47872008-11-10 Akim Demaille <demaille@gostai.com>
4788
4789 Comment changes.
4790
914202bd
AD
47912008-11-10 Akim Demaille <demaille@gostai.com>
4792
4793 Use "enum" for integral constants.
4794 This is just nicer to read, I observed no speedup.
de62edee 4795
914202bd
AD
4796 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
4797 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
4798 (yyuser_token_number_max_, yyundef_token_): Move into...
4799 (yytranslate_): here.
4800
c17f9a4a
AD
48012008-11-10 Akim Demaille <demaille@gostai.com>
4802
4803 Shortcuts in bench directives.
4804 * etc/bench.pl.in (parse_dirs): New.
4805 Use it.
4806 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
4807 Create the benches in "benches/".
4808
b9855ea5
AD
48092008-11-10 Akim Demaille <demaille@gostai.com>
4810
4811 Formatting changes.
4812 * data/lalr1.cc: here.
4813
6e097787
AD
48142008-11-10 Akim Demaille <demaille@gostai.com>
4815
4816 Adjust verbose message to using emacs.
4817 * etc/bench.pl.in: Inform compilation-mode when we change the
4818 directory.
4819 (generate_grammar_list): Recognize %define "variant" in addition
4820 to %define variant.
4821
4c3cc7da
AD
48222008-11-10 Akim Demaille <demaille@gostai.com>
4823
4824 Classify symbols by type-name.
4825 * src/uniqstr.h (UNIQSTR_CMP): New.
4826 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
4827 (type_names_output): New.
4828 (muscles_output): Use it.
4829 * data/lalr1.cc (b4_symbol_action_): Remove.
4830 (b4_symbol_case_, b4_type_action_): New.
4831 Adjust uses of b4_symbol_action_ to use b4_type_action_.
4832
d69c9694
AD
48332008-11-10 Akim Demaille <demaille@gostai.com>
4834
4835 Change the handling of the symbols in the skeletons.
4836 Before we were using tables which lines were the symbols and which
4837 columns were things like number, tag, type-name etc. It is was
4838 difficult to extend: each time a column was added, all the numbers had
4839 to be updated (you asked for colon $2, not for "tag"). Also, it was
4840 hard to filter these tables when only a subset of the symbols (say the
4841 tokens, or the nterms, or the tokens that have and external number
4842 *and* a type-name) was of interest.
de62edee 4843
d69c9694
AD
4844 Now instead of monolithic tables, we define one macro per cell. For
4845 instance "b4_symbol(0, tag)" is a macro name which contents is
4846 self-decriptive. The macro "b4_symbol" provides easier access to
4847 these cells.
de62edee 4848
d69c9694
AD
4849 * src/output.c (type_names_output): Remove.
4850 (symbol_numbers_output, symbol_definitions_output): New.
4851 (muscles_output): Call them.
4852 (prepare_symbols): Define b4_symbols_number.
4853
5263bea9
AD
48542008-11-10 Akim Demaille <demaille@gostai.com>
4855
4856 --trace=muscles
4857 * src/getargs.h, src/getargs.c (trace_muscle): New.
4858 (trace_types, trace_args): Support it.
4859 * src/output.c (output_skeleton): Use it.
4860
4175f6bb
AD
48612008-11-10 Akim Demaille <demaille@gostai.com>
4862
4863 muscles_output.
4864 * src/output.c (muscles_output): New, extracted from...
4865 (output_skeleton): here.
4866 Adjust.
4867
1de69d6a
AD
48682008-11-10 Akim Demaille <demaille@gostai.com>
4869
4870 Formatting changes.
4871
36db78a7
AD
48722008-11-10 Akim Demaille <demaille@gostai.com>
4873
4874 Update the variant example.
4875 * examples/variant.yy: Formatting changes.
4876 One stage build.
4877
e5eb92e7
AD
48782008-11-10 Akim Demaille <demaille@gostai.com>
4879
4880 Support constructor with an argument.
4881 This improves the "list" bench by 2%.
de62edee 4882
e5eb92e7
AD
4883 * data/lalr1.cc (variant::build): Add an overloaded version with
4884 an argument.
4885 * tests/c++.at (AT_CHECK_VARIANT): Check it.
4886
76307410
AD
48872008-11-10 Akim Demaille <demaille@gostai.com>
4888
4889 Test variants.
4890 * tests/c++.at (AT_CHECK_VARIANTS): New.
4891 Use it with and without %define assert.
4892
d78f0ac9
AD
48932008-11-10 Akim Demaille <demaille@gostai.com>
4894
4895 Add %precedence support.
4896 Unfortunately it is not possible to reuse the %prec directive. This
4897 is because to please POSIX, we do not require to end the rules with a
4898 semicolon. As a result,
de62edee 4899
d78f0ac9 4900 foo: bar %prec baz
de62edee 4901
d78f0ac9
AD
4902 is ambiguous: either a rule which precedence is that of baz, or a rule,
4903 and then a declaration of the precedence of the token baz.
de62edee 4904
d78f0ac9
AD
4905 * doc/bison.texinfo: Document %precedence.
4906 (Precedence Only): New.
4907 * src/assoc.h, src/assoc.c (precedence_assoc): New.
4908 * src/conflicts.c (resolve_sr_conflict): Support it.
4909 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
4910 Parse it.
4911 * tests/calc.at: Use %precedence for NEG.
4912 * tests/conflicts.at (%precedence does not suffice)
4913 (%precedence suffices): New tests.
4914
c85be41a
AD
49152008-11-09 Akim Demaille <demaille@gostai.com>
4916
4917 Make benches in a sub dirs.
4918 * etc/bench.pl.in ($dir): New.
4919 Use it.
4920 Check the use of constructors with an argument.
4921 (bench_variant_parser): Fix.
4922
db65ca1f
AD
49232008-11-09 Akim Demaille <demaille@gostai.com>
4924
4925 fix eof condition
4926
9b0efa5b
AD
49272008-11-09 Akim Demaille <demaille@gostai.com>
4928
4929 Fix --help.
4930
432ac57a
AD
49312008-11-09 Akim Demaille <demaille@gostai.com>
4932
4933 Require the generation of parse-gram.output.
4934 * src/Makefile.am (YACC): Pass --report=all.
4935
deef2a0a
AD
49362008-11-09 Akim Demaille <demaille@gostai.com>
4937
4938 Formatting changes.
4939
df72984a
AD
49402008-11-09 Akim Demaille <demaille@gostai.com>
4941
4942 Update TODO.
4943 * TODO: Remove obsolete items.
4944 Update others.
4945
f10e19fd
AD
49462008-11-09 Akim Demaille <demaille@gostai.com>
4947
4948 Enhance bench.pl.
4949 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
4950 (@token, $grammar, $bench): New.
4951 (generate_grammar_variant): Rename as...
4952 (generate_grammar_list): this.
4953 (generate_grammar): Adjust.
4954 (bench_grammar): Rename as...
4955 (bench): this.
4956 Use it in the various bench-marking routines.
4957 (-b, -g): New options.
4958
5de9c593
AD
49592008-11-09 Akim Demaille <demaille@gostai.com>
4960
4961 Use a static hierarchy for symbols in the C++ parser.
4962 * data/lalr1.cc (symbol_base_type, symbol_type)
4963 (stack_symbol_type): Make it a static hierarchy.
4964 Adjust dependencies.
4965
757f8f98
AD
49662008-11-09 Akim Demaille <demaille@gostai.com>
4967
4968 bench.pl -d, --directive.
4969 * etc/bench.pl.in (@directive): New.
4970 (&bench_grammar): Use it.
4971 (&bench_list_grammar): New, to provide access to the "variant"
4972 grammar.
4973 Use it.
4974 (getopts): Support -d, --directive.
4975
d3be4f6d
AD
49762008-11-09 Akim Demaille <demaille@gostai.com>
4977
4978 Use inline for small operations.
4979 * data/lalr1.cc (symbol_base_type, symbol_type)
4980 (stack_symbol_type): Declare constructor and other operations as
4981 inline.
4982 (yy_destroy_): Inline.
4983
1f7d007b
AD
49842008-11-09 Akim Demaille <demaille@gostai.com>
4985
4986 Introduce a hierarchy for symbols.
4987 * data/lalr1.cc (symbol_base_type, symbol_type): New.
4988 (data_type): Rename as...
4989 (stack_symbol_type): this.
4990 Derive from symbol_base_type.
4991 (yy_symbol_value_print_): Merge into...
4992 (yy_symbol_print_): this.
4993 Rename as...
4994 (yy_print_): this.
4995 (yydestruct_): Rename as...
4996 (yy_destroy_): this.
4997 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
4998 (parser::parse): yyla is now of symbol_type.
4999 Use its type member instead of yytoken.
5000
bc0b0477
AD
50012008-11-09 Akim Demaille <demaille@gostai.com>
5002
5003 Rename data_type and stack_symbol_type.
5004 * data/lalr1.cc (data_type): Rename as...
5005 (stack_symbol_type): this.
5006
57295d14
AD
50072008-11-09 Akim Demaille <demaille@gostai.com>
5008
5009 Handle semantic value and location together.
5010 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
5011 yydata.value and yydata.location.
5012 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
5013 (YY_SYMBOL_PRINT): Now take semantic value and location as a
5014 single arg.
5015 Adjust all callers.
5016 (yydestruct_): New overload for a stack symbol.
5017
e9b0834e
AD
50182008-11-09 Akim Demaille <demaille@gostai.com>
5019
5020 Push a complete symbol, not connected parts.
5021 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
5022 state, value and location.
5023 Adjust callers.
5024
6082531a
AD
50252008-11-09 Akim Demaille <demaille@gostai.com>
5026
5027 Agregate yylval and yylloc.
5028 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
5029 (parser::yyla): this.
5030
33c195cc
AD
50312008-11-09 Akim Demaille <demaille@gostai.com>
5032
5033 Rely on the state stack to display reduction traces.
b06df3c2
AD
5034 To display rhs symbols before a reduction, we used information
5035 about the rule reduced, which required the tables yyrhs and
5036 yyprhs. Now use rely only on the state stack to get the same
5037 information.
de62edee 5038
33c195cc
AD
5039 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
5040 Use them.
5041 (parser::yyrhs_, parser::yyprhs_): Remove.
5042 (parser::yy_reduce_print_): Use the state stack.
5043
e1f93869
AD
50442008-11-09 Akim Demaille <demaille@gostai.com>
5045
5046 Fuse yyval and yyloc into yylhs.
5047 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
5048 yylhs.
5049 (parse): Replace yyval and yyloc with yylhs.value and
5050 yylhs.location.
5051 After a user action, compute yylhs.state earlier.
5052 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
5053 fresh error_token.
5054
2935744b
DJ
50552008-11-09 Di-an Jan <dianj@freeshell.org>
5056
5057 Remove unused variable.
5058 * src/output.c (type_names_output): Remove unused variable sep.
5059
bbf9ca37
PB
50602008-11-09 Paolo Bonzini <bonzini@gnu.org>
5061
5062 Change tests/output.at quoting.
5063 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
5064 expanding arguments.
5065
d9a9b96b
JD
50662008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
5067
5068 Don't add a semicolon to actions for %skeleton or %language.
5069 It breaks Java test cases as reported by Akim Demaille.
5070 * src/scan-code.l: Implement.
5071
51365192
JD
50722008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
5073
5074 Clean up %skeleton and %language priority implementation.
5075 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
5076 remove static qualifier because others will soon need to see it.
5077 (language_prio): Likewise.
5078 (getargs): Use command_line_prio rather than 0.
5079 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
5080 enum fields.
5081 (skeleton_prio): Extern it.
5082 (language_prio): Extern it.
5083 * src/parse-gram.y: Use grammar_prio rather than 1.
5084
9380cfd0
AD
50852008-11-07 Akim Demaille <demaille@gostai.com>
5086
5087 Moving push traces into yypush_.
5088 * data/lalr1.cc (yypush_): Now takes a optional trace message.
5089 Adjust all uses.
5090
8901f32e
AD
50912008-11-07 Akim Demaille <demaille@gostai.com>
5092
5093 The single-stack C++ parser is now the standard one.
5094 * data/lalr1.cc: Rename as...
5095 * data/lalr1-split.cc: this.
5096 * data/lalr1-fusion.cc: Rename as...
5097 * data/lalr1.cc: this.
5098 * etc/bench.pl.in: Adjust.
5099
8cdabf02
AD
51002008-11-07 Akim Demaille <demaille@gostai.com>
5101
5102 Avoid empty-if warnings.
5103 Reported by Quentin Hocquet.
de62edee 5104
8cdabf02
AD
5105 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
5106 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
5107
5a893c2b
AD
51082008-11-07 Akim Demaille <demaille@gostai.com>
5109
5110 Pass command line location to skeleton_arg and language_argmatch.
5111 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
5112 The location argument is now mandatory.
5113 Adjust all dependencies.
5114 (getargs): Use command_line_location.
5115
58697c6d
AD
51162008-11-07 Akim Demaille <demaille@gostai.com>
5117
5118 -D, --define.
5119 * src/getargs.c (usage): Document -D.
5120 Fix help string for --locations.
5121 (command_line_location): New.
5122 (short_options, long_options, getargs): Support -D, --define.
5123 (getargs): Move -d support at the right place.
5124 * doc/bison.texinfo (Bison Options): Update.
5125 * tests/input.at (%define, --define): New.
5126
9fe5a457
AD
51272008-11-07 Akim Demaille <demaille@gostai.com>
5128
5129 Initialize the muscle table before parsing the command line.
5130 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
5131 (getargs): Define file_name.
5132 * src/main.c (main): Initialize muscle_tab before calling
5133 getargs.
5134 * src/muscle_tab.c (muscle_init): No longer define file_name, as
5135 its value is not available yet.
5136
56c5eca9
AD
51372008-11-07 Akim Demaille <demaille@gostai.com>
5138
5139 Locations without columns for command line arguments.
5140 * src/location.c (location_print): Don't display negative columns.
5141 * src/location.h: Document this.
5142
9b9e0a7d
AD
51432008-11-07 Akim Demaille <demaille@gostai.com>
5144
5145 Fix --help.
5146 * src/getargs.c (usage): Fix help string for -W.
5147
74eae918
AD
51482008-11-07 Akim Demaille <demaille@gostai.com>
5149
5150 Handle more general types of option arguments.
5151 * build-aux/cross-options.pl: The argument ends at the first
5152 space, not the first non-symbol character.
5153 Use @var for each word appearing the argument description.
5154
a3d4c6fb
AD
51552008-11-07 Akim Demaille <demaille@gostai.com>
5156
5157 Destroy the variants that remain on the stack in case of error.
5158 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
5159 destructor.
5160 Display the value only if yymsg is nonnull.
5161 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
5162
2d32fc9f
AD
51632008-11-07 Akim Demaille <demaille@gostai.com>
5164
5165 Add "%define assert" to variants.
5166 This is used to help the user catch cases where some value gets
5167 ovewritten by a new one. This should not happen, as this will
5168 probably leak.
de62edee 5169
2d32fc9f
AD
5170 Unfortunately this uncovered a bug in the C++ parser itself: the
5171 lookahead value was not destroyed between two calls to yylex. For
5172 instance if the previous lookahead was a std::string, and then an int,
5173 then the value of the std::string was correctly taken (i.e., the
5174 lookahead was now an empty string), but std::string structure itself
5175 was not reclaimed.
de62edee 5176
2d32fc9f
AD
5177 This is now done in variant::build(other&) (which is used to take the
5178 value of the lookahead): other is not only stolen from its value, it
5179 is also destroyed. This incurs a new performance penalty of a few
5180 percent, and union becomes faster again.
de62edee 5181
2d32fc9f
AD
5182 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
5183 (b4_variant_if): New.
5184 (variant::built): New.
5185 Use it whereever the status of the variant changes.
5186 * etc/bench.pl.in: Check the penalty of %define assert.
5187
f6038cb8
AD
51882008-11-07 Akim Demaille <demaille@gostai.com>
5189
5190 Use "%define variant" in bench.pl.
5191 * etc/bench.pl.in: No longer use the pseudo directive %variants,
5192 just use %define variants.
5193
ccde1f98
AD
51942008-11-07 Akim Demaille <demaille@gostai.com>
5195
5196 Regen.
5197 * src/parse-gram.h, src/parse-gram.c: Regen.
5198
58bd33b7
JD
51992008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
5200
5201 Fix user actions without a trailing semicolon.
5202 Reported by Sergei Steshenko at
5203 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
5204 * THANKS (Sergei Steshenko): Add.
5205 * src/scan-code.l (SC_RULE_ACTION): Fix it.
5206 * tests/regression.at (Fix user actions without a trailing semicolon):
5207 New test case.
5208
639867b5
AD
52092008-11-04 Akim Demaille <demaille@gostai.com>
5210
5211 Use b4_copyright_years.
5212 * data/yacc.c (b4_copyright_years): New.
5213 Fix its value according to the comments in the file.
5214 Use it and undefine it.
5215
3c262606
AD
52162008-11-04 Akim Demaille <demaille@gostai.com>
5217
5218 Formatting changes.
5219 * data/lalr1-fusion.cc, src/parse-gram.y: here.
5220
a2b93d52
AD
52212008-11-04 Akim Demaille <demaille@gostai.com>
5222
5223 Formatting changes.
5224 * data/lalr1-fusion.cc: here.
5225
3a2803df
AD
52262008-11-04 Akim Demaille <demaille@gostai.com>
5227
5228 Use strict on bench.pl.
5229 * etc/bench.pl.in (&run, &generate_grammar): New.
5230 Rename the grammar generating functions for consistency.
5231 Change the interface so that the list of benches to run is passed
5232 as (optionless) arguments.
5233 (&compile): Use &run.
5234
a0d4650a
AD
52352008-11-04 Akim Demaille <demaille@gostai.com>
5236
5237 Remove spurious initial empty lines.
5238 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
5239 * data/yacc.c: End the @output lines with an @.
5240
cac9e09b
AD
52412008-11-04 Akim Demaille <demaille@gostai.com>
5242
5243 Improve the display of sizes.
5244 * etc/bench.p.in: Higher precision.
5245 Sort by decreasing size.
5246
4af4348a
AD
52472008-11-04 Akim Demaille <demaille@gostai.com>
5248
5249 Don't memcpy C++ structures.
5250 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
5251 arguments.
5252 (variant::build): New overload for
5253 copy-construction-that-destroys.
5254 (variant::swap): New.
5255 (parser::yypush_): Use it in variant mode.
5256
ef05c4d6
AD
52572008-11-04 Akim Demaille <demaille@gostai.com>
5258
5259 Better defaults for bench.pl.
5260 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
5261 default values.
5262 Adjust &verbose uses.
5263 (-q, --quiet): New.
5264
9718cfa9
AD
52652008-11-04 Akim Demaille <demaille@gostai.com>
5266
5267 Make variant.yy more complex.
5268 std::list cannot be copied via memcpy, they are more demanding than
5269 std::string. Use one std::list to strengthen the test.
de62edee 5270
9718cfa9
AD
5271 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
5272 Adjust.
5273 Create a list of strings, instead of a single large string.
5274
a6df593d
AD
52752008-11-04 Akim Demaille <demaille@gostai.com>
5276
5277 bench.pl --bench.
5278 * etc/bench.pl.in (--bench, $bench): New.
5279
006a0303
AD
52802008-11-04 Akim Demaille <demaille@gostai.com>
5281
5282 Sort methods.
5283 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
5284 Define it after as().
5285
faef3466
AD
52862008-11-04 Akim Demaille <demaille@gostai.com>
5287
5288 Useless parens.
5289 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
5290
2141aded
AD
52912008-11-04 Akim Demaille <demaille@gostai.com>
5292
5293 Issue missing synclines after user actions.
5294 * data/c.m4 (b4_case): Issue synclines on the output file.
5295
e426d17b
AD
52962008-11-04 Akim Demaille <demaille@gostai.com>
5297
5298 Remove trailing empty line.
5299 * data/lalr1-fusion.cc: Don't add an empty line after the user's
5300 epilogue.
5301
a9ce3f54
AD
53022008-11-04 Akim Demaille <demaille@gostai.com>
5303
5304 Fix output of copyright years.
5305 * data/bison.m4 (b4_copyright): Fix the indentation of the
5306 copyright year paragraph.
5307 Use b4_copyright_years when no years are given.
5308 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
5309 (b4_copyright_years): New.
5310 Use it.
5311
59c544c2
AD
53122008-11-04 Akim Demaille <demaille@gostai.com>
5313
5314 Avoid the spurious initial empty line.
5315 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
5316 the end of @output request to suppress the empty line that
5317 results.
5318
96b15448
AD
53192008-11-04 Akim Demaille <demaille@gostai.com>
5320
5321 Remove parser::rhs_number_type.
5322 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
5323 (yyrhs_): Use b4_table_define.
5324
f0633174
AD
53252008-11-04 Akim Demaille <demaille@gostai.com>
5326
5327 Fix iteration type.
5328 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
5329
417b8004
AD
53302008-11-04 Akim Demaille <demaille@gostai.com>
5331
5332 Factor the declaration of the integer tables.
5333 * data/lalr1-fusion.cc (b4_table_define): New.
5334 Use it.
5335
1a5246c6
AD
53362008-11-03 Akim Demaille <demaille@gostai.com>
5337
5338 Fix indentation of tables in lalr1.cc
5339 * data/lalr1-fusion.cc: Fix the indentation.
5340
f8a95c9c
AD
53412008-11-03 Akim Demaille <demaille@gostai.com>
5342
5343 Destroy the lhs symbols after reduction.
5344 * data/lalr1-fusion.cc (parse): After the user action, when in
5345 variant mode, destroy the lhs symbols.
5346
d7f4d823
AD
53472008-11-03 Akim Demaille <demaille@gostai.com>
5348
5349 Simplify yysyntax_error_ use.
5350 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
5351 type, but make it unnamed in the declaration when it is not used.
5352
8b9c89fb
AD
53532008-11-03 Akim Demaille <demaille@gostai.com>
5354
5355 Let yy::variant::build return an lvalue.
5356 * data/lalr1-fusion.cc (variant::build): Return a reference to the
5357 object.
5358
83243c24
AD
53592008-11-03 Akim Demaille <demaille@gostai.com>
5360
5361 Define yy::variant only when needed.
5362 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
5363 used.
5364
429b4848
AD
53652008-11-03 Akim Demaille <demaille@gostai.com>
5366
5367 Bench the three-stack lalr1.cc.
5368 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
5369 one-stack one.
5370
414c76a4
AD
53712008-11-03 Akim Demaille <demaille@gostai.com>
5372
5373 Fail on parse error in calc++.
5374 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
5375 status.
5376 * examples/calc++/test ($me, $number, $exit, run): New.
5377 Use them to propagate errors to the exit status.
5378
8a5783fd
AD
53792008-11-03 Akim Demaille <demaille@gostai.com>
5380
5381 Don't specify the skeleton twice in the example.
5382 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
5383 file does what is needed.
5384
0cc5bead
AD
53852008-11-03 Akim Demaille <demaille@gostai.com>
5386
5387 bench: Improve output.
5388 * etc/bench.pl.in (bench_grammar): Tune the printf format.
5389
5b421a4e
AD
53902008-11-03 Akim Demaille <demaille@gostai.com>
5391
5392 bench: check impact of %debug on variants.
5393 * etc/bench.pl.in (variant_grammar): Fix the computation of
5394 $variant.
5395 Generate a grammar file that can work with or without %debug.
5396 Do use the @directive.
5397 (bench_variant_parser): Check impact of %debug.
5398 (@directives): Rename all the occurrences to...
5399 (@directive): this, for consistency.
5400
d11ee647
AD
54012008-11-03 Akim Demaille <demaille@gostai.com>
5402
5403 bench: report the size too.
5404 * etc/bench.pl.in ($iterations): Defaults to -3.
5405 (&bench_grammar): Require hireswallclock.
5406 Compute and display the size of the result.
5407 More comments.
5408
e1b74b92
AD
54092008-11-03 Akim Demaille <demaille@gostai.com>
5410
5411 bench: More use of the verbosity level.
5412 * etc/bench.pl.in ($verbose, &verbose): New.
5413 Use them.
5414 More POD documentation.
5415
7e5f9c54
AD
54162008-11-03 Akim Demaille <demaille@gostai.com>
5417
5418 bench.pl: a command line interface
5419 * etc/bench.pl.in: More doc.
5420 Some fixes in the documentation.
5421 ($cflags, $iterations, &help, &getopt): New.
5422 Use them.
5423 (&variant_grammar): Let the number of stages be 10 times what is
5424 specified.
5425
7109a18d
AD
54262008-11-03 Akim Demaille <demaille@gostai.com>
5427
5428 Bench the use of Boost.Variants.
5429 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
5430 New.
5431 (&compile): Be ready to compile C++ parsers.
5432 (&bench_push_parser): Move debug information to the outermost
5433 level.
5434 * THANKS: Add Michiel De Wilde.
5435
922730fe
AD
54362008-11-03 Akim Demaille <demaille@gostai.com>
5437
5438 bench.pl: Pass directives as a list instead of as a string.
5439 * etc/bench.pl.in (&directives): New.
5440 (&triangular_grammar, &calc_grammar): Use it to format the Bison
5441 directives.
5442 (&triangular_grammar): Do use the directives (were ignored).
5443 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
5444 directives.
5445
7484f1d4
AD
54462008-11-03 Akim Demaille <demaille@gostai.com>
5447
5448 Improve genericity of bench.pl.
5449 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
5450 argument.
5451 (&bench_push_parser): New.
5452 Call it.
5453
15129f25
AD
54542008-11-03 Akim Demaille <demaille@gostai.com>
5455
5456 Add documentation to bench.pl.
5457 * etc/bench.pl.in: Comment changes.
5458
0e0ed236
AD
54592008-11-03 Akim Demaille <demaille@gostai.com>
5460
5461 Fuse the three stacks into a single one.
de62edee 5462
b06df3c2
AD
5463 In order to make it easy to perform benchmarks to ensure that
5464 there are no performance loss, lalr1.cc is forked into
5465 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
5466 lalr1.cc.
5467
5468 Meanwhile, to make sure that lalr1-fusion.cc is correctly
5469 exercized by the test suite, the user must install a symbolic link
5470 from lalr1.cc to it.
de62edee 5471
b06df3c2
AD
5472 Instead of having three stacks (state, value, location), use a
5473 stack of triples. This considerably simplifies the code (and it
5474 will be easier not to require locations as currently does the C++
5475 parser), and also gives a 10% speedup according to
5476 etc/bench (probably mainly since memory allocation is done once
5477 instead of three times).
de62edee 5478
0e0ed236
AD
5479 Another motivation is to make it easier to destruct properly
5480 semantic values: now that they are bound to their state (hence
5481 symbol type) it will be easier to call the appropriate destructor.
de62edee 5482
0e0ed236 5483 These changes should probably benefit the C parser too.
de62edee 5484
b06df3c2
AD
5485 * data/lalr1.cc: Copy as...
5486 * data/lalr1-fusion.cc: this new file.
0e0ed236
AD
5487 (b4_rhs_value, b4_rhs_location): New definitions overriding those
5488 from c++.m4.
5489 (state_stack_type, semantic_stack_type, location_stack_type)
5490 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
5491 (data_type, stack_type, yystack_): New.
5492 (YYLLOC_DEFAULT, yypush_): Adjust.
5493 (yyerror_range): Now based on data_type, not location_type.
5494
7dedf26e
AD
54952008-11-03 Akim Demaille <demaille@gostai.com>
5496
5497 Push the state, value, and location at the same time.
5498 This is needed to prepare a forthcoming patch that fuses the three
5499 stacks into one.
de62edee 5500
7dedf26e
AD
5501 * data/lalr1.cc (parser::yypush_): New.
5502 (parser::yynewstate): Change the semantics: instead of arriving to
5503 this label when value and location have been pushed, but yystate
5504 is to be pushed on the state stack, now the three of them must
5505 have been pushed before. yystate still must be the new state.
5506 This allows to use yypush_ everywhere instead of individual
5507 handling of the stacks.
5508
c4585f1e
AD
55092008-11-03 Akim Demaille <demaille@gostai.com>
5510
5511 Prefer references to pointers.
5512 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
5513 definition to use references instead of pointers.
5514 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
5515 Take the value and location as references.
5516 Adjust callers.
5517
56017c17
AD
55182008-11-03 Akim Demaille <demaille@gostai.com>
5519
5520 stack::size instead of stack::height.
5521 * data/lalr1.cc (stack::height): Rename as...
5522 (stack::size): this.
5523 Fix the output type.
5524 Comment changes.
5525
5ab8c47b
AD
55262008-11-03 Akim Demaille <demaille@gostai.com>
5527
5528 Use variants to support objects as semantic values.
b06df3c2
AD
5529 This patch was inspired by work by Michiel De Wilde. But he used
5530 Boost variants which (i) requires Boost on the user side, (ii) is
5531 slow, and (iii) has useless overhead (the parser knows the type of
5532 the semantic value there is no reason to duplicate this
5533 information as Boost.Variants do).
5534
5535 This implementation reserves a buffer large enough to store the
5536 largest objects. yy::variant implements this buffer. It was
5537 implemented with Quentin Hocquet.
de62edee 5538
5ab8c47b
AD
5539 * src/output.c (type_names_output): New.
5540 (output_skeleton): Invoke it.
5541 * data/c++.m4 (b4_variant_if): New.
5542 (b4_symbol_value): If needed, provide a definition for variants.
5543 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
5544 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
5545 (b4_char_sizeof, yy::variant): New.
5546 (parser::parse): If variants are requested, define
5547 parser::union_type, parser::variant, change the definition of
5548 semantic_type, construct $$ before running the user action instead
5549 of performing a default $$ = $1.
5550 * examples/variant.yy: New.
5551 Based on an example by Michiel De Wilde.
5552
1fa5d8bb
AD
55532008-11-03 Akim Demaille <demaille@gostai.com>
5554
5555 Parameterize the extraction of semantic values.
5556 To make future changes easier, no longer rely on ".TYPE" being the
5557 way to get a semantic value.
de62edee 5558
1fa5d8bb
AD
5559 * data/c.m4 (b4_symbol_value): New.
5560 Use it.
5561 * data/c++.m4, data/yacc.c: Use it.
5562 * data/glr.c: Use b4_symbol_value.
5563 (b4_rhs_data): New.
5564 Use it.
5565
91ba8a55
AD
55662008-11-03 Akim Demaille <demaille@gostai.com>
5567
5568 Prepare easier M4 changes.
5569 * data/lalr1.cc: Use escaped [] instead of literals to prepare
5570 future changes.
5571
c9ba9e59
JD
55722008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
5573
5574 Initiate further development.
5575 * NEWS: Create an empty section for new entries.
5576 * gnulib: Update submodule to HEAD.
5577
bfb40910
JD
55782008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
5579
5580 * NEWS: Version 2.4.
5581
241fda7a
JD
55822008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
5583
5584 Prepare for next release.
5585 * NEWS: Briefly mention changes since 2.3b.
5586 * README: Say GNU m4 1.4.6, which we've been requiring in release
5587 announcements already, not 1.4.3, which breaks the build.
5588
ed4d67dc
JD
55892008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
5590
5591 Say %language is experimental.
5592 We're thinking of extending it's effect on output file naming. See the
5593 thread at
5594 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
5595 * NEWS: Say it's experimental.
5596 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
5597 recommend it over %skeleton for now.
5598 (Bison Options): Likewise.
5599 (C++ Bison Interface): Use %skeleton not %language.
5600 (Calc++ Parser): Use %skeleton not %language.
5601 * src/getargs.c (usage): Say it's experimental.
5602
e254a580
DJ
56032008-11-01 Di-an Jan <dianj@freeshell.org>
5604 Paolo Bonzini <bonzini@gnu.org>
5605
5606 Support all Java parser class modifiers.
5607 * data/java.m4 (b4_percent_define_get3): New.
5608 (b4_final_if, b4_strictfp_if): New.
5609 * data/lalr1.java (final, strictfp, extends, implements): Support.
5610 * doc/bison.texinfo (final, strictfp, extends, implements): Add
5611 documentation.
5612 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
5613 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
5614 (AT_CHECK_JAVA_GREP): New.
5615 (Java parser class modifiers): New test.
5616 (Java parser class extends and implements): New test.
5617
5618 Model exception propagation better with throws and lex_throws.
5619 * data/java.m4 (b4_list2): New.
5620 (throws): Change default.
5621 * data/lalr1.java (yyaction): Add throws.
5622 (parse): Add lex_throws in addition to throws.
5623 * doc/bison.texinfo (throws, lex_throws): Add documentation.
5624 * tests/java.at (Java throws specifications): New test.
5625
5626 Improve documentation for Java parsers.
5627 * doc/bison.texinfo (Java Parsers): Add subsections.
5628 Don't quote first argument of %define.
5629 (Java Bison Interface): Document output files. Move documentation
5630 of parser class and merge into Java Parser Interface. Document
5631 features that error out. Document directives with no effect.
5632 Move note about Javadoc higher.
5633 (Java Semantic Values): Explicitly mention stype.
5634 Document that generic types cannot be used.
5635 (Java Location Values): Use @deftypeivar. Document constructors.
5636 Correct return value for toString.
5637 (Java Parser Interface): List undocumented constants/fields.
5638 Move documentation of fields added by %parse-param closer to list
5639 of members. Document that token names are added as fields.
5640 Document constructors accurately. Remove error method.
5641 (Java Scanner Interface): Move note on %pure-parser to Java Bison
5642 Interface. Describe %code lexer and yylex accutately.
5643 Remove documentation that does not match the code.
5644 (Java Action Features): New.
5645 (Java Differences): Add reference. Add item on semantic values.
5646 Add note about @{ ... @}. Clarify %% epilogue placement.
5647 (Java Declarations Summary): New.
5648
5649 Fix Java skeleton.
5650 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
5651 (b4_remove_comma): Quote test argument.
5652 (b4_identification): Remove "bison" field.
5653 * tests/java.at (Java parser class and package names): New test.
5654 (Java %parse-param and %lex-param): New test.
5655 (Java stype, position_class and location_class): New test.
5656
f259e4e6
PB
56572008-10-31 Di-an Jan <dianj@freeshell.org>
5658
5659 * data/lalr1.jave: Update copyright years.
5660 (YYParser): Correct name of "generated from" file in Javadoc:
5661 use b4_file_name instead of @ofile@.
5662 (Location constructor): Correct Javadoc parameter name.
5663 (yylloc): Add missing opening m4 quote after b4_location_if.
5664 This removes a stray [ in the Javadoc of Lexer.getStartPos.
5665 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
5666 (YYParser constructor): Correct Javadoc parameter name.
5667
cae5057f
JD
56682008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
5669
5670 Always put auxiliary code files in the same dir as other output files.
5671 * src/files.c (compute_file_name_parts): When the user specifies
5672 --output but not --file-prefix, extract the directory prefix from the
5673 file prefix not from the grammar file name. This affects the location
5674 of files like location.hh generated by the C++ skeleton. The includes
5675 in the other output files require this fix.
5676 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
5677 for expected output files.
5678 (Output files): Add a test for the above.
5679
4af432ba
JD
56802008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
5681
5682 * gnulib: Update submodule to HEAD.
5683
e26d4e43
JD
56842008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5685
5686 Update copyright year.
5687 * src/files.c: Here.
5688
c0ee9e21
DJ
56892008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
5690
5691 Don't overwrite the input file.
5692 * src/files.c (output_file_name_check): Fatal error if using input file
5693 for output.
5694 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
5695 argument.
5696 (Conflicting output files): Add test.
5697
482dc52f
AD
56982008-10-28 Akim Demaille <demaille@gostai.com>
5699
5700 Space changes.
5701 * data/lalr1.cc: Formatting changes.
5702
52cbbe84
AD
57032008-10-28 Akim Demaille <demaille@gostai.com>
5704
5705 Don't define debugging functions when !YYDEBUG.
5706 * data/lalr1.cc (debug_stream, set_debug_stream)
5707 (debug_level_type, debug_level, set_debug_level): Don't
5708 declare them when YYDEBUG is not defined.
5709 The implementation are already YYDEBUG-aware.
5710
0925d5bf
AD
57112008-10-28 Akim Demaille <demaille@gostai.com>
5712
5713 Prefer "continue" for empty loop bodies.
5714 * etc/bench.pl.in: Use "continue" instead of {}.
5715
cf98343c
AD
57162008-10-28 Akim Demaille <demaille@gostai.com>
5717
5718 Space and comments changes.
5719 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
5720 * data/c.m4, data/lalr1.cc: Space changes.
5721
9f467b7d
AD
57222008-10-28 Akim Demaille <demaille@gostai.com>
5723
5724 Make gnulib a submodule.
5725 * gnulib: New.
5726 * .gitmodules (gnulib): New.
5727
0f0e1ace
JD
57282008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
5729
5730 Fix yyerror_range for user-defined location type in C++. Reported by
5731 Georg Sauthoff at
5732 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
5733 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
5734 * THANKS (Georg Sauthoff): Add.
5735
548e2104
JD
57362008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
5737
5738 Update several administrative files mainly to facilitate releasing.
5739 * HACKING (Administrivia): Make the git-merge-changelog notes more
5740 helpful.
5741 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
5742 (Release Procedure): Update for git and add numerous details that were
5743 previously missing.
5744 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
5745 * maint.mk (announcement): Don't list bison as a bootstrap tool so
5746 that announcements don't claim we bootstrapped with whatever bison
5747 happened to be in PATH. Add flex as a bootstrap tool.
5748 * Makefile.maint: Remove, previously replaced by maint.mk.
5749 * Makefile.cfg: Remove, and migrate settings to...
5750 * cfg.mk: ... here for the sake of `make announcement'.
5751 * bootstrap.conf (gnulib_modules): Add announce-gen.
5752 * README: Say GNU Bison instead of just Bison. Suggested by Karl
5753 Berry.
5754
ddf17a6e
PB
57552008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
5756
5757 Small but important bugfixes for the Java skeleton.
5758 * data/lalr1.java (yyerror): Change Location to b4_location_type.
5759 (yy_symbol_print): Call toString on yyvaluep.
5760
e1145ad8
AD
57612008-08-29 Akim Demaille <demaille@gostai.com>
5762
5763 Clarify UPDATED use.
215b40ac 5764 * doc/bison.texinfo: It refers to the last edition of this file,
e1145ad8 5765 not to the release date of Bison.
215b40ac 5766 Reported by Joel E. Denny.
e1145ad8 5767
0df72d78
AD
57682008-08-29 Akim Demaille <demaille@gostai.com>
5769
5770 * README: Update FAQ pointer.
5771 Reported by Joel E. Denny.
5772
9a90b6bb
EB
57732008-08-27 Eric Blake <ebb9@byu.net>
5774
5775 Resync m4sugar from autoconf.
5776 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
5777 (m4_init): Adjust to latest m4.git changes.
5778 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
5779 effects.
5780 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
5781 (_m4_list_cmp): Reduce side effects.
5782
65015668
AD
57832008-08-27 Akim Demaille <demaille@gostai.com>
5784
5785 Check yyerrok in calc.at.
215b40ac
EB
5786 * tests/calc.at (calc.y): Use yyerrok on "( error )".
5787 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
5788 expected.
65015668 5789
98e26a92
AD
57902008-08-27 Akim Demaille <demaille@gostai.com>
5791
5792 Support yyerrok in lalr1.cc.
5793 YYBACKUP is still to import back into lalr1.cc.
215b40ac 5794 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
98e26a92 5795
86c0e784
JD
57962008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
5797
5798 For maintainer-check*, don't recompile for a $(VERSION) update.
5799 * cfg.mk: New file.
5800 (_is-dist-target): Override the one in GNUmakefile.
5801 * Makefile.am (EXTRA_DIST): Add cfg.mk.
5802
88511166
JD
58032008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
5804
5805 Update for recent change to gnulib.
5806 * src/parse-gram.y: Don't include strverscmp.h. It comes from
5807 string.h now.
5808
6bbb2ed5
EB
58092008-08-15 Eric Blake <ebb9@byu.net>
5810
d67c52e8
EB
5811 Remaining m4sugar merge from autoconf.
5812 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
5813 * data/m4sugar/foreach.m4: New file, copied from autoconf.
5814 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
5815 * src/output.c (output_skeleton): Tell m4 how to find it.
5816
6bbb2ed5
EB
5817 Partial m4sugar merge from autoconf: m4_map.
5818 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
5819 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
5820 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
5821 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
5822 for empty list.
5823 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
5824 Likewise.
5825 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
5826 declares it.
5827
8dce3875
JD
58282008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
5829
5830 Keep .version and PACKAGE_VERSION in sync.
5831 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
5832 dependency, and add comments justifying this in more detail. Discussed
5833 starting at
5834 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
5835
882a1fbf
EB
58362008-08-06 Eric Blake <ebb9@byu.net>
5837
a3764451
EB
5838 Partial m4sugar merge from autoconf: m4_shiftn.
5839 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
5840 (m4_shift2, m4_shift3): New macros.
5841 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
5842 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
5843 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
5844 * data/java.m4 (b4_remove_comma): Likewise.
5845
882a1fbf
EB
5846 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
5847 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
5848 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
5849 (m4_init): Consolidate wrapped text into single m4_wrap.
5850 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
5851 in wrapped text.
5852
a30e920d
EB
58532008-08-05 Eric Blake <ebb9@byu.net>
5854
dfcc5959
EB
5855 Partial m4sugar merge from autoconf: builtins, version.m4.
5856 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
5857 (m4_prepend): Remove, as it is unused and inherently quadratic,
5858 whereas m4_append is linear in newer m4.
5859 (m4_mkstemp): New builtin.
5860 (m4_symbols): Make rename conditional.
5861 (m4_version_prereq): Ensure fatal error if used in bison, which
5862 intentionally lacks version.m4.
5863
a30e920d
EB
5864 Fix comments in m4sugar.
5865 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
5866
445b7470
JD
58672008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
5868
5869 Update for recent .gitignore fix in Gnulib.
5870 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
5871 anchored .gitignore entries.
5872
a1e50014
JD
58732008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
5874
5875 Set gnu or gnits strictness.
5876 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
5877 development and gnits strictness for releases. Based on Eric Blake's
5878 suggestion at
5879 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
5880
d43f77e7
PB
58812008-07-31 Paolo Bonzini <bonzini@gnu.org>
5882
5883 * NEWS: Clarify documentation of %language.
5884
fee2ed87
PB
58852008-07-31 Paolo Bonzini <bonzini@gnu.org>
5886
5887 Support usage of git-merge-changelog.
5888 * .gitattributes: New.
5889 * HACKING: Document usage of git-merge-changelog.
5890 * bootstrap: Install git-merge-changelog entries in .git/config
5891 if appropriate.
5892
78029cd5
JD
58932008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5894
5895 Remove remaining dependence on CVS Id keyword.
5896 * ChangeLog: For the sake of people still using CVS, don't use dollars
5897 when mentioning Id.
5898 * data/xslt/bison.xsl: Remove Id from header comments, where it was
5899 unusual anyway.
5900 * data/xslt/xml2dot.xsl: Likewise.
5901 * data/xslt/xml2text.xsl: Likewise.
5902 * data/xslt/xml2xhtml.xsl: Likewise.
5903 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
5904 * doc/Makefile.am (neutralize): Remove, no longer needed.
5905 (.x.1): Don't use neutralize.
5906 (edit): Don't substitute for ID.
5907 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
5908
c53d18b1
JD
59092008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5910
5911 Fix dependence on computed configure variables.
5912 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
5913 $(top_srcdir)/configure.ac so that changes to computed variables, such
5914 as PACKAGE_VERSION, are seen.
5915 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
5916
5523ac79
JD
59172008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
5918
5919 Update copyright dates for recent changes.
5920 * Makefile.am: Here.
5921 * src/Makefile.am: Here.
5922 * src/reduce.c: Here.
5923 * tests/reduce.at: Here.
5924
8fa36911
JD
59252008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
5926
5927 Use git-version-gen for version names between releases.
5928 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
5929 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
5930 * .prev-version: New.
5931 * .version.in: Remove.
78029cd5 5932 * ChangeLog: Remove the Id previously used for capturing the CVS
8fa36911
JD
5933 revision.
5934 * GNUmakefile: Remove, now copied from Gnulib.
5935 * Makefile.am: Add code suggested by comments in
5936 build-aux/git-version-gen.
5937 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
5938 .prev-version, and .version.
5939 * NEWS (2.3b+): Rename to...
5940 (?.?): ... this because we're dropping the "+" version naming scheme,
5941 but, in general, we still can't be sure of our next release name.
5942 * bootstrap: Add a quick hack to remove from .gitignore the
5943 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
5944 entry. This should really be fixed in gnulib instead.
5945 * bootstrap.conf (gnulib_modules): Add gnumakefile.
5946 * configure.ac (AC_INIT): Set version name by invoking
5947 build-aux/git-version-gen.
5948 (AC_CONFIG_FILES): Remove .version, now generated by
5949 build-aux/git-version-gen.
5950 * maint.mk: New, copied from coreutils.
5951 * doc/.cvsignore (bison.1): Add.
5952 * doc/.gitignore (/bison.1): Add.
5953 * doc/bison.1: Remove, generated.
5954 * src/.cvsignore (revision.c): Remove.
5955 * src/.gitignore (/revision.c): Remove.
5956 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
5957 (BUILT_SOURCES): Remove revision.c.
5958 (revision.c): Remove.
5959 * src/getargs.c (version): Don't print revision after the VERSION.
5960 * src/revision.h: Remove.
5961
bcf07cb7
JD
59622008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
5963
5964 Fix untranslatable composition of sentences. Reported by Goran
5965 Uddeborg at
5966 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
5967 * THANKS (Goran Uddeborg): Add.
5968 * src/reduce.c (reduce_print): Report the number of nonterminals and
5969 rules useless in the grammar in separate sentences.
5970 * tests/reduce.at (Useless Rules): Update output.
5971 (Reduced Automaton): Likewise.
5972 (Underivable Rules): Likewise.
5973 (Empty Language): Likewise.
5974
9aacab9a
JD
59752008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
5976
5977 Fix some .gitignore and .cvsignore problems.
5978 * bootstrap (insert_sorted_if_absent): Replace all uses with...
5979 (insert_vc_ignore): ... this new function, which prepends `/' to all
5980 .gitignore entries before passing them to insert_sorted_if_absent.
5981 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
5982 .cvsignore files are maintained even though Bison developers run
5983 bootstrap while using Git.
5984 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
5985 unneeded by Bison.
5986 (gnulib): Add.
5987 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
5988 unneeded. Reported by Eric Blake.
5989 * lib/.gitignore (/*~): Add.
5990 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
5991 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
5992 Blake.
5993 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
5994
a9fc7990
JD
59952008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
5996
5997 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
5998 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
5999 * bootstrap.conf (gnulib_modules): Add unsetenv.
6000 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
6001 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
6002 (/setenv.m4): Add.
6003 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
6004 the first argument because it may become position-dependent, and unset
6005 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
6006 Add comments explaining these issues in more detail.
6007
0f1d6f10
JD
60082008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
6009
6010 Add .gitignore everywhere based on .cvsignore.
6011 * .gitignore: New.
6012 * build-aux/.gitignore: New.
6013 * data/.gitignore: New.
6014 * doc/.gitignore: New.
6015 * etc/.gitignore: New.
6016 * examples/.gitignore: New.
6017 * examples/calc++/.gitignore: New.
6018 * lib/.gitignore: New.
6019 * m4/.gitignore: New.
6020 * po/.gitignore: New.
6021 * runtime-po/.gitignore: New.
6022 * src/.gitignore: New.
6023 * tests/.gitignore: New.
6024
7bd1665a
JD
60252008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
6026
6027 * NEWS (2.3b+): New section, empty for now.
6028 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
6029
72c5b982
JD
60302008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
6031
6032 * NEWS (2.3b): Update release date since there has been a delay in
6033 getting the announcements and tarballs out.
6034
bd02cd5d
JD
60352008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
6036
6037 * NEWS: Version 2.3b.
6038 * configure.ac (AC_INIT): Likewise.
6039 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
6040
9126263e
JD
60412008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
6042
6043 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
6044 been doing it for years.
6045 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
6046 (Release Procedure): Add FIXME about make alpha being unmaintained.
6047
fa6aa7b3
JD
60482008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
6049
6050 * data/yacc.c: Reformat m4 a little for readability.
6051 * src/lalr.c (build_relations): Correct comment.
6052
d30b312d
JMG
60532008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6054
6055 DJGPP specific issue.
6056 * djgpp/config.sed: Fixes required to run configure scripts generated
6057 by autoconf 2.62.
6058
138d4cd9
JD
60592008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
6060
6061 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
6062 coordinator@translationproject.org.
6063
8f7e2e1f
JD
60642008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
6065
6066 * THANKS: Add Eric Blake.
6067
f55efa38
JD
60682008-04-23 Eric Blake <ebb9@byu.net>
6069
6070 Revert prior patch, by working around autoconf regression.
6071 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
6072 ("Output file name: ("): Uncomment test.
6073 ("Output file name: )"): Likewise.
6074 Based on an idea from Noah Misch.
6075
096c9f9d
JD
60762008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
6077
6078 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
6079 2.61. Reported by Juan Manuel Guerrero at
6080 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
6081 * tests/output.at ("Output file name: ("): Comment out test case for
6082 now.
6083 ("Output file name: )"): Likewise.
6084
0f664b89
JD
60852008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
6086
6087 * GNUmakefile: Update git-version-gen invocation so make dist
6088 succeeds.
6089
1cfe6375
JD
60902008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
6091
6092 Update to the current gnulib CVS repository, and fix trigraph handling
6093 in Bison.
6094 * bootstrap: Update gnulib CVS repository URL.
6095 (symlink_to_dir): Encapsulate the code that guarantees the destination
6096 directory exists into...
6097 (check_dst_dir): ... this new function, and...
6098 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
6099 fail when copying files into lib/uniwidth/.
6100 * src/output.c (prepare_symbols): When writing yytname muscles, where
6101 symbol names will be encoded in C-string literals, tell quotearg to
6102 escape trigraphs. This used to be the default in gnulib.
6103 * tests/regression.at (Token definitions): Because of the change in
6104 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
6105 escapes trigraphs in symbol names. Thus, yytname no longer has
6106 trigraphs unnecessarily doubly escaped. Update test case output.
6107 Extend test case to be sure Bison's own error messages will no longer
6108 have trigraphs in symbol names unnecessarily escaped once.
6109
74c52fc8
JD
61102008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
6111
6112 Fix make dist infinite loop reported by Juan Manuel Guerrero at
6113 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
6114 * .cvsignore: Add .version.
6115 * .version.in: New.
6116 * bootstrap.conf (gnulib_modules): Add git-version-gen.
6117 * configure.ac (AC_CONFIG_FILES): Add .version.
6118 * build-aux/.cvsignore: Add git-version-gen.
6119
8e55b3aa
JD
61202008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
6121
6122 * NEWS (2.3a+): Mention that -g now takes an argument.
6123 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
6124 consistency. Update the -g and -x entries now that they take
6125 arguments. Use brackets to indicate optional arguments.
6126 * src/getargs.c (usage): Explain the relationship between arguments of
6127 long and short options more completely. Document --defines and -d
6128 separately since the former takes an argument but, for POSIX Yacc, the
6129 latter does not.
6130 (short_options): Let -W take an optional argument like --warnings.
8452fdd9 6131 (getargs): Sort cases.
8e55b3aa 6132
59c5ac72
AD
61332008-02-28 Akim Demaille <demaille@gostai.com>
6134
6135 * doc/bison.texinfo: Fix a few typos.
6136
118d4978
AD
61372008-02-28 Akim Demaille <akim@epita.fr>
6138
6139 * doc/bison.texinfo (Bison Options): Document -W.
6140 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
6141
7020f1e9
AD
61422008-02-28 Akim Demaille <akim@epita.fr>
6143
6144 * src/getargs.c (short_options): Split and sort for readability.
6145 -g and -x take optional arguments, just like their long options.
6146 * build-aux/cross-options.pl: Use /x to make the regexp easier to
6147 understand.
6148 Fix the handling of $opt which resulted in all the argument to be
6149 considered as optional.
6150
59da312b
JD
61512008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
6152
6153 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
6154 say its interface is experimental.
6155 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
6156 Java.
6157 (Bison Options): In the -L and --language entry, mention Java.
6158 (Java Bison Interface): Say the interface is experimental.
6159 * src/getargs.c (usage): Mention -L and --language.
6160
6161 * NEWS (2.3a+): Say the push parsing interface is experimental.
6162 * doc/bison.texinfo (Push Decl): Likewise.
6163 (Decl Summary): Likewise in the "%define api.push_pull" entry.
6164 (Push Parser Function): Likewise.
6165 (Pull Parser Function): Likewise.
6166 (Parser Create Function): Likewise.
6167 (Parser Delete Function): Likewise.
6168 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
6169 yypull_parse, and yypush_parse entries.
6170
6171 * NEWS (2.3a+): Mention XML support, and say the schema is
6172 experimental.
6173 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
6174 * src/getargs.c (usage): Say the XML schema is experimental.
6175
6176 * NEWS (2.3a+): Say option instead of flag.
6177
2bb3ebec
WP
61782008-02-21 Wojciech Polak <polak@gnu.org>
6179
6180 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
6181 text.
6182
333e670c
JD
61832008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
6184
6185 Fix impure push parser compile error reported by Bob Rossi at
6186 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
6187 * data/yacc.c: Clean up whitespace in the output a little.
6188 (yypstate_allocated): Define for impure push parsers regardless of
6189 whether the pull interface is also requested.
6190 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
6191 check impure push parsers without the pull interface.
6192
6193 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
6194 yyerror takes arguments specified by %parse-param while yypstate_new
6195 does not.
6196 * doc/bison.texinfo (Parser Create Function): Document that
6197 yypstate_new returns 0 for multiple impure parser instances.
6198 * tests/push.at (Push Parsing: Multiple impure instances): Update
6199 expected stderr output.
6200
798096e1
JD
62012008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
6202
6203 * runtime-po/POTFILES.in (push.c): Remove.
6204
9ca7f077
JD
62052008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
6206
6207 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
6208 * data/push.c: Rename to...
6209 * data/yacc.c: ... this, overwriting it.
6210 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
6211 `%push-pull-parser' -> `%define api.push_pull "both"'.
6212 Remove old yacc.c tests, and update push.c tests to yacc.c.
6213
42ee26bb
JD
62142008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
6215
6216 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
6217 `"%code top" blocks' instead of `%code "top" blocks'.
6218 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
6219 Clean up whitespace in the output a little.
6220
b1cc23c4
JD
62212008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
6222
6223 Fix documentation problems reported by Tim Josling at
6224 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
6225 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
6226 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
6227 integers. Explain the effect of literal string aliases on error
6228 messages. Copy token 0 documentation from the C++ skeleton
6229 documentation.
6230
ab7f29f8
JD
62312008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
6232
6233 Accept a token number in a %left, %right, or %nonassoc for POSIX
6234 conformance. Reported by Tim Josling at
6235 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
6236 * NEWS (2.3a+): Mention.
6237 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
6238 and code numbers are treated by precedence declarations.
6239 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
6240 of symbols.1.
6241 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
6242 of symbol.
6243 (symbol.prec): New, just like symbol but allows INT.
6244 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
6245 longer holds.
6246 * tests/regression.at (Token number in precedence declaration): New
6247 test case.
6248
a924ef36
JMG
62492008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6250
6251 DJGPP specific issues.
6252 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
6253 be changed. Copyright timestamp adjusted.
6254 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
6255 be changed. Copyright timestamp adjusted.
6256 * djgpp/config.site: Copyright timestamp adjusted.
6257 * djgpp/config_h.sed: Copyright timestamp adjusted.
6258 * djgpp/djunpack.bat: Copyright timestamp adjusted.
6259 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
6260 filename translation list.
6261 * djgpp/subpipe.c (init_subpipe): Check the environment variables
6262 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
6263 files shall be created. Before trying to use the temp dir where the
6264 environment variable points to check that the dir really exists. If
6265 not default to the cwd as temp dir. Copyright timestamp adjusted.
6266 * djgpp/subpipe.h: Copyright timestamp adjusted.
6267 * djgpp/testsuite.sed: Copyright timestamp adjusted.
6268
389c8cfd
PE
62692008-01-30 Paul Eggert <eggert@cs.ucla.edu>
6270
6271 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
6272
5d1cfef4
PE
62732008-01-09 Paul Eggert <eggert@cs.ucla.edu>
6274
6275 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
6276 Problem reported by Claudio Saavedra in
6277 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
6278
e2dcf996
WP
62792008-01-05 Wojciech Polak <polak@gnu.org>
6280
6281 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
6282 document's title with the input grammar file name.
6283
da730230
JD
62842007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
6285
6286 Automate regression testing of the XML/XSLT implementation. Discussed
6287 starting at
6288 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
6289 * configure.ac (XSLTPROC): New substitution.
6290 * Makefile.am (maintainer-xml-check): New phony target invoking...
6291 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
6292 invoking make maintainer-check with BISON_TEST_XML=1.
6293 * tests/atlocal.in (XSLTPROC): New.
6294 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
6295 not to report reachable memory when Bison is expected to have a
6296 non-zero exit status and (2) to compare XML/XSLT output with --graph
6297 and --report=all output for every working grammar when
6298 BISON_TEST_XML=1.
6299 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
6300 (AT_BISON_CHECK_XML): New.
6301 (AT_QUELL_VALGRIND): New.
6302 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
6303 (AT_CHECK): ... don't redefine this since this was the old way to
6304 quell Valgrind.
6305 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
6306 AT_BISON_CHECK invocations.
6307 * tests/c++.at: Likewise.
6308 * tests/calc.at: Likewise.
6309 * tests/conflicts.at: Likewise.
6310 * tests/cxx-type.at: Likewise.
6311 * tests/existing.at: Likewise.
6312 * tests/glr-regression.at: Likewise.
6313 * tests/headers.at: Likewise.
6314 * tests/input.at: Likewise.
6315 * tests/java.at: Likewise.
6316 * tests/output.at: Likewise.
6317 * tests/push.at: Likewise.
6318 * tests/reduce.at: Likewise.
6319 * tests/regression.at: Likewise.
6320 * tests/sets.at: Likewise.
6321 * tests/skeletons.at: Likewise.
6322 * tests/synclines.at: Likewise.
6323 * tests/torture.at: Likewise.
6324 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
6325 tends to hang xsltproc.
6326 (Big horizontal): Likewise.
6327
408476bc
JD
63282007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
6329
6330 In XML output, remove redundant class attribute on symbol element.
6331 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
6332 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
6333 look up a symbol to determine whether it's a nonterminal or terminal.
6334 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
6335 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
6336
6337 Add prec/assoc information to XML output.
6338 * src/gram.c (grammar_rules_print_xml): For each rule that has a
6339 %prec, add a percent_prec attribute.
6340 * src/print-xml.c (print_grammar): For each terminal that has a
6341 precedence or associativity, add a prec or assoc attribute.
6342 (xml_indent): New.
6343 (xml_puts): Use xml_indent.
6344 (xml_printf): Use xml_indent.
6345 * src/print-xml.h (xml_indent): Prototype.
6346
6347 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
6348 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
6349
d4a26c48
JD
63502007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
6351
6352 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
6353 (bison:ruleByNumber): ... this for clarity.
6354 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
6355 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
6356 (xsl:template match="reduction"): Update.
6357 (xsl:template match="item"): Update.
6358 (xsl:template match="reduction"): Update.
6359
6360 In the XML output, don't print the list of rules where symbols appear.
6361 Compute it in XSLT instead. Discussed at
6362 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
6363 * data/xslt/bison.xsl (bison:ruleByLhs): New.
6364 (bison:ruleByRhs): New.
6365 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
6366 bison:ruleByRhs.
6367 (xsl:template match="terminal/rule"): Remove.
6368 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
6369 bison:ruleByRhs.
6370 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
6371 Remove.
6372 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
6373 bison:ruleByRhs and mode="number-link" for rule template.
6374 (xsl:template match="terminal/rule"): Remove.
6375 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
6376 bison:ruleByRhs and mode="number-link" for rule template.
6377 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
6378 Rewrite as...
6379 (xsl:template match="rule" mode="number-link"): ... this.
6380 * src/print-xml.c (print_grammar): Don't print the list of rules.
6381
ef1b4273
JD
63822007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
6383
6384 Don't let --report affect XML output; always print all information.
6385 Discussed at
6386 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
6387 * src/conflicts.c (log_resolution): Implement.
6388 * src/print-xml.c (print_core): Implement.
6389 (print_state): Implement.
6390 (print_xml): Implement.
6391
6392 * NEWS (2.3a+): Fix quotes.
6393 * src/parse-gram.y (prologue_declaration): For consistency with -v,
6394 don't let %verbose clear the list specified by --report.
6395
0f6cd9e3
AD
63962007-11-26 Akim Demaille <akim@epita.fr>
6397
6398 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
6399
d80fb37a
JD
64002007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
6401
6402 In the XML output, list useless and unused symbols and rules with the
6403 useful ones and add a "usefulness" attribute. Discussed starting at
6404 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
6405 * src/gram.c (grammar_rules_partial_print_xml): Remove.
6406 (grammar_rules_print_xml): Print all rules instead of just those
6407 useful in the grammar, and add a "usefulness" attribute.
6408 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
6409 * src/print-xml.c (print_rules_useless_in_parser): Remove.
6410 (print_grammar): Print all nonterminals instead of just useful ones,
6411 and add a "usefulness" attribute to nonterminals and terminals.
6412 (print_xml): Don't print a separate "reductions" or
6413 "rules-useless-in-parser" element.
6414 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
6415 (reduce_xml): Remove.
6416 (reduce_token_unused_in_grammar): New.
6417 (reduce_nonterminal_useless_in_grammar): New.
6418 * src/reduce.h (reduce_xml): Remove prototype.
6419 (reduce_token_unused_in_grammar): Add prototype.
6420 (reduce_nonterminal_useless_in_grammar): Add prototype.
6421 * data/xslt/xml2text.xsl: Update for XML changes.
6422 * data/xslt/xml2xhtml.xsl: Update for XML changes.
6423 * tests/reduce.at (Useless Terminals): Update output.
6424 (Useless Rules): Update output.
6425 (Reduced Automaton): Update output.
6426
6427 Say "Terminals unused in grammar" instead of "Unused terminals".
6428 * NEWS (2.3a+): Update.
6429 * doc/bison.texinfo (Understanding): Update example output.
6430 * src/reduce.c (reduce_output): Implement.
6431 * data/xslt/xml2text.xsl: Implement.
6432 * data/xslt/xml2xhtml.xsl: Implement.
6433
1bb2bd75
JD
64342007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
6435
6436 Accept --report-file=FILE to override the default `.output' filename.
6437 * NEWS (2.3a+): Mention.
6438 * doc/bison.texinfo (Bison Options): Add an entry.
6439 * src/files.c (compute_output_file_names): Don't override
6440 spec_verbose_file if already set.
6441 * src/getargs.c (usage): Document --report-file.
6442 (REPORT_FILE_OPTION): New anonymous enum member.
6443 (long_options): Add entry for it.
6444 (getargs): Add case for it setting spec_verbose_file.
6445
6446 * build-aux/cross-options.pl: Don't record a short option just because
6447 there's an arg.
6448 * doc/.cvsignore: Add yacc.1.
6449
a005a9c4
AD
64502007-11-14 Akim Demaille <akim@epita.fr>
6451
6452 * doc/yacc.1.in: New.
6453 * configure.ac, doc/Makefile.am: Adjust.
6454 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
6455 config.h symbol.
6456 Use AC_SUBST for assignments too.
6457 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
6458
cff03fb2
JD
64592007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
6460
6461 * src/gram.c: Remove comments that duplicate comments in gram.h.
6462
6463 When reporting useless rules and nonterminals, say "useless in grammar"
6464 instead of "useless", and say "useless in parser" instead of "never
6465 reduced". Discussed starting at
6466 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
6467 * NEWS (2.3a+): Mention this change.
6468 * data/xslt/xml2text.xsl: Update output text and expected input XML
6469 element names to match changes below.
6470 * data/xslt/xml2xhtml.xsl: Likewise.
6471 (xsl:template match="bison-xml-report"): Add missing entry in Table of
6472 Contents: "Rules useless in parser due to conflicts".
6473 * doc/bison.texinfo (Decl Summary): Reword a little.
6474 (Understanding): Update example output for changes below.
6475 * src/gram.c: (rule_useful_p): Rename to...
6476 (rule_useful_in_grammar_p): ... this.
6477 (rule_useless_p): Rename to...
6478 (rule_useless_in_grammar_p): ... this.
6479 (rule_never_reduced_p): Rename to...
6480 (rule_useless_in_parser_p): ... this.
6481 (grammar_rules_print): Update for renames.
6482 (grammar_rules_print_xml): Update for renames.
6483 (grammar_rules_never_reduced_report): Rename to...
6484 (grammar_rules_useless_report): ... this since it is used for either
6485 kind of useless rule.
6486 * src/gram.h: Reword comments and update function names in prototypes.
6487 * src/main.c (main): Say "rule useless in parser due to conflicts".
6488 * src/print-xml.c (print_rules_never_reduced): Rename to...
6489 (print_rules_useless_in_parser): ... this, and rename output XML
6490 element "rules-never-reduced" to "rules-useless-in-parser".
6491 (print_xml): Update for rename.
6492 * src/print.c (print_results): Say "Rules useless in parser due to
6493 conflicts".
6494 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
6495 (nonterminals_reduce): Say "nonterminal useless in grammar".
6496 (reduce_output): Say "Nonterminals useless in grammar".
6497 Say "Rules useless in grammar".
6498 (reduce_xml): Rename output XML element "useless" to
6499 "useless-in-grammar".
6500 (reduce_print): Don't report the count of grammatically useless rules
6501 as "rules never reduced" just because %yacc is specified.
6502 In the correct report of this count, say nonterminal(s) and rule(s)
6503 "useless in grammar".
6504 * tests/conflicts.at (S/R in initial): Update expected output.
6505 (Defaulted Conflicted Reduction): Likewise.
6506 (Unreachable States After Conflict Resolution): Likewise.
6507 * tests/existing.at (GNU pic Grammar): Likewise.
6508 * tests/reduce.at (Useless Nonterminals): Likewise.
6509 (Useless Rules): Likewise.
6510 (Reduced Automaton): Likewise.
6511 (Underivable Rules): Likewise.
6512 (Empty Language): Likewise.
6513
66f0441d
JD
65142007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
6515
6516 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
6517 here document and before the EOF so that BSD's implementation of Bourne
6518 shell doesn't parse the delimiter as part of the here document.
6519 * doc/.cvsignore: Add cross-options.texi.
6520 * src/getargs.c (usage): Add a blank line after the warning categories.
6521
d0ee4105
PB
65222007-11-08 Paolo Bonzini <bonzini@gnu.org>
6523
6524 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
6525
e8b1fb9b
AD
65262007-11-05 Akim Demaille <akim@epita.fr>
6527
6528 Remove Id: from bison.1.
6529 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
6530 (perl -0777 -pi -e 's/\.PP\nId): New.
6531 (.x.1): Use it to ignore the version control revision.
6532
2f7a96b5
AD
65332007-11-05 Akim Demaille <demaille@gostai.com>
6534
6535 * build-aux/Makefile.am: Ship cross-options.pl.
6536 * doc/Makefile.am: Always refer to cross-options.texi with
6537 $(srcdir).
6538 (MAINTAINERCLEANFILES): Add it.
6539
f4101aa6
AD
65402007-11-04 Akim Demaille <demaille@gostai.com>
6541
6542 Generate the long/short option cross-table.
6543 * build-aux/cross-options.pl: New.
6544 * doc/Makefile.am (cross-options.texi): New.
6545 * doc/bison.texinfo: Use it.
6546
727a1401
AD
65472007-11-04 Akim Demaille <demaille@gostai.com>
6548
6549 Generate bison.1 using help2man.
6550 * doc/common.x, doc/bison.x: New.
6551 * doc/Makefile.am (bison.1, .x.1): New.
6552 The code is taken from autoconf-2.61/man/Makefile.am.
6553 * configure.ac: Look for help2man.
6554
6aeb9c57
AD
65552007-11-04 Akim Demaille <demaille@gostai.com>
6556
6557 Complete --help.
6558 * src/getargs.c (usage): Document -W, make it clear that -d,
6559 -g and -x have optional arguments.
6560
d7be4085
AD
65612007-11-04 Akim Demaille <demaille@gostai.com>
6562
6563 Find sha1sum when named gsha1sum.
6564 * bootstrap (find_tool): New.
6565 ($SHA1SUM): New.
6566
d9df47b6
JD
65672007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
6568
6569 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
6570 at
6571 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
6572 * NEWS (2.3a+): Mention.
6573 * data/bison.m4 (b4_pure_if): Don't define it here.
6574 * data/c.m4 (b4_identification): Depend on individual skeletons to
6575 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
6576 values of the %define variables api.pure or api.push_pull. Define
6577 YYPURE, YYPUSH, and YYPULL accordingly.
6578 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
6579 glr.cc has already defined b4_pure_flag.
6580 * data/push.c: Define b4_pure_if based on `%define api.pure'.
6581 Remove YYPUSH and YYPULL since they're back in b4_identification again.
42ee26bb 6582 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
d9df47b6
JD
6583 * doc/bison.texinfo (Pure Decl): Update.
6584 (Push Decl): Update.
6585 (Decl Summary): Add api.pure to %define entry.
6586 In %pure-parser entry, say it's deprecated and reference %define.
6587 (Pure Calling): Update.
6588 (Error Reporting): Update.
6589 (C++ Scanner Interface): Update.
6590 (How Can I Reset the Parser): Update.
6591 (Table of Symbols): In %pure-parser entry, say it's deprecated and
6592 reference %define.
6593 * src/getargs.c (pure_parser): Remove global variable.
6594 * src/getargs.h (pure_parser): Remove extern.
6595 * src/output.c (prepare): Don't define pure_flag muscle.
6596 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
6597 wrapper around `%define api.pure'.
6598 * tests/calc.at (Simple LALR Calculator): Update.
6599 (Simple GLR Calculator): Update.
6600 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
6601 Update.
6602 (GLR: Resolve ambiguity, pure, locations): Update.
6603 (GLR: Merge conflicting parses, pure, no locations): Update.
6604 (GLR: Merge conflicting parses, pure, locations): Update.
6605 * tests/glr-regression.at (Uninitialized location when reporting
6606 ambiguity): Update
6607 * tests/input.at (Unused %define api.pure): New test case.
6608 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
6609 AT_PURE_IF and AT_PURE_AND_LOC_IF.
6610 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
6611
c373bf8b
JD
66122007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
6613
6614 %define push_pull -> %define api.push_pull. Discussed starting at
6615 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
6616 * data/push.c: Expect the new name.
6617 * data/yacc.c: Likewise.
6618 * doc/bison.texinfo (Push Decl): Update.
6619 (Decl Summary): Update %define entry.
6620 (Push Parser Function): Update.
6621 (Pull Parser Function): Update.
6622 (Parser Create Function): Update.
6623 (Parser Delete Function): Update.
6624 * tests/calc.at (Simple LALR Calculator): Update.
6625 * tests/input.at (%define enum variables): Update.
6626 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
6627 (Push Parsing: Multiple impure instances): Update.
6628 (Push Parsing: Unsupported Skeletons): Update.
6629 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
6630 (Exploding the Stack Size with Malloc): Update.
6631
6632 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
6633 other entries some.
6634
32f19b6b
JD
66352007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
6636
6637 For the XML output's terminal element, rename @number to @token-number,
6638 and add @symbol-number. In the nonterminal element, rename @number to
6639 @symbol-number. Discussed starting at
6640 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
6641 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
6642 renames.
6643 (xsl:template match="nonterminal"): Likewise.
6644 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
6645 (xsl:template match="nonterminal"): Likewise.
6646 * src/print-xml.c (print_grammar): Implement.
6647
255a6b90
JD
66482007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6649
6650 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
6651 2007-10-11 change, the child elements here are items not rules.
408476bc 6652 (xsl:template match="item"): New.
255a6b90
JD
6653 (xsl:template match="rule"): Update for new reduced itemset.
6654 (xsl:template match="point"): Remove.
6655 (xsl:template match="empty"): For consistency with --graph, don't
6656 output "/* empty */".
6657 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
6658 line-wrap, don't pass a negative value as first-line-length since this
6659 won't work with the following changes.
6660 (xsl:template name="line-wrap"): Simplify slightly.
6661 (xsl:template name="ws-search"): Eliminate recursion.
6662 * src/print_graph.c (print_core): Don't print a reduction's lookahead
6663 set next to an item whose dot is not at the end of the RHS even if it
6664 happens to be associated with the same rule.
6665
88c78747
JD
66662007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
6667
31984206
JD
6668 Add %define lr.keep_unreachable_states.
6669 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
6670 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
6671 * src/main.c (main): Implement it.
6672 * tests/conflicts.at (Unreachable States After Conflict Resolution):
6673 Extend to test it, and fix a typo.
6674
66752007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
6676
6677 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
88c78747
JD
6678 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
6679 the example .output text.
6680 * tests/regression.at (Extra lookahead sets in report): Improve wording
6681 of comments.
6682
b7a70162
WP
66832007-10-17 Wojciech Polak <polak@gnu.org>
6684
6685 * src/print-xml.c (print_grammar): Renamed
6686 <terminal> and <nonterminal> attributes:
6687 "type" to "number" and "symbol" to "name".
6688 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
6689 Use new attribute names.
6690 (xsl:template match="nonterminal"): Likewise.
6691 * data/xslt/xml2xhtml.xsl: Likewise.
6692
a0de5091
JD
66932007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
6694
6695 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
6696 (Option Cross Key): Likewise.
6697
6698 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
6699 next to an item whose dot is not at the end of the RHS even if it
6700 happens to be associated with the same rule.
6701 * src/print.c (print_core): Likewise.
6702 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
6703 (Resolved SR Conflicts): Update output.
6704 * tests/regression.at (Extra lookahead sets in report): New test case.
6705
4c20d18d
WP
67062007-10-11 Wojciech Polak <polak@gnu.org>
6707
6708 * src/print-xml.c (print_core): Remove item set
6709 redundancy.
6710 * data/xslt/bison.xsl (bison:ruleNumber): New key.
6711 Improve processing time. Suggested by Joel E. Denny.
6712 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
6713 Write xsl:param "required" attribute as comment.
6714 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
6715 (xsl:template match="rule"): Support new reduced itemset.
6716 (xsl:template match="point"): Remove.
6717 * data/xslt/xml2xhtml.xsl: Likewise.
6718
f506ad1c
JD
67192007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
6720
6721 * src/getargs.c (version): Update copyright year.
6722
21f1b063
JD
67232007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
6724
6725 Make xml2dot.xsl and --graph produce the same output.
6726 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
6727 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
6728 escaped later.
6729 (xsl:template name="output-node"): Use the new escape template instead
6730 of the string-replace template directly.
6731 (xsl:template name="output-edge"): Likewise.
6732 (xsl:template name="escape"): New, escapes backslashes and newlines in
6733 addition to quotation marks.
6734 * src/graphviz.c (start_graph, output_node, output_edge): Add
6735 whitespace to output for legibility.
6736
6737 Make xml2text.xsl and --report produce the same output, and remove the
6738 XML "conflicts" element since a conflict summary is easily extracted
6739 from the automaton.
6740 * data/xslt/bison.xsl: New.
6741 (xsl:template match="state" mode="bison:count-conflicts): New.
6742 * data/xslt/xml2text.xsl: Import bison.xsl.
6743 (xsl:template match="bison-xml-report"): Instead of styling the
6744 "conflicts" element, style the "automaton" element with mode
6745 "conflicts". Unlike the former, the latter lists S/R and R/R
6746 conflicts for a state on the same line.
6747 (xsl:template match="conflicts"): Remove.
6748 (xsl:template match="conflict"): Remove.
6749 (xsl:template match="terminal"): Line-wrap the list of rules in which
6750 the terminal is used.
6751 (xsl:template match="nonterminal"): Likewise for nonterminals.
6752 (xsl:template match="automaton" mode="conflicts"): New.
6753 (xsl:template match="state" mode="conflicts"): New.
6754 (xsl:template name="line-wrap"): New.
6755 (xsl:template name="ws-search"): New.
6756 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
6757 (xsl:template match="bison-xml-report"): Instead of styling the
6758 "conflicts" element, style the "automaton" element with mode
6759 "conflicts."
6760 (xsl:template match="conflicts"): Remove.
6761 (xsl:template match="conflict"): Remove.
6762 (xsl:template match="automaton" mode="conflicts"): New.
6763 (xsl:template match="state" mode="conflicts): New.
6764 * src/conflicts.c (conflicts_output_xml): Remove.
6765 * src/conflicts.h (conflicts_output_xml): Remove prototype.
6766 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
6767 * src/print.c (print_grammar): Consistently wrap at the 66th column so
6768 the corresponding XSLT is easier. Also, never wrap between a word and
6769 the comma that follows it.
6770
793fbca5
JD
67712007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
6772
6773 Improve C++ namespace support. Discussed starting at
6774 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
6775 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
6776 b4_namespace_close): New macros that interpret the %define variable
6777 "namespace" so its value can contain "::" to indicate nested
6778 namespaces.
6779 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
6780 the above macros.
6781 * data/lalr1.cc (b4_namespace): Likewise.
6782 * data/location.cc (b4_namespace): Likewise.
6783 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
6784 inside a new table in the general %define entry. Document `%define
6785 namespace' there as well. Point the %name-prefix entry to it since it
6786 explains it more completely in the case of C++.
6787 (C++ Bison Interface): Mention `%define namespace' instead of
6788 %name-prefix.
6789 (Table of Symbols): Remove the `%define push_pull' entry. The %define
6790 entry suffices.
6791 * tests/c++.at (Relative namespace references): New test case.
6792 (Absolute namespace references): New test case.
6793 (Syntactically invalid namespace references): New test case.
6794 * tests/input.at (C++ namespace reference errors): New test case.
6795
35b8730d
JD
67962007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
6797
6798 Add syncline support and location accessor to internal %define
6799 interfaces.
6800 * data/bison.m4 (b4_percent_define_get_loc): New.
6801 (b4_percent_define_get_syncline): New.
6802 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
6803 (b4_percent_define_default): Record defining location as line 1 rather
6804 than 0 for the sake of synchronizing #line's, and define
6805 b4_percent_define_syncline(VARIABLE).
6806 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
6807 * src/muscle_tab.c (muscle_syncline_grow): New.
6808 (muscle_code_grow): Use muscle_syncline_grow.
6809 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
6810 define b4_percent_define_syncline(VARIABLE).
6811 (muscle_percent_define_get_loc): New.
6812 (muscle_percent_define_get_syncline): New.
6813 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
6814 remove some unused variables.
6815 (muscle_percent_define_default): Record defining location as line 1
6816 rather than 0 for the sake of synchronizing #line's, and define
6817 b4_percent_define_syncline(VARIABLE).
6818 (muscle_percent_define_check_values): Use
6819 muscle_percent_define_get_loc.
6820 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
6821 (muscle_percent_define_get_syncline): Prototype.
6822 * tests/skeletons.at (%define Boolean variables: invalid skeleton
6823 defaults): Update output for location change.
6824 (Complaining during macro argument expansion): Extend to test
6825 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
6826
7dc4a694
JD
68272007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
6828
6829 Fix some error-reporting macro bugs.
6830 * data/bison.m4 (b4_cat): New.
6831 (b4_error, b4_error_at): Use b4_cat to send error directives directly
6832 to stdout so they don't become arguments to other macros. Update
6833 comments and add examples.
6834 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
6835 add examples.
6836 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
6837 after printing the error directive so that M4 doesn't report subsequent
6838 problems that are induced by this problem.
6839 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
6840 instead of just in them. Recognize @\n in both places. Both expand to
6841 the empty string. Needed by b4_cat.
6842 * tests/skeletons.at (Complaining during macro argument expansion):
6843 New test case.
6844 (Fatal errors make M4 exit immediately): New test case.
6845
d4bd2295
JD
68462007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
6847
6848 Implement --print-datadir.
6849 * src/getargs.c (usage): Mention.
6850 (PRINT_DATADIR_OPTION): New anonymous enum member.
6851 (long_options): Add entry for it.
6852 (getargs): Add case for it calling compute_pkgdatadir.
6853 * src/output.c (output_skeleton): Encapsulate data directory
6854 computation from here...
6855 (prepare): ... and from here...
6856 (compute_pkgdatadir): ... into this new function.
6857 * src/output.h (compute_pkgdatadir): Prototype.
6858
34cdeddf
JD
68592007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
6860
6861 * src/print-xml.c (escape_bufs): New static global variable
6862 replacing...
6863 (xml_escape_n): ... the static local variable buf here.
6864 (print_xml): Free memory for escape_bufs.
6865 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
6866
d782395d
JD
68672007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
6868
6869 Replace `%push-parser' and `%push-pull-parser' with
6870 `%define push_pull "push"' and `%define push_pull "both"'.
6871 `%define push_pull "pull"' is the default.
6872 * doc/bison.texinfo (Push Decl, Push Parser Function,
6873 Pull Parser Function, Parser Create Function, Parser Delete Function):
6874 Update declarations.
6875 (Decl Summary, Table of Symbols): Replace %push-parser and
6876 %push-pull-parser entries with a %define push_pull entry.
6877 * data/bison.m4 (b4_percent_define_check_values): New macro.
6878 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
6879 definitions...
6880 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
6881 definitions...
6882 * data/push.c: ... to here and compute them from the value of the
6883 %define variable push_pull.
6884 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
6885 parsing requests here...
6886 * data/yacc.c: ... hack this to switch to push.c any time
6887 b4_use_push_pull_flag or the %define variable push_pull is set. This
6888 will go away when we mv push.c yacc.c.
6889 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
6890 push parsing is not supported since unused %define variables are
6891 reported anyway.
6892 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
6893 * src/muscle_tab.h (muscle_percent_define_check_values): Update
6894 comments for consistency with b4_percent_define_check_values.
6895 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
6896 muscles.
6897 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
6898 Remove.
6899 (prologue_declaration): Remove %push-parser and %push-pull-parser
6900 rules.
6901 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
6902 * tests/calc.at: Update declarations.
6903 * tests/input.at (%define enum variables): New test case.
6904 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
6905 declaration.
6906 (Push Parsing: Multiple impure instances): Update declaration.
6907 (Push Parsing: Unsupported Skeletons): New test case.
6908 * tests/torture.at (Exploding the Stack Size with Alloca): Update
6909 declaration.
6910 (Exploding the Stack Size with Malloc): Update declaration.
6911
3f999f78
WP
69122007-09-24 Wojciech Polak <polak@gnu.org>
6913
6914 Add XSLT transformations.
6915
6916 * data/xslt/xml2dot.xsl: Transform XML into DOT.
6917 * data/xslt/xml2text.xsl: Transform XML into plain text.
6918 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
6919 * data/Makefile.am (xsltdir): New variable.
6920 (dist_xslt_DATA): Add xslt/*.xsl files.
6921
a4f75309
PE
69222007-09-23 Paul Eggert <eggert@cs.ucla.edu>
6923
6924 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
6925 Problem reported by Wojciech Polak.
6926 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
6927 (xml_printf): Undo change I made on 21 September; that is,
6928 indent 2 spaces, not 1.
6929
ad5feac4
JD
69302007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
6931
6932 Pacify ./configure --enable-gcc-warnings.
6933 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
6934 `char const *' instead of `char *'.
6935 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
6936 local variable `sep'.
6937
41d7a5f2
PE
69382007-09-21 Paul Eggert <eggert@cs.ucla.edu>
6939
6940 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
6941 elsewhere.
6942 * src/print-xml.c: Prefer "const" after types; that's more consistent.
6943 (xml_printf): Indent just 1 space for level.
6944 (e_char, xlate_char): Remove.
6945 (xml_escape_string): Rewrite to avoid undefined behavior (used
6946 storage that was freed from the stack).
6947 (xml_escape_n): Don't bother checking for subscript error.
6948
3f999f78
WP
69492007-09-21 Wojciech Polak <polak@gnu.org>
6950
6951 Add Bison XML Automaton Report.
41d7a5f2
PE
6952
6953 Add support for an -x option to generate an XML report.
6954 It is not documented yet.
6955 * src/print-xml.c: New file.
6956 * src/print-xml.h: Likewise.
6957 * lib/timevar.def (TV_XML): New var.
6958 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
6959 * src/conflicts.c: Include print-xml.h.
6960 (solved_conflicts_xml_obstack): New var.
6961 (log_resolution, conflicts_solve, conflicts_free):
6962 Add support for XML report.
6963 (conflicts_output_val): New function.
6964 * src/conflicts.h (conflicts_output_val): New decl.
6965 * src/files.c (spec_xml_file): New var.
6966 (compute_output_file_names, output_file_names_free): Add XML support.
6967 * src/files.h (spec_xml_file): New decl.
6968 * src/getargs.c (xml_flag): New var.
6969 (usage, short_options, long_options, getargs): Add XML support.
6970 * src/getargs.h (xml_flag): New decl.
6971 * src/gram.c: Include print-xml.h.
6972 (rule_lhs_print_xml, rule_rhs_print_xml):
6973 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
6974 New functions.
6975 * src/gram.h: Declare external ones.
6976 * src/main.c: Include print-xml.h.
6977 (main): Add XML support.
6978 * src/reduce.c: Include print-xml.h.
6979 (reduce_xml): New function.
6980 * src/reduce.h: Declare it.
6981 * src/state.c: Include print-xml.h.
6982 (state_new): Add XML support.
6983 (state_rule_lookahead_tokens_print_xml): New function.
6984 * src/state.h: Declare it.
6985 (struct state): New member solved_conflicts_xml.
6986 * src/symtab.c (symbol_class_get_string): New function.
6987 * src/symtab.h: Declare it.
6988
6d8e724d
PE
69892007-09-21 Paul Eggert <eggert@cs.ucla.edu>
6990
6991 * GNUmakefile: Switch to coreutils's version.
6992 * bootstrap: Likewise.
6993 * Makefile.cfg: Adjust to new GNUmakefile.
6994 * README-hacking: Likewise.
6995
6996 Import from gnulib:
6997
6998 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
6999 Bruno Haible <bruno@clisp.org>
7000
7001 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
7002 and is a script that invokes bison. Tighten the code. Add comments.
7003
922bdd7f
JD
70042007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
7005
7006 Spell "boolean" as "Boolean". Reported by Akim Demaille.
7007 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
7008 * doc/bison.texinfo (Decl Summary): Fix.
7009 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
7010 * tests/input.at (Boolean %define variables): Update output.
7011 * tests/skeletons.at (%define boolean variables: invalid skeleton
7012 defaults): Rename to...
7013 (%define Boolean variables: invalid skeleton defaults): ... this and
7014 update output.
7015
1b17b01d
JD
70162007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
7017
7018 In impure push mode, don't allow more than one yypstate to be allocated
7019 since multiple impure parsers would corrupt yynerrs.
7020 * data/push.c (yypstate_allocated): New static global variable
7021 initialized to 0.
7022 (yypull_parse): If yypstate_new returns 0, don't report it as memory
7023 exhaustion if yypstate_allocated is 1, but still return 2.
7024 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
7025 already 1. Otherwise, set it to 1.
7026 (yypstate_delete): Set it to 0.
7027 * tests/push.at (Push Parsing: Multiple impure instances): New test
7028 case.
7029
9987d1b3
JD
70302007-08-17 Bob Rossi <bob@brasko.net>
7031
7032 * doc/bison.texinfo (Push Decl): Document the push parser.
7033 (Table of Symbols): Ditto.
7034 (Pure Decl): Ditto.
7035 (Decl Summary): Ditto.
7036 (Multiple Parsers, Push Parser Function, Pull Parser Function,
7037 Parser Create Function, Parser Delete Function):
7038 Add new push parser symbols.
7039 (Table of Symbols): Document push-parser, push-pull-parser,
7040 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
7041
f16b0819
PE
70422007-08-15 Paul Eggert <eggert@cs.ucla.edu>
7043
7044 Update to GPLv3.
7045 * doc/gpl-3.0.texi: New file.
7046 * doc/gpl.texi: Remove.
7047 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
7048 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
7049 * README-hacking, TODO, bootstrap, bootstrap.conf:
7050 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
7051 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
7052 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
7053 * data/lalr1.cc, data/lalr1.java, data/location.cc:
7054 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
7055 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
7056 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
7057 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
7058 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
7059 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
7060 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
7061 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
7062 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
7063 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
7064 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
7065 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
7066 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
7067 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
7068 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
7069 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
7070 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
7071 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
7072 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
7073 * src/complain.c, src/complain.h, src/conflicts.c:
7074 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
7075 * src/files.h, src/flex-scanner.h, src/getargs.c:
7076 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
7077 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
7078 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
7079 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
7080 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
7081 * src/print.c, src/print.h, src/print_graph.c:
7082 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
7083 * src/reduce.h, src/relation.c, src/relation.h:
7084 * src/revision.h, src/scan-code.h, src/scan-code.l:
7085 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
7086 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
7087 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
7088 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
7089 * tests/Makefile.am, tests/actions.at, tests/c++.at:
7090 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
7091 * tests/existing.at, tests/glr-regression.at:
7092 * tests/headers.at, tests/input.at, tests/java.at:
7093 * tests/local.at, tests/output.at, tests/push.at:
7094 * tests/reduce.at, tests/regression.at, tests/sets.at:
7095 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
7096 * tests/torture.at:
7097 Update to GPLv3.
7098
728c4be2
JD
70992007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
7100
7101 Get rid of broken %no-parser, -n, and --no-parser implementation and
7102 documentation.
7103 * TODO: Don't mention them.
7104 * doc/bison.1: Likewise.
7105 * doc/bison.texinfo (Decl Summary): Likewise.
7106 (Bison Options): Likewise.
7107 (Option Cross Key): Likewise.
7108 * src/getargs.c (no_parser_flag): Remove global variable.
7109 (usage): Don't print description of -n and --no-parser.
7110 (long_options): Remove --no-parser entry here.
7111 (getargs): Remove -n case in the switch here.
7112 * src/getargs.h (no_parser_flag): Remove extern.
7113 * tests/regression.at (Web2c Actions): Remove comment that mentions
7114 --no-parser.
7115
5d31a216
JD
71162007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
7117
7118 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
7119 name user variables starting with `yy'. Just pass NULL instead of a
7120 dummy local &yylval to yypush_parse.
7121 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
7122 starting with `yy'.
7123
a2ea208d
JD
71242007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
7125
7126 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
7127 true since it's then always used regardless of whether yyoverflow is
7128 defined. Reported by Christian Burger at
7129 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
7130 * THANKS: Add Christian Burger.
7131
91661ebb
JD
7132 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
7133 node names: say "Decl Summary" not "Bison Declaration Summary".
7134
cbd50549
JD
71352007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
7136
7137 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
7138 determine whether this function has already complained about an invalid
7139 value for a %define boolean variable, don't check whether Bison has
7140 ever examined the value. As written, the check was a tautology.
7141 Instead, record and check for this complaint using a separate muscle.
7142
eb1b0740
JD
71432007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
7144
7145 Fix push parsing memory leak reported by Brandon Lucia at
7146 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
7147 * THANKS: Add Brandon Lucia.
7148 * data/push.c (yypstate_delete): Free the stack if it was reallocated
7149 but the parse never completed and thus freed it.
7150 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
7151 * tests/testsuite.at: Include push.at.
7152 * test/push.at: New.
7153 (Push Parsing: Memory Leak for Early Deletion): New test case.
7154
9d774aff
JD
71552007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
7156
7157 Improve handling of multiple S/R conflicts in the same state and of S/R
7158 conflicts involving multiple reductions.
7159 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
7160 set for a state here or Bison will abort if it is reassigned on a
7161 later conflicted reduction in the same state.
7162 Similarly, don't finalize and assign the solved conflicts report here
7163 or it will be lost if it is reassigned on a later conflicted reduction
7164 in the same state.
7165 (set_conflicts): Instead, assign them both here after all S/R conflicts
7166 in the state have been fully examined.
7167 * src/print.c (shift_set): Rename to...
7168 (no_reduce_set): ... this.
7169 (print_reductions): Update for rename, and add %nonassoc error action
7170 tokens to no_reduce_set so that, when printing the first remaining
7171 reduction on an error action token, the reduction is enclosed in
7172 brackets.
7173 (print_results): Update for rename.
7174 * tests/conflicts.at (Solved conflicts report for multiple reductions
7175 in a state): New test case.
7176 (%nonassoc error actions for multiple reductions in a state): New test
7177 case.
7178
7179 * src/main.c (main): Don't depend on C99 features.
7180
10159d2a
JD
71812007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
7182
7183 * build-aux/.cvsignore: Add compile.
b541ffdf
JD
7184 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
7185 uniwidth.
10159d2a 7186
953b3935
JD
71872007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
7188
7189 * bootstrap (slurp): Create target directories that don't exist.
7190 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
7191
6ce2d93a
JD
71922007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
7193
7194 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
7195 than item number.
7196 * closure.c (closure): Likewise.
7197 * state.h (reductions): Comment sorting of rules.
7198 (state): Comment sorting of items.
7199
ce3448d5
JD
72002007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
7201
7202 Fix C++ test cases after recent Gnulib changes. Discussed starting at
7203 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
7204 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
7205 definition in order to avoid Gnulib headers since we don't use config.h
7206 here.
7207 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
7208 rather than AT_DATA so that config.h is included.
7209
8a86eef0
JD
72102007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
7211
7212 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
7213 instead of fprintf. Guard these functions with #if YYDEBUG instead of
7214 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
7215 and so that YYFPRINTF is guaranteed to be defined here.
7216
b1a81613
JD
72172007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
7218
7219 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
7220 with...
7221 (muscle_percent_define_check_values): ... this more helpful function.
7222 Again, it's not used yet, but it will be.
7223 * src/muscle_tab.h: Likewise.
7224
71b61d4d
JD
7225 Improve some comments in parser table construction.
7226 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
7227 (generate_states): Don't mention ruleset, which is internal to closure.
7228 * src/closure.c (closure): Explain sorting of core and itemset, which
7229 is required for this function to behave correctly.
7230 * src/closure.h (closure): Mention sorting.
7231
2a6b783d
JD
72322007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
7233
7234 * src/lalr.c (state_lookahead_tokens_count): For code readability,
7235 move the check for disabled transitions to an aver since conflict
7236 resolution hasn't happened yet.
7237
7238 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
7239 labels a state as inconsistent just because it has error transitions.
7240 The original form of this check appeared in revision 1.1 of lalr.c,
7241 which was committed on 1991-12-21. Now (at least), changing the
7242 consistency label on such a state appears to have no useful effect in
7243 any of the places it is examined, which I enumerate below. The key
7244 point to understanding each item in this enumeration is that a state
7245 with an error transition is labelled consistent in the first place only
7246 if it has no rules, so the check cannot matter for states that have
7247 rules. (1) Labelling a state as inconsistent will cause set_conflicts
7248 to try to identify its conflicts, and a state must have *rules* to have
7249 conflicts. (2) Labelling a state as inconsistent will affect how
7250 action_row sets the default *rule* for the state. (3) Labelling a
7251 state as inconsistent will cause build_relations to add lookback edges
7252 to *rules* in that state.
7253 * src/state.h (struct state): Word the comment for member consistent
7254 more carefully.
7255
14462c2b
JD
72562007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
7257
7258 Don't depend on C99 features.
7259 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
7260 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
7261 * src/reader.c (check_and_convert_grammar): Fix for-loop.
7262 * src/state.c (state_mark_reachable_states): Fix for-loop.
7263 (state_remove_unreachable_states): Fix for-loop.
7264
7265 Don't widen struct state with member reachable just to temporarily
7266 record reachability. Instead, use a local bitset.
7267 * src/state.h (struct state): Remove member.
7268 * src/state.c (state_new): Don't initialize it.
7269 (state_mark_reachable_states): Rename to...
7270 (state_record_reachable_states): ... this, and use bitset.
7271 (state_remove_unreachable_states): Use bitset.
7272
5a43d418
JD
72732007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
7274
7275 * src/Makefile.am (yacc): Quote target action commands properly so
7276 that the yacc script isn't corrupt. Reported by Hans Aberg at
7277 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
7278
0c650a20
JD
7279 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
7280 the case of pure parsers. Reported by Frans Englich at
7281 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
7282 * THANKS: Add Frans Englich.
7283
61fee93e
JD
7284 * NEWS (2.3a+): In the %code entry, reference section `Bison
7285 Declaration Summary' from the manual now since the %code summary has
7286 moved there.
7287 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
7288 in the rules section must be terminated by semicolons.
7289
f124d423
JD
72902007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
7291
7292 Extend the front-end API for %define variables to more completely
7293 mirror the back-end. This will be useful in the future.
7294 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
7295 Update comments to mention the new front-end counterparts of these
7296 macros.
7297 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
7298 for muscle_string_decode and muscle_location_decode.
7299 (muscle_string_decode): New static function.
7300 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
7301 (muscle_percent_define_get, muscle_percent_define_ifdef): New
7302 functions.
7303 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
7304 muscle_percent_define_get to mimic the b4_percent_define_flag_if
7305 implementation more closely.
7306 (muscle_percent_define_invalid_value): New function.
7307 * src/muscle_tab.h (muscle_percent_define_get,
7308 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
7309 Prototype.
7310
75ad86ee
JD
73112007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
7312
7313 * NEWS (2.3a+): Mention yesterday's state-removal change.
7314 (2.3a): Remove the %language entry, which was added after 2.3a.
7315 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
7316 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
7317 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
7318 tests/existing.at: Update copyright date.
7319
5967f0cf
JD
73202007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
7321
7322 If conflict resolution makes states unreachable, remove those states,
7323 report rules that are then unused, and don't report conflicts in those
7324 states.
7325 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
7326 New global function.
7327 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
7328 function.
7329 * src/main.c (main): After conflict resolution, remove the unreachable
7330 states and update all data structures that reference states by number.
7331 * src/state.c (state_new): Initialize each state's reachable member to
7332 false.
7333 (state_mark_reachable_states): New static function.
7334 (state_remove_unreachable_states): New global function.
7335 * src/state.h (struct state): Add member bool reachable.
7336 (state_remove_unreachable_states): Prototype.
7337 * tests/conflicts.at (Unreachable States After Conflict Resolution):
7338 New test case.
7339 * tests/existing.at (GNU pic Grammar): Update test case output now that
7340 an unused rule is discovered.
7341
b09f4f48
JD
73422007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
7343
7344 Minor code cleanup in parser table construction.
7345 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
7346 (new_itemsets, save_reductions): Update for rename to nitemset.
7347 * src/closure.c (nritemset): Rename to...
7348 (nitemset): ... this since the "r" appears to meaningless and isn't
7349 used in the comments.
7350 (closure): Update for rename.
7351 * src/closure.h (nritemset): Update extern to...
7352 (nitemset): ... this.
7353 * src/lalr.c (LA): Fix a typo in comments.
7354 * src/print.c (print_core): Update for rename to nitemset.
7355 * src/print_graph.c (print_graph): Likewise.
7356 * src/state.h: Fix some typos in header comments.
7357
bbb44d83
PE
73582007-04-04 Paul Eggert <eggert@cs.ucla.edu>
7359
9b33de72
PE
7360 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
7361 still sticks to ASCII. Sorry!
7362
bbb44d83
PE
7363 * README-hacking: New file, taken mostly from coreutils, with changes
7364 for Bison. Contains much of the contents of:
7365 * README-cvs: Remove.
7366 * bootstrap: Sync from gnulib.
7367 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
7368 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
7369
29553547
JD
73702007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
7371
7372 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
7373 Setzer.
7374 (Java Differences): Fix some typos.
7375 * THANKS: Add Sebastian Setzer.
7376
01b477c6
PB
73772007-03-07 Paolo Bonzini <bonzini@gnu.org>
7378
730739e4
AD
7379 * data/java.m4 (b4_single_class_if): Remove.
7380 (b4_abstract_if): Look at "%define abstract".
7381 (b4_lexer_if): New.
7382 (b4_union_name): Rename...
7383 (b4_yystype): ... to this. Map to "%define stype".
7384 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
7385 b4_maybe_throws): Fix quoting.
7386 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
7387 * data/lalr1.java (Lexer interface): Always define.
7388 (Lexer interface within parser class): Remove.
7389 (YYLexer class): New, used when "%code lexer" is present.
7390 (constructor): When "%code lexer" is used, pass %lex-param
7391 to the lexer constructor.
7392 (yylex, yyparse): Remove %lex-param from method invocations
7393 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
7394
7395 * doc/bison.texinfo (Java Bison Interface): Mention "%define
7396 abstract". Rename "%define union_name" to "%define stype".
7397 Rename method names according to previous patch.
7398 (Java Scanner Interface): Describe "%code lexer" instead of
7399 "%pure-parser" and "%define single_class".
7400 (Java Differences): Mention "%code lexer".
7401
7402 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
7403 Include scanner here, using macros from tests/local.at.
7404 (AT_DATA_CALC_Y): Remove final argument.
7405 (_AT_CHECK_JAVA_CALC): Likewise.
7406 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
7407 of %locations and %error-verbose.
7408 (main): Test with and without %lex-param.
7409 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
7410 (AT_BISON_OPTION_POPDEFS): Pop it.
01b477c6 7411
122bea3a
JMG
74122007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7413
7414 DJGPP spefic issue. Inhibit the use of disallowed characters for
7415 file name genertion on Win98, WinXP, etc. These are |<>":?*\
7416 and concern testsuite case 46.
7417 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
7418 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
7419 * djgpp/config.bat: Inhibit the use of disallowed characters.
7420
9611cfa2
JD
74212007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
7422
7423 Miscellaneous %define and %code cleanup.
7424 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
7425 values are interpreted.
7426 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
7427 documentation a little more.
7428 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
7429 muscle_percent_define_insert, muscle_percent_code_grow): New
7430 functions/macros.
7431 * src/muscle_tab.h (muscle_percent_define_insert,
7432 muscle_percent_code_grow): Prototype.
7433 * src/parse-gram.y (prologue_declaration): Use
7434 muscle_percent_define_insert and muscle_percent_code_grow when parsing
7435 %define and %code directives.
7436
7437 Make it easy to share %define boolean variables between the front-end
7438 and back-end. Though not used yet, this will be useful in the future.
7439 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
7440 Bison uses of names rather than just skeleton uses of names.
7441 (b4_percent_define_get, b4_percent_define_ifdef): Rename
7442 b4_percent_define_skeleton_variables(VARIABLE) to
7443 b4_percent_define_bison_variables(VARIABLE).
7444 (b4_percent_code_get, b4_percent_code_ifdef): Rename
7445 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
7446 b4_percent_code_bison_qualifiers(QUALIFIER).
7447 (b4_check_user_names_wrap): Update for renames.
7448 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
7449 muscle_percent_define_default): New functions mimicking
7450 b4_percent_define_flag_if and b4_percent_define_default.
7451
7452 For %define variables, report locations for invalid values and
bbb44d83 7453 redefinitions.
9611cfa2
JD
7454 * data/bison.m4 (b4_percent_define_flag_if): Read
7455 b4_percent_define_loc(VARIABLE) to report the location of an invalid
7456 value for VARIABLE.
7457 (b4_percent_define_default): Save a special location in
7458 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
7459 must later be reported as invalid.
7460 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
7461 functions.
7462 (muscle_percent_define_insert): Record the location of VARIABLE in
7463 muscle percent_define_loc(VARIABLE), and use it to report the previous
7464 location for a redefinition.
7465 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
7466 (muscle_percent_define_default): Update like b4_percent_define_default.
7467 (muscle_grow_user_name_list): Rename to...
7468 (muscle_user_name_list_grow): ... this for consistency and use
7469 muscle_location_grow.
7470 * src/muscle_tab.h (muscle_location_grow): Prototype.
7471 * tests/input.at (%define errors): Update expected output.
7472 * tests/skeletons.at (%define boolean variables: invalid skeleton
7473 defaults): New test case.
7474
0bf92491
JD
74752007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
7476
7477 * src/print.c (lookahead_set, state_default_rule): Remove.
7478 (print_reductions): Replace state_default_rule invocation with
7479 equivalent use of yydefact, which was computed in token_actions in
7480 tables.c.
7481 (print_results): Don't allocate lookahead_set.
7482
d3b12988
PB
74832007-02-27 Paolo Bonzini <bonzini@gnu.org>
7484
7485 * data/lalr1.java: Prefix all private members with yy.
7486
f57a7536
JD
74872007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
7488
7489 Use YYFPRINTF instead of fprintf where appropriate. Reported by
9b33de72 7490 Sebastien Fricker at
f57a7536 7491 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
9b33de72 7492 * THANKS: Add Sebastien Fricker.
f57a7536
JD
7493 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
7494 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
7495 accept a variable number of arguments.
7496
6404a5bf
JD
74972007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
7498
7499 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
7500
e4e09639
JMG
75012007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7502
7503 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
7504 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
7505 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
7506
d7e0a1a7
PE
75072007-02-11 Paul Eggert <eggert@cs.ucla.edu>
7508
7509 Undo my 2007-02-07 change, switching back to the c-strcase module
7510 introduced in the 2007-02-03 change. Bruno Haible reported that
7511 the 2007-02-07 change would be dangerous in Turkish if we add a
7512 language whose name contains "i", since "i" is not lowercase "I"
7513 in Turkish.
7514 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
7515 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
7516 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
7517 * m4/.cvsignore: Remove strcase.m4.
7518 * src/getargs.c: Revert 2007-02-07 change, as follows.
7519 Include c-strcase.h.
7520 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
7521
deee93a1
JD
75222007-02-11 Bruno Haible <bruno@clisp.org>
7523
7524 Enable the Java related testsuite tests when the only Java compiler
7525 found is a gcj < 4.3. Discussed at
7526 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
7527 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
7528
574add85
JD
75292007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
7530
7531 * data/Makefile.am: Update copyright date.
7532 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
7533 yypstate_new returns NULL.
7534 (yypstate_new): Return NULL if malloc does.
7535 * src/reader.c (packgram): Move translation of rule actions from the
7536 beginning of packgram to...
7537 (check_and_convert_grammar): ... here right before packgram is invoked
7538 so it's easier to write more complete comments, and remove redundant
7539 code.
7540
e785ccf7
JD
75412007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
7542
7543 As in semantic actions, make @$ in %initial-action, %destructor, and
7544 %printer imply %locations.
7545 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
7546 scanning @$.
7547 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
7548 (@$ in %initial-action implies %locations,
7549 @$ in %destructor implies %locations,
7550 @$ in %printer implies %locations): ... these new test cases.
7551
1cfe1ed7
PE
75522007-02-07 Paul Eggert <eggert@cs.ucla.edu>
7553
7554 Undo most of the 2007-02-03 change, switching to the strcase module
7555 now that gnulib strcase has been fixed.
7556 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
7557 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
7558 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
7559 * m4/.cvsignore: Add strcase.m4.
7560 * src/getargs.c: Revert 2007-02-03 change, as follows.
7561 Don't include c-strcase.h.
7562 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
7563 strcasecmp has "unspecified behavior" outside the POSIX locale,
7564 but it works fine in practice if at least one argument is ASCII,
7565 as is the case in Bison.
7566
0049ec86
PB
75672007-02-07 Paolo Bonzini <bonzini@gnu.org>
7568
7569 * tests/java.at: Skip tests if only one of javac/java is present.
7570 Reported by Joel E. Denny.
7571 * tests/atlocal.in: Adjust copyright years.
7572
75732007-02-05 Paolo Bonzini <bonzini@gnu.org>
7574
7575 * data/lalr1.java (Stack): Work around old verifiers that disallow
7576 access to the private fields of an inner class, from the outer class.
7577 We can make Stack's fields public because user code doesn't have access
7578 to the instance of Stack used by parse(). Reported by Paul Eggert.
7579
2c2b7220
PE
75802007-02-03 Paul Eggert <eggert@cs.ucla.edu>
7581
7582 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
7583 the right spot for these files?
7584 * bootstrap.conf (gnulib_modules): Add c-strcase.
7585 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
7586 c-strncasecmp.c.
7587 * src/getargs.c: Include c-strcase.h.
7588 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
7589 to avoid unspecified behavior.
7590
b2b81dae
JD
75912007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
7592
7593 * doc/bison.texinfo (Decl Summary): Correct typo.
7594
c1d19e10
PB
75952007-01-30 Paolo Bonzini <bonzini@gnu.org>
7596
7597 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
7598 Complain if the value does not match empty, "true" or "false".
7599 * data/c++.m4: Adjust default definitions of %define variables.
7600 * data/java.m4: Adjust default definitions of %define variables.
7601 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
7602 to above behavior.
7603 * tests/input.at (Boolean %define variables): Test new behavior.
7604
8405b70c
PB
76052007-01-29 Paolo Bonzini <bonzini@gnu.org>
7606
7607 * NEWS: Mention java.
7608 * TODO: Remove things that are done.
7609 * bootstrap.conf: Add javacomp-script and javaexec-script.
7610 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
7611
7612 * data/Makefile.am: Add new files.
7613 * data/java-skel.m4: New.
7614 * data/java.m4: New.
7615 * data/lalr1.java: New.
7616
7617 * doc/bison.texinfo: Put "A Complete C++ Example" under
7618 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
7619 under Other Languages.
7620
7621 * src/getargs.c (valid_languages): Add Java.
7622 * src/getargs.h (struct bison_language): Update size of string fields.
7623
7624 * tests/Makefile.am: Add java.at.
7625 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
7626 * tests/java.at: New.
7627 * tests/testsuite.at: Include it.
7628
3eb82471
JD
76292007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
7630
7631 Clean up.
7632 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
7633 at_directive_argv arguments so these no longer have to be global
7634 variables. Also, update the implementation for the following changes.
7635 (fail_for_at_directive_too_many_args,
7636 fail_for_at_directive_too_few_args): Add at_directive_name argument.
7637 (at_directive_name): Remove as at_directive_argv[0] will be used for
7638 this now.
7639 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
7640 for the directive name.
7641 (at_directive_argc, at_directive_argv): Make these local within
7642 skel_lex instead of global.
7643 (INITIAL): Update directive start action for above changes.
7644 (SC_AT_DIRECTIVE_ARG): Rename to...
7645 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
7646 (SC_AT_DIRECTIVE_SKIP_WS): Update.
7647 (scan_skel): Move yylex_destroy to...
7648 (skel_scanner_free): ... here.
7649 * tests/skeletons.at (installed skeleton file name): Rename to...
7650 (installed skeleton file names): ... this.
7651
148d66d8
JD
76522007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
7653
7654 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
7655 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
7656 Summary" not "Directives".
7657 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
7658 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
7659 since the former is now the more complete one.
7660 (Prologue Alternatives): Likewise and do the same for %defines.
7661 (Table of Symbols): Add summary of %code, add summary of %define, and
7662 move full %code documentation to...
7663 (Decl Summary): ... here for consistency with other entries in these
7664 sections.
7665 Move %define entry in order to keep this list alphabetized.
7666 Reword %define entry a little to put less emphasis on the skeleton
7667 concept, which most users shouldn't have to think about.
7668
665f0c24
PE
76692007-01-26 Paul Eggert <eggert@cs.ucla.edu>
7670
7671 Adjust to recent gnulib changes.
7672 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
7673 Add string.h, string_.h, unistd_.h, wchar_.h.
7674 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
7675 * src/system.h: Don't include <stpcpy.h>; this is now done by
7676 <string.h>.
7677
592d0b1e
PB
76782007-01-23 Paolo Bonzini <bonzini@gnu.org>
7679
7680 Simplify implementation of unqualified %code, implement macros for
7681 uniform treatment of boolean %define flags. Document %define.
7682 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
7683 b4_percent_code_ifdef): New.
7684 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
7685 * data/c++.m4: Define default value for global_tokens_and_yystype.
7686 * data/glr.cc: Likewise.
7687 * data/location.cc: Use b4_percent_define_flag_if.
7688
148d66d8 7689 * doc/bison.texinfo (Decl Summary): Document %define.
592d0b1e
PB
7690
7691 * src/parse-gram.y (Unqualified %code): Change muscle name to
7692 b4_percent_code().
7693 (content.opt): Default to empty.
7694
a7867f53
JD
76952007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
7696
7697 Implement support for relative and absolute skeleton file names.
7698 Discussed starting at
7699 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
7700 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
7701 (Bison Options): Document in --skeleton entry.
7702 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
7703 full_skeleton can't necessarily hold all of pkgdatadir.
7704 If the specified skeleton file name contains a `/', don't prepend
7705 pkgdatadir.
7706 * src/parse-gram.y (prologue_declaration): If the specified skeleton
7707 file name contains a `/', prepend the grammar file directory.
7708 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
7709 * skeletons.at: New file.
7710 (relative skeleton file names): New test case.
7711 (installed skeleton file names): New test case.
7712 * tests/testsuite.at: Include skeletons.at.
7713
7714 * bootstrap: Update copyright to 2007.
7715
830c9b18
PB
77162007-01-17 Paolo Bonzini <bonzini@gnu.org>
7717
7718 * bootstrap: Remove occurrences of .#bootmp from the files.
7719
a8c2e813
AD
77202007-01-17 Akim Demaille <akim@epita.fr>
7721
7722 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
7723 nonterminals.
7724 Use per-type %printer.
7725
279cabb6
JD
77262007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
7727
7728 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
7729 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
7730 djgpp/config.site, src/files.c, src/files.h, src/main.c,
7731 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
7732 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
7733 tests/glr-regression.at, tests/input.at, tests/local.at,
7734 tests/output.at, tests/torture.at: Update copyright to 2007.
7735
bb32f4f2
AD
77362007-01-16 Akim Demaille <akim@epita.fr>
7737
7738 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
7739 error code.
7740 (Calc++ Scanner): Exit with failure if we can't open the input
7741 file.
7742 Accept "-" standing for stdin.
7743 (Calc++ Top Level): Print the result only if the parsing was
7744 successful.
7745
7cff04b5
AD
77462007-01-16 Akim Demaille <akim@epita.fr>
7747
7748 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
7749
a4e25e1d
JD
77502007-01-15 Paolo Bonzini <bonzini@gnu.org>
7751 and Joel E. Denny <jdenny@ces.clemson.edu>
7752
7753 Clean up %define and %code implementation in M4 some. Most
7754 importantly, rename all related macros to be in the b4_percent_define
7755 and b4_percent_code namespaces. Also, complete support for `.' in
7756 %define variable names and %code qualifiers.
7757 * data/bison.m4 (b4_check_user_names): Check for special
7758 "SKELETON-NAMESPACE(name)" macros instead of using two nested
7759 m4_foreach loops.
7760 (b4_get_percent_define, b4_get_percent_code): Rename to...
7761 (b4_percent_define_get, b4_percent_code_get): ... these.
7762 Extend documentation with examples.
7763 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
7764 b4_percent_define_skeleton_variables and
7765 b4_percent_code_skeleton_qualifiers.
7766 Expect any value for the %define variable `foo' to be stored in the
7767 macro named `b4_percent_define(foo)'; expect any %code blocks for the
7768 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
7769 expect any unqualified %code blocks to be stored in a macro named
7770 `b4_percent_code_unqualified'.
7771 Use m4_indir so that %define variable names and %code qualifiers can
7772 contain `.', which is allowed by the grammar parser.
7773 (b4_percent_define_default): New macro to set a default value for a
7774 %define variable.
7775 (m4_wrap): Update wrapped code, and fix some underquoting.
7776 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
7777 Expect grammar uses of %define variables and %code qualifiers to be
7778 defined in b4_percent_define_user_variables and
7779 b4_percent_code_user_qualifiers.
7780 * data/c++.m4: Use b4_percent_define_default rather than
7781 m4_define_default. Fix some underquoting. Skeleton usage of %define
7782 variable define_location_comparison now implies skeleton usage of
7783 %define variable filename_type.
7784 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
7785 data/push.c, data/yacc.c: Update macro names.
7786 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
7787 muscle names.
7788
e37c665c
JMG
77892007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7790
7791 DJGPP specific issues.
7792
7793 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
7794 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
7795
7d2d521f
JD
77962007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
7797
7798 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
7799 run parsers in all tests so that Valgrind is invoked during
7800 maintainer-check-valgrind.
7801 (Duplicate representation of merged trees): Free all semantic values.
7802 (Duplicated user destructor for lookahead): Likewise.
7803
e0ac9b4b
JD
78042007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
7805
7806 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
7807 command-line prefix.
7808 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
7809 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
7810 miss Valgrind messages.
7811 (Exploding the Stack Size with Malloc): Likewise.
7812
78143faa
JD
78132007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
7814
7815 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
7816 locals. Reported by Juan Manuel Guerrero at
7817 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
7818 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
7819 Fix some indentation also.
7820 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
7821 explaining this issue.
7822
7ecec4dd
JD
78232007-01-09 Paolo Bonzini <bonzini@gnu.org>
7824 and Joel E. Denny <jdenny@ces.clemson.edu>
7825
7826 Simplify union and prologue handling, and escape union and lex/parse
7827 params with digraphs.
7828 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
7829 values to the empty string since these are no longer guaranteed
7830 initialized by the front-end.
7831 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
7832 braces around b4_user_stype since this is no longer done by the
7833 front-end.
7834 * src/files.c, src/files.h (pre_prologue_obstack,
7835 post_prologue_obstack): Remove.
7836 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
7837 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
7838 with digraphs. This fixes lex params and parse params.
7839 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
7840 * src/output.c (prepare): Remove muscle insertion of the prologues.
7841 (output): Remove freeing of pre_prologue_obstack and
7842 post_prologue_obstack.
7843 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
7844 than prologue_augment for prologue parsing so you don't need prologue
7845 obstacks.
5c80250c
JD
7846 (grammar_declaration): For %union RHS, use `braceless' instead of
7847 "{...}" so that braces are already stripped and code is escaped with
7848 digraphs.
7ecec4dd
JD
7849 * src/reader.c (prologue_augment): Remove.
7850 (reader): Remove initialization of pre_prologue_obstack and
7851 post_prologue_obstack.
7852 * src/reader.h (prologue_augment): Remove.
7853
7854 * data/c.m4: Remove stray parenthesis.
7855
16dc6a9e
JD
78562007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7857
7858 Remove quotes from variables names in %define directives and from
7859 qualifiers in %code directives, and restrict the characters that are
7860 allowed in them to M4-friendly ones. For %define, continue to support
7861 the quoted form as a deprecated feature. Discussed starting at
7862 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
7863 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
7864 %code.
7865 * doc/bison.texinfo (Prologue Alternatives): Update.
91661ebb
JD
7866 (Decl Summary): In %defines entry, update mention of `%code requires'
7867 and `%code provides'.
16dc6a9e
JD
7868 (C++ Location Values): Update %define uses.
7869 (Calc++ Parser Interface): Likewise.
7870 (Calc++ Parser): Likewise, and update `%code requires' uses.
148d66d8 7871 (Table of Symbols): Update %code documentation.
16dc6a9e
JD
7872 * src/parse-gram.y (prologue_declaration): For %define variables, use
7873 `variable' instead of `STRING'.
7874 (grammar_declaration): For %code qualifiers, use `ID' instead of
7875 `STRING'.
7876 (variable): New nonterminal that takes an `ID' or a `STRING'.
7877 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
7878 and %define uses.
7879 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
7880 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
7881 (%define errors): Update %define uses.
7882
e9813cd4
JD
78832007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7884
7885 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
7886 instead of muscle_insert for %define values so that M4-special
7887 characters are replaced with digraphs.
7888 * tests/input.at (%define errors): Extend to check weird values.
7889
6afc30cc
JD
78902007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7891
7892 Instead of having skeletons declare all valid %define variables and
7893 %code qualifiers, provide macros that retrieve the associated values
7894 and build these lists automatically. Thus Bison will now warn when a
7895 variable or qualifier is not used by the skeleton in the current
7896 invocation regardless of whether it might sometimes be used by that
7897 skeleton in other invocations. Also, move all %define value macros to
7898 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
7899 form, which is replaced by %code.
7900 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
7901 (b4_check_user_names): ... this, and change the series of valid name
7902 arguments to a single list argument for names used in the skeleton
7903 similar to the existing list argument for names used in the grammar.
7904 Warn instead of complaining.
7905 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
7906 values and %code code, to format %code code properly, and to build
7907 lists of all %define variables and %code qualifiers used in the
7908 skeleton: b4_skeleton_percent_define_variables and
7909 b4_skeleton_percent_code_qualifiers.
7910 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
7911 Remove, and...
7912 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
7913 the skeleton names lists can finish building first. In place of
7914 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
7915 expect the lists b4_user_percent_define_variables and
7916 b4_user_percent_code_qualifiers.
7917 * data/c++.m4: Where setting default values for b4_parser_class_name,
7918 b4_location_type, b4_filename_type, b4_namespace, and
7919 b4_define_location_comparison, update their names to the
7920 b4_percent_define_ namespace.
7921 * data/glr.c: Don't use b4_check_percent_define_variables and
7922 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
7923 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
7924 (b4_parser_class_name, b4_namespace): Define these using
a4e25e1d 7925 b4_get_percent_define for parser_class_name and namespace.
6afc30cc
JD
7926 * data/location.cc: Use b4_get_percent_define.
7927 * data/push.c: Don't use b4_check_percent_define_variables and
7928 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
7929 * data/yacc.c: Likewise, and don't call m4_exit in
7930 b4_use_push_for_pull_if or m4_wrap code will never execute.
7931 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
7932 Rename to...
7933 (muscle_grow_user_name_list): ... this for consistency with the
7934 terminology used in bison.m4.
7935 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
7936 %define variable names, and rename muscle used_percent_define_variables
7937 to user_percent_define_variables.
7938 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
7939 user_percent_code_qualifiers.
7940 (content): Remove.
7941 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
7942 {CODE} form is no longer accepted.
7943 * tests/input.at (Reject bad %code qualifiers): Rename to...
7944 (Reject unused %code qualifiers): ... this, and update test output.
7945 (%define error): Update test output.
7946
7eb8a0bc
JD
79472007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
7948
7949 Check for unrecognized %define variables similar to checking for
7950 unrecognized %code qualifiers. Check for redefined %define variables.
7951 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
7952 generalizes...
7953 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
7954 (b4_check_percent_define_variables): New, also wraps it.
7955 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
7956 variables using b4_check_percent_define_variables.
7957 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
7958 all those exercised in the test suite and all those listed in the
7959 `Default values' section of c++.m4. Are there others?
7960 * data/push.c, data/yacc.c: Declare no valid %define variables.
7961 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
7962 similar to muscle_find, but it works even when the muscle stores a
7963 const value.
7964 (muscle_grow_used_name_list): New function for constructing the used
7965 name list muscles that b4_check_for_unrecognized_names requires.
7966 * src/parse-gram.y (prologue_declaration): Warn if a variable is
7967 %define'd more than once. Define the b4_used_percent_define_variables
7968 muscle with muscle_grow_used_name_list.
7969 (grammar_declaration): Abbreviate %code code with
7970 muscle_grow_used_name_list.
7971 * tests/input.at (%define errors): New.
7972
3fc65ead
JD
79732007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7974
7975 Provide warn_at, complain_at, and fatal_at function callbacks to the
7976 skeletons, and use this for %code qualifier complaints.
7977 * data/bison.m4 (b4_error_at): New, invoked by...
7978 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
7979 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
7980 @fatal_at(...@) directives.
7981 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
7982 qualifiers in b4_used_percent_code_qualifiers and to use
7983 b4_complain_at.
7984 * src/location.c, src/location.h (boundary_set_from_string): New global
7985 function.
7986 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
7987 function.
7988 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
7989 to b4_used_percent_code_qualifiers.
7990 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
7991 function.
7992 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
7993 (lineno): Rename to...
7994 (out_lineno): ... this so I don't misunderstand it again.
7995 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
7996 here; these newlines are in the input but not the output file.
7997 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
7998 (at_directive_perform): ... this new static function, and add handling
7999 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
8000 directives.
8001 * tests/input.at (Reject bad %code qualifiers): Update test output with
8002 locations and extend.
8003
8004 * tests/output.at (Output file name: [, Output file name: ]): Remove
8005 bogus comment about these tests failing.
8006
1c7b7e1d
JD
80072007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8008
8009 Clean up b4_check_percent_code_qualifiers a little.
8010 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
8011 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
8012 documentation and add examples.
8013 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
8014 qualifiers here.
8015
08af01c2
JD
80162007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
8017
8018 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
8019 unreliable -- especially when they're hidden inside another macro.
8020 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
8021 data/c.m4: Remove m4_divert(-1).
8022 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
8023 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
8024 m4_divert_push(0) and m4_divert_pop(0).
279cabb6 8025 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
08af01c2
JD
8026 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
8027 pushed and popped by m4sugar, should be first on the stack.
8028
8029 Provide warn, complain, and fatal function callbacks to the skeletons.
8030 This provides more flexibility than m4_fatal, improves the error
8031 message format, and captures messages for translation. Discussed
8032 starting at
8033 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
8034 * data/bison.m4 (b4_error): New, invoked by...
8035 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
8036 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
8037 directives. Because these M4 macros might be called when the current
8038 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
8039 the previous removal of uses of m4_divert, which caused trouble.
8040 (b4_check_percent_code_qualifiers): Use b4_complain instead of
8041 m4_fatal to report unrecognized %code qualifiers.
8042 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
8043 push parser requests.
8044 * data/glr.c: Use b4_complain instead of m4_fatal to report
8045 non-deterministic push parser requests.
8046 Update @output usage to @output(...@) form.
8047 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
8048 report missing %defines. Update @output usage to @output(...@) form.
8049 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
8050 @output(...@) form.
8051 * src/main.c (main): Invoke skel_scanner_free.
8052 * src/scan-skel.h (skel_scanner_free): Prototype new function.
8053 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
8054 obstack_for_string from flex-scanner.h.
8055 (YY_DECL): Use to declare skel_lex static.
8056 (decode_at_digraphs): Remove; now handled in the new
8057 SC_AT_DIRECTIVE_ARG start condition.
8058 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
8059 functions.
8060 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
8061 at_directive_argv): New static globals.
8062 (INITIAL): Use fail_for_invalid_at.
8063 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
8064 recognize the start of a generalized `@directive(...@)' form and
8065 start...
8066 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
8067 directive args (using the new obstack_for_string), to decode the
8068 contained @ diagraphs, and to perform the directive. It recognizes
8069 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
8070 @output(...@).
8071 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
8072 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
8073 `@,'.
8074 (scan_skel): Initialize obstack_for_string on the first call.
8075 (skel_scanner_free): New function to free obstack_for_string.
8076 * tests/input.at (Reject bad %code qualifiers): Update test output.
8077
8e0a5e9e
JD
80782007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
8079
8080 Consolidate the 4 prologue alternative directives (%code, %requires,
8081 %provides, and %code-top) into a single %code directive with an
8082 optional qualifier field. Discussed at
8083 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
8084 * NEWS (2.3a+): Rewrite the existing entry for the prologue
8085 alternatives.
8086 * doc/bison.texinfo (Prologue Alternatives): Update.
8087 (Decl Summary): Update to %code "requires" and %code "provides".
8088 (Calc++ Parser): Update to %code "requires".
148d66d8 8089 (Table of Symbols): Remove entries for %requires, %provides, and
8e0a5e9e
JD
8090 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
8091 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
8092 are replaced by b4_percent_code_provides and b4_percent_code_requires,
8093 which are skeleton-specific.
8094 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
8095 declare what %code qualifiers it supports and to complain if any other
8096 qualifiers were used in the grammar.
8097 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
8098 and b4_user_code([b4_percent_code_provides]) in place of
8099 b4_user_requires and b4_user_provides.
8100 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
8101 Add b4_user_code([b4_percent_code_top]) and
8102 b4_user_code([b4_percent_code]).
8103 Invoke b4_check_percent_code_qualifiers.
8104 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
8105 PERCENT_REQUIRES): Remove.
8106 (grammar_declaration): Remove RHS's for %code-top, %provides, and
8107 %requires. Rewrite the %code RHS as the unqualified form defining the
8108 muscle b4_percent_code. Add another RHS for the qualified %code form,
8109 which defines muscles of the form b4_percent_code_QUALIFIER and the
8110 b4_used_percent_code_qualifiers muscle.
8111 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
8112 PERCENT_REQUIRES): Remove.
8113 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
8114 %code "requires" and %code "provides".
8115 * tests/input.at (Reject bad %code qualifiers): New.
8116
95021767
JD
81172007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
8118
8119 Use the new code_props interface for destructors and printers.
8120 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
8121 printer_location members, and change the type of the destructor and
8122 printer members to code_props.
8123 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
8124 symbol_printer_get, semantic_type_destructor_set,
8125 semantic_type_printer_set, default_tagged_destructor_set,
8126 default_tagless_destructor_set, default_tagged_printer_set,
8127 default_tagless_printer_set): Use code_props in arguments and return
8128 types in place of char const * and location.
8129 (symbol_destructor_location_get, symbol_printer_location_get): Remove
8130 since the locations are now contained in the return of
8131 symbol_destructor_get and symbol_printer_get.
8132 * src/output.c (symbol_destructors_output, symbol_printers_output):
8133 Replace with...
8134 (symbol_code_props_output): ... this to eliminate duplicate code.
8135 (output_skeleton): Update to use symbol_code_props_output.
8136 * src/reader.c (symbol_should_be_used): Update use of
8137 symbol_destructor_get.
8138 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
8139 Update uses of the various _destructor_set and _printer_set functions.
8140 * src/symtab.c: (default_tagged_destructor_location,
8141 default_tagless_destructor_location, default_tagged_printer_location,
8142 default_tagless_printer_location): Remove since we...
8143 (default_tagged_destructor, default_tagless_destructor,
8144 default_tagged_printer, default_tagless_printer): ... change the type
8145 of these to code_props.
8146 (symbol_new, semantic_type_new, symbol_destructor_set,
8147 semantic_type_destructor_set, symbol_destructor_get,
8148 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
8149 symbol_check_alias_consistency, default_tagged_destructor_set,
8150 default_tagless_destructor_set, default_tagged_printer_set,
8151 default_tagless_printer_set): Update.
8152 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
8153 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
8154 code_props members.
8155 (symbol_print): Use SYMBOL_CODE_PRINT.
8156
f6857bbf
JD
81572007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
8158
8159 Use the new code_props interface for rule actions.
8160 * src/symlist.h (symbol_list): Replace action, action_location, and
8161 used members with a code_props action_props member.
8162 * src/reader.c (symbol_should_be_used, grammar_rule_check,
8163 grammar_midrule_action, grammar_current_rule_merge_set,
8164 grammar_current_rule_symbol_append, packgram): Update.
8165 * src/scan-code.h (translate_rule_action): Remove, no longer used.
8166 * src/scan-code.l (handle_action_dollar): Update.
8167 (translate_rule_action): Remove, no longer used.
8168 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
8169
7c0c6181
JD
81702007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
8171
8172 Use the new code_props interface in parse-gram.y.
8173 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
8174 Update all uses of translate_* functions to use the new code_props
8175 interface and to use gram_scanner_last_string_free and
8176 code_scanner_last_string_free where possible.
8177 (grammar_declaration): symbol_list_destructor_set and
8178 symbol_list_printer_set now perform the translation, so don't do it
8179 here. Use gram_scanner_last_string_free where possible.
8180 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
8181 translate_code): Remove, no longer used.
8182 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
8183 symbol_list_printer_set): Perform code translation here rather than
8184 depending on the caller to do so.
8185
8186 * src/symlist.h (struct symbol_list): Correct some documentation typos.
8187 * src/scan-gram.h (gram_last_string): Remove declaration.
8188 * src/scan-gram.l (last_string): Declare it static.
8189
28e52c0d
JD
81902007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
8191
8192 Encapsulate code properties and related functionality for the various
8193 destructors, printers, and actions into a code_props structure and
8194 interface. This patch merely implements code_props in scan-code.h and
8195 scan-code.l. Future patches will rewrite other modules to use it.
8196 Discussed starting at
8197 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
8198 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
8199 consistently initialize const structs that have an empty location
8200 field.
8201 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
8202 to ensure consistency.
8203 * src/scan-code.h (code_props): New structure.
8204 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
8205 function, macro, and const global variable for initializing a
8206 code_props with no code.
8207 (code_props_plain_init, code_props_symbol_action_init,
8208 code_props_rule_action_init, code_props_translate_code): The rest of
8209 the new code_props functional interface. Among other things, the init
8210 functions set the code_props kind field so that
8211 code_props_translate_code will know whether to behave like
8212 translate_symbol_action, translate_rule_action, or translate_code.
8213 These old translate functions must remain until all other modules are
8214 updated to use the new code_props interface.
8215 (code_scanner_last_string_free): New function similar to
8216 gram_scanner_last_string_free.
8217 (code_scanner_free): Add documentation.
8218 * src/scan-code.l: Implement the new interface.
8219 (code_lex): Make it static, add a code_props* argument, and remove the
8220 rule argument.
8221 (last_string): New static global similar to the one in scan-gram.l.
8222 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
8223 instead of rule.
8224 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
8225 code_props since Bison may one day use this information for destructors
8226 and printers.
8227 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
8228 (handle_action_dollar): Use symbol_list_n_get and set used flag
8229 directly since symbol_list_n_used_set is removed.
8230 (translate_action): Add a code_props* argument and remove the rule,
8231 action, and location arguments. Pass the code_props* on to code_lex.
8232 (translate_rule_action, translate_symbol_action, translate_code):
8233 Rewrite as wrappers around the new code_props interface.
8234 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
8235 it would eventually need to break the encapsulation of code_props.
8236
96034983
JD
82372007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
8238
8239 * etc/.cvsignore: New.
8240
945e396c
JD
82412007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
8242
8243 Add maintainer-push-check to run maintainer-check using push parsing in
8244 place of pull parsing where available.
8245 * Makefile.am (maintainer-push-check): New.
8246 * data/bison.m4 (b4_use_push_for_pull_if): New.
8247 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
8248 appropriately based on their existing values.
8249 (yypush_parse): Don't print push-parser-specific diagnostics if push
8250 parsing is being used in place of pull parsing.
8251 * data/yacc.c: If push parsing should replace pull parsing, redirect to
8252 push.c.
8253 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
8254 variable, and insert b4_use_push_for_pull_flag into muscles.
8255 * tests/Makefile.am (maintainer-push-check): New.
8256
7d596384
JD
82572006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
8258
8259 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
8260 (whether successful or failed) so that yypush_parse can be invoked
8261 again to start a new parse using the same yypstate.
8262 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
8263 check multiple yypull_parse invocations on the same yypstate. For pull
8264 mode, extend to check multiple yyparse invocations.
8265 (Exploding the Stack Size with Alloca): Extend to try with
8266 %push-pull-parser.
8267 (Exploding the Stack Size with Malloc): Likewise.
8268
8269 * tests/calc.at (Simple LALR Calculator): Don't specify
8270 %skeleton "push.c" since %push-pull-parser implies that now.
8271 * tests/headers.at (export YYLTYPE): Don't check for the push
8272 declarations. Otherwise, this test case can't be used to see if push
8273 mode can truly emulate pull mode.
8274 * tests/input.at (Torturing the Scanner): Likewise.
8275 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
8276 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
8277 AT_YACC_IF, which now includes the case of push mode since %skeleton
8278 need not be used for push mode. This will be more intuitive once
8279 push.c is renamed to yacc.c.
8280
7172e23e
JD
82812006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
8282
8283 For push mode, convert yyparse from a macro to a function, invoke yylex
8284 instead of passing a yylexp argument to yypull_parse, and don't
8285 generate yypull_parse or yyparse unless %push-pull-parser is declared.
8286 Discussed starting at
8287 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
8288 * data/bison.m4 (b4_pull_if): New.
8289 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
8290 * data/push.c: Improve M4 quoting a little.
8291 (b4_generate_macro_args, b4_parenthesize): Remove.
8292 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
8293 any time a pull parser is requested.
8294 Don't #define this as a wrapper around yypull_parse. Instead, when
8295 both push and pull are requested, make it a function that does that
8296 same thing.
8297 (yypull_parse): If there's a b4_prefix, #define this to
8298 b4_prefix[pull_parse] when both push and pull are requested.
8299 Don't define this as a function unless both push and pull are
8300 requested.
8301 Remove the yylexp argument and hard-code yylex invocation instead.
8302 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
8303 %push-parser.
8304 * src/getargs.c (pull_parser): New global initialized to true.
8305 * getargs.h (pull_parser): extern it.
8306 * src/output.c (prepare): Insert pull_flag muscle.
8307 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
8308 (prologue_declaration): Set both push_parser and pull_parser = true for
8309 %push-pull-parser. Set push_parser = true and pull_parser = false for
8310 %push-parser.
8311 * src/scan-gram.l: Don't accept %push_parser as an alternative to
8312 %push-parser since there's no backward-compatibility concern here.
8313 Scan %push-pull-parser.
8314 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
8315 instead of %push-parser.
8316 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
8317 prototype it in the module that calls yyparse.
8318 * tests/input.at (Torturing the Scanner): Likewise.
8319 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
8320
2e7944cb
JD
83212006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
8322
8323 Update etc/bench.pl. Optimize push mode a little (the yyn change
8324 deserves most of the credit).
8325 * Makefile.am (SUBDIRS): Add etc subdirectory.
8326 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
8327 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
8328 yytoken, yyval, and yyloc declarations to...
8329 (yyparse or yypush_parse): ... here to improve performance. For
8330 yypush_parse invocations after the first, be sure to assign yyn its old
8331 value again.
8332 (yypstate_new): Don't bother initializing the yyresult field since the
8333 initial value isn't used.
8334 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
8335 remove the #define that, in push mode, set it to yyps->NAME.
8336 * etc/Makefile.am: New.
8337 * etc/bench.pl: Remove and build it instead from...
8338 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
8339 "tests/bison" from the build directory by default rather than just
8340 invoking "bison" from $PATH.
8341 (calc_grammar): Update push parser code: don't declare yylval globally,
8342 don't define yyparse_wrapper, and don't #define yyparse.
8343 (bench_grammar): Update to check all working combinations of yacc.c,
8344 push.c, impure, pure, pull, and push.
8345
c3d50342
JD
83462006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
8347
8348 For push mode, add pull wrappers around yypush_parse.
8349 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
8350 (yypull_parse): New function wrapping yypush_parse.
8351 (yyparse): New #define wrapping yypull_parse.
8352 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
8353 is declared.
8354 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
8355 prototype yylex in the module that calls yyparse, and don't prototype
8356 yyparse there. Otherwise, the yyparse expansion won't compile.
8357 * tests/input.at (Torturing the Scanner): Likewise.
8358
94ebeba5
JD
83592006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
8360
8361 Enable push parsers to operate in impure mode. Thus, %push-parser no
8362 longer implies %pure-parser. The point of this change is to move
8363 towards being able to test the push parser code by running the entire
8364 test suite as if %push-parser had been declared.
8365 * data/push.c (yypush_parse): For impure mode, remove the
8366 yypushed_char, yypushed_val, and yypushed_loc arguments.
8367 Instead, declare these as local variables initialized to the global
8368 yychar, yylval, and yylloc.
8369 For the first yypush_parse invocation only, restore the initial values
8370 of these global variables when it's time to read a token since they
8371 have been overwritten.
8372 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
8373 %push-parser.
8374 * tests/calc.at (Simple LALR(1) Calculator): Always declare
8375 %pure-parser along with %push-parser since this test case was designed
8376 for pure push parsers.
8377 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
8378 (AT_YACC_OR_PUSH_IF): New.
8379 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
8380 add a note that it's still wrong for some cases (as it has been for a
8381 while).
8382 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
8383 %push-parser no longer implies %pure-parser.
8384
a0633178
JD
83852006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
8386
8387 Remove some unnecessary differences between the pull parser code and
8388 the push parser code. This patch enables yynerrs in push mode.
8389 * data/push.c: Reformat M4 a little.
8390 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
8391 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
8392 because push mode is on. Instead, if pure mode is on, move yynerrs
8393 to...
8394 (b4_declare_parser_state_variables): ... here.
8395 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
8396 to yyps->NAME so it can be used in yypush_parse.
8397 (yypush_parse): Don't omit uses of yynerrs in push mode.
8398
8646b6a3
JD
83992006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
8400
8401 Fix bug such that the first pushed token's value and location are
8402 sometimes overwritten (sometimes by %initial-action) before being used.
8403 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
8404 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
8405 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
8406 more closely mimic the pull parser logic.
8407 Don't copy the pushed token to yychar, yylval, and yylloc until it's
8408 time to read a token, which is after any initialization of yylval and
8409 yylloc.
8410 (gottoken): Rename label to...
8411 (yyread_pushed_token): ... for clarity and to avoid infringing on the
8412 user namespace.
8413
9baf4d74
JD
84142006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
8415
8416 Rearrange initialization of the parser state variables so that the
8417 skeleton doesn't have to have a copy for pull mode and another for push
8418 mode. This patch also fixes at least a bug such that yylloc was not
8419 initialized (with b4_location_initial_line and
8420 b4_location_initial_column) upon calling yypush_parse. However, that
8421 initialization now overwrites the first token's location;
8422 %initial-action assigning @$ already did the same thing, and both bugs
8423 will be fixed in a later patch.
8424 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
8425 (b4_declare_parser_state_variables): Remove initialization of yytoken,
8426 yyss, yyvs, yyls, and yystacksize.
8427 (yypstate_new): Remove initialization of some yypstate fields: yystate,
8428 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
8429 yylsp.
8430 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
8431 yyps->NAME so it can be used in yypush_parse.
8432 (yyparse or yypush_parse): For yypush_parse, don't print the
8433 "Starting parse" diagnostic for invocations after the first.
8434 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
8435 yypush_parse, only do it for the first invocation.
8436 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
8437 initialization to occur in yypush_parse but only on the first
8438 invocation.
8439
23522164
JD
84402006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
8441
8442 * data/push.c: Add CPP guards around push parser declarations in both
8443 the header and the code file.
8444 In the code file, move the push parser declarations to the same place
8445 they appear in the header file.
8446 Clean up the M4 some, especially the inconsistent underquoting in
8447 some b4_c_function_def and b4_c_function_decl uses.
8448
bb010fe5
JD
84492006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
8450
8451 Encapsulate the push parser state variables into an M4 macro so the
8452 push skeleton doesn't have to list them again for pull mode's yyparse.
8453 For push mode, remove yypush_parse's local equivalents of these
8454 variables to eliminate unnecessary copying between the two sets at
8455 run-time. This patch also fixes at least a bug related to multiple
8456 %initial-action invocations in push mode.
8457 * data/push.c (b4_declare_parser_variables): Rename to...
8458 (b4_declare_scanner_communication_variables): ... this for clarity and
8459 update both uses.
8460 (b4_declare_yyparse_variables): Remove and move its contents to the one
8461 spot where it was invoked.
8462 (b4_declare_parser_state_variables): New macro containing the parser
8463 state variables required by push mode.
8464 (struct yypstate): Replace all fields but yynew with
8465 b4_declare_parser_state_variables.
8466 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
8467 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
8468 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
8469 (yyparse or yypush_parse): For yyparse in pull mode, replace local
8470 parser state variable declarations with
8471 b4_declare_parser_state_variables.
8472 Don't initialize parser state variables when calling yypush_parse since
8473 yypstate_new already does that.
8474 Invoke the user's initial action only upon the first yypush_parse
8475 invocation.
8476 Remove all code that copies between the local parser state variables
8477 and the yypstate.
8478
2d212f8c
JD
84792006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
8480
8481 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
8482 prevent a name collision in a future patch where these names will
8483 sometimes be #define'd.
8484 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
8485 since it no longer has the same name as the existing argument.
8486 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
8487
e6e704dc
JD
84882006-12-19 Paolo Bonzini <bonzini@gnu.org>
8489 and Joel E. Denny <jdenny@ces.clemson.edu>
8490
8491 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
8492 that the argument is case-insensitive, and there's no `=' here.
8493 For the %skeleton entry, mention that %language is better.
8494 (Bison Options): Likewise for --language and --skeleton. Move the
8495 --skeleton entry so that the `Tuning the parser' section is sorted
8496 alphabetically on long options.
8497 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
8498 %language directive in detail here; cross-reference the %language
8499 documentation instead.
8500 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
8501 `%require "2.3b"' so that the example is always up-to-date.
148d66d8 8502 (Table of Symbols): Add entries for %language and %skeleton.
e6e704dc
JD
8503 * examples/extexi (normalize): Instead of replacing every %require
8504 argument with the current Bison version, just substitute for
8505 `@value{VERSION}'. This guarantees that we're testing what actually
8506 appears in the documentation.
8507 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
8508 rather than `@VERSION@'.
8509
0e021770
PE
85102006-12-18 Paul Eggert <eggert@cs.ucla.edu>
8511
fd575f05
PE
8512 * NEWS: Reword the %language news a bit, and put it earlier.
8513
0e021770
PE
8514 * src/getargs.c (skeleton_arg): Last arg is now location const *.
8515 Rewrite to simplify the logic.
8516 (language_argmatch): Likewise.
fd575f05
PE
8517 (program_name): We now own this var.
8518 * src/getargs.h (struct bison_language): Use char[] rather than
8519 const char *.
0e021770
PE
8520
8521 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
8522 Java is supported.
8523 * src/complain.c (program_name): Remove decl; no longer needed.
8524 * src/main.c (program_name): Remove; now belongs to getargs.
8525
85262006-12-18 Paolo Bonzini <bonzini@gnu.org>
8527
8528 * NEWS: Document %language.
8529
8530 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
8531
8532 * data/c-skel.m4, data/c++-skel.m4: New files.
8533 * data/glr.c: Complain on push parsers.
8534
8535 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
8536 over %skeleton.
148d66d8 8537 (Decl Summary): Document %language and %skeleton.
0e021770
PE
8538 (Command line): Document -L.
8539
8540 * examples/extexi: Rewrite %require directive.
8541 * examples/calc++/Makefile.am: Pass VERSION to extexi.
8542
8543 * src/files.c (compute_exts_from_gc): Look in language structure
8544 for .y extension.
8545 (compute_file_name_parts): Check whether .tab should be added.
8546 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
8547 (language, skeleton_arg, language_argmatch): New.
8548 (long_options): Add --language.
8549 (getargs): Use skeleton_arg, add -L/--language.
8550 * src/getargs.h: Include location.h.
8551 (struct bison_language, language, skeleton_arg, language_argmatch): New.
8552 * src/output.c (prepare): Pick default skeleton from struct language.
8553 Don't dispatch C skeletons here.
8554 * src/parse-gram.y (PERCENT_LANGUAGE): New.
8555 (prologue_declaration): Add "%language" rule, use skeleton_arg.
8556 * src/scan-gram.l ("%language"): New rule.
8557
8558 * tests/calc.at: Test %skeleton and %language.
8559 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
8560 (AT_GLR_IF): Look for %skeleton "glr.cc".
8561 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
8562 (AT_YACC_IF): Reject %language.
8563
5691bf57
PE
85642006-12-18 Paul Eggert <eggert@cs.ucla.edu>
8565
db06f0ce
PE
8566 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
8567 since it wasn't used; only the typedef name 'semantic_type' is needed.
8568 Also, omit trailing white space.
8569
5691bf57
PE
8570 * bootstrap: Sync from coreutils.
8571 (gnulib_extra_files): Add build-aux/announce.gen.
8572 (slurp): Adjust .gitignore files like .cvsignore files.
8573 * build-aux/announce-gen: Remove from CVS, since bootstrap
8574 now creates this.
8575
791934e4
JD
85762006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
8577
8578 Make %push-parser imply %pure-parser. This fixes several bugs; see
8579 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
8580 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
8581 pure_parser = true.
8582 * data/push.c: Don't bother testing b4_push_if when deciding whether
8583 to expand b4_declare_parser_variables globally.
8584 (yypush_parse): Likewise in here.
8585
8586 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
8587 (yy_reduce_print): Reformat M4 for readability.
8588
ee5abb37
JD
85892006-12-15 Bob Rossi <bob@brasko.net>
8590 and Joel Denny <jdenny@ces.clemson.edu>
8591
8592 * data/push.c (yypstate): Add typedef, and update all uses of
8593 struct yypstate to just yypstate.
8594 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
8595
16ca01f9
JD
85962006-12-14 Bob Rossi <bob@brasko.net>
8597
8598 * data/push.c (yypush_parse): Declare prototype regardless of
8599 %locations option.
8600
ab8e7e1a
JD
86012006-12-14 Bob Rossi <bob@brasko.net>
8602
8603 * data/push.c (yyparse): Remove the prototype and the #define when in
8604 push-parser mode.
8605
9bf32be3
JD
86062006-12-13 Bob Rossi <bob@brasko.net>
8607
8608 * data/push.c (yypstate_init): Rename to...
8609 (yypstate_new): ... this and use b4_c_function_def.
8610 (yypstate_delete): New.
8611 (yypush_parse): Change parameters yynval and yynlloc to be const.
8612 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
8613 yypstate_delete functions.
8614
f02e2948
JD
86152006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
8616
8617 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
8618 strange test case titles. Reported by Bob Rossi.
8619
38eb7751
PE
86202006-12-13 Paul Eggert <eggert@cs.ucla.edu>
8621
8622 * TODO: Add pointer to Sylvain Schmitz's work on static detection
8623 of potential ambiguities in GLR grammers.
8624
bd9d212b
JD
86252006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
8626
8627 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
8628 `bison ', use m4_index instead of m4_substr since chopping up a string
8629 containing M4-special characters causes problems here.
8630
8631 Fix a couple of bugs related to special characters in user-specified
8632 file names, and make it easier for skeletons to compute output file
8633 names with the same file name prefix as Bison-computed output file
8634 names.
8635 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
8636 b4_parser_file_name and b4_spec_defines_file instead of
8637 @output_parser_name@ and @output_header_name@, which are now redundant.
8638 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
8639 b4_parser_file_name, b4_spec_defines_file, and the new
8640 @basename(FILENAME@) instead of @output_parser_name@ and
8641 @output_header_name@, which inappropriately escaped the file names as
8642 C string literals.
8643 * src/files.c (all_but_ext): Remove static qualifier.
8644 (compute_output_file_names): Move `free (all_but_ext)' to...
8645 (output_file_names_free): ... here since all_but_ext is needed later.
8646 * src/files.h (all_but_ext): Extern.
8647 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
8648 exactly what MUSCLE_INSERT_STRING used to do.
8649 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
8650 characters are escaped properly.
8651 * src/output.c (prepare): Define muscle file_name_all_but_ext as
8652 all_but_ext.
8653 For pkgdatadir muscle, maintain previous functionality by using
8654 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
8655 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
8656 digraphs would never be expanded. Hopefully no one has M4-special
8657 characters in his Bison installation path.
8658 * src/scan-skel.l: Don't parse @output_header_name@ and
8659 @output_parser_name@ anymore since they're now redundant.
8660 In @output, use decode_at_digraphs.
8661 Parse a new @basename command that invokes last_component.
8662 (decode_at_digraphs): New.
8663 (BASE_QPUTS): Remove unused.
8664 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
8665 (Output file name): New tests.
8666
3f7ca628
JD
86672006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
8668
8669 Warn about output files that are generated by the skeletons and that
8670 conflict with other output files.
8671 * data/glr.c: Don't generate the header file here when glr.cc does.
8672 * src/files.c (file_names, file_names_count): New static globals.
8673 (compute_output_file_names): Invoke output_file_name_check for files
8674 not generated by the skeletons and remove existing checks.
8675 (output_file_name_check): New function that warns about conflicting
8676 output file names.
8677 (output_file_names_free): Free file_names.
8678 * src/files.h (output_file_name_check): Declare.
8679 * src/scan-skel.l: Invoke output_file_name_check for files generated by
8680 the skeletons.
8681 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
8682 (Conflicting output files): New tests.
8683
178e123e
PE
86842006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8685
8686 * doc/bison.texinfo: Fix a couple of typos.
8687
86882006-12-08 Bob Rossi <bob@brasko.net>
8def5cd0
JD
8689
8690 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
8691 Rename to...
8692 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
8693 update all uses.
8694 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
8695 (yypush_parse): Rename yypvars argument to yyps and remove redundant
8696 local pv.
8697 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
8698 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
8699
ea17f233
JD
87002006-12-07 Bob Rossi <bob@brasko.net>
8701 and Joel Denny <jdenny@ces.clemson.edu>
8702
8703 * data/push.c (yypvarsinit): Change return type from void* to struct
8704 yypvars*. No longer cast to void* on return.
8705 (struct yypvars): Remove yylen since it need not be remembered between
8706 yypushparse invocations.
8707 (yypushparse): Don't copy between yylen and pv->yylen.
8708
55a30bda
JD
87092006-12-05 Bob Rossi <bob@brasko.net>
8710
8711 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
8712 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
8713 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
8714 (struct yypvars): Remove b4_declare_parser_variables.
8715 (yypvarsinit): Remove init code for removed variables.
8716 (global scope): Do not declare b4_declare_parser_variables if
8717 push or pure mode.
8718 (yypushparse): Add b4_declare_parser_variables.
8719 Init new local variables, and remove init code for removed
8720 yypvars variables.
8721 (yyparse): Delete.
8722 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
8723 and yyparse for other modes.
8724 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
8725 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
8726 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
8727 (AT_PURE_LEX_IF): True if pure or push parser.
8728
85894313
JD
87292006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
8730
8731 Document Yacc prologue alternatives and default %destructor's and
8732 %printer's as experimental. Don't mention Java yet. Discussed at
8733 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
8734 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
8735 (2.3a): Annotate this entry to say the old forms of these features were
8736 also experimental.
8737 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
148d66d8 8738 Table of Symbols): Say they're experimental. Comment out any mention
85894313
JD
8739 of Java (we'll want this back eventually).
8740
02975b9a
JD
87412006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
8742
8743 Support a file name argument to %defines. Deprecate `=' in
8744 %file-prefix, %name-prefix, and %output. Discussed at
8745 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
8746 * NEWS (2.3a+): Mention.
148d66d8 8747 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
02975b9a
JD
8748 form of %defines, and remove `=' from entries for %file-prefix,
8749 %name-prefix, and %output.
8750 * src/parse-gram.y (prologue_declaration): Implement.
8751 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
8752 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
8753 all but one occurrence of %name-prefix.
8754 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
8755 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
8756 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
8757 occurrence of each of %file-prefix and %output. Add check for %defines
8758 with argument.
8759 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
8760 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
8761 Remove the `=' from %output.
8762
287b314e
JD
87632006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
8764
8765 Don't escape $ in test case titles since Autoconf 2.61 now does that
8766 correctly.
8767 * tests/actions.at (Default %printer and %destructor are not for error
8768 or $undefined): Here.
8769 (Default %printer and %destructor are not for $accept): Here.
8770 * tests/input.at (Invalid $n and @n): Here.
8771
3ebecc24
JD
87722006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
8773
8774 Rename <!> to <>. Discussed starting at
8775 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
8776 * NEWS (2.3a+): Update.
148d66d8 8777 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3ebecc24
JD
8778 Update.
8779 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
8780 * src/scan-gram.l (INITIAL): Implement.
8781 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
8782 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
8783 comment.
8784 * tests/actions.at (Default tagless %printer and %destructor,
8785 Default tagged and per-type %printer and %destructor,
8786 Default %printer and %destructor are not for error or $undefined,
8787 Default %printer and %destructor are not for $accept,
8788 Default %printer and %destructor for mid-rule values): Update.
8789 * tests/input.at (Default %printer and %destructor redeclared,
8790 Unused values with default %destructor): Update.
8791
26b8a438
JD
87922006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
8793
8794 Don't let %prec take a nonterminal.
8795 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
8796 token.
8797 * tests/input.at (%prec takes a token): New test checking that %prec
8798 won't take a nonterminal.
8799
07c39ae9
JD
88002006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
8801
405d53b7
JD
8802 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
8803 it was double-quoted.
07c39ae9
JD
8804 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
8805 grammar is maintained with Bison's highest standards.
8806 * src/getargs.c: Fix some typos in Doxygen comments.
8807
580b8926
JD
88082006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
8809
8810 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
8811 later. Reported by Paul Eggert in
8812 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
8813 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
8814 * src/scan-code.l (translate_action): Don't bother invoking
8815 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
8816 (code_scanner_free): Instead of invoking
8817 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
8818 which frees more.
8819 * src/scan-gram.l (gram_scanner_free): Likewise.
8820 * src/scan-skel.l (scan_skel): Likewise.
8821
4502eadc
JD
88222006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
8823
8824 * src/files.c (tr): Change return type to void.
8825 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
8826 has been called previously for the same key.
8827 (muscle_find): Return storage instead of value so that
8828 --enable-gcc-warnings doesn't produce warnings that the return discards
8829 const. aver that the value and storage are the same since storage
8830 could potentially be NULL when value is not.
8831 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
8832 same as 0.
8833
7746c8f6
PE
88342006-11-08 Paul Eggert <eggert@cs.ucla.edu>
8835
8836 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
8837 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
8838 us a slightly cleaner distribution, and also works.
8839 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
8840 gnulib changes.
8841
eb095650
PE
88422006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
8843 and Paul Eggert <eggert@cs.ucla.edu>
8844
8845 Don't let Bison leak memory except when it complains.
8846 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
8847 (spec_defines_file, dir_prefix): Now char *, not const char *,
8848 since they are freed.
8849 * src/files.c: Likewise.
8850 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
8851 Likewise.
8852 (tr): Now operates in-place. All uses changed.
8853 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
8854 values.
8855 (compute_file_name_parts, compute_output_file_names): Don't store
8856 read-only data in variables that will be freed.
8857 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
8858 src_extension, and header_extension.
8859 (output_file_names_free): New public function to free
8860 spec_verbose_file, spec_graph_file, spec_defines_file,
8861 parser_file_name, and dir_prefix.
8862 * src/getargs.c (getargs): Don't store read-only data in variables that
8863 will be freed.
8864 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
8865 (which previously existed but was unused), and quotearg_free.
8866 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
8867 * src/muscle_tab.c: Likewise.
8868 (muscle_entry): Make the value char const *,
8869 and add a new storage member that is char * and can be freed.
8870 (muscle_entry_free): New private function.
8871 (muscle_init): Use it instead of free.
8872 (muscle_insert, muscle_grow): Update and use new storage member.
8873 (muscle_code_grow): Free the string passed to muscle_grow
8874 since it's not needed anymore.
8875 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
8876 add a new `char *code' member.
8877 ("{...}"): Declare semantic type as code.
8878 * src/scan-code.h (translate_rule_action):
8879 (translate_symbol_action, translate_code, translate_action): Return
8880 `char const *' rather than `char *' since external code should not free
8881 these strings.
8882 * src/scan-code.l: Likewise.
8883 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
8884 which is "{...}" in the parser.
8885 * tests/Makefile.am (maintainer-check-valgrind): Set
8886 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
8887 Valgrind.
8888 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
8889 complain.
8890 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
8891 expecting a non-zero exit status sets --leak-check=summary and
8892 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
8893 this case, and we don't want to hear about it.
8894
ac564be4
PE
88952006-11-08 Paul Eggert <eggert@cs.ucla.edu>
8896
8897 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
8898 instead of from the template, to simplify configuration a bit.
8899 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
8900 and m4/wint_t.m4, as they are needed with the latest gnulib.
8901
17bd8a73
JD
89022006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
8903
8904 Disable unset/unused mid-rule value warnings by default, and recognize
8905 --warnings=midrule-values to enable them. Discussed starting at
8906 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
8907 * NEWS (2.3a+): Mention.
8908 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
8909 warnings): Add entry for midrule-values subargument.
8910 * src/reader.c (symbol_should_be_used): Don't return true just because
8911 the value is a set/used mid-rule value unless
8912 --warnings=midrule-values was specified.
8913 * tests/input.at (Unused values, Unused values before symbol
8914 declarations): Run tests with and without --warnings=midrule-values.
8915
8916 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
8917 than LIST_FREE directly.
8918
89eb3c76
JD
89192006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
8920
8921 Finish implementing --warnings=error, which should not be implied by
8922 --warnings=all (or by its synonyms -W and --warnings without
8923 subarguments).
8924 * src/complain.c (set_warning_issued): New function to report that
8925 warnings are being treated as errors and to record an error if so.
8926 Invoke...
8927 (warn_at, warn): ... here.
8928 * src/getargs.c (warnings_args, warnings_types): Reorder so that
8929 "error - warnings are errors" does not appear above "all - all of the
8930 above".
8931 (getargs): For -W and --warnings without subarguments, don't let
8932 FLAGS_ARGMATCH set warnings_error in warnings_flag.
8933 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
8934
ba7560e2
JD
89352006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
8936
8937 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
8938 empty subargument list. For example: `bison --warnings= parser.y'.
8939
31283fc3
JD
89402006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
8941
8942 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
8943 the parser header file so that gcc doesn't warn.
8944
12e35840
JD
89452006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
8946
8947 Split the default %destructor/%printer into two kinds: <*> and <!>.
8948 Discussed starting at
8949 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
8950 * NEWS (2.3a+): Mention.
8951 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
8952 previous change today related to mid-rules.
148d66d8 8953 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3ebecc24 8954 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
12e35840
JD
8955 (TYPE_TAG_ANY): Add as <*>.
8956 (TYPE_TAG_NONE): Add as <!>.
8957 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
8958 for <*> and <!>.
8959 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
8960 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
8961 * src/symlist.c (symbol_list_default_new): Split into tagged and
8962 tagless versions.
8963 (symbol_list_destructor_set, symbol_list_printer_set): Split
8964 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
8965 SYMLIST_DEFAULT_TAGLESS.
8966 * src/symlist.h: Update symbol_list_default*_new prototypes.
8967 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
8968 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
8969 * src/symtab.c (default_destructor, default_destructor_location,
8970 default_printer, default_printer_location): Split each into tagged and
8971 tagless versions.
8972 (symbol_destructor_get, symbol_destructor_location_get,
8973 symbol_printer_get, symbol_printer_location_get): Implement tagged
8974 default and tagless default cases.
8975 (default_destructor_set, default_printer_set): Split each into tagged
8976 and tagless versions.
8977 * src/symtab.h: Update prototypes.
8978 * tests/actions.at (Default %printer and %destructor): Rename to...
8979 (Default tagless %printer and %destructor): ... this, and extend.
8980 (Per-type %printer and %destructor): Rename to...
8981 (Default tagged and per-type %printer and %destructor): ... this, and
8982 extend.
8983 (Default %printer and %destructor for user-defined end token): Extend.
8984 (Default %printer and %destructor are not for error or $undefined):
8985 Update.
8986 (Default %printer and %destructor are not for $accept): Update.
8987 (Default %printer and %destructor for mid-rule values): Extend.
8988 * tests/input.at (Default %printer and %destructor redeclared): Extend.
8989 (Unused values with default %destructor): Extend.
8990
f91b1629
JD
89912006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
8992
8993 Don't apply the default %destructor/%printer to an unreferenced midrule
8994 value. Mentioned at
8995 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
8996 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
8997 like $@n instead of just @n so that the default %destructor/%printer
8998 logic doesn't see them as user-defined symbols.
8999 (symbol_is_dummy): Check for both forms of the name.
9000 * src/reader.c (packgram): Remove the `$' from each midrule symbol
9001 name for which the midrule value is referenced in any action.
9002 * tests/actions.at (Default %printer and %destructor for mid-rule
9003 values): New test.
9004 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
9005 for change to dummy symbol names.
9006
519d0004
JD
90072006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
9008
9009 Warn about unset midrule $$ if the corresponding $n is used.
9010 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
9011 $n usage.
9012 (packgram): Before invoking grammar_rule_check on any rule, make sure
9013 all actions have already been scanned in order to set `used' flags.
9014 Otherwise, checking that a midrule's $$ is set will not always work
9015 properly because the midrule check must forward-reference the midrule's
9016 parent rule.
9017 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
9018 warning.
9019
a501eca9
JD
90202006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
9021
9022 More improvements to the documentation of the prologue alternatives:
9023 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
9024 Bison manual.
9025 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
9026 some text to clarify the relative importance of the new directives and
9027 to show how these directives may be viewed as code labels.
9028
2cbe6b7f
JD
90292006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
9030
9031 Similar to the recently removed %before-header, add %code-top as the
9032 alternative to the pre-prologue. Mentioned at
9033 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
9034 Also, let the prologue alternatives appear in the grammar section.
9035 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
9036 (prologue_declaration): Move the existing prologue alternatives to...
9037 (grammar_declaration): ... here and add %code-top.
9038 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
9039
9040 Clean up and extend documentation for the prologue alternatives.
9041 * NEWS (2.3a+): Describe prologue alternatives.
9042 * doc/bison.texinfo (Prologue): Move discussion of prologue
9043 alternatives to...
9044 (Prologue Alternatives): ... this new section, and extend it to discuss
9045 all 4 directives in detail.
148d66d8
JD
9046 (Table of Symbols): Clean up discussion of prologue alternatives and
9047 add %code-top.
2cbe6b7f 9048
e557d3ea
JMG
90492006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9050
9051 DJGPP specific issues.
9052
9053 * djgpp/config.bat: config.hin has been moved to lib. Adjust
9054 config.bat accordingly.
9055 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
9056 * djgpp/config.site: Likewise.
9057
136a0f76
PB
90582006-10-16 Paolo Bonzini <bonzini@gnu.org>
9059
27bd5d67
PB
9060 Replace %*-header with %provides, %requires, %code. See discussion at
9061 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
9062
136a0f76
PB
9063 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
9064 (b4_user_start_header): Remove.
9065 * data/glr.c: Use new macros instead of b4_*start_header
9066 and b4_*end_header.
9067 * data/glr.cc: Likewise.
9068 * data/lalr1.cc: Likewise.
9069 * data/push.c: Likewise.
9070 * data/yacc.c: Likewise.
9071
9072 * doc/bison.texinfo: Remove %before-header, rename
9073 %{start,end,after}-header to %requires, %provides, %code.
9074
9075 * src/parse-gram.y: Likewise (also rename token names accordingly).
9076 * src/scan-gram.l: Likewise.
9077 * tests/actions.at: Likewise.
9078
10f429ef
PE
90792006-10-14 Paul Eggert <eggert@cs.ucla.edu>
9080
9081 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
9082 Problem reported by Joel E. Denny.
9083
90842006-10-14 Jim Meyering <jim@meyering.net>
9085
9086 (Sync from coreutils.)
9087 Work also when the working directory (with e.g. coreutils sources)
9088 is version controlled with git, rather than CVS.
9089 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
9090 rather than CVS.
9091 In messages and comments, say e.g., "checked-out sources",
9092 rather than "CVS sources".
9093 (version_controlled_file): New function. Work for git as well as
9094 for CVS. Don't use grep's -q option.
9095 (slurp): Call it here, in place of CVS-specific code.
9096
c4bd5bf7
JD
90972006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
9098
9099 Fix testsuite for ./configure --enable-gcc-warnings:
9100 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
9101 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
9102 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
9103 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
9104 * test/regression.at (Diagnostic that expects two alternatives):
9105 Likewise.
9106
46356ea4
PE
91072006-10-12 Paul Eggert <eggert@cs.ucla.edu>
9108
231ed89a
PE
9109 * bootstrap.conf (gnulib_modules): Add config-h.
9110 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
9111 worry about HAVE_CONFIG_H.
9112 * lib/abitset.c: Likewise.
9113 * lib/bitset.c: Likewise.
9114 * lib/bitset_stats.c: Likewise.
9115 * lib/bitsetv-print.c: Likewise.
9116 * lib/bitsetv.c: Likewise.
9117 * lib/ebitset.c: Likewise.
9118 * lib/get-errno.c: Likewise.
9119 * lib/lbitset.c: Likewise.
9120 * lib/subpipe.c: Likewise.
9121 * lib/timevar.c: Likewise.
9122 * lib/vbitset.c: Likewise.
9123 * lib/bitset.c: Include "bitset.h" first, to test interface.
9124 * lib/bitset_stats.c: Include "bitset_stats.h" first.
9125 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
9126 * lib/bitsetv.c: Include "bitsetv.h" first.
9127 * lib/get-errno.c: Include "get-errno.h" first.
9128 * m4/.cvsignore: Add config-h.m4.
9129 * tests/actions.at (Default %printer and %destructor for ...):
9130 Adjust expected line numbers in output to reflect removal of #if
9131 HAVE_CONFIG_H lines.
9132 * tests/glr-regression.at (Missed %merge type warnings when ...):
9133 Likewise.
9134 * tests/regression.at (Braced code in declaration in rules section):
9135 Likewise.
9136 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
9137 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
9138 Include <config.h> unconditionally.
9139
46356ea4
PE
9140 * bootstrap: Sync from coreutils, as follows:
9141
9142 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
9143
9144 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
9145 variable was sometimes used without being initialized. This
9146 messed up the installation of the INSTALL file in some cases.
9147
9148 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
9149
9150 * bootstrap (usage, main program, symlink_to_gnulib): Add option
9151 --copy. Inspired by a suggestion from Bruno Haible.
9152
9153 2006-10-03 Jim Meyering <jim@meyering.net>
9154
9155 * bootstrap: Undo last change to this file, since now gnulib-tool
9156 sticks with the automake default in generating dependencies.
9157
dd4bf078
PE
91582006-10-12 Paul Eggert <eggert@cs.ucla.edu>
9159
cf2a5f7c
PE
9160 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
9161 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
9162
9163 * doc/bison.1: Add copyright notice.
9164
9165 * data/glr.c: Don't include <stdarg.h>; not used.
9166
35fe0834
PE
9167 * NEWS: The -g and --graph options now output graphs in Graphviz
9168 DOT format, not VCG format.
9169 * doc/bison.1: Likewise.
9170 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
9171 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
9172 of this change in
9173 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
9174 * TODO: Remove Graphviz entry.
9175 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
9176 remove vcg.c, vcg.h, vcg_defaults.h.
9177 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
9178 * src/graphviz.c, src/graphviz.h: New files.
9179 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
9180 * src/files.h: Make comment more generic.
9181 * src/main.c (main): Likewise.
9182 * src/print_graph.h: Likewise.
9183 * src/getargs.c (usage): Make usage description more generic.
9184 * src/print_graph.c: Include graphviz.h rather than vcg.h.
9185 (static_graph, fgraph): Remove. All uses changed to pass
9186 arguments instead of sharing a static var.
9187 (print_core, print_actions, print_state, print_graph):
9188 Output graphviz format rather than VCG format.
9189 * tests/.cvsignore: Remove *.vcg; add *.dot.
9190 * tests/output.at: Expect *.dot files, not *.vcg files.
9191
dd4bf078
PE
9192 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
9193 accommodates the 2006-10-08 change.
9194
efdd7421
PE
91952006-10-11 Bob Rossi <bob@brasko.net>
9196
9197 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
9198 (b4_yyssa, b4_yyerror_range): New macros.
9199 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
9200 (yypvarsinit): Remove init of removed fields.
9201 (yypushparse): Remove use of removed fields; use new macros instead.
9202
96a1981a
PE
92032006-10-11 Paul Eggert <eggert@cs.ucla.edu>
9204
9205 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
9206 in a push parser. Reindent slightly to match yacc.c better.
9207
92082006-10-11 Bob Rossi <bob@brasko.net>
9209
46356ea4
PE
9210 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
9211 yymsg_alloc fields.
9212 (yypvarsinit, yypushparse): Remove init of removed fields.
9213 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 9214
c1630a8b
PE
92152006-10-09 Paul Eggert <eggert@cs.ucla.edu>
9216
9217 * THANKS: Add Paolo Bonzini and Bob Rossi.
9218
90b9908d
PB
92192006-10-08 Paolo Bonzini <bonzini@gnu.org>
9220
9221 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
9222 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
9223 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
9224 b4_define_user_cde and uses): Remove.
9225 (b4_comment, b4_prefix, b4_sync_start): New.
9226 * data/bison.m4: New file, with most of the content removed from c.m4.
9227 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
9228 * src/output.c (output_skeleton): Pass bison.m4.
9229 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
9230 only if specified.
9231
cf806753
PE
92322006-10-05 Paul Eggert <eggert@cs.ucla.edu>
9233
9234 Fix test failure reported by Tom Lane in
9235 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
9236 and try to make such failures easier to catch in the future.
9237 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
9238 that's now the caller's responsibility.
9239 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
9240 Set yychar = YYEOF if it's negative.
9241 * tests/actions.at (yylex): Abort if asked to read past EOF.
9242 * tests/conflicts.at (yylex): Likewise.
9243 * tests/cxx-type.at (yylex): Likewise.
9244 * tests/glr-regression.at (yylex): Likewise.
9245 * tests/input.at (yylex): Likewise.
9246 * tests/regression.at (yylex): Likewise.
9247 * tests/torture.at (yylex): Likewise.
9248
0e2f006a
PE
92492006-10-01 Paul Eggert <eggert@cs.ucla.edu>
9250
9251 Fix problems with translating English-language diagnostics.
9252 * bootstrap: Fix bug introduced in recent bootstrap changes, with
9253 respect to bison-runtime pot generation. The YY_ stuff
9254 wasn't being captured.
9255 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
9256 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
9257 * runtime-po/POTFILES.in: Add data/push.c.
9258
e3ddc1e3
PE
92592006-09-29 Paul Eggert <eggert@cs.ucla.edu>
9260
9261 Merge bootstrap changes from coreutils.
9262
9263 2006-09-28 Jim Meyering <jim@meyering.net>
9264
9265 Automatically generated dependencies are important even
9266 when all of the sources in a directory come from gnulib.
9267 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
9268 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
9269
9270 2006-09-23 Jim Meyering <jim@meyering.net>
9271
9272 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
9273
9274 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
9275
9276 * bootstrap: Add support for --force.
9277 (usage): New function. Describe usage less tersely.
9278 (CVS_only_file): New var.
9279
01e972b3
PE
92802006-09-21 Paul Eggert <eggert@cs.ucla.edu>
9281
9282 * data/push.c (YYPUSH_MORE): Make it an enum instead.
9283 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
9284 Adjust white space and comments to match GNU style better.
9285
c63d3e90
PE
92862006-09-20 Bob Rossi <bob@brasko.net>
9287
9288 * data/push.c (yyresult_get): Remove function.
9289 (YYPUSH_MORE): Add #define.
9290 (yypushparse): Modify return value.
9291
e70f46d1
PE
92922006-09-20 Paul Eggert <eggert@cs.ucla.edu>
9293
9294 * stamp-h.in: Remove; no longer needed.
9295 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
9296 Remove config.h, config.hin, intl (no longer created).
9297 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
9298 stamp-h1.
9299
9300 Sync bootstrap from coreutils, as follows:
9301
9302 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
9303
9304 * bootstrap (symlink_to_gnulib): New function.
9305 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
9306 to copies-of-gnulib.
9307 (cp_mark_as_generated, slurp, gnulib_files):
9308 Avoid making a copy if it's the same as the old version.
9309 (gnulib_files): Add support for this variable (used by Bison).
9310
a92be413
PE
93112006-09-20 Paul Eggert <eggert@cs.ucla.edu>
9312
9313 * src/getargs.c (usage): Rework to use conventions similar to
9314 coreutils, to make translation a bit easier and the code a bit
9315 smaller. Problem reported by Tim Van Holder.
9316
4f82b42a
PE
93172006-09-15 Paul Eggert <eggert@cs.ucla.edu>
9318
3b2942e6
PE
9319 Use some of gnulib's new modules, taken from coreutils.
9320
9321 * bootstrap: Sync from coreutils, except add support for gnulib_files.
9322 * bootstrap.conf: New file.
9323 (gnulib_modules): Add configmake, inttypes, unistd.
9324 (XGETTEXT_OPTIONS): Add complain, complain_at,
9325 fatal, fatal_at, warn, warn_at, unexpected_end.
9326 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
9327 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
9328 (gl_EARLY): Add.
9329 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
9330 (gl_INIT): Add
9331 (GNULIB_AUTOCONF_SNIPPET): Remove.
9332 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
9333 the pickiest.
9334 * lib/.cvsignore: Add inttypes_.h.
9335 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
9336 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
9337 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
9338 no-longer-necessary initializations.
9339 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
9340 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
9341 use the unistd module.
9342 * src/system.h: Likewise.
9343 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
9344 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
9345 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
9346 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
9347 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
9348 * src/system.h: Include inttypes.h unconditionally, now that we
9349 use the inttypes module. Don't bother to include stdint.h, since
9350 inttypes.h now does that for us.
9351 (LOCALEDIR): Remove, now that we use the configmake module.
9352 * src/getargs.c: Include configmake.h.
9353 * src/main.c: Likewise.
9354 * src/output.c: Likewise.
9355 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
9356 not from $abs_top_builddir, since config.h moved.
9357
9358
4f82b42a
PE
9359 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
9360 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
9361
9362 * src/parse-gram.y (symbol_declaration): Don't put statements
9363 before declarations; it's not portable to C89.
9364 * src/scan-code.l (handle_action_at): Likewise.
9365
9366 * src/scan-code.l: Always initialize braces_level; the old code
9367 left it uninitialized and therefore had undefined behavior.
9368
9369 Don't attempt to redefine 'assert', since it runs afoul of
9370 systems where standard headers (mistakenly) include <assert.h>.
9371 Instead, define and use our own alternative, called 'aver'.
9372 * src/reader.c: Don't include assert.h, since we no longer
9373 use assert.
9374 * src/scan-code.l: Likewise.
9375 * src/system.h (assert): Remove, replacing with....
9376 (aver): New function, taking a bool arg. All uses changed.
9377 * src/tables.c (pack_vector): Ensure that aver arg is bool,
9378 not merely an integer.
9379
31c10e38
PE
93802006-09-15 Bob Rossi <bob@brasko.net>
9381
d6bdb90a
JD
9382 Add support for push parsing. Based on the original work of
9383 Odd Arild Olsen <oao@fibula.no>.
31c10e38
PE
9384 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
9385 * data/c.m4 (YYPUSH): New.
9386 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
d6bdb90a 9387 * data/push.c: New file.
31c10e38
PE
9388 * src/getargs.c (push_parser): New var.
9389 * src/getargs.h (push_parser): New declaration.
9390 * src/output.c (prepare): Add macro insertion of `push_flag'.
9391 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
9392 (prologue_declaration): Parse %push-parser.
9393 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
9394 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
9395 list of removed lines from the traces observed.
9396 (AT_CHECK_CALC_LALR): Added push parser tests.
9397
fa7b79c0
PE
93982006-09-13 Paul Eggert <eggert@cs.ucla.edu>
9399
21fe08ca
PE
9400 * NEWS: Version 2.3a.
9401 * configure.ac (AC_INIT): Likewise.
9402
e8ec4d9b
PE
9403 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
9404 "#define YYSTYPE int" that caused "make maintainer-check" to fail
9405 due to header ordering dependencies. I don't know why the #define
9406 was there.
9407
fa7b79c0
PE
9408 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
9409 runtime cost when YYDEBUG is not defined, and so that some tests
9410 that used to fail now work. Problem and initial suggestion by
9411 Paolo Bonzini.
9412 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
9413 * data/glr.cc (b4_parser_class_name):
9414 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
9415 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
9416 (yydebug_) [YYDEBUG]: New member.
9417 (yycdebug_): Now defined only if YYDEBUG.
9418 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
9419 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
9420 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
9421 if YYYDEBUG.
9422 (debug_stream, set_debug_stream, debug_level, set_debug_level):
9423 Define only if YYDEBUG.
9424 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
9425 set_debug_level.
9426 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
9427 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
9428 AT_CHECK_CALC_GLR_CC that are working now.
9429
4ec13d60
PE
94302006-09-12 Paul Eggert <eggert@cs.ucla.edu>
9431
9432 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
9433 We don't need them in glr.cc, and glr.c defines them.
9434 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
9435 assumes that defining it to anything is the same as defining
9436 it to 1. Problem reported by Paolo Bonzini.
9437
8e1687ae
PE
94382006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
9439
9440 * data/c.m4 (b4_null, b4_case): Define.
9441 * src/output.c (prepare_symbols): Use b4_null.
9442 (user_actions_output): Use b4_case.
9443
3dc5e96b
PE
94442006-09-11 Paul Eggert <eggert@cs.ucla.edu>
9445
aef3da86
PE
9446 * data/glr.c (b4_shared_declarations): Put start-header first,
9447 before any #includes that we generate, so that feature-test
9448 macros work. Problem reported by Michael Deutschmann in
9449 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
9450 * data/lalr1.cc: Likewise.
9451 * doc/bison.texinfo (Prologue): Document that feature-test macros
9452 should be defined before any Bison declarations.
9453 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
9454 that depend on location.hh after, not before, Bison decls, since
9455 we now include location.hh after the first user prologue.
9456
3dc5e96b
PE
9457 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
9458 Sander Brandenburg in
9459 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
9460 Also, fix minor white space and comment issues.
aef3da86
PE
9461 (Prologue): Mention that it's better to define feature-test macros
9462 before Bison declarations. Problem reported by Michael Deutschmann.
9463
9464 * README-cvs: Fix typo: "&" should be "&&". Problem reported
9465 by Jim Meyering.
9466 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
9467 This adjusts to recent gnulib changes.
3dc5e96b 9468
b2a0b7ca
JD
94692006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
9470
9471 Finish implementation of per-type %destructor/%printer. Discussed
9472 starting at
9473 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
9474 and
9475 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
9476 * NEWS (2.3+): Add a description of this feature to the default
9477 %destructor/%printer description.
9478 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
9479 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
9480 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
9481 list node contains a semantic type.
9482 * src/symtab.c, src/symtab.h: Extend with a table that associates
9483 semantic types with their %destructor's and %printer's.
9484 (semantic_type_from_uniqstr, semantic_type_get,
9485 semantic_type_destructor_set, semantic_type_printer_set): New functions
9486 composing the public interface of that table.
9487 (symbol_destructor_get, symbol_destructor_location_get,
9488 symbol_printer_get, symbol_printer_location_get): If there's no
9489 per-symbol %destructor/%printer, look up the per-type before trying
9490 the default.
9491 * tests/actions.at (Per-type %printer and %destructor): New test case.
9492 * tests/input.at (Default %printer and %destructor redeclared):
9493 Extend to check that multiple occurrences of %symbol-default in a
9494 single %destructor/%printer declaration is an error.
9495 (Per-type %printer and %destructor redeclared, Unused values with
9496 per-type %destructor): New test cases.
9497
3be03b13
JD
94982006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
9499
9500 Require default %destructor/%printer to be declared using
9501 %symbol-default instead of an empty symbol list, and start working on
9502 new per-type %destructor/%printer. Discussed at
9503 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
9504 * NEWS (2.3+): Add %symbol-default to example.
9505 * bison.texinfo (Freeing Discarded Symbols): Likewise.
148d66d8 9506 (Table of Symbols): Add entry for %symbol-default.
3be03b13
JD
9507 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
9508 (generic_symlist, generic_symlist_item): New nonterminals for creating
9509 a list in which each item is a symbol, semantic type, or
9510 %symbol-default.
9511 (grammar_declaration): Use generic_symlist in %destructor and %printer
9512 declarations instead of symbols.1 or an empty list.
9513 (symbol_declaration, precedence_declaration, symbols.1): Update actions
9514 for changes to symbol_list.
9515 * src/reader.c: Update for changes to symbol_list.
9516 * src/scan-code.l: Likewise.
9517 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
9518 * src/symlist.c, src/symlist.h: Extend such that a list node may
9519 represent a semantic type or a %symbol-default in addition to just an
9520 ordinary symbol. Add switched functions for setting %destructor's and
9521 %printer's.
9522 * tests/actions.at, tests/input.at: Add %symbol-default to all default
9523 %destructor/%printer declarations.
9524
3508ce36
JD
95252006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
9526
9527 Whether the default %destructor/%printer applies to a particular symbol
9528 isn't a question of whether the user *declares* that symbol (in %token,
9529 for example). It's a question of whether the user by any means
9530 *defines* the symbol at all (by simply using a char token, for
9531 example). $end is defined by Bison whereas any other token with token
9532 number 0 is defined by the user. The error token is always defined by
9533 Bison regardless of whether the user declares it with %token, but we
9534 may one day let the user define error as a nonterminal instead.
9535 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
9536 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
9537 the meaning of "user-defined".
9538 * tests/actions.at (Default %printer and %destructor for user-declared
9539 end token): Rename to...
9540 (Default %printer and %destructor for user-defined end token): ...
9541 this.
9542
9543 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
9544 computation of whether to apply the default, don't maintain a list of
9545 every Bison-defined symbol. Instead, just check for a first character
9546 of '$', which a user symbol cannot have, and check for the error token.
9547
9350499c
JD
95482006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
9549
9550 Don't apply the default %destructor or %printer to the error token,
9551 $undefined, or $accept. This change fits the general rule that the
9552 default %destructor and %printer are only for user-declared symbols,
9553 and it solves several difficulties that are described in the new test
9554 cases listed below.
9555 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
9556 * tests/actions.at (Default %printer and %destructor are not for error
9557 or $undefined, Default %printer and %destructor are not for $accept):
9558 New test cases.
9559
4d7370cb
JD
95602006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
9561
9562 Allow %start after the first rule.
9563 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
9564 when parsing the first rule.
9565 (check_and_convert_grammar): Search for it here after all grammar
9566 declarations have been parsed. Skip midrules, which have dummy LHS
9567 nonterminals.
9568 * src/symtab.c (symbol_is_dummy): New function.
9569 * src/symtab.h (symbol_is_dummy): Declare it.
9570 * tests/input.at (%start after first rule): New test.
9571
6d0ef4ec
JD
95722006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
9573
9574 Redo some of the previous commit: add back the ability to use
9575 non-aliased/undeclared string literals since it might be useful to
9576 those declaring %token-table.
9577 * src/reader.c (check_and_convert_grammar): Undo changes in previous
9578 commit: don't worry about complaints from symbols_pack.
9579 * src/symtab.c (symbol_new, symbol_class_set,
9580 symbol_check_alias_consistency): Undo changes in previous commit: count
9581 each string literal as a new symbol and token, assign it a symbol
9582 number, and don't complain about non-aliased string literals.
9583 (symbols_pack): Since symbol_make_alias still does not decrement symbol
9584 and token counts but does still set aliased tokens to the same number,
9585 symbol_pack_processor now leaves empty slots in the symbols array.
9586 Remove those slots.
9587 * tests/regression.at (Undeclared string literal): Remove test case
9588 added in previous commit since non-aliased string literals are allowed
9589 again.
9590 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
9591 remove unnecessary string literal declarations.
9592 * tests/sets.at (Firsts): Likewise.
9593
965537bc
JD
95942006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
9595
9596 Don't allow an undeclared string literal, but allow a string literal to
9597 be used before its declaration.
9598 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
9599 symbols_pack complained.
9600 * src/symtab.c (symbol_new): Don't count a string literal as a new
9601 symbol.
9602 (symbol_class_set): Don't count a string literal as a new token, and
9603 don't assign it a symbol number since symbol_make_alias does that.
9604 (symbol_make_alias): It's not necessary to decrement the symbol and
9605 token counts anymore. Don't assume that an alias declaration occurs
9606 before any uses of the identifier or string, and thus don't assert that
9607 one of them has the highest symbol number so far.
9608 (symbol_check_alias_consistency): Complain if there's a string literal
9609 that wasn't declared as an alias.
9610 (symbols_pack): Bail if symbol_check_alias_consistency failed since
9611 symbol_pack asserts that every token has been assigned a symbol number
9612 although undeclared string literals have not.
9613 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 9614 string literal): New test cases.
965537bc
JD
9615 (Characters Escapes, Web2c Actions): Declare string literals as
9616 aliases.
9617 * tests/sets.at (Firsts): Likewise.
9618
47aee066
JD
96192006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
9620
9621 In the grammar scanner, STRING_FINISH unclosed constructs and return
9622 them to the parser in order to improve error messages.
9623 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
9624 SC_BRACED_CODE, SC_PROLOGUE): Implement.
9625 * tests/input.at (Unclosed constructs): New test case.
9626 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
9627 seen.
9628
9629 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
9630 unused global.
9631
1f6b3679
JD
96322006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
9633
9634 Handle string aliases for character tokens correctly.
9635 * src/symtab.c (symbol_user_token_number_set): If the token has an
9636 alias, check and set its alias's user token number instead of its own,
9637 which is set to indicate the alias. Previously, every occurrence of
9638 the character token in the grammar overwrote that alias indicator with
9639 the character code.
9640 * tests/input.at (String aliases for character tokens): New test.
9641
219741d8
JD
96422006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
9643
9644 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
9645
11daa4e7
PE
96462006-08-11 Paul Eggert <eggert@cs.ucla.edu>
9647
9648 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
9649 to prevent failures when building on older platforms.
9650 Check for autopoint failure.
9651 Set XGETTEXT_OPTIONS to values that check for C format strings,
9652 so that translators are warned about them (this also helps
9653 prevent core dumps).
9654
9655 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
9656 function, since it simplifies our code a bit.
9657
9658 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
9659 rather than -W, so we don't get bogus warnings about sign comparisons.
9660 Add -Wpointer-arith, since that warning is useful (it reports code
9661 that does not conform to C89 and that some compilers reject).
9662 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
9663 since it's no longer needed.
9664
f9bfc42a
JD
96652006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
9666
9667 Clean up scanners a bit.
9668 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
9669 definitions so gcc won't warn when obstack_for_string is unused.
9670 * src/scan-code.l: config.h and system.h are already #include'd by
9671 scan-code-c.c, so get rid of them here.
9672 * src/scan-gram.l: Likewise.
9673 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
9674 definitions rather than duplicating the rest of it.
9675 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
9676
06e8700a
JD
96772006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
9678
9679 Suppress signed/unsigned comparison warnings for yycheck.
9680 * data/c.m4 (b4_safest_int_type): New macro.
9681 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
9682 a signed int type, cast it to b4_safest_int_type first.
9683 * data/yacc.c: Likewise.
9684 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
9685 also overwritten.
9686
9c437126
PE
96872006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
9688
9689 * doc/bison.texinfo: Fix some typos.
9690
284d8a13
PE
96912006-08-02 Paul Eggert <eggert@cs.ucla.edu>
9692
9693 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
9694 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
9695
9696 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
9697 the latest gnulib does this a different way.
9698 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
9699 translation was patched, so stop omitting it.
9700
ec5479ce
JD
97012006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
9702
9703 Enable declaration of default %printer/%destructor. Make the parser
9704 use these for all user-declared grammar symbols for which the user does
9705 not declare a specific %printer/%destructor. Thus, the parser uses it
9706 for token 0 if the user declares it but not if Bison generates it as
9707 $end. Discussed starting at
9708 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
9709 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
9710 and
9711 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
9712 * NEWS (2.3+): Mention.
9713 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
9714 declare a %destructor for a mid-rule's semantic value. It's just
9715 impossible to declare one specific to it.
9716 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
9717 code. Describe default %destructor form.
9718 * src/parse-gram.y (grammar_declaration): Parse default
9719 %printer/%destructor declarations.
9720 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
9721 and symbol_destructor_location_get rather than accessing the destructor
9722 and destructor_location members of struct symbol.
9723 (symbol_printers_output): Likewise but for %printer's.
9724 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
9725 again.
9726 * src/symtab.c (default_destructor, default_destructor_location,
9727 default_printer, default_printer_location): New static global
9728 variables to record the default %destructor and %printer.
9729 (symbol_destructor_get, symbol_destructor_location_get,
9730 symbol_printer_get, symbol_printer_location_get): New functions to
9731 compute the appropriate %destructor and %printer for a symbol.
9732 (default_destructor_set, default_printer_set): New functions to set the
9733 default %destructor and %printer.
9734 * src/symtab.h: Prototype all those new functions.
9735 * tests/actions.at (Default %printer and %destructor): New test to
9736 check that the right %printer and %destructor are called, that they're
9737 not called for $end, and that $$ and @$ work correctly.
9738 (Default %printer and %destructor for user-declared end token): New
9739 test to check that the default %printer and %destructor are called for
9740 a user-declared end token.
9741 * tests/input.at (Default %printer and %destructor redeclared, Unused
9742 values with default %destructor): New tests to check related grammar
9743 warnings and errors.
9744
868d2d96
JD
97452006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
9746
9747 Clean up handling of %destructor for the end token (token 0).
9748 Discussed starting at
9749 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
9750 and
9751 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
9752
9753 Make the skeletons consistent in how they pop the end token and invoke
9754 its %destructor.
9755 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
9756 state, which has token number 0, since this would invoke the
9757 %destructor for the end token.
9758 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
9759 until after shifting the end token, or else it won't be popped.
9760 * data/yacc.c (yyparse): Likewise.
9761
9762 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
9763 it's the end token. Upon termination, destroy an unshifted lookahead
9764 even when it's the end token.
9765 * data/lalr1.cc (yy::parser::parse): Likewise.
9766 * data/yacc.c (yyparse): Likewise.
9767
9768 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
9769 value warnings for the end token when the user gives the end token a
9770 %destructor.
9771
9772 * tests/actions.at (Printers and Destructors): Test all the above.
9773
62a9592d
PE
97742006-07-24 Paul Eggert <eggert@cs.ucla.edu>
9775
9776 Update to latest gnulib and gettext versions.
9777 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
9778 Add fopen-safer.
9779 (gnulib_files): Add m4/warning.m4. Don't worry about files
9780 overwritten by autopoint.
9781 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
9782 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
9783 rejects them.
9784 Don't use autoreconf; instead, invoke autopoint etc. by hand,
9785 so that we can remove the intl files at a better time.
9786 (intl_files_to_remove): Remove aclocal.m4, since it gets
9787 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
9788 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
9789 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
9790 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
9791 Remove datarootdir hack; no longer needed.
9792 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
9793 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
9794 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
9795 strdup.h.
9796 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
9797 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
9798
10d6970f
PE
97992006-07-20 Paul Eggert <eggert@cs.ucla.edu>
9800
9801 * bootstrap: Adjust to today's change to gnulib-tool by invoking
9802 it with --assume-autoconf='latest-stable'.
9803
50a33993
JD
98042006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
9805
9806 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
9807 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
9808 YYSTYPE' and `{'.
9809 * src/muscle_tab.h (muscle_grow): Replace the header comments with
9810 those from muscle_tab.c since the old ones are misleading.
9811
2ce4ed68
AD
98122006-07-13 Akim Demaille <akim@epita.fr>
9813
9814 Support %define "KEY" {VALUE}.
9815 * src/scan-code.h, src/scan-code.l (translate_action)
9816 (translate_rule_action, translate_symbol_action, translate_code):
9817 Return char *, not const char *.
9818 * src/parse-gram.y (declaration): Rename as...
9819 (prologue_declaration): this.
9820 (string_content): Remove this nonterminal, use STRING.
9821 (braceless, content, content.opt): New nonterminal.
9822 Use them.
9823 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
9824 as value.
9825 * src/scan-gram.l (getargs.h): Don't include it.
9826
db7e5eb5
PE
98272006-07-12 Paul Eggert <eggert@cs.ucla.edu>
9828
9829 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
9830 rather than a for-loop that declares a local bool variable. This
9831 should work around a compatibility problem with a Cray x1e C++
9832 compiler reported by Hung Nguyen in
9833 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
9834 The for-loop was introduced in the 2004-11-17 change but I don't
9835 know why it was needed.
9836
a5d80ba5
AD
98372006-07-12 Akim Demaille <akim@epita.fr>
9838
9839 * data/c.m4: Comment changes.
9840
23eb2a69
AD
98412006-07-10 Akim Demaille <akim@lrde.epita.fr>
9842
9843 * src/complain.c (error_message, ERROR_MESSAGE): New.
9844 To factor...
9845 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
9846 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
9847
ddc8ede1
PE
98482006-07-09 Paul Eggert <eggert@cs.ucla.edu>
9849
9850 * NEWS: Instead of %union, you can define and use your own union type
9851 YYSTYPE if your grammar contains at least one <type> tag.
9852 Your YYSTYPE need not be a macro; it can be a typedef.
9853 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
9854 (Union Decl, Decl Summary): Document this.
9855 * data/glr.c (YYSTYPE): Implement this.
9856 * data/glr.cc (YYSTYPE): Likewise.
9857 * data/lalr1.cc (YYSTYPE): Likewise.
9858 * data/yacc.c (YYSTYPE): Likewise.
9859 * src/output.c (prepare): Output tag_seen_flag.
9860 * src/parse-gram.y (declaration, grammar_declaration):
9861 Use 'union_seen' rather than 'typed' to determine whether
9862 %union has been seen, since grammars can now be typed without
9863 %union.
9864 (symbol_declaration, type.opt, symbol_def):
9865 Keep track of whether a tag has been seen.
9866 * src/reader.c (union_seen, tag_seen): New vars.
9867 (typed): remove.
9868 * src/reader.h (union_seen, tag_seen, typed): Likewise.
9869 * src/scan-code.l (untyped_var_seen): New variable.
9870 (handle_action_dollar): Adjust to above changes.
9871 (handle_action_dollar, handle_action_at):
9872 Improve overflow checking for outlandish numbers.
9873 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
9874 avoid new diagnostics generated by above changes.
9875 * tests/regression.at (YYSTYPE typedef): Add test to check
9876 for type tags without %union.
9877
9878 * src/symlist.c (symbol_list_length): Return int, not unsigned
9879 int, since callers expect int. This may need to get revisited
9880 once we have proper integer overflow checking.
9881
9882 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
9883 object is now static.
9884
9885 * src/getargs.c (flags_argmatch): Return void, not int,
9886 to pacify ./configure --enable-gcc-warnings.
9887
9888 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
9889 since last_string is already defined to FLEX_PREFIX (last_string).
9890
7b42569e
AD
98912006-07-09 Akim Demaille <akim@lrde.epita.fr>
9892
9893 Implement --warnings/-W.
9894 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
9895 replaced by...
9896 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
9897 Adjust callers.
9898 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
9899 (warnings_args, warnings_types): New.
9900 (getargs, short_options, long_options): Accept -W/--warnings.
9901 Sort the options by alphabetical order, upper case letter right
9902 before its lower case.
9903
3b452f4e
JD
99042006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
9905
9906 Change %merge result type clash warnings to errors. Discussed at
9907 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
9908 * src/reader.c (record_merge_function_type): Use complain_at.
9909 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
9910 declared later): Update test case results.
9911
b8a41559
AD
99122006-07-09 Akim Demaille <akim@lrde.epita.fr>
9913
9914 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
9915 to be in alphabetical order.
9916 (trace_args): Spelling fixes.
9917
cd9e1ba2
PE
99182006-07-09 Paul Eggert <eggert@cs.ucla.edu>
9919
9920 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
9921 so they don't collide with user-defined macros.
9922 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
9923 this was never guaranteed, and now that we're using gnulib stdint,
9924 which defines int_fast16_t to long int, the problem is exposed.
9925
cb48f191
PE
99262006-07-08 Paul Eggert <eggert@cs.ucla.edu>
9927
b8445a15
PE
9928 * data/c.m4 (b4_basename): Simplify a bit, since we don't
9929 need the full POSIX semantics (and weren't implementing them
9930 anyway).
9931
cb48f191
PE
9932 Adjust to Autoconf 2.60 and today's gnulib.
9933 * bootstrap (gnulib_modules): Add stdint.
9934 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
9935 no longer copies it.
9936 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
9937 since stdint needs the former and wcwidth (which is now required
9938 by mbswidth) needs the latter.
9939 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
9940 work around a compatibility glitch between gettext 0.14.6 and
9941 Autoconf 2.60.
9942 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
9943 Do not check for uintptr_t, since new stdint module does the right
9944 thing.
9945 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
9946 Add stdint.h, stdint_.h, wcwidth.h.
9947 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
9948 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
9949 stdint.m4, wchar_t.m4, wcwidth.m4.
9950 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
9951 usual order for ../lib/*.h files.
9952 (file_name_split): Use last_component, not base_name, to adjust
9953 to gnulib changes.
9954 * src/parse-gram.h: Include <strverscmp.h> in the usual order
9955 for ../lib/*.h files.
9956 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
9957 Define unconditionally, since we now assume the stdint module.
9958 * src/scan-skel.l: Include <dirname.h>.
9959 (BASE_QPUTS): Use last_component, not base_name.
9960 * src/system.h: Include <unlocked-io.h> in the usual order
9961 for ../lib/*.h files. Include <stdint.h> unconditionally,
9962 since we now use the stdint module.
9963 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
9964 HAVE_UINTPTR_T, since we now use the stdint module.
9965 (base_name): Remove decl, since files now include <dirname.h>
9966 to get the decl.
9967
cd48d21d
AD
99682006-07-08 Akim Demaille <akim@lrde.epita.fr>
9969
9970 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
9971 New, default to 1.
9972 * data/yacc.c, data/glr.c, data/location.cc: Use them.
9973 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
9974 default.
9975 * tests/calc.at: Adjust.
9976
8ec0a172
AD
99772006-07-08 Akim Demaille <akim@lrde.epita.fr>
9978
b8445a15 9979 * data/c.m4 (b4_basename): New.
8ec0a172
AD
9980 (b4_syncline): Also output the location of its invocation (from
9981 the skeleton).
9982 (b4_user_action, b4_define_user_action, b4_user_actions)
9983 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
9984 (b4_user_stype): New.
9985 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
9986
4a678af8
JD
99872006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
9988
9989 In the grammar file, the first column is 1 not 0 on the first line as
9990 on every other line.
9991 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
9992 * tests/input.at (Torturing the Scanner): Update output.
9993
9994 * src/scan-gram.l (scanner_cursor): Declare it static.
9995
dd60572a
JD
99962006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
9997
9998 In warnings, say "previous declaration" rather than "first
9999 declaration".
10000 * src/symtab.c (redeclaration): Do that here.
10001 * src/reader.c (record_merge_function_type): In the case of a result
10002 type clash, report the previous declaration rather than the very first
10003 one in the grammar file.
10004 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
10005 declared later): Add a third declaration to check this behavior.
10006 * tests/input.at (Incompatible Aliases): Update output.
10007
2073e1b6
AD
100082006-06-27 Akim Demaille <akim@epita.fr>
10009
10010 * doc/Doxyfile.in: New.
10011 * doc/Makefile.am: Use it.
10012 * src/lalr.h, src/symtab.h: Initial doxygenation.
10013
8ee5b538
JD
100142006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
10015
10016 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
10017 declared after the %merge. This continues the effort of the previous
10018 patch.
8ee5b538
JD
10019 * src/reader.c (get_merge_function): Don't set the merger type yet.
10020 (record_merge_function_type): New function for setting the merger type
10021 and checking for clashes.
10022 (grammar_current_rule_merge_set): Set the location of the %merge for
10023 the current rule.
10024 (packgram): Invoke record_merge_function_type for each rule now that
10025 all symbol type declarations have been parsed.
10026 * src/reader.h (merger_list.type_declaration_location): New member
10027 storing the location of the first %merge from which the type for this
10028 merging function was derived.
10029 * src/symlist.h (symbol_list.merger_declaration_location): New member
10030 storing the location of a rule's %merge, if any.
10031 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
10032 declared later): New test to catch the error fixed by the above patch.
10033
ffa4ba3a
JD
100342006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
10035
10036 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
10037 declarations appear after the rules. Discussed at
10038 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
10039 and
10040 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
10041 Don't mistake the type of $$ in a midrule to be that of its parent
10042 rule's $$.
ffa4ba3a
JD
10043 * src/reader.c (grammar_current_rule_end): Don't invoke
10044 grammar_rule_check yet since not all symbol declarations may have been
10045 parsed yet.
10046 (grammar_midrule_action): Likewise.
10047 Don't record whether the midrule's $$ has been used yet since actions
10048 haven't been translated yet.
10049 Record the midrule's parent rule and its RHS index within the parent
10050 rule.
10051 (grammar_current_rule_action_append): Don't translate the action yet
10052 since not all symbol declarations may have been parsed yet and, thus,
10053 warnings about types for $$, $n, @$, and @n can't be reported yet.
10054 (packgram): Translate the action and invoke grammar_rule_check now that
10055 all symbol declarations have been parsed.
10056 * src/scan-code.l (handle_action_dollar): Now that this is invoked
10057 after parsing the entire grammar file, the symbol list here in the case
10058 of a midrule is actually the midrule's empty RHS, so reference its
10059 parent rule's RHS where necessary.
10060 On the other hand, now that you can already know it's a midrule, you
10061 aren't forced to think $$ has the same type as its parent rule's $$.
10062 (handle_action_at): In the case of a midrule, reference the parent rule
10063 where necessary.
10064 * src/symlist.c (symbol_list_new): Initialize new midrule-related
10065 members.
10066 (symbol_list_length): Now that this is invoked after all rules have
10067 been parsed, a NULL symbol (rather than a NULL symbol list node)
10068 terminates a rule. symbol_list_print already does this correctly.
10069 * src/symlist.h (symbol_list.midrule_parent_rule,
10070 symbol_list.midrule_parent_rhs_index): New members so that midrules can
10071 remember their relationships with their parents.
10072 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
10073 fixed by the above patch.
10074 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
10075 implementing...
10076 (Unused values): ... this old test case and...
10077 (Unused values before symbol declarations): ... this new test case.
10078 This one is the same as `Unused values' except that all symbol
10079 declarations appear after the rules in order to catch the rest of the
10080 errors fixed by the above patch.
10081
e256e17f
JD
100822006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
10083
300a1930
JD
10084 More cleanup.
10085 * src/reader.c (current_rule): Declare it static since it's no longer
10086 used outside this file.
10087 (grammar_current_rule_action_append): Remove redundant arguments from
10088 translate_rule_action invocation.
10089 * src/reader.h (current_rule): Remove this unused extern.
10090 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
10091 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 10092
381ecb06
JD
100932006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
10094
10095 Clean up yesterday's patch.
10096 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
10097 to...
10098 * src/reader.c (grammar_current_rule_action_append): ... here for
10099 consistency with grammar_current_rule_symbol_append.
10100 * tests/regression.at (Braced code in declaration in rules section):
10101 Make yyerror and yylex static as usual.
10102
4210cd0b
JD
101032006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
10104
10105 Fix bug that mistakes braced code in a declaration in the rules section
10106 to be a rule action. Mentioned at
10107 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
10108 * src/scan-gram.l: Move midrule action detection from the start of the
10109 scanning of any braced code to...
10110 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
10111 action. For readability, use $2 and @2 rather than the equivalent
10112 global variables.
10113 * tests/regression.at (Braced code in declaration in rules section):
10114 New test to catch the error fixed by the above patch.
10115
10116 Work on code readability some.
10117 * src/scan-code.l (current_rule): Get rid of this misleading and
10118 redundant declaration: it's actually extern'ed in reader.h.
10119 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
10120 translate_action): Add a rule argument and use it instead of the global
10121 current_rule.
10122 (translate_rule_action): This already receives current_rule through an
10123 argument, so pass it on to translate_action instead of assigning
10124 current_rule to current_rule.
10125 (translate_symbol_action, translate_code): Pass rule = NULL to
10126 translate_action.
10127
34f98f46
JD
101282006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
10129
10130 Rename %before-definitions to %start-header and %after-definitions to
10131 %end-header. Don't use these declarations to separate pre-prologue
10132 blocks from post-prologue blocks. Add new order-independent
10133 declarations %before-header and %after-header as alternatives to the
10134 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
10135 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
10136 * NEWS (2.3+): Update for these changes.
10137 * data/glr.c (b4_before_definitions): Update to...
10138 (b4_start_header): ... this.
10139 (b4_after_definitions): Update to...
10140 (b4_end_header): ... this.
10141 * data/glr.cc: Likewise.
10142 * data/lalr1.cc: Likewise.
10143 * data/yacc.c: Likewise.
10144 * doc/bison.texinfo (The prologue): Update names, and replace remaining
10145 prologue blocks with %*-header declarations.
10146 (Calc++ Parser): Likewise.
91661ebb 10147 (Decl Summary): Update names.
148d66d8 10148 (Table of Symbols): Update description.
34f98f46
JD
10149 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
10150 (PERCENT_END_HEADER): ... this.
10151 (PERCENT_BEFORE_DEFINITIONS): Update to...
10152 (PERCENT_START_HEADER): ... this.
10153 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
10154 (declaration): Update token names and m4 macro names.
10155 When parsing %end-header and %start-header, invoke translate_code
10156 before muscle_code_grow, and no longer set global booleans to remember
10157 whether these declarations have been seen.
10158 Parse new %after-header and %before-header.
10159 * src/reader.c (before_definitions, after_definitions): Remove.
10160 (prologue_augment): Accept a new bool argument to specify whether to
10161 augment the pre-prologue or post-prologue.
10162 * src/reader.h (before_definitions, after_definitions): Remove these
10163 extern's.
10164 (prologue_augment): Add new bool argument.
10165 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
10166 (PERCENT_END_HEADER): ... this.
10167 (PERCENT_BEFORE_DEFINITIONS): Update to...
10168 (PERCENT_START_HEADER): ... this.
10169 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
10170 * tests/actions.at (Printers and Destructors): Update names.
10171
31b2b07e
JD
101722006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
10173
10174 Add comparison operators for C++ location classes. Discussed at
10175 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
10176 * data/c++.m4 (b4_define_location_comparison): New boolean %define
10177 declaration indicating whether filename_type has an operator==. If
10178 filename_type is `std::string', it defaults to `1', `0' otherwise.
10179 * data/location.cc: Iff b4_define_location_comparison is `1', add
10180 operator== and operator!= for class position and for class location.
10181
10182 Some minor fixes.
10183 * src/scan-action.l: Remove unused file.
10184 * src/symtab.c (symbol_printer_set): Use printer_location not
10185 destructor_location.
10186 * src/symtab.h (struct symbol): Replace incorrect source comment for
10187 printer members.
10188 * tests/input.at (Incompatible Aliases): Update output with correct
10189 printer location.
10190
9bc0dd67
JD
101912006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
10192
10193 Don't put the pre-prologue in the header file. For the yacc.c code
10194 file and the glr.c header and code files, move the pre-prologue before
10195 the token definitions. Add new %before-definitions and
10196 %after-definitions to declare code that will go in both the header file
10197 and code file. Discussed at
10198 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
10199 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
10200 and
10201 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
10202 * NEWS (2.3+): Describe these changes.
10203 * data/glr.c (b4_pre_prologue): Move from within to before...
10204 (b4_shared_declarations): ... this.
10205 Add new b4_before_definitions before b4_token_enums.
10206 Add new b4_after_definitions at the end.
10207 * data/glr.cc (b4_pre_prologue): Replace with...
10208 (b4_before_definitions): ... this in the header file.
10209 (b4_after_definitions): New near the end of the header file.
10210 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
10211 code file right before including the header file.
10212 (b4_before_definitions): New in the previous position of
10213 b4_pre_prologue in the header file.
10214 (b4_after_definitions): New near the end of the header file.
10215 * data/yacc.c: Clean up some m4 quoting especially in the header file.
10216 (b4_token_enums_defines): In the code file, move to right before
10217 YYSTYPE for consistency with the header file.
10218 (b4_before_definitions): New right before b4_token_enums_defines in
10219 both the header and code file.
10220 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
10221 header and code file.
10222 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
10223 of prologues for %union dependencies.
91661ebb
JD
10224 (Decl Summary): In %defines description, mention the effect of
10225 %before-definitions and %after-definitions on the header file.
9bc0dd67
JD
10226 (Calc++ Parser): Forward declare driver in a %before-definitions rather
10227 than in the pre-prologue so that make check succeeds.
148d66d8 10228 (Table of Symbols): Add entries for %before-definitions and
9bc0dd67
JD
10229 %after-definitions.
10230 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
10231 %before-definitions.
10232 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
10233 (declaration): Parse those declarations and append to
10234 b4_before_definitions and b4_after_definitions, respectively.
10235 * src/reader.c (before_definitions, after_definitions): New bools to
10236 track whether those declarations have been seen.
10237 (prologue_augment): Add to the post-prologue if %union,
10238 %before-definitions, or %after-definitions has been seen.
10239 * src/reader.h (before_definitions, after_definitions): New extern's.
10240 * src/scan-gram.l: Scan the new declarations.
10241 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
10242 prologue block in a %before-definitions or a %after-definitions based
10243 on whether the %union is declared.
10244 * tests/regression.at (Early token definitions with --yacc, Early token
10245 definitions without --yacc): Move tests for token definitions into the
10246 post-prologue since token names are no longer defined in the
10247 pre-prologue.
10248
203b9274
AD
102492006-06-20 Akim Demaille <akim@epita.fr>
10250
10251 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
10252 (symbol_get): Use it.
10253 * src/parse-gram.y: Use it.
10254
a7ee59cf
JD
102552006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
10256
10257 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
10258 build succeeds when configured with --enable-gcc-warnings.
10259
5a2baae7
PE
102602006-06-19 Paul Eggert <eggert@cs.ucla.edu>
10261
33ad1a9c
PE
10262 * src/parse-gram.y (char_name): New function.
10263 (CHAR, STRING, string_content): For %printer, properly escape.
10264 (ID): Prefer fputs to fprintf.
10265 (id): Reindent to be consistent with other rules.
10266 Properly quote char.
10267
5a2baae7
PE
10268 The Translation Project changed its way of publishing translations
10269 to maintainers. I haven't received any responses to my request
10270 for supporting the old way, or for documenting the new way. I
10271 have modified 'bootstrap' to use screen scraping
10272 (in this case, HTML scraping). This is unreliable and inelegant,
10273 but I don't see any better way. Yuck.
10274 * bootstrap (TP_URL, WGET_COMMAND): New vars.
10275 (get_translations): New function, which uses HTML scraping to
10276 deduce locations of latest translations.
10277 Use this function to grab both bison and bison-runtime .po files.
10278 Don't bother priming the pump for the runtime-po domain any more,
10279 as it's now translated better than bison is.
10280
58d7a1a1
AD
102812006-06-19 Akim Demaille <akim@epita.fr>
10282
10283 * src/scan-gram.l: No longer "parse" things after `%union' until
10284 `{'. Rather, return a single "%union" token.
10285 No longer make symbols: return strings, and leave the conversion
10286 to symbols to the parser.
10287 (SC_PRE_CODE, token_type): Remove.
10288 * src/parse-gram.y (%union): New field `character'.
10289 Sort tokens.
10290 (CHAR): New token.
10291 (ID, ID_COLON): Now that the scanner no longer makes them
10292 identifiers, adjust all uses to invoke symbol_get.
10293 (id_colon): New, wraps the conversion from string to symbol.
10294 (%union): Accept a possible union_name.
10295 (symbol): Now can be a char.
10296 * data/c.m4 (b4_union_name): Leave a default value.
10297 * data/glr.c, data/yacc.c: Use it.
10298
b931235e
JD
102992006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
10300
10301 For associating token numbers with token names for "yacc.c", don't use
10302 #define statements unless `--yacc' is specified; always use enum
10303 yytokentype. Most important discussions start at:
10304 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
10305 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
10306 and
10307 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
10308 * NEWS (2.3+): Mention.
10309 * data/c.m4 (b4_yacc_if): New.
10310 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
10311 token #define's.
10312 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
10313 on token name definitions.
10314 * src/getargs.c (usage): Capitalize `Yacc' in English.
10315 * src/output.c (prepare): Define b4_yacc_flag.
10316 * tests/regression.at (Early token definitions): Test that tokens names
10317 are defined before the pre-prologue not just before the post-prologue.
10318 Remove this test case and copy to...
10319 (Early token definitions with --yacc): ... this to test #define's.
10320 (Early token definitions without --yacc): ... and this to test enums.
10321
9e6e7ed2
PE
103222006-06-11 Paul Eggert <eggert@cs.ucla.edu>
10323
10324 * NEWS: Reword the post-2.3 change to not be so optimistic about
10325 removing the old "look-ahead" spelling.
10326 Update previous look-ahead/lookahead change reports.
10327 * REFERENCES: look-ahead -> lookahead (since that's
10328 what he actually wrote).
10329 * doc/refcard.tex: look ahead -> lookahead,
10330 look-ahead -> lookahead
10331
742e4900
JD
103322006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
10333
10334 For consistency, use `lookahead' instead of `look-ahead' or
10335 `look_ahead'. Discussed starting at
10336 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
10337 and then at
10338 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
10339 * NEWS: For the next release, note the change to `--report'.
10340 * TODO, doc/bison.1: Update English.
10341 * doc/bison.texinfo: Update English.
10342 (Understanding Your Parser, Bison Options): Document as
10343 `--report=lookahead' rather than `--report=look-ahead'.
10344 * src/conflicts.c: Update English in comments.
10345 (lookahead_set): Rename from look_ahead_set.
10346 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
10347 (resolve_sr_conflict): Rename local look_ahead_tokens to
10348 lookahead_tokens, and update other uses.
10349 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
10350 count_rr_conflicts, conflicts_free): Update uses.
10351 * src/getargs.c (report_args): Move "lookahead" before alternate
10352 spellings.
10353 (report_types): Update uses.
10354 (usage): For `--report' usage description, state `lookahead' spelling
10355 rather than `look-ahead'.
10356 * src/getargs.h (report.report_lookahead_tokens): Rename from
10357 report_look_ahead_tokens.
10358 * src/lalr.c: Update English in comments.
10359 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
10360 (state_lookahead_tokens_count): Rename from
10361 state_look_ahead_tokens_count.
10362 Rename local n_look_ahead_tokens to n_lookahead_tokens.
10363 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
10364 Rename local n_look_ahead_tokens to n_lookahead_tokens.
10365 Update other uses.
10366 Update English in output.
10367 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
10368 * src/print.c: Update English in comments.
10369 (lookahead_set): Rename from look_ahead_set.
10370 (print_reduction): Rename argument lookahead_token from
10371 look_ahead_token.
10372 (print_core, state_default_rule, print_reductions, print_results):
10373 Update uses.
10374 * src/print_graph.c: Update English in comments.
10375 (print_core): Update uses.
10376 * src/state.c: Update English in comments.
10377 (reductions_new): Update uses.
10378 (state_rule_lookahead_tokens_print): Rename from
10379 state_rule_look_ahead_tokens_print, and update other uses.
10380 * src/state.h: Update English in comments.
10381 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
10382 (state_rule_lookahead_tokens_print): Rename from
10383 state_rule_look_ahead_tokens_print.
10384 * src/tables.c: Update English in comments.
10385 (conflict_row, action_row): Update uses.
10386 * tests/glr-regression.at
10387 (Incorrect lookahead during deterministic GLR,
10388 Incorrect lookahead during nondeterministic GLR): Rename
10389 print_look_ahead to print_lookahead.
10390 * tests/torture.at: Update English in comments.
10391 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
10392 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
10393 (Many lookahead tokens): Update uses.
10394 * data/glr.c: Update English in comments.
10395 * lalr1.cc: Likewise.
10396 * yacc.c: Likewise.
10397 * src/conflicts.h: Likewise.
10398 * src/lalr.h: Likewise.
10399 * src/main.c: Likewise.
10400 * src/output.c: Likewise.
10401 * src/parse-gram.c: Likewise.
10402 * src/tables.h: Likewise.
10403 * tests/calc.at: Likewise.
10404
3c40d0b5
JD
104052006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
10406
10407 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
10408
5d278082
PE
104092006-06-07 Paul Eggert <eggert@cs.ucla.edu>
10410
10411 * TODO: Add request from Nelson H. F. Beebe to be able to install
10412 Bison without installing the yacc script.
10413
9e668899
JD
104142006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
10415
10416 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
10417 and yytext if they're already #define'd.
10418 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
10419 * src/scan-code-c.c: ... here.
10420 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
10421 <config.h>.
10422
0c8e079f
JD
104232006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
10424
10425 Get Bison to build again when configured with --enable-gcc-warnings.
10426 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
10427 missing #include's.
10428 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
10429 loc argument as it shadows a global.
10430 * src/scan-gram.l: Remove stray comma that prevents boundary_set
10431 invocation.
10432
10433 * src/.cvsignore: Add scan-code.c.
10434
2346344a
AD
104352006-06-07 Akim Demaille <akim@epita.fr>
10436
10437 * src/scan-gram.l: Move the "add a trailing ; to actions" code
10438 to...
10439 * src/scan-code.l: here.
10440 * tests/input.at (Torturing the Scanner): Fix another location
10441 error.
10442
4862bdfd
AD
104432006-06-07 Akim Demaille <akim@epita.fr>
10444
10445 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
10446
e9071366
AD
104472006-06-06 Akim Demaille <akim@epita.fr>
10448
10449 Extract the parsing of user actions from the grammar scanner.
10450 As a consequence, the relation between the grammar scanner and
10451 parser is much simpler. We can also split "composite tokens" back
10452 into simple tokens.
10453 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
10454 * src/scan-gram.l (add_column_width, adjust_location): Move to and
10455 rename as...
10456 * src/location.h, src/location.c (add_column_width)
10457 (location_compute): these.
10458 Fix the column count: the initial column is 0.
10459 (location_print): Be robust to ending column being 0.
10460 * src/location.h (boundary_set): New.
10461 * src/main.c: Adjust to scanner_free being renamed as
10462 gram_scanner_free.
10463 * src/output.c: Include scan-code.h.
10464 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
10465 Use boundary_set.
10466 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
10467 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
10468 which is now, again, a separate token.
10469 Adjust all dependencies.
10470 Whereever actions with $ and @ are used, use translate_code.
10471 (action): Remove this nonterminal which is now useless.
10472 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
10473 (grammar_current_rule_action_append): Use translate_code.
10474 (packgram): Bound check ruleno, itemno, and rule_length.
10475 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
10476 (last_string, last_braced_code_loc, max_left_semantic_context)
10477 (scanner_initialize, scanner_free, scanner_last_string_free)
10478 (gram_out, gram_lineno, YY_DECL_): Move to...
10479 * src/scan-gram.h: this new file.
10480 (YY_DECL): Rename as...
10481 (GRAM_DECL): this.
10482 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
10483 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
10484 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
10485 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
10486 Move these declarations, and...
10487 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
10488 these to...
10489 * src/flex-scanner.h: this new file.
10490 * src/scan-gram.l (rule_length, rule_length_overflow)
10491 (increment_rule_length): Remove.
10492 (last_braced_code_loc): Rename as...
10493 (gram_last_braced_code_loc): this.
10494 Adjust to the changes of the parser.
10495 Move all the handling of $ and @ into...
10496 * src/scan-code.l: here.
10497 * src/scan-gram.l (handle_dollar, handle_at): Remove.
10498 (handle_action_dollar, handle_action_at): Move to...
10499 * src/scan-code.l: here.
10500 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
10501 scan-code.h, scan-code-c.c, scan-gram.h.
10502 (EXTRA_bison_SOURCES): Add scan-code.l.
10503 (BUILT_SOURCES): Add scan-code.c.
10504 (yacc): Be robust to white spaces.
10505
10506 * tests/conflicts.at, tests/input.at, tests/reduce.at,
10507 * tests/regression.at: Adjust the column numbers.
10508 * tests/regression.at: Adjust the error message.
7891a7c4 10509
184e42f0
JD
105102006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
10511
10512 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
10513 Use Akim's wording from
10514 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
10515
7891a7c4
JD
105162006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
10517
10518 Between Bison releases, manually append `+' to the previous Bison
10519 release number, and use that as a signal to automatically print the
10520 ChangeLog's CVS Id keyword from --version. Discussed starting at
10521 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
10522 * ChangeLog: Add Id header.
10523 * configure.ac (AC_INIT): Append `+' to `2.3'.
10524 * src/.cvsignore: Add revision.c.
10525 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
10526 (BUILT_SOURCES): Add revision.c.
10527 (revision.c): New target rule. This file defines a new global variable
10528 named revision. It initializes it with either the Id from ChangeLog
10529 or, if VERSION doesn't contain `+', with the empty string.
10530 * src/getargs.c (version): Print the value of revision.
10531 * src/revision.h: Extern revision.
10532
4ad3ed84
PE
105332006-06-05 Paul Eggert <eggert@cs.ucla.edu>
10534
10535 * NEWS: Version 2.3.
10536 * configure.ac (AC_INIT): Likewise.
10537
02103984
PE
105382006-05-30 Paul Eggert <eggert@cs.ucla.edu>
10539
10540 * data/glr.c (YYRECOVERING): Define to be a function-like macro
10541 with no arguments, not as an object-like macro. This is for
10542 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
10543 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
10544 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
10545 Document this.
10546
2c08afa5
JD
105472006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
10548
10549 * src/getargs.c (usage): Back out yesterday's modification of the
10550 --help output so that we don't have to wait for translation before
10551 releasing 2.3.
10552
6077da58
PE
105532006-05-29 Paul Eggert <eggert@cs.ucla.edu>
10554
10555 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
10556 Problem reported by Akim Demaille.
10557
2a26b6c2
JD
105582006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
10559
10560 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
10561
aefef0d6
PE
105622006-05-26 Paul Eggert <eggert@cs.ucla.edu>
10563
10564 * data/yacc.c (yy_reduce_print): Omit trailing white space in
10565 generated source code. Problem reported by Frans Englich in
10566 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
10567
fcd8e201
PE
105682006-05-22 Paul Eggert <eggert@cs.ucla.edu>
10569
10570 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
10571 shell, not within 'make', so that 'make' by an ordinary builder
10572 (using GNU make) does not worry about configuring gzip. This also
10573 works around a bug reported independently by Keith Thompson and by
10574 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
10575 stderr rather than stdout, messing up the build logs.
10576
7b5cdcbd
JD
105772006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
10578
10579 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
10580 to make sure that YYID will never be unused. This fixes a 'make
10581 maintainer-check' failure caused by the recent changes to the 'Trivial
10582 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
10583 not used.
10584 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
10585
5ad0a449
JD
105862006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
10587
10588 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
10589 state before an empty RHS is always resolved here. Only the location
10590 of that state is guaranteed to be resolved, and that's enough. This
10591 fixes the remaining bug reported by Derek M. Jones in
10592 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
10593 * tests/glr-regression.at (Uninitialized location when reporting
10594 ambiguity): Test the above case.
10595 Also, the embedded comments in this test case claim it checks the case
10596 of an empty RHS that has inherited the initial location. However, the
10597 corresponding LHS was already resolved, so yyresolveLocations didn't
10598 actually have reason to modify it. Fix this by forcing
10599 nondeterministic operation at the beginning of the parse.
10600
50cce58e
PE
106012006-05-20 Paul Eggert <eggert@cs.ucla.edu>
10602
10603 * data/c.m4 (b4_yy_symbol_print_generate):
10604 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
10605 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
10606 of the bugs reported today by Derek M Jones in
10607 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
10608 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
10609 defined to be a type name without parens or brackets.
10610 (Location Type): Similarly for YYLTYPE.
10611 * tests/regression.at (Trivial grammars): Put in a test for this
10612 bug that will be caught by 'make maintainer-check' (though not,
10613 alas, by 'make check' unless your compiler is picky).
10614
ab8d9dc5
PE
106152006-05-19 Paul Eggert <eggert@cs.ucla.edu>
10616
0d2c8934 10617 * NEWS: Version 2.2.
ab8d9dc5
PE
10618 * configure.ac (AC_INIT): Likewise.
10619
9138c575
JD
106202006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
10621
10622 * data/glr.c (yyreportTree): Make room in yystates for the state
10623 preceding the RHS. This fixes the segmentation fault reported by Derek
10624 M. Jones in
10625 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
10626 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
10627 to the user. Reported for yyreportTree by Derek M. Jones later in the
10628 same thread.
10629 * THANKS: Add Derek M. Jones.
10630 Update my email address.
10631 Fix typo in Steve Murphy's name.
10632
276f48df
PE
106332006-05-14 Paul Eggert <eggert@cs.ucla.edu>
10634
d6645148
PE
10635 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
10636 checking against YYLAST that caused the parser to miss a potential
10637 alternative in its diagnostic.
10638 Problem reported by Maria Jose Moron Fernandez in
10639 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
10640 * data/lalr1.cc (yysyntax_error_): Likewise.
10641 * data/yacc.c (yysyntax_error): Likewise.
10642 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
10643 tokens, in case we run into an older C compiler.
10644 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
10645 Use them to check for the off-by-one error fixed above.
10646
276f48df
PE
10647 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
10648 YYSIZE_T, not size_t.
10649 * tests/regression.at (Trivial grammars): New test, to catch
10650 the error fixed by the above patch.
10651
cd8b5791
AD
106522006-05-14 Akim Demaille <akim@lrde.epita.fr>
10653
10654 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
10655 scheme.
10656 Reported by Steve Murphy.
10657
34376418
AD
106582006-05-14 Akim Demaille <akim@lrde.epita.fr>
10659
10660 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
10661 * data/glr.cc: b4_location_flag is now b4_locations_flag.
10662
327afc7c
AD
106632006-05-14 Akim Demaille <akim@lrde.epita.fr>
10664
10665 Implement --trace=m4.
10666 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
10667 * src/output.c (output_skeleton): When set, pass -dV to m4.
10668
10669 Factor the handling of flags in m4.
10670 * src/output.c (prepare): Rename the muscle names debug, defines,
10671 error_verbose to debug_flag, defines_flag, error_verbose_flag.
10672 * data/c.m4: Adjust.
10673 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
10674 Use b4_define_flag_if to define other b4_FLAG_if macros.
10675 (b4_location_if): As a consequence, rename as...
10676 (b4_locations_if): this, for consistency.
10677 Adjust all the skeletons.
10678
ba9ecd19
AD
106792006-05-14 Akim Demaille <akim@lrde.epita.fr>
10680
10681 * etc/bench.pm: Shorten bench names.
10682
4e83ea15
AD
106832006-05-14 Akim Demaille <akim@lrde.epita.fr>
10684
10685 * src/output.h, src/output.c (error_verbose): Move to...
10686 * src/getargs.h, src/getargs.c: here.
10687 Sort the flags.
10688 Adjust dependencies.
10689
6e93d810
PE
106902006-05-13 Paul Eggert <eggert@cs.ucla.edu>
10691
10692 * data/c.m4 (b4_copyright): Put the special exception for Bison
10693 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
10694 uses changed. Suggested by Akim Demaille. Also, wrap the
10695 copyright notice, in case it is longer than 80 columns. Replace
10696 comma by newline after title.
6e93d810 10697
eaea13f5
PE
106982006-05-11 Paul Eggert <eggert@cs.ucla.edu>
10699
10700 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
10701 incompatibility, not a bug. Mention that it wasn't fixed as of
10702 flex 2.5.33.
10703
3cf084ec
AD
107042006-05-11 Akim Demaille <akim@lrde.epita.fr>
10705
10706 * examples/extexi: Enforce the precedence of concatenation over
10707 >>.
0a9f1c7d 10708 Reported by Tommy Nordgren.
3cf084ec 10709
32c96bd7
AD
107102006-05-11 Akim Demaille <akim@lrde.epita.fr>
10711
10712 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
10713 with the member "token".
f94705b2 10714 Reported by Martin Nylin.
32c96bd7 10715
eaea13f5
PE
107162006-05-08 Paul Eggert <eggert@cs.ucla.edu>
10717
10718 * data/glr.c: Switch to Bison 2.2 special-exception language in
10719 the copyright notice. Use more-regular format for titles and
10720 copyright notices.
10721 * data/glr.cc: Likewise.
10722 * data/location.cc: Likewise.
10723 * data/yacc.cc: Likewise.
10724 * doc/bison.texinfo (Conditions): Document this.
10725 * NEWS: likewise. Upgrade version to 2.2.
10726
6e2d1146
AD
107272006-04-27 Akim Demaille <akim@lrde.epita.fr>
10728
10729 * data/glr.cc: Remove dead code.
10730
47671055
PE
107312006-04-25 Paul Eggert <eggert@cs.ucla.edu>
10732
10733 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
10734 that variable and the line breaks the bootstrap. Problem reported
10735 by Juan M. Guerrero.
10736
ed2e6384
AD
107372006-04-24 Akim Demaille <akim@lrde.epita.fr>
10738
10739 * doc/bison.texinfo (Multiple start-symbols): New.
10740
3cedc2dc
AD
107412006-04-24 Akim Demaille <akim@lrde.epita.fr>
10742
10743 * etc/README, etc/bench.pl: New.
10744
b2ddc3f3
AD
107452006-04-03 Akim Demaille <akim@lrde.epita.fr>
10746
10747 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
10748 rule.
10749 Reported by Mickael Labau.
10750 * tests/input.at (Torturing the Scanner): Test it.
10751
91e3ac9a
PE
107522006-03-16 Paul Eggert <eggert@cs.ucla.edu>
10753
10754 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
10755 Problem reported by Bob Rossi.
10756
107572006-03-13 Paul Eggert <eggert@cs.ucla.edu>
10758
10759 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
10760 and didn't really work.
10761 For the index, use @ifnotinfo, not @iftex.
10762 Minor cleanups of spacing and terminology.
10763
5cf61e93
AD
107642006-03-12 Akim Demaille <akim@lrde.epita.fr>
10765
10766 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
10767 of AT_NAME_PREFIX when %name-prefix is not used.
10768
aa08666d
AD
107692006-03-12 Akim Demaille <akim@lrde.epita.fr>
10770
10771 Apply --prefix to C++ skeletons too: they change the namespace.
10772 The test suite already exercize these cases.
10773 * data/c++.m4 (b4_namespace): New.
10774 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
10775 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
10776 * data/yacc.c, data/glr.c: Remove a useless `[]'.
10777 * doc/bison.texinfo: Document it.
10778 (Option Cross Key): Use @multitable in all formats. It looks
10779 nicer, even in TeX outputs.
10780 (Rules): Use the same code whatever the output type is.
10781 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
10782 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
10783 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 10784
45567173
AD
107852006-03-10 Akim Demaille <akim@lrde.epita.fr>
10786
10787 * TODO: Remove dead items.
10788
e9d8f881 107892006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
10790
10791 * doc/FAQ: Remove, merged into...
10792 * doc/bison.texinfo (FAQ): this.
10793 * doc/Makefile.am (EXTRA_DIST): Adjust.
10794
c095d689
AD
107952006-03-10 Akim Demaille <akim@lrde.epita.fr>
10796
10797 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
10798 even if empty.
10799 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
10800 * doc/bison.texinfo (Calc++ Scanner): Use it.
10801
6e0f8287
PE
108022006-03-09 Paul Eggert <eggert@cs.ucla.edu>
10803
10804 Fix two nits reported by twlevo, plus one more that I discovered.
10805
10806 * src/assoc.h (assoc_to_string): Give a name to the arg, as
10807 this is the usual Bison style.
10808 * src/location.h (location_print): Likewise.
10809
10810 * src/reader.h (token_name): Likewise.
10811
d6b771c3
PE
108122006-03-08 Paul Eggert <eggert@cs.ucla.edu>
10813
10814 Fix some nits reported by twlevo.
10815 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
10816 and "POSIX". Use more-modern syntax for URLs. Mention C++
10817 and ask for Java. Don't hardwire OS version numbers. Add
10818 copyright notice.
10819 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
10820 * src/conflicts.c (solved_conflicts_obstack): Now static.
10821
1e137b71
JD
108222006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
10823
10824 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
10825 page. Say "you can use it" not "you may use it" as on the web page;
10826 we're describing capabilities not granting permission.
10827
73f2e47e
PE
108282006-03-06 Paul Eggert <eggert@cs.ucla.edu>
10829
6d05403d
PE
10830 * data/glr.c (yyresolveLocations): Rename local variables to avoid
10831 shadowing warnings. Use usual patter for iterating through RHS.
10832 * tests/glr-regression.at
10833 (Uninitialized location when reporting ambiguity):
10834 Modify yylex so that it uses its argument, rather than trying
10835 to rely on ARGSUSED (which doesn't work for gcc with warnings).
10836 const char -> char const.
10837
73f2e47e
PE
10838 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
10839 Don't use tabs inside commands; it messes up 'ps'.
10840 Problem reported by twlevo.
10841
8710fc41
JD
108422006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
10843
10844 * tests/glr-regression.at (Uninitialized location when reporting
10845 ambiguity): New test case.
10846 * data/glr.c (yyresolveLocations): New function, which uses
10847 YYLLOC_DEFAULT.
10848 (yyresolveValue): Invoke yyresolveLocations before reporting an
10849 ambiguity.
10850 * doc/bison.texinfo (Default Action for Locations): Note
10851 YYLLOC_DEFAULT's usage for ambiguity locations.
10852 (GLR Semantic Actions): Cross-reference those notes.
10853
ae952af2
JD
108542006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
10855
10856 * tests/glr-regression.at (Leaked semantic values when reporting
10857 ambiguity): Remove unnecessary union and type declarations.
10858 (Leaked lookahead after nondeterministic parse syntax error): New test
10859 case.
10860 * data/glr.c (yyparse): Check for zero stacks remaining before
10861 attempting to shift the lookahead so that you don't lose it.
10862
35ee866a
JD
108632006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
10864
10865 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
10866 * tests/glr-regression.at (Leaked semantic values when reporting
10867 ambiguity): New test case.
10868 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
10869 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
10870 now unnecessary yystackp parameter.
10871 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
10872 destructors can be called.
10873
10874 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
10875 in existing testcases.
10876
520181ab
JD
108772006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
10878
10879 Don't leak semantic values for parent RHS when a user action cuts the
10880 parser, and clean up related code a bit.
10881 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
10882 cuts parse): Rename to...
10883 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
10884 for leaked parent RHS values.
10885 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
10886 between an unresolved state (non-empty chain of semantic options) and
10887 an incomplete one (signaled by an empty chain).
ae952af2 10888 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
10889 successfully or unsuccessfully resolved yyGLRState to...
10890 (yyresolveValue): ... here so that yyresolveValue always leaves a
10891 yyGLRState with consistent data and thus is easier to understand.
10892 Remove the yyvalp and yylocp parameters since they are always just
10893 taken from the yys parameter. When reporting a discarded merged value
10894 in debugging output, note that it is incompletely merged. Document the
10895 interface.
10896 (yyresolveAction): If resolving any of the RHS states fails, destroy
10897 them all rather than leaking them. Thus, as long as user actions are
10898 written to clean up the RHS correctly, yyresolveAction always cleans up
10899 the RHS of a semantic option. Document the interface.
10900
18d9185c
PE
109012006-02-27 Paul Eggert <eggert@cs.ucla.edu>
10902
10903 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
10904 led to a segmentation fault in GNU Pascal. Problem reported
10905 by Waldek Hebisch.
10906
841a7737
JD
109072006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
10908
10909 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
10910 mid-rule action inside a nonterminal symbol in order to declare a
10911 destructor for its semantic value.
10912
fc3f467f
PE
109132006-02-16 Paul Eggert <eggert@cs.ucla.edu>
10914
10915 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
10916 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
10917 __cplusplus && ! defined _STDLIB_H && !
10918 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
10919 defined free))]: Include <stdlib.h> rather than rolling our own
10920 declarations of malloc and free, to avoid problems with
10921 incompatible declarations (using 'throw') C++'s stdlib.h. This
10922 should fix Debian bug 340012
10923 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
10924 reported by Guillaume Melquiond.
10925
a3af26dd
PE
109262006-02-13 Paul Eggert <eggert@cs.ucla.edu>
10927
4d7bc38c
PE
10928 * NEWS: Clarify symbols versus types in unused-value warnings.
10929
a3af26dd
PE
10930 * configure.ac (AC_INIT): Bump version number.
10931
4e26c69e
PE
109322006-02-13 Paul Eggert <eggert@cs.ucla.edu>
10933
10934 * NEWS: Version 2.1a.
10935 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
10936 since C99 requires this.
10937
498e897c
PE
109382006-02-11 Paul Eggert <eggert@cs.ucla.edu>
10939
10940 * m4/c-working.m4: New file.
10941 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
10942
57bb17ca
PE
109432006-02-10 Paul Eggert <eggert@cs.ucla.edu>
10944
10945 * Makefile.maint: Merge from coreutils.
10946
0be105dc
PE
109472006-02-09 Paul Eggert <eggert@cs.ucla.edu>
10948
10949 More portability fixes for problems summarized by Nelson H. F. Beebe.
10950
10951 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
10952 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
10953 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
10954 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
10955 messes up because C++ code is compiled in 32-bit mode but linked
10956 in 64-bit mode.
10957
6fc0c024
PE
109582006-02-08 Paul Eggert <eggert@cs.ucla.edu>
10959
10960 More portability fixes for problems summarized by Nelson H. F. Beebe.
10961
7870f699
PE
10962 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
10963 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
10964
6fc0c024
PE
10965 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
10966 nodist_PROGRAMS, since we don't need to actually compile the
10967 example if we're just doing a plain 'make'. This avoids bothering
10968 the installer unnecessarily about problems due to weird C++
10969 compilers.
10970
fe6c2fde
PE
109712006-02-06 Paul Eggert <eggert@cs.ucla.edu>
10972
10973 More portability fixes for problems summarized by Nelson H. F. Beebe.
10974
10975 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
10976 than #include "...", and compile with -I'.'. The old method was
10977 not portable, according to Posix and the C standard, and it does
10978 not work with Sun C 5.7, where previous #line directives affect
10979 the working directory used in later #include "..." directives.
10980
927b425b
JMG
109812006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10982
10983 Various DJGGP specific issues in /djgpp
10984
d9735e9e
PE
109852006-02-02 Paul Eggert <eggert@cs.ucla.edu>
10986
10987 More portability fixes for problems summarized by Nelson H. F. Beebe.
10988
10989 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
10990 '#include <map>' works and that you can apply ++ to iterators.
10991
5a6755af
PE
109922006-02-01 Paul Eggert <eggert@cs.ucla.edu>
10993
67a0dc4f
PE
10994 Work around portability problems summarized by Nelson H. F. Beebe in
10995 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
10996
8c86f0ef
PE
10997 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
10998 that '#include <string>' works.
10999
de35dd59
PE
11000 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
11001 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
11002 "warning: sorry: semantics of inline function static data `const
11003 unsigned char translate_table[262]' are wrong (you'll wind up with
11004 multiple copies)".
11005
67a0dc4f
PE
11006 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
11007 or, xor to not_, and_, or_, and xor_, respectively. This works
11008 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
11009 random system header somewhere that includes the equivalent of
11010 <iso646.h>.
11011
5a6755af
PE
11012 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
11013 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 11014 Suite Version 2.0.
5a6755af 11015
3f001415
JD
110162006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
11017
11018 During deterministic GLR operation, user actions should be able to
11019 influence the parse by changing yychar. To make this easier to fix and
11020 to make glr.c easier to evolve in general, don't maintain yytoken in
11021 parallel with yychar; just compute yytoken when needed.
11022 * tests/glr-regression.at (Incorrect lookahead during deterministic
11023 GLR): Check that setting yychar in a user action has the intended
11024 effect.
11025 * data/glr.c (yyGLRStack): Remove yytokenp member.
11026 (yyclearin): Don't set *yytokenp.
11027 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
11028 yychar rather than *yytokenp to determine the current lookahead.
11029 Compute yytoken locally when needed.
11030 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
11031 point to.
11032
11033 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
11034 after `--report' documentation.
11035
e2a8c0f5
PE
110362006-01-30 Paul Eggert <eggert@cs.ucla.edu>
11037
11038 * src/parse-gram.y (grammar_declaration): Location of printer
11039 symbol is @1, not list->location. Bug reported by twlevo.
11040 * tests/input.at (Incompatible Aliases): Adjust to above change.
11041
6b702268
PE
110422006-01-29 Paul Eggert <eggert@cs.ucla.edu>
11043
27622431
PE
11044 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
11045 all the test at once. This makes the output easier to read in the
11046 normal case.
11047
6b702268
PE
11048 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
11049 got from <http://bro-ids.org/download.html>. The bug is that
11050 when two actions appeared in succession, the second one was
11051 scanned before the first one was added to the grammar rule
11052 as a midrule action. Bison then output the incorrect warning
11053 "parse.y:905.17-906.36: warning: unused value: $3".
11054 * src/parse-gram.y (BRACED_CODE, action): These are no longer
11055 associated with a value.
11056 (rhs): Don't invoke grammar_current_rule_action_append.
11057 (action): Invoke it here instead.
11058 * src/reader.c (grammar_midrule_action): Now extern.
11059 (grammar_current_rule_action_append): Don't invoke
11060 grammar_midrule_action; that is now the scanner's job.
11061 * src/reader.h (last_string, last_braced_code_loc):
11062 (grammar_midrule_action): New decls.
11063 * src/scan-gram.l (last_string): Now extern, sigh.
11064 (last_braced_code_loc): New extern variable.
11065 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
11066 rule already has an action.
11067 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
11068 * tests/input.at (AT_CHECK_UNUSED_VALUES):
11069 Add some tests to check that the above changes fixed the bug.
11070
d40ba6c2
PE
110712006-01-27 Paul Eggert <eggert@cs.ucla.edu>
11072
11073 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
11074 All used changed. Check whether the symbol has a destructor,
11075 not whether it is typed.
11076 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
11077 that the values are still reported as unused. All line numbers
11078 adjusted.
11079
401aace6
PE
110802006-01-23 Paul Eggert <eggert@cs.ucla.edu>
11081
11082 Work around a bug in bro 0.8, which underparenthesizes its
11083 definition of YYLLOC_DEFAULT.
11084 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
11085 their arguments.
11086 * data/lalr1.cc: Likewise.
11087 * data/yacc.cc: Likewise.
11088
06f01bc4
PE
110892006-01-22 Paul Eggert <eggert@cs.ucla.edu>
11090
401aace6
PE
11091 Work around a bug in Pike 7.0, and give the Pike folks a
11092 better way to override the usual int widths.
11093 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
11094 user can override the types.
11095 (short): #undef, to work around a bug in Pike 7.0.
11096 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
11097 (union yyalloc.yyss): Use yytype_int16 rather than short.
11098 All uses changed.
11099 (yysigned_char): Remove.
11100 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
11101 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
11102 * tests/regression.at (Web2c Actions): Adjust to above changes.
11103
11104 * src/reader.c (check_and_convert_grammar): New function.
11105 (reader): Close the input file even if something went wrong during
11106 parsing. Minor file descriptor leak reported by twlevo.
11107
06f01bc4
PE
11108 * src/assoc.c (assoc_to_string): Use a default: abort (); case
11109 to pacify gcc -Wswitch-default.
11110 * src/scan-gram.l (adjust_location): Use a default: break; case
11111 to pacify gcc -Wswitch-default.
11112 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
11113 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
11114 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
11115 Move these decls to scan-skel.l, since they don't need to be
11116 visible elsewhere.
11117 * src/scan-skel.l: Accept the above decls.
11118 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
11119 is used.
11120
02650b7f
PE
111212006-01-21 Paul Eggert <eggert@cs.ucla.edu>
11122
11123 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
11124 since we don't want to insist on a version number at the start
11125 of the changelog every time.
11126 * Makefile.maint: Sync from coreutils a bit better.
11127 (sc_trailing_blank): Renamed from sc_trailing_space.
11128 All uses changed.
11129 (sc_no_if_have_config_h, sc_require_config_h):
11130 (sc_prohibit_assert_without_use): New rules.
11131 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
11132 (sc_dd_max_sym_length): Fix leading spaces in rule.
11133 (sc_system_h_headers): Prefix with @.
11134 (sc_useless_cpp_parens, m4-check): Output line numbers.
11135 (changelog-check): Allow version only in head.
11136 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
11137 satisfy new Makefile.maint rule.
11138 * data/glr.c: Likewise.
11139 * data/glr.cc: Likewise.
11140 * data/lalr1.cc: Likewise.
11141 * data/yacc.c: Likewise.
11142 * lib/ebitsetv.c: Likewise.
11143 * lib/lbitset.c: Likewise.
11144 * lib/subpipe.c: Likewise.
11145 * lib/timevar.c: Likewise.
11146 * src/system.h: Likewise.
11147 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
11148 * djgpp/Makefile.maint: Add copyright notice.
11149 * djgpp/README.in: Likewise.
11150 * djgpp/config.bat: Likewise.
11151 * djgpp/config.site: Likewise.
11152 * djgpp/config_h.sed: Likewise.
11153 * djgpp/djunpack.bat: Likewise.
11154 * djgpp/config.sed: Fix copyright notice to match standard format.
11155 * djgpp/subpipe.h: Likewise.
11156 * lib/bitsetv-print.c: Likewise.
11157 * lib/bitsetv.c: Likewise.
11158 * lib/subpipe.h: Likewise.
11159 * lib/timevar.c: Likewise.
11160 * lib/timevar.h: Likewise.
11161 * djgpp/subpipe.c: Use standard recipe for config.h.
11162 * lib/abitset.c: Likewise.
11163 * lib/bitset.c: Likewise.
11164 * lib/bitset_stats.c: Likewise.
11165 * lib/bitsetv-print.c: Likewise.
11166 * lib/bitsetv.c: Likewise.
11167 * lib/ebitsetv.c: Likewise.
11168 * lib/get-errno.c: Likewise.
11169 * lib/lbitset.c: Likewise.
11170 * lib/subpipe.c: Likewise.
11171 * lib/timevar.c: Likewise.
11172 * lib/vbitset.c: Likewise.
11173 * tests/local.at: Likewise.
11174 * src/scan-gram.l: Don't include verify.h, since system.h does
11175 that for us.
11176 * .x-sc_require_config_h: New file.
11177 * .x-sc_unmarked_diagnostics: New file.
11178
287c78f6
PE
111792006-01-20 Paul Eggert <eggert@cs.ucla.edu>
11180
287c78f6
PE
11181 Be a bit more systematic about using 'abort'.
11182 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
11183 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
11184 Put 'default: abort ();' before some other case, to satisfy older
11185 pedantic compilers.
11186 * lib/bitset_stats.c (bitset_stats_init): Likewise.
11187 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
11188 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
11189 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
11190 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
11191 (get_decision_str, get_orientation_str, get_node_alignment_str):
11192 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
11193 (get_linestyle_str, get_arrowstyle_str): Likewise.
11194 * src/conflicts.c (resolve_sr_conflict):
11195 Use a default case rather than one for the one remaining enum
11196 value, to catch invalid enum values as well.
11197 * src/lalr.c (set_goto_map, map_goto):
11198 Prefer "assert (FOO);" to "if (!FOO) abort ();".
11199 * src/nullable.c (nullable_compute, token_definitions_output):
11200 Likewise.
11201 * src/reader.c (packgram, reader): Likewise.
11202 * src/state.c (transitions_to, state_new, state_reduction_find):
11203 Likewise.
11204 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
11205 (symbol_pack): Likewise.
11206 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
11207 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
11208 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
11209 * src/system.h: Don't include <assert.h>.
11210 (assert): New macro.
11211
11212 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
11213 (Destructor Decl, Parser Function, Pure Calling):
11214 Describe rules for braces inside C code more carefully.
287c78f6 11215
c66dfadd
PE
112162006-01-19 Paul Eggert <eggert@cs.ucla.edu>
11217
c21493b8
PE
11218 Fix some porting glitches found by Nelson H. F. Beebe.
11219 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
11220 compilers that don't understand that abort () does not return.
11221 * src/state.c (transitions_to): Likewise.
11222 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
11223 that '#include <cstdlib>' works.
11224 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
11225 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
11226 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
11227 for the benefit of some pre-C99 compilers.
11228
b6e3facf
PE
11229 * bootstrap: Undo changes to gnulib files that autoreconf made.
11230
c66dfadd
PE
11231 Minor fixups to get 'make maintainer-check' to work.
11232 * configure.ac: Don't use -Wnested-externs, as it's incompatible
11233 with the new verify.h implementation.
11234 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
11235 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
11236 * data/yacc.c (YYUSE): Likewise.
11237 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
11238 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
11239 * src/parse-gram.y (declaration): Don't pass a string constant
11240 to a function that expects char *, since GCC might complain
11241 about the constant value.
11242 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
11243 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
11244 before #defining them.
11245 * tests/glr-regression.at
11246 (Incorrectly initialized location for empty right-hand side in GLR):
11247 In yyerror, use the msg arg.
11248 (Corrupted semantic options if user action cuts parse):
11249 (Incorrect lookahead during deterministic GLR):
11250 (Incorrect lookahead during nondeterministic GLR):
11251 Don't name a local var 'index'; it shadows string.h's 'index'.
11252
ed94ef2a
AD
112532006-01-19 Akim Demaille <akim@epita.fr>
11254
11255 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
11256 location, not just parts of it.
11257
e9ad4aec
PE
112582006-01-18 Paul Eggert <eggert@cs.ucla.edu>
11259
d6ca7905
PE
11260 * NEWS: Document the fact that multiple %unions are now allowed.
11261 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
11262 * TODO: This feature is now implemented, so remove it from
11263 the wishlist.
d6ca7905 11264
ef1b70e0
PE
11265 * Makefile.maint: Merge with coreutils Makefile.maint.
11266 (CVS_LIST): Use build-aux version if available.
11267 (VERSION_REGEXP): New macro.
11268 (syntax-check-rules): Add sc_no_if_have_config_h,
11269 sc_prohibit_assert_without_use, sc_require_config_h,
11270 sc_useless_cpp_parens.
11271 (sc_obsolete_symbols): Check for O_NDELAY.
11272 (sc_dd_max_sym_length): Track coreutils.
11273 (sc_unmarked_diagnostics): Look in all files, not just *.c.
11274 (sc_useless_cpp_parens): New rule.
11275 (news-date-check): Look for version or today's date.
11276 (changelog-check): Don't require version number near head.
11277 (copyright-check): Use current year instead of hardwiring 2005.
11278 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
11279 (announcement): Add --gpg-key-ID.
11280
11281 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
11282 with "file system".
11283
2073ce56 11284 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
11285 array. Problem reported by twlevo.
11286 * src/reader.c (packgram): Prepend a new sentinel before ritem.
11287 * src/lalr.c (build_relations): Rely on new sentinel.
11288 * src/gram.c (gram_free): Adjust to new sentinel.
11289
b7691f15
JD
112902006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
11291
11292 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
11293 yylookaheadNeeds. All uses updated.
11294 (yysplitStack): Rename local yynewLookaheadStatuses to
11295 yynewLookaheadNeeds.
11296 * data/glr-regression.at (Incorrect lookahead during nondeterministic
11297 GLR): In comments, change `lookahead status' to `lookahead need'.
11298
ddee1b06
PH
112992006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11300
11301 * data/glr.c (yysplitStack): A little stylistic rewrite.
11302
12f4614d
PH
113032006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11304
11305 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
11306
32c29292
JD
113072006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
11308
11309 * doc/bison.texinfo: Fix some typos.
11310 (GLR Semantic Actions): New subsection discussing special
11311 considerations because GLR semantic actions might be deferred.
11312 (Actions): Mention look-ahead usage of yylval.
11313 (Actions and Locations): Mention look-ahead usage of yylloc.
11314 (Special Features for Use in Actions): Add YYEOF entry and mention it
11315 in the yychar entry.
11316 In the yychar entry, remove mention of the local yychar case (pure
11317 parser) since this is irrelevant information when writing semantic
148d66d8 11318 actions and since it's already discussed in `Table of Symbols' where
32c29292
JD
11319 yychar is otherwise described as an external variable.
11320 In the yychar entry, don't call it the `current' look-ahead since it
11321 isn't when semantic actions are deferred.
11322 In the yychar and yyclearin entries, add note about deferred semantic
11323 actions.
11324 Add yylloc and yylval entries discussing look-ahead usage.
11325 (Look-Ahead Tokens): When discussing yychar, don't call it the
11326 `current' look-ahead, and do mention yylval and yylloc.
11327 (Error Recovery): Cross-reference `Action Features' when mentioning
11328 yyclearin.
148d66d8 11329 (Table of Symbols): In the yychar entry, don't call it the `current'
32c29292
JD
11330 look-ahead.
11331 In the yylloc and yylval entries, mention look-ahead usage.
11332
de366a2f 113332006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
11334
11335 * tests/glr-regression.at: Update copyright year to 2006.
11336
bf70fa87
JD
113372006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
11338
11339 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
11340 use during nondeterministic operation to track which stacks have
11341 actually needed the current lookahead.
11342 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
11343 Allocate, deallocate, resize, and otherwise shuffle space for
11344 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
11345 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
11346 appropriately during nondeterministic operation.
11347 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
11348 members to store the current lookahead to be used by the deferred
11349 user action.
11350 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
11351 from which the RHS is taken. Set the lookahead members of the new
11352 yySemanticOption according to the lookahead status for stack yyk.
11353 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
11354 yyaddDeferredAction.
11355 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
11356 members of yySemanticOption before invoking yyuserAction, and then set
11357 them back to their current values afterward.
11358 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
11359 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
11360 * tests/glr-regression.at: Remove `.' from the ends of recent test case
11361 titles for consistency.
11362 (Leaked merged semantic value if user action cuts parse): In order to
11363 suppress lint warnings, use arguments in merge function, and assign
11364 char value < 128 in main.
11365 (Incorrect lookahead during deterministic GLR): New test case.
11366 (Incorrect lookahead during nondeterministic GLR): New test case.
11367
05449a2c
JD
113682006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
11369
de366a2f 11370 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
11371 !yyvaluep as signal that no semantic value is available to print.
11372 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
11373 to print a semantic value.
11374
4158e0a1 113752006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 11376
4158e0a1
JD
11377 * tests/glr-regression.at: For consistency with my newer test cases,
11378 don't thank myself.
11379
d659304d
JD
113802006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
11381
11382 * data/glr.c (yyresolveValue): When merging semantic options, if at
11383 least one user action succeeds but a later one cuts the parse, then
11384 destroy the semantic value before returning rather than leaking it.
11385 (yyresolveStates): If a user action cuts the parse and thus
11386 yyresolveValue fails, ignore the (unset) semantic value rather than
11387 corrupting the yyGLRState, and empty the semantic options list since
11388 the user actions should have called all necessary destructors.
11389 Simplify code with YYCHK.
11390 * tests/glr-regression.at (Corrupted semantic options if user action
11391 cuts parse): New test case.
11392 (Undesirable destructors if user action cuts parse): New test case.
11393 Before applying any of this patch, this test case never actually failed
11394 for me... but only because the corrupted semantic options usually
11395 masked this bug.
11396 (Leaked merged semantic value if user action cuts parse): New test
11397 case.
11398
6ec2c0f2
AD
113992006-01-05 Akim Demaille <akim@epita.fr>
11400
11401 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
11402
1b9c21fb
PE
114032006-01-04 Paul Eggert <eggert@cs.ucla.edu>
11404
11405 * data/c.m4 (b4_c_modern): New macro, with a new provision for
11406 _MSC_VER. Problem reported by Cenzato Marco.
11407 (b4_c_function_def): Use it.
11408 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
11409 b4_c_modern.
11410 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
11411 than rolling our own.
11412
84866159
AD
114132006-01-04 Akim Demaille <akim@epita.fr>
11414
11415 Also warn about non-used mid-rule values.
11416 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
11417 member.
11418 (symbol_list_new): Adjust.
11419 * src/reader.c (symbol_typed_p): New.
11420 (grammar_rule_check): Use it.
11421 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
11422 Check its rule.
11423 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
11424 Use it.
11425 * tests/actions.at (Exotic Dollars): Adjust.
11426
378f4bd8
AD
114272006-01-04 Akim Demaille <akim@epita.fr>
11428
11429 * src/reader.c (grammar_midrule_action): If $$ is set in a
11430 mid-rule, move the `used' bit to its lhs.
11431 * tests/input.at (Unused values): New.
11432 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
11433
e2a21b6f
PE
114342006-01-03 Paul Eggert <eggert@cs.ucla.edu>
11435
54662697
PE
11436 * doc/bison.texinfo (Bison Options): Say more accurately what
11437 --yacc does.
11438 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
11439 about declarations in the grammar when in Yacc mode, as POSIX does
11440 not require a diagnostic when the grammar uses extensions.
11441
11442 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
11443
073f9288
PE
11444 Warn about dubious constructions like "%token T T".
11445 Reported by twlevo.
11446 * src/symtab.h (struct symbol.declared): New member.
11447 * src/symtab.c (symbol_new): Initialize it to false.
11448 (symbol_class_set): New arg DECLARING, specifying whether
11449 this is a declaration that we want to warn about, if there
11450 is more than one of them. All uses changed.
11451
1221b78a
PE
11452 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
11453 Allow multiple %union directives, whose contents concatenate.
11454 * src/parse-gram.y (grammar_declaration): Likewise.
11455 Use muscle_code_grow, so that we don't need stype_line any more.
11456 All uses changed.
11457
11458 * src/muscle_tab.c (muscle_grow): Fix comment.
11459
e2a21b6f
PE
11460 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
11461 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
11462 Update copyright year to 2006.
11463
8f7e3cf9
AD
114642006-01-03 Akim Demaille <akim@epita.fr>
11465
11466 Have glr.cc pass (some of) the calc.at tests.
11467 * data/glr.cc (b4_parse_param_orig): New.
11468 (b4_parse_param): Improve its definition, and bound it more
11469 clearly in the skeleton.
11470 (b4_epilogue): Append, instead of prepending, in order to keep
11471 #line consistency.
11472 Simplify the generation of auxiliary functions: locations and
11473 purity are mandated.
11474 (b4_global_tokens_and_yystype): Honor it.
11475 * data/location.cc (c++.m4): Don't include it.
11476 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
11477 and AT_SKEL_CC_IF.
11478 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
11479 AT_LALR1_CC_IF.
11480 Be sure to initialize the first position's filename.
11481 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
11482 mandated anyway.
11483 (AT_CHECK_CALC_GLR_CC): New.
11484 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
11485
3953ed88
AD
114862006-01-02 Akim Demaille <akim@epita.fr>
11487
11488 * src/output.c (output_skeleton): Don't hard wire the inclusion of
11489 c.m4.
0a96ba81 11490 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
11491 * data/glr.cc: Do not include stack.hh.
11492
9ecafbbf
AD
114932006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
11494
11495 * data/glr.c: Reformat whitespace with tabs.
11496 (b4_lpure_formals): Remove this unused m4 macro.
11497 * tests/cxx-type.at: Reformat whitespace with tabs.
11498 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
11499 since it's a member. Rename type to isNterm for clarity.
11500
c4d497a0
AD
115012005-12-29 Akim <akim@sulaco.local>
11502
11503 Let glr.cc catch up with symbol_value_print.
11504 * data/glr.cc (b4_yysymprint_generate): Replace by...
11505 (b4_yy_symbol_print_generate): this.
11506 (yy_symbol_print, yy_symbol_value_print): Declare them.
11507
4517da37
PE
115082005-12-28 Paul Eggert <eggert@cs.ucla.edu>
11509
11510 * src/location.h (boundary): Note that a line or column equal
11511 to INT_MAX indicates an overflow.
11512 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
11513 (rule_length_overflow, increment_rule_length, add_column_width):
11514 New functions.
11515 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
11516 (<SC_BRACED_CODE>"}"):
11517 Use increment_rule_length rather than incrementing it by hand.
11518 (adjust_location, handle_syncline): Diagnose overflow.
11519 (handle_action_dollar, handle_action_at):
11520 Fix bug with monstrosities like $-2147483648.
11521 Remove now-unnecessary checks.
11522 (scan_integer): Verify assumptions and remove now-unnecessary checks.
11523 (convert_ucn_to_byte): Verify assumptions.
11524 (handle_syncline): New arg LOC. All callers changed.
11525 Don't store through a value derived from char const * pointer.
11526
11527 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
11528 GCC warnings.
11529
e3233bf6
PE
115302005-12-27 Paul Eggert <eggert@cs.ucla.edu>
11531
11532 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
11533 Remove unnecessary forward static decls.
11534
8f3596a6
AD
115352005-12-27 Akim Demaille <akim@epita.fr>
11536
11537 * src/reader.c (grammar_current_rule_check): Also check that $$
11538 is used.
11539 Take the rule to check as argument, hence rename as...
11540 (grammar_rule_check): this.
11541 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
11542 Rename as...
11543 (grammar_rule_begin, grammar_rule_end): these, for consistency.
11544 (grammar_midrule_action, grammar_symbol_append): Now static.
11545 * tests/torture.at (input): Don't rely on the default action
11546 being always performed.
11547 * tests/calc.at: "Set" $$ even when the action is "cut" with
11548 YYERROR or other.
11549 * tests/actions.at (Exotic Dollars): Instead of using unused
11550 values, check that the warning is issued.
11551
721be13c
PE
115522005-12-22 Paul Eggert <eggert@cs.ucla.edu>
11553
11554 * NEWS: Improve wording for unused-value warnings.
11555
a0af42fc
AD
115562005-12-22 Akim Demaille <akim@epita.fr>
11557
11558 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
11559 (b4_yysymprint_generate): Rename as...
11560 (b4_yy_symbol_print_generate): this.
11561 Generate yy_symbol_print instead of yysymprint.
11562 Generate also yy_symbol_value_print, and use it.
11563
affac613
AD
115642005-12-22 Akim Demaille <akim@epita.fr>
11565
721be13c 11566 * NEWS: Warn about unused values.
affac613
AD
11567 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
11568 a `used' member.
11569 (symbol_list_n_get, symbol_list_n_used_set): New.
11570 (symbol_list_n_type_name_get): Use symbol_list_n_get.
11571 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
11572 * src/reader.c (grammar_current_rule_check): Check that values are
11573 used.
11574 * src/symtab.c (symbol_print): Accept 0.
11575 * tests/existing.at: Remove the type information.
11576 Empty the actions.
11577 Remove useless actions (beware of mid-rule actions: perl -000
11578 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
11579 * tests/actions.at (Exotic Dollars): Use unused values.
11580 * tests/calc.at: Likewise.
11581 * tests/glr-regression.at (No users destructors if stack 0 deleted):
11582 Likewise.
11583
11584 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
11585 rule_useful_p.
11586
9d9b8b70
PE
115872005-12-21 Paul Eggert <eggert@cs.ucla.edu>
11588
8bb4c753
PE
11589 Undo 2005-12-01 tentative license wording change. The wording is
11590 still being reviewed by the lawyers, and we don't want to wait for
11591 them before publishing a test release. For now, revert to the
11592 previous wording.
11593 * NEWS: Undo 2005-12-01 change.
11594 * data/glr.c: Revert to previous license wording.
11595 * data/glr.cc: Likewise.
11596 * data/lalr1.cc: Likewise.
11597 * data/location.cc: Likewise.
11598 * data/yacc.c: Likewise.
11599
9d9b8b70
PE
11600 * NEWS: Reword %destructor vs YYABORT etc.
11601 * data/glr.c: Use American spacing, for consistency.
11602 * data/glr.cc: Likewise.
11603 * data/lalr1.cc: Likewise.
11604 * data/yacc.c: Likewise.
11605 * data/yacc.c: Reformat comments slightly.
11606 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
11607 for consistency. Fix some spelling errors and reword recently-included
11608 text slightly.
11609 * tests/cxx-type.at: Cast results of malloc, for C++.
11610
2c3b392a
AD
116112005-12-21 Joel E. Denny <address@hidden>
11612
11613 * tests/cxx-type.at: Construct a tree, count the parents of shared
11614 nodes, and free each node once and only once. Previously, the memory
11615 for semantic values was leaked instead.
11616
d6cff4dc
AD
116172005-12-21 Joel E. Denny <address@hidden>
11618
11619 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
11620 (yylval, yylloc): If pure, #define to yystackp->yyval and
11621 yystackp->yyloc similar to yychar and yynerrs.
11622 (yyparse): If pure, remove local yylval and yylloc. Add local
11623 yystackp to accommodate pure definitions of yylval and yylloc.
11624 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
11625 yylvalp and yyllocp to &yylval and &yylloc.
11626 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
11627 namespace. Previously, nerrs and char were missing, but lval and lloc
11628 weren't necessary.
11629 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
11630 yylvalp and yyllocp parameters since, if pure, these are now always
11631 accessible through yystackp. If not pure, they are still accessible
11632 globally.
11633 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
11634 `if (YYID (N))' to pacify lint.
11635
a85284cf
AD
116362005-12-21 Akim Demaille <akim@epita.fr>
11637
11638 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
11639 destroy the RHS symbols of a rule.
11640 * data/yacc.c (yylen): Initialize to 0.
11641 Keep its value to the number of items to possibly shift.
11642 In particular, a regular successful parse that ends on YYFINAL by
11643 a (internal) YYACCEPT must not have yylen != 0.
11644 (yyerrorlab, yyreturn): Pop the RHS.
11645 Reorder a bit to emphasize the `shifting' bits of code.
11646 (YYPOPSTACK): Now accept a number of items to pop.
11647 * data/lalr1.cc: Likewise.
11648 * data/glr.c: Formatting changes.
11649 Use goto instead of fall through.
11650 * doc/bison.texinfo (Destructor Decl): Complete.
11651
d508c281
JMG
116522005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
11653
11654 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
11655 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
11656 * djgpp/config.bat: Replace every occurence of the file name
11657 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
11658 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
11659 * djgpp/config.sed: Replace every occurence of the file name
11660 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
11661 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
11662 * djgpp/djunpack.bat: DJGPP specific file.
11663 * djgpp/fnchange.lst: DJGPP specific file.
11664 * djgpp/README.in: Add new information about how to unpack the bison
11665 source on MSDOS and other systems which have 8.3 file name restrictions
11666 using djunpack.bat and fnchange.lst.
11667
3e7a2cd9
PE
116682005-12-12 Paul Eggert <eggert@cs.ucla.edu>
11669
11670 * bootstrap (build_cvs_prefix): Remove; unused.
11671 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
11672 when getting gnulib.
11673
116742005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
11675
11676 * data/glr.c: Reorder typedef declarations for structs to match order
11677 of struct declarations.
11678 Rename yystack everywhere to yystackp except in yyparse where it's not
11679 a pointer.
11680 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
11681 consistency.
11682 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
11683 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
11684 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
11685 lint.
11686
877519f8
PE
116872005-12-09 Paul Eggert <eggert@cs.ucla.edu>
11688
0eca5a39
PE
11689 * tests/sets.at (Accept): Fix typos in regular expression used to
11690 sed out the final state number.
11691
2cec9080
PE
11692 Work around portability problem on Solaris 10: flex-generated
11693 files include <stdio.h> before <config.h>, which messes up
11694 because the latter defines __EXTENSIONS__. Address the problem
11695 by creating two new little files that include <config.h> first,
11696 then include the flex-generated files. Rewrite everyone else
11697 to include <config.h> first, as well.
11698 * lib/timevar.c: Always include "config.h".
11699 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
11700 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
11701 (EXTRA_bison_SOURCES): New macro.
11702 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
11703 * src/system.h: Don't include config.h.
11704 * src/LR0.c: Include <config.h> first.
11705 * src/assoc.c: Likewise.
11706 * src/closure.c: Likewise.
11707 * src/complain.c: Likewise.
11708 * src/conflicts.c: Likewise.
11709 * src/derives.c: Likewise.
11710 * src/files.c: Likewise.
11711 * src/getargs.c: Likewise.
11712 * src/gram.c: Likewise.
11713 * src/lalr.c: Likewise.
11714 * src/location.c: Likewise.
11715 * src/main.c: Likewise.
11716 * src/muscle_tab.c: Likewise.
11717 * src/nullable.c: Likewise.
11718 * src/output.c: Likewise.
11719 * src/parse-gram.y: Likewise.
11720 * src/print.c: Likewise.
11721 * src/print_graph.c: Likewise.
11722 * src/reader.c: Likewise.
11723 * src/reduce.c: Likewise.
11724 * src/relation.c: Likewise.
11725 * src/state.c: Likewise.
11726 * src/symlist.c: Likewise.
11727 * src/symtab.c: Likewise.
11728 * src/tables.c: Likewise.
11729 * src/uniqstr.c: Likewise.
11730 * src/vcg.c: Likewise.
11731
877519f8
PE
11732 * src/parse-gram.y: Fix minor problems uncovered by lint.
11733 (current_lhs, current_lhs_location): Now static.
11734 (current_assoc): Remove unused variable.
11735
11736 Cleanups so that Bison-generated parsers have less lint.
11737 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
11738 Prepend /*ARGSUSED*/, for lint's sake.
11739 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
11740 definition if 'lint' is defined.
11741 (YYID): New macro (or function, if lint).
11742 All uses of /*CONSTCOND*/0 replaced by YYID(0).
11743 * data/yacc.c: Likewise.
11744 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
11745 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
11746 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
11747 is C++ only.
11748 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
11749 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
11750 Use YYID(0) rather than 0, for lint.
11751 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
11752 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
11753
f5228370
PE
117542005-12-07 Paul Eggert <eggert@cs.ucla.edu>
11755
11756 * tests/glr-regression.at
11757 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11758 Close memory leak reported by twlevo.
11759
69ce078b
PE
117602005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
11761
6ff99711
PE
11762 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
11763 all stacks.
11764 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
11765 * tests/glr-regression.at (No users destructors if stack 0 deleted):
11766 New test case.
11767 (Duplicated user destructor for lookahead): This test now is expected
11768 to succeed.
11769
af3412cd
PE
117702005-12-01 Paul Eggert <eggert@cs.ucla.edu>
11771
32b5b719 11772 * NEWS: Document the following change.
af3412cd
PE
11773 * data/yacc.c: Say "parser skeleton" rather than "file", since
11774 it's no longer just a file.
11775 * data/glr.c: Grant a special exception for C GLR parsers, that
11776 reads like the already-existing exception for C LALR(1) parsers.
11777 * data/glr.cc: Likewise.
11778 * data/lalr1.cc: Likewise.
11779 * data/location.cc: Likewise.
11780 * data/yacc.c: Reword the "written by" statement to clarify that
11781 it was the parser skeleton, not the entire output file.
11782 * data/glr.c: Written by Paul Hilfinger.
11783 * data/glr.cc: Written by Akim Demaille.
11784 * data/lalr1.cc: Likewise.
11785
035aa4a0
PE
117862005-11-18 Paul Eggert <eggert@cs.ucla.edu>
11787
d9963c85
PE
11788 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
11789 Fix typos in previous change that broke 'make check'.
11790 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
11791 supported in C.
11792 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
11793 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
11794 We can revert this once things settle down.
11795
035aa4a0
PE
11796 * src/conflicts.c (conflicts_print): Don't print file name twice
11797 when %expect fails because there were no conflicts.
11798 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
11799 change.
11800 * tests/conflicts.at (%expect not enough, %expect too much):
11801 (%expect with reduce conflicts): Adjust to new behavior.
11802
118032005-11-18 Akim Demaille <akim@epita.fr>
11804
11805 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
11806 errors.
11807 * NEWS: Document this.
11808 * doc/bison.texinfo (Expect Decl): Likewise.
11809
d1ff7a7c
AD
118102005-11-16 Akim Demaille <akim@epita.fr>
11811
11812 Generalize the display of semantic values and locations in traces.
11813 * data/glr.c (yy_reduce_print): Fix indices (again).
11814 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
11815 literal integers.
11816 * data/lalr1.cc (yyreduce_print): Rename as...
11817 (yy_reduce_print): this.
11818 Display values and locations.
11819 * data/yacc.c (yy_reduce_print): Likewise.
11820 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
11821 (yysymprint): Move higher to be visible from yy_reduce_print).
11822 (yyparse): Adjust.
11823 * tests/calc.at: Adjust the expected length of the traces.
11824
6de5398d
AD
118252005-11-14 Akim Demaille <akim@epita.fr>
11826
11827 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
11828 from 1 to N, while values and location start at 0.
11829 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
11830
a1373f55
AD
118312005-11-14 Akim Demaille <akim@epita.fr>
11832
11833 * data/glr.c (yy_reduce_print): Fix the $ number.
11834
613d8952
AD
118352005-11-14 Akim Demaille <akim@epita.fr>
11836
11837 "Use" parse parameters.
11838 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
11839 * data/glr.c, data/glr.cc: Use them.
11840 * data/glr.c (YYUSE): Have a C++ definition that supports
11841 non-pointer types.
11842
b2741627
AD
118432005-11-14 Akim Demaille <akim@epita.fr>
11844
11845 * data/glr.c (yyexpandGLRStack): Declare only if defined.
11846
5059b5c8
AD
118472005-11-14 Akim Demaille <akim@epita.fr>
11848
42249483
AD
11849 * data/glr.cc: New.
11850 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 11851
4626a15d
AD
118522005-11-12 Akim Demaille <akim@epita.fr>
11853
11854 Let position and location be PODs.
11855 * data/location.cc (position::initialize, location::initialize): New.
11856 (position::position, location::location): Define only if
11857 b4_location_constructors is defined.
11858 * data/lalr1.cc (b4_location_constructors): Define it for backward
11859 compatibility.
11860 * doc/bison.texinfo (Initial Action Decl): Use initialize.
11861
118622005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
11863
11864 * data/lalr1.cc: Move the body of the ctor and dtor into the
11865 parser file (instead of the header).
11866 Wrap the implementations in a "namespace yy".
11867
118682005-11-12 Akim Demaille <akim@epita.fr>
11869
11870 Have glr.c include its header file when created.
11871 * data/glr.c (b4_shared_declarations): New.
11872 Output them verbatim in the parser if !%defines, otherwise
11873 output then in the header file, and include it instead.
11874
1989d947
AD
118752005-11-11 Akim Demaille <akim@epita.fr>
11876
11877 * data/glr.c: Comment changes.
11878
118792005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
11880
11881 When yydebug, report semantic and location values for reductions.
11882 * data/glr.c (yy_reduce_print): Report the semantic values and the
11883 locations.
11884 (YY_REDUCE_PRINT): Adjust.
11885 (yyglrReduce): Use them.
11886 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
11887 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
11888 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
11889 traces.
11890
02998094
AD
118912005-11-10 Akim Demaille <akim@epita.fr>
11892
11893 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
11894 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
11895 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
11896
5210672f
PE
118972005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
11898
11899 * m4/cxx.m4, examples/Makefile.am: Don't build
11900 examples/calc++ if no C++ compiler is available. (trivial change)
11901
a8991a1d
AD
119022005-11-09 Akim Demaille <akim@epita.fr>
11903
11904 * src/scan-skel.l: Use a couple of asserts.
11905
36b5e963
AD
119062005-11-03 Akim Demaille <akim@epita.fr>
11907
11908 In some (weird) cases, the final state number is incorrect.
11909 Reported by Alexandre Duret-Lutz.
11910 * src/LR0.c (state_list_append): Remove the computation of
11911 final_state.
11912 (save_reductions): Do it here.
11913 (get_state): Alpha conversion.
11914 (generate_states): Use a for loop.
11915 * src/gram.h (item_number_is_rule_number)
11916 (item_number_is_symbol_number): New.
11917 * src/state.c: Use assert.
11918 * src/system.h: Include assert.h.
11919 * tests/sets.at (Accept): New.
11920
44e7ead1
PH
119212005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11922
11923 * data/glr.c (yyfill): Adjust comment.
36b5e963 11924 (yyresolveAction): Initialize default location properly
44e7ead1
PH
11925 for empty right-hand sides.
11926 (yydoAction): Ditto.
11927 Add comment explaining apparently dead code.
36b5e963
AD
11928 * tests/glr-regression.at
11929 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 11930 New test.
36b5e963 11931
e10a80ee
PE
119322005-10-30 Paul Eggert <eggert@cs.ucla.edu>
11933
11934 * bootstrap (cleanup_gnulib): New function. Use it to clean up
11935 gnulib when interrupted. This fixes some race conditions and
11936 works around some portability problems (one noted by Paul
11937 Hilfinger).
11938
067b32ee
AD
119392005-10-22 Akim <akim@epita.fr>
11940
11941 * Makefile.cfg: Adjust to config -> build-aux.
11942 Reported by twledo.
11943
4b367315
AD
119442005-10-21 Akim Demaille <akim@epita.fr>
11945
11946 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
11947 the %parse-params.
11948 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
11949 * data/yacc.c (b4_Pure_if): Rename as...
11950 (b4_yacc_pure_if): this.
11951 (YY_SYMBOL_PRINT, yyparse): Adjust.
11952 * doc/bison.texinfo: Formatting changes.
11953
24cc23d9
AD
119542005-10-21 Akim Demaille <akim@epita.fr>
11955
11956 Finish the transition config -> build-aux.
11957 * configure.ac, Makefile.am: Use build-aux.
11958 * config/prev-version, config/announce-gen, config/Makefile.am:
11959 Move to...
11960 * build-aux/prev-version, build-aux/announce-gen,
11961 * build-aux/Makefile.am: here.
11962
d4476375
AD
119632005-10-14 Akim Demaille <akim@epita.fr>
11964
11965 * examples/calc++/test: Use set -x only when VERBOSE.
11966
302c0aee
PE
119672005-10-13 Paul Eggert <eggert@cs.ucla.edu>
11968
11969 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
11970 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
11971
7625ec2c
AD
119722005-10-13 Akim Demaille <akim@epita.fr>
11973
11974 * src/scan-skel.l: Output the base name parts of the parser and
11975 header file names.
302c0aee 11976 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
11977 additional checks.
11978 Use this to exercise C++ outputs in subdirs.
11979 Reported by Oleg Smolsky.
11980
ba0fe3c7
PE
119812005-10-12 Paul Eggert <eggert@cs.ucla.edu>
11982
11983 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
11984 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
11985 Problem reported by John P. Hartmann.
11986 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
11987 already defined it.
11988
9b8a5ce0
AD
119892005-10-12 Akim Demaille <akim@epita.fr>
11990
11991 * src/parse-gram.y (version_check): Exit 63 to please missing
11992 (stands for "version mismatch).
11993 * tests/input.at, doc/bison.texinfo: Adjust.
11994
4f6e011e
PE
119952005-10-10 Paul Eggert <eggert@cs.ucla.edu>
11996
11997 Work around portability problems with Visual Age C compiler
11998 (xlc and xlC_r) reported by John P. Hartmann.
11999 * data/location.cc (initial_column, initial_line): Remove.
12000 All uses replaced by 0 and 1.
12001 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
12002 that xlc complains about.
12003 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 12004 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 12005 as __STDC__.
4d7aa45e
PE
12006 * data/yacc.c (YYMODERN_C): New macro, which also looks at
12007 __STDC_VERSION__. Use it everywhere instead of looking at
12008 __STDC__ and __cplusplus.
4f6e011e 12009
a1b3bf8c
AD
120102005-10-10 Akim Demaille <akim@epita.fr>
12011
12012 * examples/calc++/test: Be quiet unless VERBOSE.
12013
412e44aa
PE
120142005-10-05 Paul Eggert <eggert@cs.ucla.edu>
12015
2a4647a3
PE
12016 * data/c.m4 (yydestruct, yysymprint):
12017 Use YYUSE instead of casting to void.
12018 * data/glr.c (YYUSE): New macro.
12019 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
12020 Use it instead of rolling our own.
12021 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
12022 (YYCHK1):
12023 Use /*CONSTCOND*/ to suppress lint warnings.
12024 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
12025 (YY_STACK_PRINT): Use 'false' not '0'.
12026 (YYUSE): New macro.
12027 (yysymprint_, yydestruct_): Use it instead of rolling our own.
12028 * data/yacc.c (YYUSE): New macro.
12029 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
12030 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
12031 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
12032
12033
412e44aa
PE
12034 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
12035 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
12036
88c6637f
PE
120372005-10-04 Paul Eggert <eggert@cs.ucla.edu>
12038
2f4f028d
PE
12039 Undo the parts of the unlocked-I/O change that substituted
12040 putc or puts for printf. This might hurt performance a bit,
12041 but some people prefer the printf style.
12042 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
12043 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
12044 All uses replaced by YYFPRINTF and YYDPRINTF.
12045 * data/yacc.c: Likewise.
12046 * lib/bitset.c (bitset_print): Likewise.
12047 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
12048 putc and puts.
12049 * lib/lbitset.c (debug_lbitset): Likewise.
12050 * src/closure.c (print_firsts, print_fderives): Likewise.
12051 * src/gram.c (grammar_dump): Likewise.
12052 * src/lalr.c (look_ahead_tokens_print): Likewise.
12053 * src/output.c (escaped_output): Likewise.
12054 (user_actions_output): Break apart two printfs.
12055 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
12056 * src/reduce.c (reduce_print): Likewise.
12057 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
12058 * src/system.h: Include unlocked-io.h rathe than stdio.h.
12059
88c6637f
PE
12060 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
12061 Use assignments rather than casts-to-void to suppress
12062 unused-variable warnings. This pacifies 'lint'.
12063 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
12064 unused-variable warnings.
12065
fb32e373
JMG
120662005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
12067
12068 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
12069
edb8f44f
PE
120702005-10-02 Paul Eggert <eggert@cs.ucla.edu>
12071
fb9c0b33
PE
12072 Use unlocked I/O for a minor performance improvement on hosts like
12073 GNU/Linux and Solaris that support unlocked I/O. The basic idea
12074 is to use the gnlib unlocked-io module, and to prefer putc and
12075 puts to printf when either will work (since the latter doesn't
12076 come in an unlocked flavor).
12077 * bootstrap (gnulib_modules): Add unlocked-io.
12078 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
12079 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
12080 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
12081 and similarly for puts and putc and printf.
12082 * data/yacc.c: Likewise.
12083 * lib/bitset.c (bitset_print): Likewise.
12084 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
12085 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
12086 to printf.
12087 * lib/lbitset.c (debug_lbitset): Likewise.
12088 * src/closure.c (print_firsts, print_fderives): Likewise.
12089 * src/gram.c (grammar_dump): Likewise.
12090 * src/lalr.c (look_ahead_tokens_print): Likewise.
12091 * src/output.c (escaped_output): Likewise.
12092 (user_actions_output): Coalesce two printfs.
2f4f028d 12093 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
12094 * src/reduce.c (reduce_print): Likewise.
12095 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 12096 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 12097
edb8f44f
PE
12098 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
12099 this confuses xgettext.
12100
b50d2359
AD
121012005-10-02 Akim Demaille <akim@epita.fr>
12102
12103 * bootstrap (gnulib_modules): Add strverscmp.
12104 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
12105 * m4/.cvsignore: Add strverscmp.m4.
12106 * src/parse-gram.y (%require): New token, new rule.
12107 (version_check): New.
12108 * src/scan-gram.l (%require): Adjust.
12109 * tests/input.at (AT_REQUIRE): New.
12110 Use it.
12111 * doc/bison.texinfo (Require Decl): New.
12112 (Calc++ Parser): Use %require.
12113
21667f64
AD
121142005-10-02 Akim Demaille <akim@epita.fr>
12115
12116 * data/location.cc: New.
12117
2b81e969
AD
121182005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
12119 Akim Demaille <akim@epita.fr>
12120
12121 Make sure -odir/foo.cc creates dir/location.hh etc.
12122 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
12123 (spec_file_prefix, spec_verbose_file, spec_graph_file)
12124 (spec_defines_file): Now const.
12125 (dir_prefix): New.
12126 (short_base_name): Remove.
12127 * src/files.c: Adjust.
12128 (dirname.h): Include.
12129 (base_name): Don't prototype it.
12130 (finput): Remove, duplicates gram_in.
12131 (full_base_name, short_base_name): Replace by...
12132 (all_but_ext, all_but_tab_ext): these.
12133 (compute_base_names): Rename as...
12134 (compute_file_name_parts): this.
12135 Update to compute the new variables, including dir_prefix.
12136 Adjust dependencies.
12137 * src/output.c (prepare): Output them.
12138 * src/reader.c: Adjust to use gram_in, not finput.
12139 * src/scan-skel.l (@dir_prefix@): New.
12140
ad6a9b97
JMG
121412005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
12142
12143 * lib/subpipe.c: New function end_of_output_subpipe() added
12144 to allow support for non-posix systems. This is a no-op function
12145 for posix systems.
12146
12147 * lib/subpipe.h: New function end_of_output_subpipe() added
12148 to allow support for non-posix systems. This is a no-op function
12149 for posix systems.
12150
12151 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
12152 handle the lack of pipe/fork functionality on non-posix systems.
12153
12154 * djgpp/Makefile.maint: DJGPP specific file.
12155
12156 * djgpp/README.in: DJGPP specific file.
12157
12158 * djgpp/config.bat: DJGPP specific configuration file.
12159
12160 * djgpp/config.sed: DJGPP specific configuration file.
12161
12162 * djgpp/config.site: DJGPP specific configuration file.
12163
12164 * djgpp/config_h.sed: DJGPP specific configuration file.
12165
12166 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
12167
12168 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
12169
fc695704
AD
121702005-10-02 Akim Demaille <akim@epita.fr>
12171
12172 * data/location.cc: New, extract from...
12173 * data/lalr1.cc: here.
12174 (location.hh): Include it after the user prologue, in case the
12175 filename type is defined by the user.
12176 Forward declation location and position before the pre-prologue.
12177 (yyresult_): Rename as...
12178 (yyresult): this, it's a local variable, not an attribute.
12179 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
12180
121812005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
12182
12183 * examples/extexi: Restore the #line generation.
12184
fb9712a9
AD
121852005-09-30 Akim Demaille <akim@epita.fr>,
12186 Alexandre Duret-Lutz <adl@gnu.org>
12187
12188 Move the token type and YYSTYPE in the parser class.
12189 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
12190 (parser::token): New, from the moved free definition of tokens.
12191 (parser::semantic_value): Now a full definition instead of an
12192 indirection to YYSTYPE.
12193 (b4_post_prologue): No longer included in the header file, but
12194 in the implementation file.
12195 * doc/bison.texi (C+ Language Interface): Update.
12196 * src/parse-gram.y: Support unary %define.
12197 * tests/actions.at: Define global_tokens_and_yystype for backward
12198 compatibility until we update the tests.
12199 * tests/calc.at: Idem.
12200 (first_line, first_column, last_line, last_column): Define for lalr1.cc
12201 to simplify the code.
12202
55f0c7b1
PE
122032005-09-29 Paul Eggert <eggert@cs.ucla.edu>
12204
12205 Port to SunOS 4.1.4, which lacks strtoul and strerror.
12206 Ah, the good old days! Problem reported by Peter Klein.
12207 * bootstrap (gnulib_modules): Add strerror, strtoul.
12208 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
12209 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
12210
fb9712a9 122112005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
12212
12213 * data/c.m4 (b4_error_verbose_if): New.
12214 * data/lalr1.cc: Use it.
12215 (YYERROR_VERBOSE_IF): Remove.
12216 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
12217 parser members, replaced by...
12218 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
12219 local variables.
12220 (yysyntax_error_): Takes the state number as argument.
12221 (yyreduce_print_): Use the argument yyrule, not the former
12222 attribute yyn_.
12223
8a6f72f3
PE
122242005-09-26 Paul Eggert <eggert@cs.ucla.edu>
12225
12226 * bootstrap (gnulib_modules): Add verify.
12227 * lib/.cvsignore: Add verify.h.
12228 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
12229 * src/system.h (verify): Remove.
12230 Include verify.h instead.
12231 * src/tables.c (tables_generate): Use new API for 'verify'.
12232
0d50976f
PE
122332005-09-21 Paul Eggert <eggert@cs.ucla.edu>
12234
ebc3737e
PE
12235 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
12236 local variables whose names begin with 'yy'.
12237 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
12238 Trivial changes from Joel E. Denny.
12239
0d50976f
PE
12240 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
12241 it itself.
12242 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
12243 don't use alloca any more.
12244
12245 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
12246 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 12247 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
12248 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
12249 to match yacc.c, to test more hosts.
12250
a05b79df
PE
122512005-09-20 Paul Eggert <eggert@cs.ucla.edu>
12252
55289366
PE
12253 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
12254 doesn't affect behavior.
12255 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
12256 Solaris, AIX, MSC.
12257 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
12258 This works a bit better with glibc, if user code has already included
12259 stdlib.h.
12260 * doc/bison.texinfo (Bison Parser): Document that users can't
12261 arbitrarily use malloc and free for other purposes. Document
12262 that <alloca.h> and <malloc.h> might be included.
12263 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
12264 user must declare alloca.
12265
a05b79df
PE
12266 * HACKING (release): Forwarn the Translation Project about
12267 stable releses.
12268
3ab2ca22
AD
122692005-09-20 Akim Demaille <akim@epita.fr>
12270
12271 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
12272
a9739e7c
PE
122732005-09-19 Paul Eggert <eggert@cs.ucla.edu>
12274
a702593e
PE
12275 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
12276 (YYSTACK_ALLOC_MAXIMUM): Use it.
12277 (yysyntax_error): New function.
12278 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
12279 multiple syntax errors are reported, and alloca is being used.
12280 Instead, reallocate buffers twice as big each time, so that
12281 we waste at most half the allocated memory. Start with a small
12282 (128-byte) buffer that will suffice in most cases anyway.
12283 Use yysyntax_error to do most of the work.
12284
12285 * doc/bison.texinfo (Error Reporting, Table of Symbols):
12286 yynerrs is the number of errors reported, not the number of
12287 errors encountered.
12288
a9739e7c
PE
12289 * tests/glr-regression.at (Duplicated user destructor for lookahead):
12290 Mark it as expected to fail.
12291 Cast result of malloc; problem reported by twlevo@xs4all.nl.
12292 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
12293 Don't start user-code symbols with "yy", to avoid name space problems.
12294
f479c6c6
AD
122952005-09-19 Akim Demaille <akim@epita.fr>
12296
12297 Remove the traits, failed experiment.
12298 It never proved useful, and anyway because of the current
12299 definition, it was not possible to have several specialization of
12300 this traits, making it useless.
12301 * data/lalr1.cc (yy:traits): Remove.
12302 Inline its definitions in the parser class.
12303
e2586f82
AD
123042005-09-19 Akim Demaille <akim@epita.fr>
12305
12306 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
12307 least Mac OSX with a /usr/local install of gettext.
12308
2e8cf949
AD
123092005-09-19 Akim Demaille <akim@epita.fr>
12310
12311 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
12312 and yytoken for similarity with the other skeletons.
12313
c7fb0b90
AD
123142005-09-19 Akim Demaille <akim@epita.fr>
12315
4e26c69e 12316 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 12317
1bd0deda
PE
123182005-09-16 Paul Eggert <eggert@cs.ucla.edu>
12319
12320 * NEWS: Version 2.1.
12321
12322 * NEWS: Remove notice of yytname change, since it was never in an
12323 official release.
12324 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
12325 diagnostic.
12326 * src/output.c (prepare): Likewise.
12327 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
12328 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
12329 is not defined. This is an awful hack, but it's enough for now.
12330 All callers changed.
12331 * tests/glr-regression-at (make_value): Args are const pointers now,
12332 to avoid GCC warning.
12333 (Duplicated user destructor for lookahead): New test. Currently
12334 skipped. It fails on my host but I'm not sure it'll always fail.
12335
123362005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
12337
12338 * src/symtab.h (struct symbol): Declare the printer and destructor
12339 as const, to avoid accidental calls to free.
12340 (symbol_destructor_set, symbol_printer_set): Adjust.
12341 * src/symtab.c: Adjust.
12342
1bd0deda 123432005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
12344
12345 * data/c.m4 (b4_token_enums): New.
12346 (b4_token_defines): Rename as...
12347 (b4_token_enums_defines): this.
12348 (b4_token_defines): New, output only the #defines.
12349 * data/yacc.c, data/glr.c: Adjust.
12350 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
12351 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
12352 as default values.
12353
dbcdae2d
AD
123542005-09-16 Akim Demaille <akim@epita.fr>
12355
12356 * data/lalr1.cc (yylex_): Remove, inline its code.
12357 (yyreport_syntax_error_): Remove, replaced by...
12358 (yysyntax_error_): this which returns a string and leaves to the
12359 caller the call to the users' error function.
12360 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
12361 Move from members of the parser object...
12362 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
12363 to local variables of the parse function.
12364
70d8f291
AD
123652005-09-16 Akim Demaille <akim@epita.fr>
12366
12367 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
12368 since it's in Bison's name space.
12369
b47dbebe
PE
123702005-09-15 Paul Eggert <eggert@cs.ucla.edu>
12371
ae199bf1
PE
12372 * data/glr.c (yyresolveValue): Add default case to pacify
12373 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
12374
b47dbebe
PE
12375 * NEWS: Document when yyparse started to return 2.
12376 * doc/bison.texinfo (Parser Function): Document when yyparse
12377 returns 2.
12378
12379 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
12380 (b4_filename_type): Renamed back from b4_file_name_type. All uses
12381 changed.
12382 (class position): file_name -> filename (reverting). All uses changed.
12383
123842005-09-14 Paul Eggert <eggert@cs.ucla.edu>
12385
12386 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
12387 do anything if $@ exists. This reverts part of the 2005-07-07
12388 patch.
12389
00292f66
PE
123902005-09-11 Paul Eggert <eggert@cs.ucla.edu>
12391
12392 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
12393 contains obsolete information and isn't worth distributing as a
12394 separate file anyway.
12395 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
12396 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
12397 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
12398 (yyparse): Abort if user code uses longjmp to throw an unexpected
12399 value.
12400
a420f962
PE
124012005-09-09 Paul Eggert <eggert@cs.ucla.edu>
12402
00292f66
PE
12403 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
12404 Suggested by twlevo@xs4all.nl.
12405
127287e9
PE
12406 * data/glr.c (YYCHK1): Do not assume YYE is in range.
12407 This avoids a diagnostic from gcc -Wswitch-enum.
12408 Problem reported by twlevo@xs4all.nl.
12409
a420f962
PE
12410 * doc/bison.texinfo: Don't use "filename", as per GNU coding
12411 standards. Use "file name" or "file" or "name", depending on
12412 the context.
12413 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
12414 not to hack/foo.tab.c.
12415 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
12416 * data/glr.c: b4_filename -> b4_file_name.
12417 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
12418 All uses changed.
12419 (class position): filename -> file_name. All uses changed.
12420 * data/yacc.c: b4_filename -> b4_file_name.
12421 * lib/bitset.h: filename -> file_name in local vars.
12422 * lib/bitset_stats.c: Likewise.
12423 * src/files.c: Likewise.
12424 * src/scan-skel.l ("@output ".*\n): Likewise.
12425 * src/files.c (file_name_split): Renamed from filename_split.
12426 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
12427
124282005-09-08 Paul Eggert <eggert@cs.ucla.edu>
12429
12430 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
12431 to accommodate latest gnulib.
12432
12433 * tests/glr-regression.at (Duplicate representation of merged trees):
12434 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
12435
12436 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
12437 needed.
12438
42a6501d
PE
124392005-08-26 Paul Eggert <eggert@cs.ucla.edu>
12440
12441 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
12442 All uses changed. Invoke user destructor after an error during a
12443 split parse (trivial change from Joel E. Denny).
12444
12445 * tests/glr-regression.at
12446 (User destructor after an error during a split parse): New test case.
12447 Problem reported by Joel E. Denny in:
12448 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
12449
ef9a1faf
PE
124502005-08-25 Paul Eggert <eggert@cs.ucla.edu>
12451
5b4aaf78
PE
12452 * README-cvs: Give URLs for recommended tools.
12453 Mention Gzip version problem, and bootstrapping issues.
12454 Remove troubleshooting section, as it's somewhat obsolete.
12455
b5240ba5
PE
12456 * bootstrap (no_cache): New var, to accommodate different wget
12457 variants. Use it instead of '-C off'. Problem reported by
12458 twlevo@xs4all.nl.
12459
ef9a1faf
PE
12460 * data/glr.c (yydestroyStackItem): New function.
12461 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
12462 debugging information. Problem reported by Joel E. Denny.
12463
e6efa9da
AD
124642005-08-25 Akim Demaille <akim@epita.fr>
12465
12466 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
12467
adc90f13
PE
124682005-08-24 Paul Eggert <eggert@cs.ucla.edu>
12469
12470 * data/glr.c (yyrecoverSyntaxError, yyreturn):
12471 Don't invoke destructor on unresolved entries.
12472 * tests/glr-regression.at
12473 (User destructor for unresolved GLR semantic value): New test case.
12474 Problem reported by Joel E. Denny in:
12475 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
12476
f9315de5
PE
124772005-08-21 Paul Eggert <eggert@cs.ucla.edu>
12478
15d29c1f
PE
12479 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
12480 Add strnlen.c.
12481 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
12482 lib-prefix.m4, po.m4.
12483
dd5f2af2
PE
12484 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
12485 in yydestruct diagnostic, since it might not be an error.
12486 Problem reported by Joel Denny near end of
12487 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 12488 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
12489 * data/yacc.c (yyreturn): Likewise.
12490 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
12491
12492 * src/files.c: Remove obsolete FIXME comment.
12493
12494 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
12495 with the other templates, and to fix bogus run-on messages such
12496 as the one reported at the end of
12497 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
12498 All callers changed to avoid the newline.
12499 (yyprocessOneStack): Output two lines rather than one, to accommodate
12500 the above change. This changes the debug output format slightly.
12501
f9315de5
PE
12502 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
12503 reported by Joel E. Denny in
12504 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
12505 (trivial change).
12506 * tests/glr-regression.at (Duplicate representation of merged trees):
12507 New test, from Joel E. Denny in:
12508 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
12509 * THANKS: Add Joel E. Denny.
12510
12511 * configure.ac (AC_INIT): Bump to 2.0c.
12512
04098407
PE
125132005-07-24 Paul Eggert <eggert@cs.ucla.edu>
12514
12515 * NEWS: Version 2.0b.
12516
ca5d2013
PE
12517 * Makefile.am (SUBDIRS): Put examples before tests, so that
12518 "make check" doesn't finish with "All 1 tests passed".
12519
3d54b576
PE
12520 * tests/regression.at (Token definitions): Don't rely on
12521 AT_PARSER_CHECK for data that contains backslashes. It currently
12522 uses 'echo', and 'echo' isn't portable if its argument contains
12523 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
12524 that the byte '\0xff' is not printable in the C locale; it is,
12525 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
12526 not printable, so use '\0x81' to test.
12527
d53ae497
PE
12528 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
12529 version of GCC, since the macro is used with non-GCC compilers.
12530
fc01665e
PE
12531 Fix core dump reported by Pablo De Napoli in
12532 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
12533 * tests/regression.at (Invalid inputs with {}): New test.
12534 * src/parse-gram.y (token_name): Translate type before using
12535 it as an index.
12536
04098407
PE
12537 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
12538 the user's name space. All uses changed to __attribute__
12539 ((__unused__)).
12540 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
12541 Add __attribute__ ((__noreturn__)).
12542
12543 * etc/clcommit: Remove. We weren't using it, and it failed
12544 "make maintainer-distcheck".
12545 * Makefile.maint: Merge from coreutils.
12546 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
12547 (syntax-check-rules): Change list of rules as described below.
12548 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
12549 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
12550 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
12551 (sc_trailing_space): New rules.
12552 (sc_xalloc_h_in_src): Remove.
12553 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
12554 (sc_space_tab, sc_error_exit_success, sc_changelog):
12555 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
12556 (makefile-check, po-check, author_mark_check):
12557 (makefile_path_separator_check, copyright-check):
12558 Use grep -n, to make it easier to find violations.
12559 Use CVS_LIST and CVS_LIST_EXCEPT.
12560 (header_regexp, h_re): Remove.
12561 (dd_c): New macro.
12562 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
12563 (my-distcheck): Use more-modern GCC flags.
12564 (signatures, %.asc): Remove.
12565 (rel-files, announcement): Remove signatures.
12566 Restore old updating code, even though we don't use it, so
12567 that we're the same as coreutils.
12568 (alpha, beta, major): Depend on news-date-check.
12569 Make the upload commands.
12570
12571 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
12572 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
12573 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
12574 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
12575 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
12576 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
12577 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
12578 * tests/sets.at: Likewise.
12579
12580 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
12581 we comment out the Autoconf version number.
12582 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
12583 it's error-prone and "make maintainer-distcheck" rejects it.
12584
12585 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
12586 Indent calls to "error" to pacify "make maintainer-distcheck",
12587 when the calls are not intended to be translated.
12588 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
12589
12590 * src/Makefile.am (DEFS): Use +=, to pacify
12591 "make maintainer-distcheck".
12592 (bison_SOURCES): Add scan-skel.h.
12593 (sc_tight_scope): New rule, from coreutils.
12594
12595 * src/files.c (src_extension, header_extension):
12596 Now static, not extern.
12597 * src/getargs.c (short_options): Likewise.
12598 * src/muscle_tab.c (muscle_table): Likewise.
12599 * src/parse-gram.y (current_class, current_type, current_prec):
12600 Likewise.
12601 * src/reader.c (grammar_end, previous_rule_end): Likewise.
12602 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
12603 * src/main.c (main): Cast bindtextdomain and textdomain calls to
12604 void, to avoid warning when NLS is disabled.
12605 * src/output.c: Include scan-skel.h.
12606 (scan_skel): Remove decl, since scan-skel.h does this.
12607 (output_skeleton):
12608 Indent calls to "error" to pacify "make maintainer-distcheck".
12609 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
12610 * src/reader.h (gram_end, gram_lineno): New decls to pacify
12611 "make maintainer-distcheck".
12612 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
12613 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
12614 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
12615 (skel_lex_destroy, scan_skel): Move these decls to...
12616 * src/scan-skel.h: New file.
12617 * src/uniqstr.c (uniqstr_assert):
12618 Indent calls to "error" to pacify "make maintainer-distcheck".
12619
12620 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
12621 not @VAR@.
12622
12623 * tests/torture.at: Revamp to avoid misuse of atoi that
12624 "make maintainer-distcheck" complained about.
12625
12626 * examples/extexi (message): Don't print a message more than once,
12627 and omit line-number decoration that makes Emacs compile think
12628 that informative messages are worth worrying about.
12629
126302005-07-22 Paul Eggert <eggert@cs.ucla.edu>
12631
12632 * configure.ac: Update version number.
12633
12634 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
12635 accidentally.
12636 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
12637 autogenerated by the maintainer.
12638 * examples/calc++/.cvsignore: Add *.yy.
12639
12640 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
12641 * lib/bitset_stats.c (bitset_stats_init): Likewise.
12642 * lib/bitsetv.c (bitsetv_alloc): Likewise.
12643
12644 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
12645
12646 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
12647 from maintainer-distcheck about casting the argument of 'free'.
12648
12649 * NEWS: Mention recent yytname changes.
12650 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
12651
12652 * bootstrap: For translations that have not yet been upgraded to
12653 the new runtime-po domain, prime the pump by extracting the
12654 relevant strings from the obsolete translations. This code can be
12655 removed once the bison-runtime domain has been translated by each
12656 team.
12657
12658 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
12659 now that token names are already quoted.
12660
12661 Fix problem reported by Anthony Heading.
12662 * data/glr.c (YYTOKEN_TABLE): New macro.
12663 (yytname): Define if YYTOKEN_TABLE.
12664 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
12665 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
12666 (YYERROR_VERBOSE): Define the same way the other skeletons do.
12667 * src/output.c (prepare_symbols): Output token_table_flag.
12668
0ffda363
PE
126692005-07-21 Paul Eggert <eggert@cs.ucla.edu>
12670
12671 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
12672 again if the first call fails.
12673
12674 * data/glr.c (yytnamerr): New function.
12675 (yyreportSyntaxError): Use it to dequote most string literals.
12676 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
12677 with other skeletons. All uses changed.
12678 (yytnameerr_): New function.
12679 (yyreport_syntax_error): Use it to dequote most string literals.
12680 * data/yacc.c (yytnamerr): New function.
12681 (yyerrlab): Use it to decode most string literals.
12682 * doc/bison.texinfo (Decl Summary, Calling Convention):
12683 Clarify quoting convention of yytname.
12684 * src/output.c (prepare_symbols): Quote all names. This undoes
12685 the 2005-04-17 change, which is now accomplished (mostly) via
12686 changes in the parsers as described above.
12687 * tests/regression.at (Token definitions, Web2c Actions):
12688 Undo most 2005-04-17 change here, too.
12689
126902005-07-20 Paul Eggert <eggert@cs.ucla.edu>
12691
12692 Fix more problems reported by twlevo@xs4all.nl.
12693 * tests/cxx-type.at: Don't pipe output of ./types through sed to
12694 remove trailing spaces. This loses the exit status of ./types,
12695 and isn't needed since ./types shouldn't be emitting trailing
12696 spaces.
12697 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
12698 as the stack isn't valid in that case.
12699
12700 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
12701 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
12702 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
12703 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
12704 is used.
12705 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
12706 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
12707 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
12708 Likewise.
12709
12710 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
12711 overly-picky compilers that reject 'char *foo = "bar";'.
12712
12713 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
12714 to FILE * parameter, not to stderr. This fixes a typo introduced
12715 in the 2005-07-12 change.
12716
12717 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
12718 warnings from GCC 4.
12719
12720 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
12721 (yyglrShiftDefer, yysplitStack):
12722 Remove unused parameters b4_pure_formals. All uses changed.
12723 (yyglrShift): Remove unused parameters b4_user_formals.
12724 All uses changed.
12725 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
12726
6100a9aa
PE
127272005-07-18 Paul Eggert <eggert@cs.ucla.edu>
12728
258b75ca
PE
12729 Destructor cleanups and regularization among the three skeletons.
12730 * NEWS: Document the behavior changes.
12731 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
12732 stack before failing, as the cleanup code will do it for us now.
12733 * data/lalr1.cc (yyerrlab): Likewise.
12734 * data/glr.c (yyparse): Pop everything off the stack before
12735 freeing it, so that destructors get called properly.
12736 * data/lalr1.cc (yyreturn): Likewise.
12737 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
12738 This is more consistent.
12739 * doc/bison.texinfo (Destructor Decl): Mention more reasons
12740 why destructors might be called. 1.875 -> 2.1.
12741 (Destructor Decl, Decl Summary, Table of Symbols):
12742 Some English-language cleanups for %destructor.
12743 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
12744 Add output line for destructor of start symbol.
12745 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
12746 because of that same extra output line.
12747
1a059451
PE
12748 * NEWS: Document minor wording changes in diagnostics of
12749 Bison-generated parsers.
12750 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
12751 Remove unused formals. All uses changed.
12752 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
12753 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
12754 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
12755 Rename yyoverflowab to yyexhaustedlab.
12756 When memory exhaustion occurs during syntax-error reporting,
12757 report it separately rather than in a single diagnostic; this
12758 eases translation.
12759 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
12760 (Memory Exhausted): Renamed from Parser Stack Overflow.
12761 Revamp wording slightly to prefer "memory exhaustion".
12762 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
12763
97460c78
PE
12764 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
12765
30757c8c
PE
12766 Add i18n support to the GLR skeleton. Partially fix the C++
12767 skeleton; a C++ expert needs to finish this. Remove debugging
12768 msgids; there's little point to having them translated, since they
12769 can be understood only by someone who can read the
12770 (English-language) source code.
12771
12772 Generate runtime-po/bison-runtime.pot automatically, so that we
12773 don't have to worry about garbage getting in that file. We'll
12774 make sure after the next official release that old msgids don't
12775 get lost. See
12776 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
12777
12778 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
12779 Now auto-generated.
12780 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
12781 Fix typos in explanations of the runtime file.
12782 * bootstrap: Change gettext keyword from YYI18N to YY_.
12783 Use standard Makefile.in.in in runtime-po, since we'll arrange
12784 for backward-compatible bison-runtime.po files in a different way.
12785 * data/glr.c (YY_): New macro, from yacc.c.
12786 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
12787 Translate messages intended for users.
12788 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
12789 the wording in the other skeletons. We don't know that the memory
12790 is virtual.
12791 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
12792 Use same method that yacc.c uses.
12793 Don't translate debugging messages.
12794 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
12795 it doesn't work (yet), and requires C++ expertise to fix.
12796 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
12797 Move defn to a more logical place, to be consistent with other
12798 skeletons.
12799 Don't translate debugging messages.
12800 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
12801 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
12802 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
12803 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
12804
ac8c5689
PE
12805 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
12806 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
12807 void, not int.
12808 * tests/glr-regression.at (Badly Collapsed GLR States):
12809 Likewise.
12810 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
12811 yylex should return 0 at EOF rather than aborting.
12812
6100a9aa
PE
12813 Improve tests for stack overflow in GLR parser.
12814 Problem reported by twlevo@xs4all.nl.
12815 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
12816 All uses removed.
12817 (yyStackOverflow): Just longjmp, but with value 2 so that caller
12818 can handle the problem.
12819 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
12820 (yyparse): New local variable yyresult to record the result.
12821 Use result of setjmp to set it, rather than storing itinto
12822 struct.
12823 (yyDone): Remove label.
12824 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
12825 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
12826 if YYABORT is used).
12827 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
12828 yyparse status; put status > 1 into diagnostic.
12829 Check that status==2 works.
12830 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
12831 Use exit status 3 for failure to open (which shouldn't happen).
12832
15f40952
PE
128332005-07-17 Paul Eggert <eggert@cs.ucla.edu>
12834
67fd79c4
PE
12835 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
12836 1 on syntax error; just let yyparse do its thing.
12837 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
12838 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
12839 (Exploding the Stack Size with Alloca):
12840 (Exploding the Stack Size with Malloc):
12841 Expect exit status 2, not 1, since the parser is supposed to blow
12842 its stack. Problem reported by twlevo@xs4all.nl.
12843
15f40952
PE
12844 * data/glr.c (yyparse): Don't assume that the initial calls
12845 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
12846 Print a stack-overflow message and fail instead.
12847 Initialize the line-number information before creating the stack,
12848 so that the stack-overflow message can report line zero safely.
12849
f32c66b5
PE
128502005-07-14 Paul Eggert <eggert@cs.ucla.edu>
12851
a22ff96f 12852 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
12853 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
12854 (yyuserMerge): Provide a default case if b4_mergers is empty.
12855 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
12856 * tests/glr-regression.at
12857 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 12858 Add casts to pacify C++ compilers.
1beb0b24
PE
12859 * tests/glr-regression.at (Improper merging of GLR delayed action
12860 sets): Declare yylex before using it.
f32c66b5 12861 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
12862 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
12863 test for valgrind; valgrind is independent of g++.
12864 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
12865 for compatibility with POSIX 1003.1-2001 (if running coreutils).
12866 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
12867 Use a destructor, so that we can expand the stack. Change
12868 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 12869
d741bd1b
PE
128702005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12871
12872 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
12873 a valgrind failure. Problem reported by twlevo@xs4all.nl.
12874
0410a6e0
PE
128752005-07-13 Paul Eggert <eggert@cs.ucla.edu>
12876
12877 * PACKAGING: New file, suggested by Bruno Haible and taken from
12878 similar wording in gettext's PACKAGING file.
12879 * NEWS: Mention PACKAGING.
12880 * Makefile.am (EXTRA_DIST): Add PACKAGING.
12881
f7ab6a50
PE
128822005-07-12 Paul Eggert <eggert@cs.ucla.edu>
12883
baf785db 12884 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
12885 * bootstrap: Get runtime translations into runtime-po.
12886 Create runtime-po files automatically, if possible.
12887 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
12888 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
12889 does not infringe on the user's name space.
12890 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
12891 * doc/bison.texinfo (Internationalization): Revamp the English
12892 and Texinfo syntax a bit, to try to make it clearer.
12893 (Bison Options, Option Cross Key): Mention --print-localedir.
12894 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
12895 YYENABLE_NLS. Quote a bit more.
12896 * runtime-po/.cvsignore: New file.
12897 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
12898 * runtime-po/Rules-quot: Remove; now created by bootstrap.
12899 * runtime-po/quot.sed: Likewise.
12900 * runtime-po/boldquot.sed: Likewise.
12901 * runtime-po/en@quot.header: Likewise.
12902 * runtime-po/en@boldquot.header: Likewise.
12903 * runtime-po/insert-header.sin: Likewise.
12904 * runtime-po/remove-potcdate.sin: Likewise.
12905 * runtime-po/Makevars: Likewise.
12906 * runtime-po/LINGUAS: Likewise.
12907 * runtime-po/de.po: Likewise; we will rely on the translation project
12908 to maintain this, so "bootstrap" should get it.
0410a6e0 12909 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
12910 its value.
12911 * src/main.c (main): Bind the bison-runtime domain, too.
12912
129132005-07-12 Bruno Haible <bruno@clisp.org>
12914
12915 * data/yacc.c: Include <libintl.h> when NLS is enabled.
12916 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
12917 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
12918 * runtime-po: New directory.
12919 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
12920 $(DOMAIN).pot-update rule, so that old messages are never dropped.
12921 * runtime-po/Rules-quot: New file, copied from po/.
12922 * runtime-po/quot.sed: Likewise.
12923 * runtime-po/boldquot.sed: Likewise.
12924 * runtime-po/en@quot.header: Likewise.
12925 * runtime-po/en@boldquot.header: Likewise.
12926 * runtime-po/insert-header.sin: Likewise.
12927 * runtime-po/remove-potcdate.sin: Likewise.
12928 * runtime-po/Makevars: New file.
12929 * runtime-po/POTFILES.in: New file.
12930 * runtime-po/LINGUAS: New file.
12931 * runtime-po/bison-runtime.pot: New file.
12932 * runtime-po/de.po: New file.
12933 * m4/bison.m4: New file.
12934 * Makefile.am (SUBDIRS): Add runtime-po.
12935 (aclocaldir, aclocal_DATA): New variables.
12936 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
12937 Define aclocaldir.
12938 * src/getargs.c (usage): Document --print-localedir option.
12939 (PRINT_LOCALEDIR_OPTION): New enum item.
12940 (long_options): Add --print-localedir option.
12941 (getargs): Handle --print-localedir option.
12942 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
12943 (Internationalization): New section.
12944
22dda0f0
AD
129452005-07-12 Akim Demaille <akim@epita.fr>
12946
12947 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
12948 for consistency with the rest of the code.
12949 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
12950 Add separators.
12951
82b248ad
AD
129522005-07-12 Akim Demaille <akim@epita.fr>
12953
12954 * src/parse-gram.y: Use %printer instead of YYPRINT.
12955
fa0e9314
AD
129562005-07-12 Akim Demaille <akim@epita.fr>
12957
867a3e00
AD
12958 * src/symtab.h, src/symtab.c (symbol_print): New.
12959 * src/symlist.h, src/symlist.c (symbol_list_print): New.
12960 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
12961
129622005-07-12 Akim Demaille <akim@epita.fr>
12963
12964 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
12965 b4_at_dollar and b4_dollar_dollar.
12966
e054b190
PE
129672005-07-11 Paul Eggert <eggert@cs.ucla.edu>
12968
12969 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
12970 and Pennello's paper.
12971
34160ec4
PE
129722005-07-09 Paul Eggert <eggert@cs.ucla.edu>
12973
407d4a75
PE
12974 * data/yacc.c (yyparse): Undo previous patch. Instead,
12975 set yylsp[0] and yyvsp[0] only if the initial action
12976 sets yylloc and yylval, respectively.
12977
34160ec4
PE
12978 * data/yacc.c (yyparse): In the initial action, set
12979 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
12980 This avoids the use of undefined variables if the initial
12981 action does not set yylloc and/or yylval.
12982
c3d5a4a7
PE
129832005-07-07 Paul Eggert <eggert@cs.ucla.edu>
12984
b34d96c1
PE
12985 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
12986 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
12987 Remove from CVS. These files are automatically generated.
12988 * examples/extexi: Clarify that this file is now part of Bison,
12989 not GNU M4, and that it works with any POSIX-compatible Awk.
12990 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
12991 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
12992 so that we also get calc++-parser.yy. Geneate it.
12993 Use $(AWK), not gawk, since any conforming Awk will do.
12994 Put comment before action, since older 'make' can't handle comment
12995 in action.
12996 $(BUILT_SOURCES): List all built sources, not just some of them.
12997 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
12998 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
12999 $($(calc_sources_generated)): Remove unnecessary test for existence
13000 of target. (This had a shell syntax error anyway; a stray "x".)
13001 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
13002 calc++-parser.yy.
13003 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
13004
c3d5a4a7
PE
13005 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
13006 implied by the other modules.
13007
828c373b
AD
130082005-07-06 Akim Demaille <akim@epita.fr>
13009
13010 Bind examples/calc++ to the package.
13011 * examples/calc++/Makefile: Remove, replaced by...
13012 * examples/calc++/Makefile.am: ... this new file.
13013 * examples/calc++/test: Remove input.
13014 * examples/calc++/compile: Remove.
13015 * examples/Makefile.am: New.
13016 * configure.ac, Makefile.am: Adjust.
13017 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
13018
63cb01d6
PE
130192005-07-05 Paul Eggert <eggert@cs.ucla.edu>
13020
fd2df2ed
PE
13021 * data/glr.c (yyFail): Drastically simplify; since the format argument
13022 never had any % directives, we can simply pass it to yyerror.
13023 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
13024 be modified later, as that is the usual style in glr.c.
13025 Problems reported by Paul Hilfinger.
13026
63cb01d6
PE
13027 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
13028 and size overflow errors.
13029 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
13030 in case the user prolog sets feature-test macros like _GNU_SOURCE.
13031 (YYSIZEMAX): New macro.
13032 (yystpcpy): New function, taken from yacc.c.
13033 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
13034 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
13035 so that we don't have to maintain their signatures.
13036 (yyFail): Check for buffer overflow, by using vsnprintf rather
13037 than vsprintf. Allocate a bigger buffer if possible.
13038 Report an error if buffer allocation fails.
13039 (yyStackOverflow): New function.
13040 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
13041 the initialization was successful. It might fail if storage was
13042 exhausted.
13043 (yyexpandGLRStack): Add more checks for storage allocation failure.
13044 Use yyStackOverflow to report failures.
13045 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
13046 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
13047 Don't assume stack number fits in int.
13048 (yysplitStack): Check for storage allocation failure.
13049 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
13050 can print diagnostics on storage allocation failure. All callers
13051 changed.
13052 (yyresolveValue): Use yybool for boolean.
13053 (yyreportSyntaxError): Check for size-calculation overflow.
13054 This code is taken from yacc.c.
13055 (yyparse): Check for storage allocation errors when allocating
13056 the initial stack.
13057
1c59e0a1
AD
130582005-07-05 Akim Demaille <akim@epita.fr>
13059
13060 Extract calc++ from the documentation.
13061 * doc/bison.texinfo (Calc++): Add the extraction marks.
13062 * examples/extexi: New, from the aborted GNU Programming 2E.
13063 Separate the different paragraph of a file with empty lines.
13064 * examples/Makefile: Use it to extract the whole calc++ example.
13065
8a0adb01
AD
130662005-06-24 Akim Demaille <akim@epita.fr>
13067
13068 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
13069 class typedefs.
13070
12545799
AD
130712005-06-22 Akim Demaille <akim@epita.fr>
13072
13073 * doc/bison.texinfo (C++ Language Interface): First stab.
13074 (C++ Parsers): Remove.
13075
99be0235
AD
130762005-06-22 Akim Demaille <akim@epita.fr>
13077
13078 * data/lalr1.cc (yylex_): Honor %lex-param.
13079
0ffd4fd1
AD
130802005-06-22 Akim Demaille <akim@epita.fr>
13081
13082 Start a set of simple examples.
13083 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
13084 * examples/calc++/calc++-driver.hh,
13085 * examples/calc++/calc++-parser.yy,
13086 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
13087 * examples/calc++/compile, examples/calc++/test: New.
13088
0925ebb4
PE
130892005-06-09 Paul Eggert <eggert@cs.ucla.edu>
13090
13091 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
13092 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
13093 which stems from the 2005-05-27 patch.
13094
43d3b664
PH
130952005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
13096
13097 * data/glr.c: Modify treatment of unused parameters to permit use
13098 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
13099
3062864d
PE
131002005-05-30 Paul Eggert <eggert@cs.ucla.edu>
13101
13102 Fix infringement on user name space reported by Janos Zoltan Szabo.
13103 * data/yacc.c (yyparse): strlen -> yystrlen.
13104
989b5b8e
AD
131052005-05-30 Akim Demaille <akim@epita.fr>
13106
13107 * data/lalr1.cc (_): New.
13108 Translate the various messages.
13109
bedf57f5
PE
131102005-05-27 Paul Eggert <eggert@cs.ucla.edu>
13111
13112 Fix infringement on user name space reported by Bruno Haible.
13113 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
13114 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
13115 the user's name space.
13116 (alloca): Include <stdlib.h> to get it, if it's not built in.
13117 (YYMALLOC, YYFREE): Define only if needed.
13118 (malloc, free): Declare, but only if needed, as this infringes on
13119 the user name space.
13120
4d1801f1
PE
131212005-05-25 Paul Eggert <eggert@cs.ucla.edu>
13122
13123 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
13124 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
13125 with %d format.
13126 * lib/ebitset.c (min, max): Undef before defining.
13127 * lib/vbitset.c (min, max): Likewise.
13128 * lib/subpipe.c (create_subpipe): Save local variables in case
13129 vfork clobbers them.
13130
131312005-05-24 Bruno Haible <bruno@clisp.org>
13132
13133 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
13134 error message syntax used by gcc-4.0.
13135
b94a9e1e
PE
131362005-05-23 Paul Eggert <eggert@cs.ucla.edu>
13137
85ac3861
PE
13138 * README: Mention m4 1.4.3. Remove obsolete advice about
13139 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
13140
b94a9e1e
PE
13141 * bootstrap: Remove workaround for problem I encountered with
13142 gettext 0.14.1; it seems to be fixed now.
13143
51c30d21
PE
131442005-05-22 Paul Eggert <eggert@cs.ucla.edu>
13145
009ce67d
PE
13146 * NEWS: Version 2.0a.
13147
f2a97c62
PE
13148 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
13149 the previous change.
13150
c8775f93
PE
13151 Various maintainer cleanups.
13152 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
13153 conftest*, for benefit of CVS commands run at the same time as
13154 "configure". Add build-aux, since "bootstrap" now creates it and
13155 its subfiles.
13156 * Makefile.cfg (move_if_change): Remove.
13157 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
13158 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
13159 (po_repo, do-po-update, po-update, wget_files, get-targets):
13160 (config.guess-url_prefix, config.sub-url_prefix):
13161 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
13162 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
13163 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
13164 Remove.
13165 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
13166 this is now the recommended name.
13167 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
13168 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
13169 ylwrap. These files now go into build-aux.
13170 * config/move-if-change: Remove.
13171 * config/prev-version.txt: Bump from 1.75 to 2.0.
13172
3ea5f0ec
PE
13173 * bootstrap: Add stdio-safer, unistd-safer modules.
13174 Remove m4/glibc2.m4 (introduced by latest gnulib, but
13175 we don't need it).
13176 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
13177 fopen-safer.c, stdio-safer.h, unistd-safer.h.
13178 * lib/subpipe.c: Include "unistd-safer.h".
13179 (create_subpipe): Make sure all the newly-created
13180 file descriptors are > 2, so that diagnostics don't
13181 get sent down them (which might cause Bison to hang, in theory).
13182 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
13183 * src/files.c (xfopen): Use fopen_safer, not fopen.
13184
51c30d21
PE
13185 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
13186 yesterday's yacc.c fix.
13187
cea1469d
PE
131882005-05-21 Paul Eggert <eggert@cs.ucla.edu>
13189
3ea5f0ec
PE
13190 * data/glr.c, data/lalr1.cc: Update copyright date.
13191
cea1469d
PE
13192 Fix a destructor bug reported by Wolfgang Spraul in
13193 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
13194 * data/yacc.c (yyabortlab): Don't call destructor, and
13195 don't set yychar to EMPTY.
13196 (yyoverflowlab): Don't call destructor.
13197 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
13198 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
13199 since we no longer output the message "discarding lookahead token
13200 end of input ()".
13201
5e6f62f2
PH
132022005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13203
13204 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
13205 fix a small glitch in debugging output.
13206 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
13207 after YY_SYMBOL_PRINT where needed.
13208
13209 (struct yyGLRState): Add some comments.
13210 (struct yySemanticOption): Add some comments.
13211 (union yyGLRStackItem): Add comment.
13212
13213 (yymergeOptionSets): Correct this to properly perform the union,
13214 avoiding infinite reported by Michael Rosien.
13215 Update comment.
13216
13217 * tests/glr-regression.at: Add test for GLR merging error reported
13218 by M. Rosien.
cea1469d 13219
0fb669f9
PE
132202005-05-13 Paul Eggert <eggert@cs.ucla.edu>
13221
13222 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
13223 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
13224 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
13225 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
13226 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
13227 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
13228 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
13229 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
13230 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
13231 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
13232 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
13233 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
13234 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
13235 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
13236 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
13237 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
13238 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
13239 src/derives.h, src/files.c, src/files.h, src/getargs.c,
13240 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
13241 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
13242 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
13243 src/output.h, src/parse-gram.c, src/parse-gram.h,
13244 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
13245 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
13246 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
13247 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
13248 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
13249 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
13250 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
13251 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
13252 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
13253 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
13254 tests/reduce.at, tests/regression.at, tests/sets.at,
13255 tests/synclines.at, tests/testsuite.at, tests/torture.at:
13256 Update FSF postal mail address.
13257
51f4735e
PE
132582005-05-11 Paul Eggert <eggert@cs.ucla.edu>
13259
13260 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
13261 Problem reported by Ralf Menzel.
13262
80ce3401
PE
132632005-05-01 Paul Eggert <eggert@cs.ucla.edu>
13264
13265 * tests/actions.at: Test that stack overflow invokes destructors.
13266 From Marcus Holland-Moritz.
13267 * data/yacc.c (yyerrlab): Move the code that destroys the stack
13268 from here....
13269 (yyreturn): to here. That way, destructors are called properly
13270 even if the stack overflows, or the user calls YYACCEPT or
13271 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
13272 (yyoverflowlab): Destroy the lookahead.
13273
132742005-04-24 Paul Eggert <eggert@cs.ucla.edu>
13275
13276 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
13277
72f000b0
PE
132782005-04-17 Paul Eggert <eggert@cs.ucla.edu>
13279
13280 * NEWS: Bison-generated C parsers no longer quote literal strings
13281 associated with tokens.
13282 * src/output.c (prepare_symbols): Don't escape strings,
13283 since users don't want to see C escapes.
13284 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
13285 in diagnostics.
c19683bb 13286 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
13287 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
13288
1094323f
PE
132892005-04-16 Paul Eggert <eggert@cs.ucla.edu>
13290
13291 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
13292 the data size is known to be too small and we can't increase it.
13293 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
13294
ca407bdf
PE
132952005-04-15 Paul Eggert <eggert@cs.ucla.edu>
13296
13297 * src/parse-gram.y: Include quotearg.h.
13298 (string_as_id): Quote $1 before using it as a key, since the
13299 lexer no longer quotes it for us.
13300 (string_content): Don't strip quotes, since lexer no longer
13301 quotes it for us.
13302 * src/scan-gram.l: Include quotearg.h.
13303 ("\""): Omit quote.
13304 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
13305 a key, since the rest of the lexer doesn't quote it.
13306 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
13307 * tests/regression.at (Token definitions): Check for backslashes
13308 in token strings.
13309
13310 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
13311 (YYSIZE_T): Define to unsigned long int when using an older compiler.
13312 (yyparse): Revamp code to generate long syntax error message, to
13313 make it easier to translate, and to avoid problems with arithmetic
13314 overflow. Change "virtual memory" to "memory" in diagnostic, since
13315 we don't know whether the memory is virtual.
13316
1ce59070
PE
133172005-04-13 Paul Eggert <eggert@cs.ucla.edu>
13318
13319 * NEWS: Bison-generated C parsers now use the _ macro to
13320 translate strings.
13321 * data/yacc.c (_) [!defined _]: New macro.
13322 All English strings wrapped inside this macro.
13323 * doc/bison.texinfo (Bison Parser): Document _.
13324 * po/POTFILES.in: Include src/parse-gram.c, since it now
13325 includes translateable strings that parse-gram.y doesn't.
13326
a749a695
PE
133272005-04-12 Paul Eggert <eggert@cs.ucla.edu>
13328
13329 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
13330 reverting the 2004-10-11 change to this function.
13331 (symbol_check_alias_consistency): Don't call symbol_type_set
13332 if the type name is already correct.
13333 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
13334
8fb1053b
PE
133352005-03-25 Paul Eggert <eggert@cs.ucla.edu>
13336
13337 * tests/regression.at (Token definitions): Don't use a token named
13338 c, as that generates a "#define c ..." that runs afoul of buggy
13339 stdlib.h that uses the identifier c as a member of struct
13340 drand48_data. Problem reported by Horst Wente.
13341
ff498c4a
PE
133422005-03-21 Paul Eggert <eggert@cs.ucla.edu>
13343
13344 * bootstrap: Change translation URL from
13345 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
13346 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
13347 redirection glitches. Problem reported by twlevo@xs4all.nl.
13348
65211d70
PE
133492005-03-20 Paul Eggert <eggert@cs.ucla.edu>
13350
13351 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
13352 after operands; POSIX says this isn't portable for the c99 command.
13353
9577fb1f
PE
133542005-03-18 Paul Eggert <eggert@cs.ucla.edu>
13355
13356 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
13357 immediately if a data overrun has occurred; this may help us track
13358 down what may be a spurious failure on MacOS.
13359
78b178f7
PE
133602005-03-17 Paul Eggert <eggert@cs.ucla.edu>
13361
a2599d0f
PE
13362 Respond to problems reported by twlevo@xs4all.nl.
13363
13364 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
13365
78b178f7
PE
13366 * src/vcg.h: Comment fix.
13367 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
13368 (G_CMAX): Change to -1 instead of INT_MAX.
13369
13370 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 13371
7296e729
PE
133722005-03-15 Paul Eggert <eggert@cs.ucla.edu>
13373
13374 * src/tables.c (state_number_to_vector_number): Put it inside an
13375 "#if 0", since it's not currently used. Problem reported by
13376 Roland McGrath.
13377
05ac60f3
PE
133782005-03-06 Paul Eggert <eggert@cs.ucla.edu>
13379
13380 * src/output.c (escaped_output): Renamed from
13381 escaped_file_name_output, since we now use it for symbol tags as
13382 well. All uses changed.
13383 (symbol_destructors_output, symbol_printers_output):
13384 Escape symbol tags too.
13385 Problem reported by Matyas Forstner in
13386 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
13387
13388 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
13389 not needed.
13390 * src/output.c (user_actions_output, token_definitions_output,
13391 symbol_destructors_output, symbol_printers_output): Likewise.
13392 * src/reader.c (prologue_augment): Likewise.
13393 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
13394
13395 * src/vcg.c (output_edge): Don't quote linestyle arg.
13396 Problem reported by twlevo@xs4all.nl.
13397
7eb453ac
PE
133982005-02-28 Paul Eggert <eggert@cs.ucla.edu>
13399
13400 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
13401 example, reported by Derek M Jones. Also, make the example even
13402 more outrageous, to better illustrate how bad the problem is.
13403
4c04c52a
PE
134042005-02-24 Paul Eggert <eggert@cs.ucla.edu>
13405
13406 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
13407 putsym. Typo reported by Sebastian Piping.
13408
a61e1620
PE
134092005-02-23 Paul Eggert <eggert@cs.ucla.edu>
13410
13411 * doc/bison.texinfo (Language and Grammar): some -> same
13412 (Epilogue): int he -> in the
13413 Typos reported by Sebastian Piping via Justin Pence.
13414
9ec93868
PE
134152005-02-07 Paul Eggert <eggert@cs.ucla.edu>
13416
13417 * tests/glr-regression.at (Improper handling of embedded actions
13418 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
13419 embedded actions and $-N in GLR parsers", work around an Autoconf bug
13420 with dollar signs in test names.
13421 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
13422 for a similar reason.
13423
73ce7e7e
PE
134242005-01-28 Paul Eggert <eggert@cs.ucla.edu>
13425
13426 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
13427 wants to redefine G_VIEW.
13428
2e72b98e
PE
134292005-01-27 Paul Eggert <eggert@cs.ucla.edu>
13430
13431 * src/vcg.c (get_view_str): Remove case for normal_view.
13432 Problem reported by twlevo@xs4all.nl.
13433
e0d634e5
PE
134342005-01-24 Paul Eggert <eggert@cs.ucla.edu>
13435
ccf830a4
PE
13436 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
13437 Problem reported by twlevo@xs4all.nl.
13438
e0d634e5
PE
13439 * doc/bison.texinfo: Change @dircategory from "GNU programming
13440 tools" to "Software development". Requested by Richard Stallman
13441 via Karl Berry.
13442
7bbc8cb0
PE
134432005-01-23 Paul Eggert <eggert@cs.ucla.edu>
13444
13445 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
13446 Problem reported by twlevo@xs4all.nl.
13447
08b770bc
PE
134482005-01-21 Paul Eggert <eggert@cs.ucla.edu>
13449
13450 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
13451 keyword; it's not needed with modern compilers, and it doesn't
13452 affect correctness with older compilers. Suggested by
13453 twlevo@xs4all.nl.
13454
95f22ad2
PE
134552005-01-17 Paul Eggert <eggert@cs.ucla.edu>
13456
13457 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
13458 gcc -Wswitch-default.
13459 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
13460 * data/yacc.c (yyparse): Likewise.
13461
d229d15c
PE
134622005-01-12 Paul Eggert <eggert@cs.ucla.edu>
13463
13464 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
13465 already. Let config.h define any nonstandard values.
13466
ecadd90f
PE
134672005-01-10 Paul Eggert <eggert@cs.ucla.edu>
13468
13469 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
13470 for the benefit of slower hosts. Problem reported by
13471 Nelson H. F. Beebe.
13472
213744b5
PE
134732005-01-07 Paul Eggert <eggert@cs.ucla.edu>
13474
13475 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
13476 being defined and not used.
13477 * data/lalr1.cc (yyparse): Likewise.
13478 Use "if (false)" rather than "if (0)".
13479
249d3236
PE
134802005-01-05 Paul Eggert <eggert@cs.ucla.edu>
13481
13482 * TODO: Mention that we should allow NUL bytes in tokens.
13483
987cc1fb
PE
134842005-01-02 Paul Eggert <eggert@cs.ucla.edu>
13485
13486 * src/scan-skel.l (<<EOF>>): Don't close standard output.
13487 Problem reported by Hans Aberg.
13488
08fe02d9
PE
134892005-01-01 Paul Eggert <eggert@cs.ucla.edu>
13490
13491 * src/getargs.c (version): Happy new year; update overall
13492 program copyright date from 2004 to 2005.
13493
13494 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
13495 Problem reported by Hans Aberg.
13496 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
13497 (Output file names.): Add a test for the case when standard output
13498 is closed.
13499
010c0266
PE
135002004-12-26 Paul Eggert <eggert@cs.ucla.edu>
13501
13502 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
13503 to fix an oversight in the Bison 2.0 manual.
13504
da12206a
PE
135052004-12-25 Paul Eggert <eggert@cs.ucla.edu>
13506
13507 * NEWS: Version 2.0. Reformat the existing news items since
13508 1.875, so that related items are grouped together.
3a4734aa 13509 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
13510 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
13511
c935d934
PE
13512 * tests/torture.at (Exploding the Stack Size with Alloca): Set
13513 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
13514 otherwise, we're not testing alloca. Unfortunately there's no
13515 simple way to consult HAVE_ALLOCA here.
13516
da12206a
PE
13517 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
13518 for yymsg, too.
13519
13520 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
13521 hand. This avoids a warning about comparing int to size_t when
13522 GCC warnings are enabled.
13523
0a2c5137
PE
135242004-12-22 Paul Eggert <eggert@cs.ucla.edu>
13525
d7e14fc0
PE
13526 * NEWS: Bison-generated parsers no longer default to using the
13527 alloca function (when available) to extend the parser stack, due
13528 to widespread problems in unchecked stack-overflow detection.
13529 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
13530 responsibility to set it to a positive value. This lets the user
13531 specify a value that is not a preprocessor constant.
13532 * data/yacc.c (YYMAXDEPTH): Likewise.
13533 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
13534 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
13535 to be a compile-time constant. However, explain the constraints on it.
13536 Also, explain the constraints on YYINITDEPTH.
13537 (Table of Symbols): Explain that alloca is no longer the default.
13538 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
13539 to 1.
13540
0a2c5137
PE
13541 * doc/bison.texinfo (Location Default Action): Mention that n must
13542 be zero when k is zero. Suggested by Frank Heckenbach.
13543
e019c247
AD
135442004-12-22 Akim Demaille <akim@epita.fr>
13545
13546 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
13547 (parser::state_type, parser::semantic_type, parser::location_type):
13548 Private, not public.
13549 (parser::parse): Return ints, not bool.
13550 Returning a bool introduces a problem: 0 corresponds to false, and
13551 it seems weird to return false on success. Returning true changes
13552 the conventions for yyparse.
13553 Alternatively we could return void and send an exception.
13554 There is no clear consensus (yet?).
13555 (state_stack, semantic_stack, location_stack): Rename as...
13556 (state_stack_type, semantic_stack_type, location_stack_type): these.
13557 Private, not public.
13558 * tests/c++.at: New.
13559 * tests/testsuite.at, tests/Makefile.am: Adjust.
13560
72731bb7
AD
135612004-12-21 Akim Demaille <akim@epita.fr>
13562
13563 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
13564
9a0d8bec
AD
135652004-12-21 Akim Demaille <akim@epita.fr>
13566
13567 Don't impose std::string for filenames.
13568
13569 * data/lalr1.cc (b4_filename_type): New.
13570 (position::filename): Use it.
13571 (parser.hh): Move the inclusion of stack.hh and location.hh below
13572 the user code, so that needed headers for the filename type can be
13573 included first.
72731bb7
AD
13574 Forward declare them before the user code.
13575 * tests/Makefile.am (check-local, installcheck-local): Pass
13576 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 13577
99880de5
AD
135782004-12-20 Akim Demaille <akim@epita.fr>
13579
13580 Use more STL like names: my_class instead of MyClass.
13581
13582 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
13583 (SemanticStack, SemanticType, StateStack, StateType)
13584 (TokenNumberType, Stack, Slice, Traits, Parser::location)
13585 (Parser::value): Rename as...
13586 (location_stack, location_type, rhs_number_type, semantic_stack)
13587 (semantic_type, state_stack, state_type, token_number_type, stack)
13588 (slice, traits, parser::yylloc, parser::yylval): these.
13589
13590 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
13591
9bec482e
PE
135922004-12-19 Paul Eggert <eggert@cs.ucla.edu>
13593
13594 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
13595 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
13596
f6fbd3da
PE
135972004-12-17 Paul Eggert <eggert@cs.ucla.edu>
13598
13599 Remove uses of 'short int' and 'unsigned short int'. This raises
13600 some arbitrary limits. It uses more memory but nowadays that's
13601 not much of an issue.
13602
13603 This change does not affect the generated parsers; that's a different
13604 task, as some users will want to conserve memory there.
13605
13606 Ideally we should use size_t to represent all object counts, and
13607 something like ptrdiff_t to represent signed differences of object
13608 counts; but that will require more code-cleanup than I have the
13609 time to do right now.
13610
13611 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
13612 Use size_t, not int or short int, to count objects.
13613 * src/closure.c (nritemset, closure): Likewise.
13614 * src/closure.h (nritemset, closure): Likewise.
13615 * src/nullable.c (nullable_compute): Likewise.
13616 * src/print.c (print_core): Likewise.
13617 * src/print_graph.c (print_core): Likewise.
13618 * src/state.c (state_compare, state_hash): Likewise.
13619 * src/state.h (struct state): Likewise.
13620 * src/tables.c (default_goto, goto_actions): Likewise.
13621
13622 * src/gram.h (rule_number, rule): Use int, not short int.
13623 * src/output.c (prepare_rules): Likewise.
13624 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
13625 errs, reductions): Likewise.
13626 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
13627 Likewise.
13628 * src/tables.c (vector_number, tally, action_number,
13629 ACTION_NUMBER_MINIMUM): Likewise.
13630 * src/output.c (muscle_insert_short_int_table): Remove.
13631
efeed023
AD
136322004-12-17 Akim Demaille <akim@epita.fr>
13633
13634 * data/lalr1.cc: Extensive Doxygenation.
13635 (error_): Rename as...
13636 (error): this, since it is visible to the user.
13637 Adjust callers.
13638 (Parser::message): Now an automatic variable from...
13639 (Parser::yyreport_syntax_error_): here.
13640 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
13641 Parser::error.
13642 * tests/input.at: Escape $.
13643
bc82c5a5
PE
136442004-12-16 Paul Eggert <eggert@cs.ucla.edu>
13645
13646 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
13647 Parenthesize rhs to avoid obscure problems with mistakes like
13648 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
13649 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
13650 b4_rhs_location): Likewise.
13651 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
13652 b4_rhs_location): Likewise.
13653
fd19f271
AD
136542004-12-16 Akim Demaille <akim@epita.fr>
13655
13656 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
13657 yacc.c: be sure to stay within yycheck_.
13658 * tests/actions.at: Re-enable C++ tests.
13659
10454ea4
AD
136602004-12-16 Akim Demaille <akim@epita.fr>
13661
13662 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
13663 real.
13664
c5b95ccf
AD
136652004-12-16 Akim Demaille <akim@epita.fr>
13666
13667 Use #define to handle the %name-prefix.
13668
13669 * data/glr.c, data/yacc.c: Comment changes.
13670 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
13671 so that one can refer to yylex in the parser file, and have it
13672 renamed, as is the case with other skeletons.
13673
617a8f12
AD
136742004-12-16 Akim Demaille <akim@epita.fr>
13675
13676 Move lalr1.cc internals into yy*.
13677
13678 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
13679 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
13680 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
13681 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
13682 (empty_, final_, terror_, errcode_, ntokens_)
13683 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
13684 (looka_, ilooka_, error_range_, nerrs_):
13685 Rename as...
13686 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
13687 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
13688 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
13689 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
13690 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
13691 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
13692 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
13693 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
13694 these.
13695
1e547e6e
PE
136962004-12-15 Paul Eggert <eggert@cs.ucla.edu>
13697
13698 Fix some problems reported by twlevo at xs4all.
13699 * src/symtab.c (symbol_new): Report an error if the input grammar
13700 contains too many symbols. This is better than calling abort() later.
13701 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
13702 (struct node, struct graph):
13703 Rename member expand to stretch. All uses changed.
13704 (struct graph): Remove member layoutalgorithm. All uses removed.
13705 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
13706 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
13707 All uses changed.
13708 (N_STRETCH): Rename from N_EXPAND. All uses changed.
13709
735d6bd4
AD
137102004-12-15 Akim Demaille <akim@epita.fr>
13711
13712 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
13713 Add more Doxygen comments.
13714 (symprint_, stack_print_, reduce_print_, destruct_, pop)
13715 (report_syntax_error_, translate_): Rename as...
13716 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
13717 (yypop_, yyreport_syntax_error_, yytranslate_): this.
13718
2e1f5829
AD
137192004-12-15 Akim Demaille <akim@epita.fr>
13720
13721 * data/lalr1.cc (lex_): Rename as...
13722 (yylex_): this.
13723 Move the trace here.
13724 Take the %name-prefix into account.
13725 Reported by Alexandre Duret-Lutz.
13726
a3cb6248
AD
137272004-12-15 Akim Demaille <akim@epita.fr>
13728
13729 Simplify the C++ parser constructor.
13730
13731 * data/lalr1.cc (debug_): Rename as...
13732 (yydebug_): so that the parser's internals are always in the yy*
13733 pseudo namespace.
13734 Adjust uses.
13735 (b4_parse_param_decl): Remove the leading comma as it is now only
13736 called as unique argument list.
13737 (Parser::Parser): Remove the constructor accepting a location and
13738 an initial debugging level.
13739 Remove from the other ctor the argument for the debugging level.
13740 (debug_level_type, debug_level, set_debug_level): New.
13741
13742 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
13743 constructor calls.
13744
07fed891
AD
137452004-12-15 Akim Demaille <akim@epita.fr>
13746
13747 Remove b4_root related material: failure experiment
a3cb6248 13748 (which goal was to allow to derive from a class).
07fed891
AD
13749
13750 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
13751 definitions and uses.
13752
e603eaa5
PE
137532004-12-14 Paul Eggert <eggert@cs.ucla.edu>
13754
13755 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
13756 not 2, since it's not portable to subtract 1 from the start of an
13757 array. The new item 0 is never set or used. All uses changed.
13758
13759 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
13760 the default definition of YYLLOC_DEFAULT. Problem reported
13761 by Frank Heckenbach.
13762
fafb007d
PE
137632004-12-12 Paul Eggert <eggert@cs.ucla.edu>
13764
13765 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
13766 the normal case and one for the error case. Just use the
13767 first one uniformly. Problem reported by Frank Heckenbach.
13768 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
13769 use exactly the same macro in both places.
13770 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
13771 so that the normal-case YYRHSLOC works for the error case too.
13772 All uses changed.
13773 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
13774 (YYLLOC_DEFAULT): Use the same macro as glr.c.
13775 * doc/bison.texinfo (Location Default Action): Don't claim that
13776 we have an array of locations. Use the same macro for both glr
13777 and lalr parsers. Mention YYRHSLOC. Mention what happens when
13778 the index is 0.
13779
48814dcd
PE
137802004-12-10 Paul Eggert <eggert@cs.ucla.edu>
13781
a4e1a53b
PE
13782 * HACKING: Update email addresses to send announcements to.
13783
48814dcd
PE
13784 * configure.ac (AC_INIT): Bump version to 1.875f.
13785
337116ba
PE
137862004-12-10 Paul Eggert <eggert@cs.ucla.edu>
13787
13788 * NEWS: Version 1.875e.
13789 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
13790
13791 * src/scan-skel.l: Include "complain.h", for "fatal".
13792
13793 * src/relation.h (relation_print, relation_digraph):
13794 Relation sizes are of type relation_node, not size_t (this is
13795 merely a doc fix, since the two types are equivalent).
13796 (relation_transpose): Relation sizes are of type relation_node,
13797 not int.
13798 * src/relation.c: Likewise.
13799 (top, infinity): Now of type relation_node, not int.
13800 (traverse, relation_transpose): Use relation_node, not int.
13801
13802 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
13803 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
13804 (yyparse): Remove unused local introduced in 2004-10-25 patch.
13805
13806 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 13807 specifying whether the test should be skipped. Use it tp
337116ba 13808 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 13809 fail on some hosts, and should be skipped.
337116ba 13810
da2a7671
PE
138112004-12-08 Paul Eggert <eggert@cs.ucla.edu>
13812
13813 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
13814 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
13815 unless otherwise specified below.
13816
13817 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
13818 to allocate kernel_base, kernel_items, kernel_size, since
13819 they needn't be initialized to 0.
13820 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
13821 * src/closure.c (new_closure): Likewise, for itemset.
13822 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
13823 * src/lalr.c (set_goto_map): Likewise, for temp_map.
13824 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
13825 (build_relations): Likewise for edge, states1, includes.
13826 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
13827 * src/reader.c (packgram): Likewise, for ritem, rules.
13828 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
13829 * src/relation.c (relation_digraph): Likewise for VERTICES.
13830 (relation_transpose): Likewise for new_R, end_R.
13831 * src/symtab.c (symbols_token_translations_init): Likewise for
13832 token_translations.
13833 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
13834 (token_actions): Likewise for yydefact, actrow, conflrow,
13835 conflict_list.
13836 (save_column): Likewise for froms[symno], tos[symno].
13837 (goto_actions): Likewise for state_count.
13838 (pack_table): Likewise for base, pos, check.
13839 (tables_generate): Likewise for width.
13840
13841 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
13842 for initial core. Just have a separate core, so we needn't worry
13843 about whether kernel_size and kernel_base are initialized.
13844
13845 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
13846 kernel_size, kernel_items): Remove unnecessary initialization.
13847 * src/conflicts.c (conflicts): Likewise.
13848 * src/derives.c (derives): Likewise.
13849 * src/muscle_tablc (muscle_insert): Likewise.
13850 * src/relation.c (relation_digraph): Likewise.
13851 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
13852 conflrow, conflict_table, conflict_list, table, check):
13853 Likewise.
13854
13855 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
13856 This is because all callers pass unsigned int.
13857 * src/closure.h (new_closure): Likewise.
13858
13859 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
13860 (build_relations): Initialize includes[i] in all cases.
13861 * src/reader.c (packgram): Always initialize rules[ruleno].prec
13862 and rules[ruleno].precsym. Initialize members in order.
13863 * src/relation.c (relation_transpose): Always initialize new_R[i]
13864 and end_R[i].
13865 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
13866
13867 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
13868 conflict_list[0] was always 0, but now it isn't initialized.
13869
13870 * src/table.c (table_grow): When conflict_table grew, the grown
13871 area wasn't cleared. Fix this.
13872
13873 * lib/.cvsignore: Add strdup.c, strdup.h.
13874 * m4/.cvsignore: Add strdup.m4.
13875
00baeeac
PE
138762004-12-07 Paul Eggert <eggert@cs.ucla.edu>
13877
13878 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
13879 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
13880 GOTO_NUMBER_MAXIMUM, since we occasionally compute
13881 ngotos + 1 without checking for overflow.
13882 (build_relations): Use END_NODE, not -1, to denote end of edges.
13883 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
13884 build_relations): Use goto_number, not int, for goto numbers.
13885 * src/tables.c (save_column, default_goto): Likewise.
13886
be3d9d42
AD
138872004-11-23 Akim Demaille <akim@epita.fr>
13888
13889 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
13890 of #defining from yystype.
13891 Don't typedef yystype, C++ does not need it.
13892 This lets it possible to forward declare it as union.
13893
78e526d5
PE
138942004-11-23 Paul Eggert <eggert@cs.ucla.edu>
13895
13896 * bootstrap (gnulib_modules): Add extensions.
13897 Problem reported by Jim Meyering.
13898
afbb696d
PE
138992004-11-22 Paul Eggert <eggert@cs.ucla.edu>
13900
13901 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
13902 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
13903 src/system.h, src/tables.c: XFREE -> free, to accommodate
13904 recent change to gnulib xalloc.h.
78e526d5 13905 Problem reported by Jim Meyering.
afbb696d 13906
c1f8f16a
AD
139072004-11-17 Akim Demaille <akim@epita.fr>
13908
13909 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
13910
db7e5eb5 139112004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
13912 Alexandre Duret-Lutz <adl@gnu.org>
13913
13914 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
13915 changes.
13916 (YYCDEBUG): Adjust.
13917 Use it instead of cdebug_.
13918 (Parser::debug_stream, Parser::set_debug_stream): New.
13919 (Parser::symprint_): Define cdebug_ for temporary backward
13920 compatibility.
13921 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
13922 debug_stream ().
13923
68e11668
AD
139242004-11-17 Akim Demaille <akim@epita.fr>
13925
13926 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
13927 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
13928 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
13929 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
13930
97cbc73e
PE
139312004-10-27 Paul Eggert <eggert@cs.ucla.edu>
13932
13933 * data/glr.c (yyloc_default): Remove; not used.
13934 Problem reported by Frank Heckenbach.
13935
e342c3be
AD
139362004-10-25 Akim Demaille <akim@epita.fr>
13937
13938 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
13939 Introduce another definition to address simple location arrays.
13940 (yyGLRStack): New member: yyerror_range.
13941 (yyrecoverSyntaxError, yyparse): Update it.
13942 (yyrecoverSyntaxError): Use it when shifting the error token to
13943 have an accurate range, equivalent to the one computed by both
13944 yacc.c and lalr1.cc.
13945 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
13946 that column numbers start at column 0, as per GNU Coding
13947 Standards, the others tests, and the doc.
13948 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
13949 Adjust to the above change (first column is 0).
13950 And adjust the location of the "<error>", now covering the whole
13951 line.
13952
93602feb 139532004-10-22 Akim Demaille <akim@epita.fr>
04098407 13954 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
13955
13956 Remove some arbitrary limits on goto numbers and relations.
13957 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
13958 initial values, since they're never used.
13959 (set_goto_map): ngotos is now unsigned, so test for overflow
13960 by seeing whether it wraps around to zero.
13961 * src/lalr.h (goto_number): Now size_t, not short int.
13962 (GOTO_NUMBER_MAXIMUM): Remove.
13963 * src/relation.c (relation_print, traverse, relation_transpose):
13964 Check for END_NODE rather than looking at sign.
13965 * src/relation.h (END_NODE): New macro.
13966 (relation_node): Now size_t, not short int.
13967
dba08b04
PE
139682004-10-22 Paul Eggert <eggert@cs.ucla.edu>
13969
13970 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
13971 keyword, not an identifier. Problem reported by Baron Schwartz in
13972 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
13973
df09ef2e
AD
139742004-10-11 Akim Demaille <akim@epita.fr>
13975
13976 * src/symtab.c (symbol_check_alias_consistency): Also check
13977 type names, destructors, and printers.
13978 Reported by Alexandre Duret-Lutz.
13979 Recode the handling of associativity and precedence in terms
13980 of symbol_precedence_set.
13981 Accept no redeclaration at all, not even equal to the previous
13982 value.
13983 (redeclaration): New.
13984 Use it to factor redeclaration complaints.
13985 (symbol_make_alias): Don't set the type of the alias, let
13986 symbol_check_alias_consistency do it as for other features.
13987 * src/symtab.h (symbol): Add new member prec_location, and
13988 type_location.
13989 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
13990 * tests/input.at (Incompatible Aliases): New.
13991
146bc99d
PE
139922004-10-09 Paul Eggert <eggert@cs.ucla.edu>
13993
13994 .cvsignore fixes to accommodate gnulib changes,
13995 and the practice of naming build directories "_build".
13996 * .cvsignore: Add "_*". Sort.
13997 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
13998 * m4/.cvsignore: Add "*_gl.m4".
13999
e503aa60
AD
140002004-10-06 Akim Demaille <akim@epita.fr>
14001
14002 * src/parse-gram.y (add_param): Fix the truncation of trailing
14003 spaces.
14004
b4a20338
AD
140052004-10-05 Akim Demaille <akim@epita.fr>
14006
14007 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
14008 whether the reducion was empty or not. This leaves room to
14009 improve the use of YYLLOC_DEFAULT in such a case.
14010 lalr1.cc is still experimental, so changing this is acceptable.
14011 And finally, there are probably not many users who changed the
14012 handling of locations in GLR, so changing is admissible too.
14013
14014 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
14015 empty reduction, set @$ to an empty location ending the previously
14016 stacked symbol.
14017 Adjust uses to make sure the code is triggered on empty
14018 reductions.
14019 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
14020 expected output: empty reductions have empty locations.
14021
f85a5e6f
AD
140222004-09-29 Akim Demaille <akim@epita.fr>
14023
14024 * data/lalr1.cc: Move towards a more standard C++ coding style
14025 for templates: Class < T > -> Class<T>.
14026
b203fc2c
AD
140272004-09-29 Akim Demaille <akim@epita.fr>
14028
14029 * data/lalr1.cc: Reinstall the former ctor, for sake of
14030 compatibility, but warn it will be removed.
14031 Move towards a more standard C++ coding style (i.e., type *var ->
14032 type* var).
14033
5b7e1e73
PE
140342004-09-27 Paul Eggert <eggert@cs.ucla.edu>
14035
3fee967f
PE
14036 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
14037 since it's less likely to work if NULs are involved in the future.
5b7e1e73 14038
0dcca5c2
AD
140392004-09-27 Akim Demaille <akim@epita.fr>
14040
14041 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
14042
6dde1c82
AD
140432004-09-27 Akim Demaille <akim@epita.fr>
14044
14045 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 14046 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
14047 and argument names.
14048 (b4_cc_constructor_call): Likewise.
14049
b233d555
AD
140502004-09-24 Akim Demaille <akim@epita.fr>
14051
14052 * src/parse-gram.y (add_param): Strip the leading and trailing
14053 blanks from a formal argument declaration.
14054 (YY_LOCATION_PRINT): New.
14055
619404e3
AD
140562004-09-24 Akim Demaille <akim@epita.fr>
14057
14058 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
14059 after the location.
14060
dd8d9022
AD
140612004-09-24 Akim Demaille <akim@epita.fr>
14062
14063 * doc/bison.texinfo (Table of Symbols): Sort.
14064
0092f063
AD
140652004-09-21 Akim Demaille <akim@epita.fr>
14066
14067 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
14068 the useless parentheses.
14069 Suggested by Paul Eggert.
14070
451364ed
AD
140712004-09-20 Akim Demaille <akim@epita.fr>
14072
14073 Let the initial-action act on the look-ahead, and use it for the
14074 "initial push" (corresponding to an hypothetical beginning-of-file).
14075 And let lalr1.cc honor %initial-action.
14076
14077 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
14078 example.
14079 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
14080 (Parser::Parser): Remove the ctor that used to initialize it.
14081 (Parser::parse): Like in the other skeletons, issue the "starting
14082 parse" message before any action.
14083 Honor %initial-action.
14084 Initialize the stacks with the lookahead.
14085 * data/yacc.c: Let $$ and @$ in %initial-action designate the
14086 look-ahead.
14087 Push them in the stacks.
14088 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
14089
18d192f0
AD
140902004-09-20 Akim Demaille <akim@epita.fr>
14091
14092 * doc/bison.texinfo (Initial Action Decl): New.
14093
b8458aa5
AD
140942004-09-20 Akim Demaille <akim@epita.fr>
14095
14096 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
14097 clearer criterion to define it.
14098 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
14099 When reducing on an empty RHS, use the latest stacked location as
14100 location.
14101 yylloc is not always available.
14102 * data/glr.c: Likewise.
14103 Also, honor initial-actions.
14104
3fc16193
AD
141052004-09-20 Akim Demaille <akim@epita.fr>
14106
14107 * data/yacc.c (YY_LOCATION_PRINT): New.
14108 Define when we know YYLTYPE's structure, i.e., when the default
14109 YYLLOC_DEFAULT is used.
14110 * data/c.m4 (b4_yysymprint_generate): Use it.
14111 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
14112 value of the result.
14113 (error_start_): Replace with...
14114 (error_range_): this location array.
14115 This allows to replace code relying on the implementation of
14116 locations by portable code.
14117 * data/yacc.c (yylerrsp): Replace with...
14118 (yyerror_range): this.
14119 Every time a token is popped, update yyerror_range[0], to have an
14120 accurate location for the error token.
14121 * data/glr.c (YY_LOCATION_PRINT): New.
14122 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
14123 deference a pointer.
14124 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
14125 report the location in %printers.
14126
14127 * src/scan-skel.l: Instead of abort, report error messages to ease
14128 understanding skeleton scanning failures.
14129
ecfe33e7
AD
141302004-09-16 Akim Demaille <akim@epita.fr>
14131
14132 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
14133 (iterator, const_iterator): these, to be more in the C++ spirit.
14134 Also, return reverse iterators so that when displaying the stack
14135 we display its bottom first.
14136 (Parser::stack_print_, Parser::reduce_print_): Match the messages
14137 from yacc.c.
14138 We should probably use vector here though.
14139
1576d44d
AD
141402004-09-16 Akim Demaille <akim@epita.fr>
14141
14142 Have more complete shift traces.
14143
14144 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
14145 to report Shifts instead of ad hoc YYDPRINTF invocations,
14146 including for the error token.
14147 * data/lalr1.cc (symprint_): Output the location.
14148 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
14149 output the location within the %printer.
14150 Activate GLR tests, at least to make sure they compile properly.
14151 They still don't pass though.
14152 * tests/calc.at: Adjust expect verbose output, since now "Entering
14153 state..." is on a different line than the "Shifting" message.
14154
9c66f418
AD
141552004-09-08 Akim Demaille <akim@epita.fr>
14156
14157 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
14158 Bison directive from the Bison file to the invocation of this
14159 macro, so that these directives are passed to
14160 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
14161 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
14162 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
14163 the extra Bison directives instead of the whole series.
14164 Change the grammar so that there are recoverable errors, and
14165 unrecoverable errors. Now we can have the parser give up before
14166 consuming the whole input. As a result we now can observe that
14167 the lookahead is freed when needed.
14168 Change the parser source to parse argv[1] instead of a hard coded
14169 string.
14170 Simplify yylex, and give a value and location to EOF.
14171 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
14172 passed directives already coded in the file.
14173 Add some tests to check the location of "error".
14174 For some tests, the C++ parser is correct, and not yacc.c.
14175 For other tests, they provide different, but unsatisfying, values,
14176 so keep the C++ value so that at least one parser is "correct"
14177 according to the test suite.
14178 (Actions after errors): Remove, this is subsumed by the
14179 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
14180
52d5733f
AD
141812004-09-06 Akim Demaille <akim@epita.fr>
14182
14183 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 14184 (Parser::pop): New.
52d5733f
AD
14185 Use it.
14186
a0e68930
AD
141872004-09-06 Akim Demaille <akim@epita.fr>
14188
14189 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
14190 argument, an informative message.
14191 Call YY_SYMBOL_PRINT.
14192 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
14193 * data/lalr1.cc (destruct_): Likewise.
14194 In addition, no longer depend on b4_yysymprint_generate and
14195 b4_yydestruct_generate to generate these functions, do it "by
14196 hand".
14197
e757bb10
AD
141982004-09-03 Akim Demaille <akim@epita.fr>
14199
14200 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
14201 invoked, yydestruct the lookahead.
14202 * tests/calc.at (Calculator $1): Update the expected lengths of
14203 traces: there is an added line for the discarded lookahead.
14204 * doc/bison.texinfo (Destructor Decl): Some rewording.
14205 Define "discarded" symbols.
14206
0fe1f06d
AD
142072004-09-02 Akim Demaille <akim@epita.fr>
14208
14209 * data/lalr1.cc (translate_, destruct_): No reason to be static.
14210
284acc8b
AD
142112004-09-02 Akim Demaille <akim@epita.fr>
14212
14213 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
14214 (YYDSYMPRINTF): Rename as...
14215 (YY_SYMBOL_PRINT): this.
14216 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
14217 two.
14218 Use it instead of direct symprint_ calls.
14219 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
14220 one.
14221
a5eb1ed2
AD
142222004-09-02 Akim Demaille <akim@epita.fr>
14223
b7c72fe1
AD
14224 * data/lalr1.cc (b4_yysymprint_generate): New.
14225 (symprint_): New member function, defined when YYDEBUG.
14226 Use it consistently instead of token/nterm debugging output by
14227 hand.
a5eb1ed2
AD
14228 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
14229 %printer calls to use cdebug_ when using lalr1.cc.
14230
417141dd
AD
142312004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
14232
14233 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
14234 with #ifdef YYDEBUG.
14235
2fa09258
AD
142362004-08-26 Akim Demaille <akim@epita.fr>
14237
14238 * doc/bison.texinfo (Implementing Loops): Rename as...
14239 (Implementing Gotos/Loops): this.
14240
9378b508
PE
142412004-08-13 Paul Eggert <eggert@cs.ucla.edu>
14242
14243 Adjust to latest gnulib.
14244 * bootstrap (gnulib_modules): Add xalloc-die.
14245 Set LC_ALL=C so that file names sort consistently.
14246 Prefer the gnulib copies of gettext.m4, glibc21.m4,
14247 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
14248 uintmax_t.m4, ulonglong.m4.
14249 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
14250 po.m4 since we are now using _gl.m4 instead.
14251
87a8ad5c
PE
142522004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
14253
14254 * src/scan-action.l: Remove. Scanning of semantic actions is
14255 handled in scan-gram.l.
14256
dca81a78
PE
142572004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
14258
14259 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
14260
14261 * src/location.h (struct): The file member is a uniqstr.
14262 (equal_boundaries): Use UNIQSTR_EQ for comparison.
14263
c9cbf7c5
PE
142642004-07-22 Paul Eggert <eggert@cs.ucla.edu>
14265
14266 Fix bug with non-%union parsers that have printers or destructors,
14267 which led to a Bison core dump. Reported by Peter Fales in
14268 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 14269
c9cbf7c5
PE
14270 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
14271 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
14272 not to our own type.
14273 * src/output.c (symbol_destructors_output, symbol_printers_output):
14274 Don't assume %union.
14275 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
14276 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
14277 UNION-FLAG. All callers changed.
14278 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
14279 Use type char, not unsigned int, when declaring an array of char;
14280 this lets us remove a cast.
14281 (Printers and Destructors): Add non-%union test cases.
14282
fa7e68c3
PE
142832004-06-21 Paul Eggert <eggert@cs.ucla.edu>
14284
14285 * doc/bison.texinfo: Minor editorial changes, mostly to the new
14286 GLR writeups. E.g., avoid frenchspacing and the future tense,
14287 change "lookahead" to "look-ahead", and change "wrt" to "with
14288 respect to".
2fa09258 14289
fa7e68c3
PE
142902004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
14291
14292 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
14293 New sections, split off from the GLR Parsers section. Put the new
14294 Simple GLR Parser near the start of the GLR section, for clarity.
14295 Rewrite connective text.
14296
99a9344e
PE
142972004-06-21 Frank Heckenbach <frank@g-n-u.de>
14298
14299 * doc/bison.texinfo (Simple GLR Parsers): New section.
14300
8dd162d3
PE
143012004-06-21 Paul Eggert <eggert@cs.ucla.edu>
14302
14303 * NEWS, TODO, doc/bison.texinfo:
14304 Use "look-ahead" instead of "lookahead", to be consistent.
14305 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
14306 while we're fixing "look-ahead".
14307 * src/conflicts.c (shift_set): Renamed from shiftset.
14308 (look_ahead_set): Renamed from lookaheadset.
14309 * src/print.c: Likewise.
14310 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
14311 name for "lookahead".
14312 (report_types, usage): Likewise.
14313 * src/getargs.h (report_look_ahead_tokens): Renamed from
14314 report_lookaheads.
14315 * src/lalr.c (compute_look_ahead_tokens): Renamed from
14316 compute_lookaheads.
14317 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
14318 (look_ahead_tokens_print): Renamed from lookaheads_print.
14319 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
14320 state_rule_lookaheads_print.
14321 * src/state.h: Likewise.
14322 (reductions.look_ahead_tokens): Renamed from lookaheads.
14323 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
14324 AT_DATA_LOOKAHEADS_GRAMMAR.
14325
57a90331
PE
143262004-06-03 Paul Eggert <eggert@cs.ucla.edu>
14327
14328 * README: Update location of patched M4 distribution.
14329
8ed3234a
PE
143302004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
14331
14332 Don't assume the C++ compiler takes the same arguments as the C compiler
14333 (trivial change).
14334 * configure.ac (O0CXXFLAGS): New var.
14335 * tests/atlocal.in (CXXFLAGS): Use it.
14336
07971983
PE
143372004-05-29 Paul Eggert <eggert@cs.ucla.edu>
14338
14339 Fix some "make check" problems with C++ reported by
14340 Albert Chin-A-Young for Tru64 C++ in this thread:
14341 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
14342
14343 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
14344 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
14345 Output to a .cc file for C++, not to a .c file.
14346 * tests/calc.at (AT_CHECK_CALC): Likewise.
14347 * tests/regression.at (AT_CHECK_DANCER): Likewise.
14348 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
14349
29058652
PE
143502004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
14351
14352 * tests/calc.at, tests/actions.at: Workaround for SGI
14353 C++ compiler. (trivial change)
14354
62cb8a99
PE
143552004-05-27 Paul Eggert <eggert@cs.ucla.edu>
14356
fd418816
PE
14357 Spent a few hours checking out which prerequisite versions the
14358 current sources actually require. I went all the way back to
14359 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
14360 a seemingly endless set of combinations of versions more recent
14361 than that. The bottom line is that the current sources require
14362 fairly recent versions of the build tools, and it'll be some work
14363 to change this.
14364 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
14365 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
14366 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
14367 Add comments explaining why those particular versions are
14368 currently needed.
2fa09258 14369
62cb8a99
PE
14370 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
14371 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 14372 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
14373
14374 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
14375 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
14376
caa52c10
PE
143772004-05-26 Paul Eggert <eggert@cs.ucla.edu>
14378
14379 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
14380 0.11.5. Suggested by Bruno Haible.
14381 * bootstrap: Remove gettext version checking.
14382
14383 * doc/bison.texinfo (Decl Summary): Also mention that %union
14384 can depend on prerequisite types. Problem reported by Tim
14385 Van Holder.
14386
4bfd5e4e
PE
143872004-05-25 Paul Eggert <eggert@cs.ucla.edu>
14388
2cef3017
PE
14389 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
14390 * README-alpha: Don't tell people not to package this.
14391
b9c85d5c
PE
14392 * bootstrap: Don't assume $(...) works; use `...` instead.
14393 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
14394 gettext better.
14395
4bfd5e4e
PE
14396 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
14397 put into the -d output file, and mention what to do if YYSTYPE is
14398 defined as a macro.
14399
6a36ff94
PE
144002004-05-24 Paul Eggert <eggert@cs.ucla.edu>
14401
6712933e
PE
14402 Undo change made earlier today: it caused autopoint to not bring
14403 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
14404 autopoint's.
14405
14406 * bootstrap: Check that gettext version matches what's in
14407 configure.ac. Warn users to ignore robots.txt ERROR 404.
14408 * bootstrap: Undo today's earlier change (logged below).
14409 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 14410
6a36ff94
PE
14411 The gettext version checking is causing more trouble than it's
14412 curing; remove it. Problem reported by Paul Hilfinger.
14413
14414 * bootstrap: Issue a warning that one can expect a message
14415 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
14416 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
14417
209ea708
PE
144182004-05-23 Paul Eggert <eggert@cs.ucla.edu>
14419
14420 Ensure that the C++ compiler used for testing actually works on a
14421 simple test program; if not, skip the C++-related tests. Problem
14422 reported by Vin Shelton in:
161a71f3 14423 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
14424
14425 * m4/cxx.m4: New file.
14426 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
14427 * tests/atlocal.in (BISON_CXX_WORKS): Add.
14428 * tests/local.at (AT_COMPILE_CXX): Use it.
14429
41ca2549
PE
144302004-05-21 Paul Eggert <eggert@cs.ucla.edu>
14431
383e69dc
PE
14432 * data/glr.c (yylloc): Output this macro even if locations are not
14433 being generated, as the GLR parser needs it even in that case.
14434 Problem reported by Troy A. Johnson
14435 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
14436
41ca2549
PE
14437 * configure.ac (AC_INIT): Update to 1.875e.
14438
e476c87d
PE
144392004-05-21 Paul Eggert <eggert@cs.ucla.edu>
14440
14441 * NEWS: Version 1.875d.
14442 * configure.ac (AC_INIT): Likewise.
14443 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
14444
14445 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
14446 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
14447 lalr1.cc runs afoul of the first, and the last two are no longer
14448 supported by GCC 3.4.0.
14449 * README: Mention GNU m4 1.4 or later; mention m4 patches.
14450 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
14451
233a88ad
PE
144522004-05-06 Paul Eggert <eggert@cs.ucla.edu>
14453
14454 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
14455 unsigned int, for compatibility with latest gnulib hash module.
14456 * src/state.c (state_hash, state_hasher): Likewise.
14457 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
14458 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 14459
12ffdd28
PE
144602004-05-03 Paul Eggert <eggert@cs.ucla.edu>
14461
14462 * NEWS: Unescaped newlines are no longer allowed in char & strings.
14463
14464 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
14465 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
14466 character and string literals.
14467 (unexpected_end): New function.
14468 (unexpected_eof): Use it.
14469 (unexpected_newline): New function.
14470 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
14471 actions.
e476c87d 14472
12ffdd28
PE
14473 * NEWS: Document %expect-rr.
14474
14475 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
14476 Fix typo by replacing $1 with $option.
14477 Remove more 'intl'-related files.
9668e2be 14478 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
14479
14480 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
14481 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
14482 strtoul.c.
14483 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
14484 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
14485 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
14486 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
14487 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
14488 * src/.cvsignore: Add *.output.
14489
14490 * src/parse-gram.y: Put copyright notice inside %{ %} so it
14491 gets copied to the output file.
e476c87d 14492
1f65350a
PE
144932004-04-28 Paul Eggert <eggert@twinsun.com>
14494
14495 Get files from the gnulib and po repositories, instead of relying
14496 on them being in our CVS. Upgrade to latest versions of gnulib
14497 and Automake.
14498
14499 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
14500 * bootstrap: Bootstrap from gnulib and po repositories.
14501 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
14502 * README-cvs: Document these changes. Remove version numbers from
14503 mentions of build tools, since they change so often. Mention Flex.
14504
14505 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
14506 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
14507 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
14508 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 14509 does this for us.
12ffdd28
PE
14510 (AC_ISC_POSIX): Remove; we no longer support this
14511 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
14512 (AC_HEADER_STDC): Remove: we now assume C89 or better.
14513 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
14514 Do not check for C89 headers, except for locale.h which is used
14515 by the Yacc library and must port to K&R hosts.
14516 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
14517 Do not check for C89 functions, except for setlocale which is
14518 used by the Yacc library.
14519 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
14520 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
14521 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
14522 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
14523 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
14524 AM_GNU_GETTEXT): Remove; now done by:
14525 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
14526 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
14527 for us.
14528
14529 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
14530 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
14531 Define to empty, as gnulib.mk will do the rest for us.
14532 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
14533 for us.
14534 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
14535 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
14536
14537 * src/files.c: Include gnulib's xstrndup.h.
14538
14539 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
14540 (REALLOC): Use xnrealloc, for likewise.
14541 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
14542 (strnlen, memrchr): Remove decls; functions no longer used.
14543 Include <stpcpy.h>.
14544
14545 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
14546 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
14547 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
14548 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
14549 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
14550 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
14551 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
14552 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
14553 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
14554 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
14555 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
14556 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
14557 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
14558 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
14559 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
14560 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
14561 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
14562 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
14563 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
14564 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
14565 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
14566 Remove, as these files are now generated automatically
14567 by bootstrap or automake.
14568
14569 * po/ChangeLog: Remove: all but one entry was a duplicate
14570 of this file, and I moved that 2000-11-02 entry here.
14571
14572 * config/.cvsignore: Add Makefile, depcomp, install-sh.
14573 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
14574 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
14575 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
14576 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
14577 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
14578 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
14579 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
14580 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
14581 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
14582 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
14583 xstrndup.h.
14584 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
14585 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
14586 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
14587 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
14588 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
14589 * src/.cvsignore: Remove *_.c.
14590
14591
14592 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
14593 support it. (The latest stable gzip doesn't.)
14594
145952004-04-27 Paul Eggert <eggert@twinsun.com>
14596
14597 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
14598 case, as stos_ is now used by destructors due to the 2004-02-09
14599 change.
14600
14601 Remove more K&R C support.
14602 * lib/libiberty.y (PARAMS): Remove. All uses removed.
14603 * lib/subpipe.c (errno): Remove decl.
14604 Include <stdlib.h> unconditionally.
14605 (EXIT_FAILURE): Remove macro.
14606 * src/complain.c (vfprintf, strerror): Remove.
14607 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
14608 unconditionally.
14609 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
14610 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
14611 (strchr, strspn, memchr): Remove decls.
14612 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
14613 unconditionally. Do not declare perror.
14614 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
14615 unconditionally.
14616
14617 * src/complain.c (_): Remove useless defn, as system.h defines this.
14618
14619 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
14620 with latest obstack.h.
14621 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
14622 to procedure types, as obstack.h now does that for us.
14623 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
14624
14625 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
14626 so that this include file can stand alone.
14627 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
14628 does this now. Include subpipe.h first after config.h, to
14629 test whether it can stand alone.
14630
14631 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
14632 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
14633 unused declaration.
14634
14635 * tests/synclines.at (%union synch line): Put a dummy member in
14636 the union, because empty unions aren't allowed in C. Caught
14637 by GCC 3.4.0.
14638
4f16766c
PE
146392004-04-13 Jim Meyering <jim@meyering.net>
14640
14641 * src/conflicts.c (conflicts_print): Correct format string typo:
14642 use `%%' to produce literal `%'. (trivial change)
14643
779e7ceb
PE
146442004-03-30 Paul Eggert <eggert@twinsun.com>
14645
14646 * src/getargs.c (version): Update copyright year to 2004.
14647
14648 * data/c.m4 (b4_int_type): Use 'short int' rather than
14649 'short', and similarly for 'long', 'unsigned', etc.
14650 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
14651 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
14652 yy_yypstack, yydumpstack): Likewise.
14653 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
14654 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
14655 Likewise.
14656 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
14657 yy_stack_print, yyparse): Likewise.
14658 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
14659 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
14660 * lib/bitset.c (bitset_print): Likewise.
14661 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
14662 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14663 * lib/bitsetv.c (bitsetv_dump): Likewise.
14664 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
14665 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
14666 Likewise.
14667 * src/LR0.c (allocate_itemsets): Likewise.
14668 * src/gram.h (rule_number, rule): Likewise.
14669 * src/lalr.h (goto_number): Likewise.
14670 * src/nullable.c (nullable_compute): Likewise.
14671 * src/output.c (prepare_rules): Likewise.
14672 * src/relation.c (relation_print, relation_digraph): Likewise.
14673 * src/relation.h (relation_node): Likewise.
14674 * src/state.h (state_number, transitions, errs, reductions,
14675 struct state): Likewise.
14676 * src/symtab.h (symbol_number, struct symbol): Likewise.
14677 * src/tables.c (vector_number, tally, action_number,
14678 default_goto, goto_actions): Likewise.
14679 * tests/existing.at (GNU Cim Grammar): Likewise.
14680 * tests/regression.at (Web2c Actions): Likewise.
14681
14682 * src/output.c (muscle_insert_short_int_table): Renamed from
14683 muscle_insert_short_table. All uses changed.
14684
d6328241
PH
146852004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
14686
14687 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
14688 (declaration): Replace expected_conflicts with expected_sr_conflicts.
14689 Add %expect-rr rule.
4f16766c 14690
d6328241
PH
14691 * src/scan-gram.l: Recognize %expect-rr.
14692
4f16766c 14693 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 14694 expected_conflicts.
4f16766c 14695 (expected_rr_conflicts): Declare.
d6328241
PH
14696
14697 * src/conflicts.c (expected_sr_conflicts): Rename from
14698 expected_conflicts.
14699 (expected_rr_conflicts): Define.
14700 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
14701 for GLR parsers.
14702 Use expected_sr_conflicts in place of expected_conflicts.
14703 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 14704
d6328241 14705 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 14706
1452af69
PE
147072004-03-08 Paul Eggert <eggert@gnu.org>
14708
14709 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 14710 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
14711
14712 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
14713 in lalr1.cc.
14714 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
14715 * src/scan-gram.l (scan_integer): New function.
14716 ({int}): Use it.
14717 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
14718 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
14719 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
14720 Say "long int", not "long", for uniformity with GNU style.
14721
006d217d
PE
147222004-02-25 Paul Eggert <eggert@twinsun.com>
14723
14724 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
14725 compilers. This fixes a problem with Intel's C++ compiler being
14726 chatty, reported by Guido Trentalancia in
161a71f3 14727 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 14728
c2729758
ADL
147292004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
14730
14731 Support %destructor and merge error locations in lalr1.cc.
14732
14733 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
14734 (Parser::stos_): Define unconditionally.
14735 (Parser::destruct_): New method. Generate its body with
14736 b4_yydestruct_generate.
14737 (Parser::error_start_): New attribute.
14738 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
14739 token which are discarded.
14740 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
14741 error_start_ when erroneous token are discarded.
14742 (Parser::parse) <yyerrlab1>: Compute the location of the error
14743 token so that it covers all the discarded tokens.
14744 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
14745 it can be called with `%skeleton "lalr1.cc"', and do that.
14746
dd0e0635
PE
147472004-02-02 Paul Eggert <eggert@twinsun.com>
14748
14749 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
14750 $(top_srcdir)/lib and ../lib. This fixes a bug reported
14751 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
14752 There's no need to mention top_builddir since Automake does that
14753 for us.
14754 (INCLUDES): Remove, as Automake says it's obsolescent.
14755 Contents migrated into AM_CPPFLAGS as described above.
14756 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
14757
147582004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
14759
14760 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
14761 (yyreportSyntaxError): Handle case where lookahead token is
14762 YYEMPTY.
14763
be16239b
PH
147642004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14765
14766 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
14767 resulting parsers are compilable with C++.
14768
5fa90832
PE
147692003-12-23 Paul Eggert <eggert@twinsun.com>
14770
14771 * config/depcomp, config/install-sh: Sync with Automake 1.8.
14772 * src/output.c (output_skeleton): Rename local var.
14773 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
14774 Bison tokens, as this runs afoul of the 2003-10-07 change that
14775 disallowed NUL bytes in character constants or string literals.
14776
14777 * tests/local.at: Require Autoconf 2.59's Autotest.
14778 * tests/testsuite.at: Don't include local.at, since we now assume
14779 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
14780 including it.
14781 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
14782 multiple inclusion warnings.
dd0e0635 14783
b165c324
AD
147842003-12-02 Akim Demaille <akim@epita.fr>
14785
14786 * doc/bison.texinfo (How Can I Reset the Parser): More about start
14787 conditions.
14788 From Bruno Haible.
14789
26e06a21
ADL
147902003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
14791
14792 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
14793
92ac3705
PE
147942003-10-07 Paul Eggert <eggert@twinsun.com>
14795
6a5ecb38
PE
14796 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
14797 if testsuite doesn't exist.
14798
92ac3705
PE
14799 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
14800 literals, unfortunately.
14801 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
14802 Complain about NUL bytes in character constants or string literals.
14803
91d2c560
PE
148042003-10-05 Paul Eggert <eggert@twinsun.com>
14805
14806 * NEWS: Don't document %no-default-prec, as it's still
14807 too experimental.
14808 * doc/bison.texinfo: Document %no-default-prec only if
14809 the defaultprec flag is set. Normally it's not.
14810
0cc3da3a
PE
148112003-10-04 Paul Eggert <eggert@twinsun.com>
14812
14813 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
14814 non-modifiable lvalue, instead of a modifiable one.
14815 * doc/bison.texinfo (Actions): Document that $$ can
14816 be assigned to. Do not claim that $$ and $N are
14817 array element references: user code should not rely on this.
14818
22fccf95
PE
148192003-10-01 Paul Eggert <eggert@twinsun.com>
14820
14821 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
14822 (grammar_declaration): Use it.
14823 * src/scan-gram.l: New token %no-default-prec.
14824 * tests/conflicts.at: Revamp tests to use %no-default-prec.
14825 * NEWS, doc/bison.texinfo: Document the above.
14826
fc8f2965
AD
148272003-10-01 Akim Demaille <akim@epita.fr>
14828
14829 VCG no longer supports long_straight_phase.
14830
14831 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
14832 * src/print_graph.c (print_graph): Adjust.
14833
39a06c25
PE
148342003-09-30 Frank Heckenbach <frank@g-n-u.de>
14835 and Paul Eggert <eggert@twinsun.com>
14836
14837 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
14838 Table of Symbols): Document %default-prec.
14839 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
14840 (grammar_declaration): Set default_prec on %default-prec.
14841 * src/scan-gram.l (%default-prec): New token.
14842 * src/reader.h (default_prec): New flag.
14843 * src/reader.c: Likewise.
14844 (packgram): Handle it.
14845 * tests/conflicts.at (%default-prec without %prec,
14846 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 14847
39a06c25
PE
148482003-09-30 Paul Eggert <eggert@twinsun.com>
14849
14850 * tests/testsuite.at: Include local.at, not input.at, fixing
14851 a typo in the 2003-08-25 patch.
14852
62b6aef9
AD
148532003-08-27 Akim Demaille <akim@epita.fr>
14854
14855 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
14856 GCC warnings.
14857
89e1cc61
AD
148582003-08-26 Akim Demaille <akim@epita.fr>
14859
14860 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
14861 "<\#" to avoid magic from Gnus when posting parts of this script.
14862
a08460b0
AD
148632003-08-26 Akim Demaille <akim@epita.fr>
14864
14865 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
14866 (Parser::parse): here.
14867 Adjust: nerrs and errstatus is now replaced by...
14868 (Parser::nerrs_, Parser::errstatus_): New.
14869
603f1cfd
AD
148702003-08-25 Akim Demaille <akim@epita.fr>
14871
14872 * config/announce-gen, Makefile.cfg: New.
14873 * Makefile.am: Adjust.
14874 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
14875 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
14876
cd3684cf
AD
148772003-08-25 Akim Demaille <akim@epita.fr>
14878
14879 When reducing initial empty rules, Bison parser read an initial
14880 location that is not defined. This results in garbage, and that
14881 affects Bison's own parser. Therefore we need (i) to extend Bison
14882 to support a means to initialize this location, and (ii) to use
14883 this CVS Bison to fix CVS Bison's parser.
14884
14885 * src/reader.h, reader.c (epilogue_augment): Remove, replace
14886 with...
14887 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
14888 * src/parse-gram.y: Adjust.
14889 (%initial-action): New.
14890 (%error-verbose): Since we require CVS Bison, there is no reason
14891 not to use it.
14892 * src/scan-gram.l: Adjust.
14893 * src/Makefile.am (YACC): New, to make sure we use our own parser.
14894 * data/yacc.c (yyparse): Use b4_initial_action.
14895
4e03e201
AD
148962003-08-25 Akim Demaille <akim@epita.fr>
14897
14898 * doc/bison.texinfo: Don't promote stdout for error messages.
14899
8c182d05
AD
149002003-08-25 Akim Demaille <akim@epita.fr>
14901
14902 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
14903 From Alexandre Duret-Lutz.
14904
6a60c4cf
PE
149052003-08-25 Akim Demaille <akim@epita.fr>
14906
14907 Version 1.875c.
14908
25f66e1a
AD
149092003-08-25 Akim Demaille <akim@epita.fr>
14910
14911 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
14912 Use them.
14913
5348bfbe
AD
149142003-08-25 Akim Demaille <akim@epita.fr>
14915
14916 * data/lalr1.cc (Parser::reduce_print_): New.
14917 Use it.
14918
47301314
AD
149192003-08-25 Akim Demaille <akim@epita.fr>
14920
14921 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
14922 error recovery loops. This patch is based on
161a71f3 14923 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
14924 Also, augment the similarity between lalr1.cc and yacc.c.
14925 Note: the locations of error recovery rules are not correct yet.
14926
14927 * data/lalr1.cc: Comment changes to augment the similarity between
14928 lalr1.cc and yacc.c.
14929 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
14930 (yyerrlab1): Remove, but where it used to be (now the bottom part of
14931 yyerrlab), when hitting EOF, pop the whole stack here instead of
14932 merely falling thru the default error handling mechanism.
14933 (yyerrorlab): New label, with the old contents of YYERROR,
14934 plus the following change: pop the stack of rhs corresponding
14935 to the production that invoked YYERROR. That is how Yacc
14936 behaves (required by POSIX).
14937 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
14938 fail.
14939
1f7a61ff
AD
149402003-08-25 Akim Demaille <akim@epita.fr>
14941
14942 Tune local.at so that people can "autom4te -l autotest calc.at -o
14943 calc" for instance, to extract a sub test suite.
14944
14945 * tests/testsuite.at: Move the initialization, Autotest version
14946 requirement, and AT_TESTED invocation into...
14947 * tests/local.at: here.
14948 * tests/testsuite.at: Include it for compatibility with Autoconf
14949 2.57.
14950 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
14951 be ignore.
14952
327b5b56
PE
149532003-08-04 Paul Eggert <eggert@twinsun.com>
14954
14955 Rework code slightly to avoid gcc -Wtraditional warnings.
14956 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
14957 The returned value is now stored in *YY0. All callers changed.
14958 * src/output.c (merge_output): Adjust to the above change.
14959
0051e3ed
PE
149602003-07-26 Paul Eggert <eggert@twinsun.com>
14961
14962 * data/glr.c (YYASSERT): New macro.
14963 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
14964 yyresolveStates, yyprocessOneStack):
14965 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
14966 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 14967
137437c6
PE
149682003-07-25 Paul Eggert <eggert@twinsun.com>
14969
5b620e06
PE
14970 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
14971 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 14972 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
14973 by Frank Heckenbach, though I have omitted the structure-initialization
14974 part of his glr-knr.diff patch since I recall that the Portable
14975 C Compiler didn't require that change.
14976
137437c6
PE
14977 Let the user specify how to allocate and free memory.
14978 Derived from a suggestion by Frank Heckenbach in
161a71f3 14979 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
14980 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
14981 All uses of free, malloc, realloc changed to use these macros,
14982 and unnecessary casts removed.
14983 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
14984
ddb85ca5
PE
149852003-07-06 Matthias Mann <MatthiasMann@gmx.de>
14986
14987 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
14988 use s.empty() rather than s == "" to test for empty string; see
161a71f3 14989 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
14990 (trivial change)
14991
39910e09
AD
149922003-06-25 Akim Demaille <akim@epita.fr>
14993
14994 * config/depcomp, config/install-sh: Update from masters.
14995
0ae99356
PE
149962003-06-20 Paul Eggert <eggert@twinsun.com>
14997
14998 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
14999 and return properly parenthesized result.
15000 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
15001 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
15002 Remove unnecessary parentheses from uses.
15003 * doc/bison.texinfo (Location Default Action): Describe the
15004 conventions for parentheses.
15005
cd05d13c
PE
150062003-06-19 Paul Eggert <eggert@twinsun.com>
15007
81fd08ca
PE
15008 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
15009 yyreportTree): Do not assume that size_t is the same width as int,
15010 when printing sizes. Print sizes using an unsigned format.
15011 Problem reported by Frank Heckenbach in
161a71f3 15012 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 15013
cd05d13c
PE
15014 Port to Forte Developer 7 C compiler.
15015 * data/glr.c (struct YYLTYPE): If locations are not being used,
15016 declare a single dummy member, as empty structs do not conform
15017 to the C standard.
15018 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
15019 the Forte Developer 7 C compiler complains that end-of-loop
15020 code is not reached.
15021
4dcf140b
PE
150222003-06-17 Paul Eggert <eggert@twinsun.com>
15023
15024 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
15025 avoid warnings from picky compilers about redefinition of PARAMS.
15026
8dd76bee
PE
150272003-06-17 Paul Eggert <eggert@twinsun.com>
15028
15029 Version 1.875b.
15030
15031 * NEWS: Document 1.875b.
15032
15033 * lib/bbitset.h: Do not include config.h; that's the includer's job.
15034 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
15035 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
15036 Don't use 'index' in comments, as it's a builtin fn on some hosts.
15037 * lib/bitset_stats.c: Include gettext.h unconditionally, as
15038 per recent gettext manual's suggestion.
15039 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
15040 Use prototypes, not old-style definitions.
15041 * lib/lbitset.c (lbitset_unused_clear): Likewise.
15042 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
15043 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
15044 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
15045 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
15046 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
15047 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
15048 vbitset_or_and_cmp, vbitset_copy): Likewise.
15049
15050 * lib/libiberty.h: Do not include config.h; that's the includer's job.
15051 Do not include <stdlib.h>.
15052 (PARAMS): Define unconditionally for C89.
15053 (ATTRIBUTE_NORETURN): Remove.
15054 (ATTRIBUTE_UNUSED): Define unconditionally.
15055
15056 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 15057 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
15058 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
15059 * lib/vbitset.c, lib/vbitset.h: New files.
15060 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
15061 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
15062 from libbitset.
15063
15064 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
15065 `How Can I Reset @code{yyparse}', since texinfo does not allow
15066 arbitrary @ in node names.
15067
15068 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
15069 shouldn't be needed according to the gettext 0.12.1 documentation
15070 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 15071 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 15072 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 15073 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 15074
8dd76bee
PE
15075 * lib/.cvsignore: Add stdbool.h.
15076 * m4/.cvsignore: Add nls.m4, po.m4.
15077
15078 Upgrade to CVS gnulib.
15079 * stdbool_.h: File renamed from stdbool.h.in.
15080 * configure.ac (AM_STDBOOL_H): Invoke this instead of
15081 AC_HEADER_STDBOOL.
15082 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
15083 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
15084 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
15085 (MOSTLYCLEANFILES): New var.
15086 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
15087 (stdbool.h): New rule.
15088 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
15089 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
15090 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
15091 m4/quote.m4: Upgrade to today's gnulib.
15092
15093 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
15094 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
15095 the tests right now.
15096 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
15097 yyerror are declared before use; C99 requires this.
15098
25005f6a
PH
150992003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15100
15101 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
15102 first.
15103 (yyrecoverSyntaxError): Correct the logic for setting and testing
15104 yyerrState.
15105 Correct comment on handling EOF.
15106 Allow states with only a default reduction, rather than failing
8dd76bee 15107 (I can't quite reconstruct why these were not allowed before).
25005f6a 15108
137437c6 15109 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 15110 buffer overruns, corrupting state.
8dd76bee
PE
15111
15112 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
15113 definition.
15114 * src/reader.h (max_left_semantic_context): New variable declaration.
15115 * src/scan-gram.l (max_left_semantic_context): Define.
15116 (handle_action_dollar): Update max_left_semantic_context.
15117 * data/glr.c (YYMAXLEFT): New definition.
15118 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
15119 (yyresolveAction): Ditto.
15120
15121 Fixes to problems with location handling in GLR parsers reported by
15122 Frank Heckenbach (2003/06/05).
15123
15124 * data/glr.c (YYLTYPE): Make trivial if locations not used.
15125 (YYRHSLOC): Add parentheses, and define only if locations used.
15126 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
15127 locations not used.
15128 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
15129 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 15130
25005f6a
PH
15131 * tests/cxx-type.at: Exercise location information; update tests
15132 to differentiate output with and without locations.
8dd76bee 15133 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
15134 because default YYLTYPE not yet defined.
15135 Change semantic actions to compute strings, rather than printing
15136 them directly (to test proper passing of semantics values). Change
15137 output to prefix notation and update test data and expected results.
15138 (yylex): Track locations.
15139 (stmtMerge): Return value rather than printing, and include arguments
15140 in value.
8dd76bee 15141
711f40b7
PE
151422003-06-03 Paul Eggert <eggert@twinsun.com>
15143
15144 Avoid warnings generated by GCC 2.95.4 when Bison is
15145 configured with --enable-gcc-warnings.
15146 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
15147 yy::]b4_parser_class_name[::translate_,
15148 yy::Stack::operator[] (unsigned),
15149 yy::Stack::operator[] (unsigned) const,
15150 yy::Slice::operator[] (unsigned),
15151 yy::Slice::operator[] (unsigned) const):
15152 Rename local vars to avoid warnings.
15153 * tests/glr-regression.at (Improper handling of embedded actions
15154 and $-N in GLR parsers): Remove unused local variable from yylex.
15155 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
15156 (void) as arg when not pure, since we now assume C89 when building
15157 Bison. Pacify GCC by using parameter.
15158
ac695f7d
PE
151592003-06-02 Paul Eggert <eggert@twinsun.com>
15160
15161 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
15162 yy::Location::lines, yy::Location::columns): Rename arguments
15163 to avoid shadowing; this removes a warning generated by GCC 3.3.
15164
26ec81e0
PE
151652003-06-01 Paul Eggert <eggert@twinsun.com>
15166
15167 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
15168 to g++, as GCC 3.3 complains if you do it.
15169 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
15170 everything that WARNING_CFLAGS has, except omit warnings
15171 not suitable for C++.
15172 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
15173 * tests/atlocal.in (CXXFLAGS): New var.
15174 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
15175
15176 Fix a GLR parser bug I reported in February; see
161a71f3 15177 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
15178 The problem was that GLR parsers did not conform to the C standard,
15179 because actions like { $1 = $2 + $3; } expanded to expressions
15180 that invoked YYFILL in separate subexpressions, and YYFILL assigned
15181 to a local variable. The C standard says that expressions
15182 like (var = f ()) + (var = f ()) have undefined behavior.
15183 Another problem was that GCC sometimes issues warnings that
15184 yyfill and its parameters are unused.
15185
15186 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
15187 as possibly unused.
15188 (yyfill): New function.
15189 (YYFILL): Use it.
15190 (yyuserAction): Change type of yynormal to bool, so that it matches
15191 the new yyfill signature. Mark it as possibly unused.
15192
15193
15194 Follow up on a bug I reported in February, where a Bison-generated
15195 parser can loop. Provide a test case and a fix for yacc.c. I
15196 don't have a fix for lalr1.cc or for glr.c, unfortunately.
15197 The original bug report is in:
161a71f3 15198 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
15199
15200 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
15201 macro's size was becoming unwieldy.
15202 (yyerrlab): Do not discard an empty lookahead symbol, as this
15203 might destroy garbage.
15204 (yyerrorlab): New label, with the old contents of YYERROR,
15205 plus the following change: pop the stack of rhs corresponding
15206 to the production that invoked YYERROR. That is how Yacc
15207 behaves, and POSIX requires this behavior.
15208 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
15209 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
15210 Define 'alarm' to do nothing if unistd.h is not available.
15211 Add a new rule "exp: '-' error;" to test the above change to
15212 data/yacc.c. Use 'alarm' to abort any test taking longer than
15213 10 seconds, as it's probably looping.
15214 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
15215 Also, the new yacc.c generates two fewer diagnostics for an
15216 existing test.
15217
d0829076
PE
152182003-05-24 Paul Eggert <eggert@twinsun.com>
15219
c6ae27df
PE
15220 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
15221 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
15222 This fixes a problem reported by John Bowman when the Compaq/HP
15223 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
15224 -ansi -Wall -gall).
15225 * data/yacc.c (union yyalloc): Likewise.
15226 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 15227
d0829076
PE
15228 Switch from 'int' to 'bool' where that makes sense.
15229
15230 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
15231 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
15232 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
15233 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
15234 Return or accept bool, not int. All callers changed.
15235 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
15236 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
15237 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
15238 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
15239 bitset_or_and_cmp_): Likewise.
15240 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
15241 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
15242 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
15243 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
15244 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
15245 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
15246 bitset_stats_or_and_cmp): Likewise.
15247 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
15248 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
15249 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
15250 ebitset_xor_cmp): Likewise.
15251 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
15252 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
15253 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
15254 lbitset_xor_cmp): Likewise.
15255 * lib/bbitset.h: Include <stdbool.h>.
15256 (struct bitset_vtable): The following members now return bool, not
15257 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
15258 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
15259 or_and_cmp).
15260 * src/conflicts.c (count_rr_conflicts): Likewise.
15261 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
15262 All uses changed.
15263 * lib/ebitset.c (ebitset_obstack_init): Likewise.
15264 * lib/lbitset.c (lbitset_obstack_init): Likewise.
15265 * src/getargs.c (debug_flag, defines_flag, locations_flag,
15266 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
15267 graph_flag): Likewise.
15268 * src/getargs.h (debug_flag, defines_flag, locations_flag,
15269 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
15270 graph_flag): Likewise.
15271 * src/output.c (error_verbose): Likewise.
15272 * src/output.h (error_verbose): Likewise.
15273 * src/reader.c (start_flag, typed): Likewise.
15274 * src/reader.h (typed): Likewise.
15275 * src/getargs.c (LOCATIONS_OPTION): New constant.
15276 (long_options, getargs): Use it.
15277 * src/lalr.c (build_relations): Use bool, not int.
15278 * src/nullable.c (nullable_compute): Likewise.
15279 * src/print.c (print_reductions): Likewise.
15280 * src/tables.c (action_row, pack_vector): Likewise.
15281 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
15282 * src/output.c (prepare): Use it.
15283 * src/output.c (token_definitions_output,
15284 symbol_destructors_output, symbol_destructors_output): Use string,
15285 not boolean integer, to keep track of whether to output separator.
15286 * src/print_graph.c (print_core): Likewise.
15287 * src/state.c (state_rule_lookaheads_print): Likewise.
15288
15289 * config/install-sh: Sync from automake 1.7.5.
15290
6b2584b7
PE
152912003-05-14 Paul Eggert <eggert@twinsun.com>
15292
15293 * src/parse-gram.y (rules_or_grammar_declaration): Require a
15294 semicolon after a grammar declaration, in the interest of possible
15295 future changes to the Bison input language.
15296 Do not allow a stray semicolon at the start of the grammar.
15297 (rhses.1): Allow one or more semicolons after any rule, including
15298 just before "|" as required by POSIX.
15299 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
15300 grammar.
15301
caf37a36
ADL
153022003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
15303
15304 %parse-param support for lalr1.cc.
15305
15306 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
15307 b4_cc_constructor_calls, b4_cc_constructor_call,
15308 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
15309 definitions.
15310 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
15311 parse-param arguments.
15312 (yy::b4_parser_class_name): Declare instance variables to
15313 hold parse-param arguments.
15314 * tests/calc.at: s/value/semantic_value/ because value clashes
15315 with a member of yy::b4_parser_class_name. Adjust C++ code
15316 to handle %parse-param. Enable %parse-param test in C++.
15317
3ab37077
PE
153182003-05-12 Paul Eggert <eggert@twinsun.com>
15319
15320 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
15321 English a bit. Fix fclose typo. Change "const char" to "char
15322 const", and use ANSI C rather than K&R for "main". Suggest
15323 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
15324 and suggest yy_switch_to_buffer.
15325
153262003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
15327
15328 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
15329 C89. This avoids a diagnostic on compilers that define __STDC__
15330 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 15331 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 15332
e743727f
PE
153332003-05-03 Paul Eggert <eggert@twinsun.com>
15334
15335 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
15336 Do not overrun array bounds.
15337 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 15338 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 15339
916708d5
AD
153402003-04-29 Akim Demaille <akim@epita.fr>
15341
15342 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
15343 * src/getargs.c, src/getargs.h: here, as bool, not int.
15344 (nondeterministic_parser): New.
15345 * src/parse-gram.y, src/scan-gram.l: Support
15346 %nondeterministic-parser.
15347 * src/output.c (prepare): Use nondeterministic_parser instead
15348 of glr_parser where appropriate.
15349 * src/tables.c (conflict_row, action_row, save_row)
15350 (token_actions, token_actions, pack_vector): Ditto.
15351
a06ea4aa
AD
153522003-04-29 Akim Demaille <akim@epita.fr>
15353
15354 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
15355
211074ca
AD
153562003-04-29 Akim Demaille <akim@epita.fr>
15357
15358 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
15359 with %pure-parser and %locations to exercise the patch from Yakov
15360 Markovitch below.
15361
6175ffe3
PE
153622003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
15363
15364 * data/yacc.c: (b4_lex_param): Corrected for the case where
15365 %lex-param is provided and %pure-parser isn't.
15366
b1e95857
PE
153672003-04-27 Paul Eggert <eggert@twinsun.com>
15368
15369 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 15370 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
15371 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
15372 if it is not defined.
15373 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
15374
acda9df6
PE
153752003-04-26 Paul Eggert <eggert@twinsun.com>
15376
3470c57b
PE
15377 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
15378 Declare to be of type suitable for the ninf value itself, not of
15379 type suitable for the corresponding table, since the latter might
15380 be unsigned but the ninf value might be negative. This fixes a
15381 bug reported by Alexandre Duret-Lutz in
161a71f3 15382 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 15383
acda9df6
PE
15384 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
15385 invokes it. We shouldn't invoke it twice because it will attempt
15386 to put error.o in the archive twice. This fixes a glitch reported
15387 by Martin Mokrejs in
161a71f3 15388 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 15389
b5250f26
PE
153902003-04-21 Paul Eggert <eggert@twinsun.com>
15391
15392 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
15393 to gnulib.
15394
089ac0f1
PE
153952003-04-21 Yakov Markovitch <Markovitch@iso.ru>
15396
15397 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
15398 Fix obvious typo that results in uncompilable GLR parsers
15399 when both %pure-parser and %locations are used. (trivial change)
15400
5ededac6
PE
154012003-04-17 Paul Eggert <eggert@twinsun.com>
15402
1b8f2fff
PE
15403 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
15404 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
15405 Do not insert the expected token via unput, as this runs afoul
15406 of a POSIX-compatibility bug in flex 2.5.31.
15407 All uses changed to BEGIN the parent state,
15408 since we no longer insert the expected token via unput.
15409 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
15410 that is no longer emitted after the above change.
15411
5ededac6
PE
15412 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
15413 the first one. This change is from Paul Hilfinger, and it fixes
15414 regression reported by Werner Lemberg in
161a71f3 15415 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
15416
15417 (resolve_sr_conflict): Don't invoke state_errs_set
15418 unless one or more tokens have been explicitly made errors.
15419 Otherwise, the above change causes Bison to abort.
15420
15421 * tests/existing.at (GNU pic Grammar): New test case, taken from
15422 Lemberg's email.
15423
b8be9132
AD
154242003-03-31 Akim Demaille <akim@epita.fr>
15425
15426 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
15427
d423d460
AD
154282003-03-31 Akim Demaille <akim@epita.fr>
15429
15430 * src/output.c (prepare_symbols): Avoid trailing spaces in the
15431 output.
15432
c7e441b4
AD
154332003-03-31 Akim Demaille <akim@epita.fr>
15434
15435 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
15436 From Paul Hilfinger.
15437
231897ad
AD
154382003-03-29 Akim Demaille <akim@epita.fr>
15439
15440 * m4/error.m4: Do not put under dynamic conditions some code which
15441 expansion is under static control.
15442
5b066063
AD
154432003-03-29 Akim Demaille <akim@epita.fr>
15444
15445 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
15446
22a74fec
AD
154472003-03-29 Akim Demaille <akim@epita.fr>
15448
15449 * doc/bison.texinfo (Strings are Destroyed): New.
15450
0eee27e7
PE
154512003-03-13 Paul Eggert <eggert@twinsun.com>
15452
15453 * .cvsignore: Add configure.lineno.
15454 * src/.cvsignore: Add yacc.
15455 * tests/.cvsignore: Add testsuite.log.
15456 * doc/fdl.texi: Sync with latest FSF version.
15457
f61aad93
PE
154582003-03-12 Paul Eggert <eggert@twinsun.com>
15459
537636c7
PE
15460 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
15461 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
15462 cursor, instead of leaving it undefined. This fixes a bug
15463 reported by Tim Van Holder in
161a71f3 15464 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
15465 * tests/input.at (Torturing the Scanner): Test the scanner on
15466 an empty input file, which was Tim Van Holder's test case.
15467
15468 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
15469 <sys/resource.h> can be included, include sys/time.h and
15470 sys/times.h first, if available. This works around the SunOS
15471 4.1.4 porting bug reported by Bruce Becker in
161a71f3 15472 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
15473
15474 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
15475 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
15476 AC_HEADER_SYS_WAIT.
15477
f61aad93
PE
15478 Merge changes from gnulib. This was prompted because the CVS
15479 snapshot didn't build on Solaris 7 due to strnlen problems.
15480
15481 These changes need to be merged back into gnulib:
15482 * lib/hash.c: Include <stdbool.h> unconditionally.
15483 * m4/onceonly.m4 (m4_quote): New macro.
15484 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
15485 Quote AC_FOREACH variable-expansions properly.
15486 The 2003-01-03 obstack.h change also needs merging.
15487 {end of changes requiring merging}
5b066063 15488
f61aad93
PE
15489 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
15490 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
15491 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
15492 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
15493 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
15494 New files, imported from gnulib.
15495 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
15496 above.
15497
15498 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
15499 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
15500 gnulib sources.
15501
15502 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
15503 Add.
15504 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
15505 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
15506 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
15507 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
15508 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
15509 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
15510 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
15511 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
15512 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
15513 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
15514 (jm_PREREQ_ARGMATCH): Remove.
15515 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
15516 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
15517
15518 * src/system.h: Include <stdbool.h> unconditionally.
15519
15520 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
15521 assuming at least C89 in the bitset code for some time now.
15522
d2ffe116
AD
155232003-03-03 Akim Demaille <akim@epita.fr>
15524
15525 * ro.po: New.
15526
052826fd
AD
155272003-03-02 Akim Demaille <akim@epita.fr>
15528
15529 * doc/bison.texinfo (Table of Symbols): Reactivate the
15530 documentation for %lex-param, and %parse-param.
15531
c4749565
AD
155322003-03-02 Akim Demaille <akim@epita.fr>
15533
15534 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
15535 generate verbose error messages.
15536 Use the number of tokens as an upper bound in yytname, as it
15537 cannot be a non terminal.
15538
d5286af1
AD
155392003-03-02 Akim Demaille <akim@epita.fr>
15540
15541 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
15542 message.
15543
22e304a6
AD
155442003-03-02 Akim Demaille <akim@epita.fr>
15545
22e304a6
AD
15546 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
15547 Use them to exercise yycheck overrun.
15548 Based on Andrew Suffield's grammar.
15549
67a25fed
AD
155502003-03-02 Akim Demaille <akim@epita.fr>
15551
15552 Create tests/local.at for Bison generic testing macros.
15553
15554 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
15555 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
15556 This new file.
15557 * tests/calc.at (AT_CHECK_CALC): Adjust.
15558 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
15559 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
15560 * tests/local.at: here.
15561 (AT_COMPILE_CXX): Tags the tests using it as c++.
15562 Ignore the test if CXX is not functional.
15563
9c2b381f
PE
155642003-03-01 Paul Eggert <eggert@twinsun.com>
15565
15566 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
15567 not loc->end, since loc->end might contain garbage and this leads
15568 to undefined behavior on some platforms.
15569 (id_loc, token_start): Use (IF_LINTed) initial values that do not
15570 depend on *loc, so that the reader doesn't give the the false
15571 impression that *loc is initialized.
15572 (<INITIAL>"%%"): Do not bother setting code_start, since its value
15573 does not survive the return.
15574
0433ba88
AD
155752003-03-01 Akim Demaille <akim@epita.fr>
15576
15577 * src/scan-gram.l (code_start): Always initialize it when entering
15578 into yylex, as SC_EPILOGUE is activated *before* the corresponding
15579 yylex invocation. An alternative would be making it static, but
15580 then it starts with the second %%'s beginning, instead of its end.
15581
b305ea69
PE
155822003-02-28 Paul Eggert <eggert@twinsun.com>
15583
15584 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
15585 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 15586 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 15587
c3d25e01
PE
155882003-02-26 Paul Eggert <eggert@twinsun.com>
15589
15590 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
15591 Remove Sequent/Pyramid discussion (nobody uses them any more).
15592 Merge VMS and MS-DOS discussion; these ports may well be dead
15593 but let's keep mentioning them for now. Put <> around email
15594 addresses. Add copyright notice.
15595
c267ffbc
PE
155962003-02-24 Paul Eggert <eggert@twinsun.com>
15597
15598 * data/glr.c (yy_reduce_print): yylineno -> yylno,
15599 to avoid collision with flex use of yylineno.
15600 Problem reported by Bruce Lilly in
161a71f3 15601 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
15602 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
15603 * data/yacc.c (yy_reduce_print): Likewise.
15604
15605 * config/depcomp: Sync with Automake 1.7.3.
15606
f939fc12
AD
156072003-02-21 Akim Demaille <akim@epita.fr>
15608
15609 * data/lalr1.cc: Use temporary variables instead of casts to
15610 change integer types.
15611 Suggested by Paul Eggert.
15612
95923bd6
AD
156132003-02-21 Akim Demaille <akim@epita.fr>
15614
15615 * doc/bison.texinfo: Use "location" consistently to refer to @n,
15616 to avoid confusions with lalr1.cc's notion of Position.
15617 Suggested by Paul Eggert.
15618
2cdc240e
AD
156192003-02-20 Akim Demaille <akim@epita.fr>
15620
15621 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
15622 before initial_columns.
15623 (location.hh): Use consistent variable names when defining the
15624 operator<<.
15625 Use "last" so that we subtract from Positions, not from unsigned.
15626
5d003116
AD
156272003-02-20 Akim Demaille <akim@epita.fr>
15628
15629 * data/lalr1.cc (position.hh): New subfile, including the extended
15630 and Doxygen'ed documentation of class Position.
15631 (location.hh): Use it.
15632 Document a` la Doxygen.
ba1ecc07 15633 With the help of Benoit Perrot.
5d003116 15634
d02b25f9
AD
156352003-02-20 Akim Demaille <akim@epita.fr>
15636
15637 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
15638 AT_YACC_IF.
15639 Redefine AT_YYERROR_SEES_LOC_IF using it.
15640 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
15641 not defined.
15642 Don't use the location in yy::Parser::error_ and
15643 yy::Parser::print_ when not %locations.
15644 Activate more lalr1.cc tests.
15645
0d1c3a04
AD
156462003-02-19 Akim Demaille <akim@epita.fr>
15647
15648 * data/lalr1.cc: When displaying a line number, be sure to make it
15649 an int.
15650
60a777aa
AD
156512003-02-19 Akim Demaille <akim@epita.fr>
15652
15653 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
15654 Remove, useless.
15655 (YYABORT, YYACCEPT, YYERROR): New.
15656 * tests/calc.at: Renable the lalr1.cc test.
15657
0b86fc41
AD
156582003-02-19 Akim Demaille <akim@epita.fr>
15659
15660 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
15661 error recovery, mixing with/without pops and discarding of the
15662 lookahead.
15663 Exercise YYERROR.
15664 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
15665
da99a5dc
PE
156662003-02-17 Paul Eggert <eggert@twinsun.com>
15667
15668 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
15669 * tests/testsuite.at (AT_COMPILE): Use them.
15670 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 15671 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 15672
93b8c255
PE
156732003-02-12 Paul Eggert <eggert@twinsun.com>
15674
15675 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
15676 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 15677 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
15678 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
15679 Check for malloc failure, for consistency with yacc.c.
15680 (yytname_size): Remove, for consistency with yacc.c.
15681
15682 The bug still remains in data/lalr1.cc, as I didn't have time
15683 to fix it there.
15684
7548fed2
AD
156852003-02-06 Akim Demaille <akim@epita.fr>
15686
15687 * configure.ac (GXX): Rename as...
15688 (CXX): this, to keep the original Autoconf semantics.
15689 Require 2.57.
15690 * data/lalr1.cc: Fix b4_copyright invocations.
15691 If YYDEBUG is not defined, don't depend upon name_ being defined.
15692 (location.hh): Include string and iostream.
15693 (Position::filename): New member.
15694 (Position::Position ()): New.
15695 (operator<< (Position)): New.
15696 (operator- (Position, int)): New.
15697 (Location::first, Location::last): Rename as...
15698 (Location::begin, Location::end): these, to mock the conventional
15699 iterator names.
15700 (operator<< (Location)): New.
15701 * tests/atlocal.in (CXX): New.
15702 * tests/testsuite.at (AT_COMPILE_CXX): New.
15703 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
15704 locations in a more synthetic way.
15705 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
15706 lalr1.cc is used.
15707 Adjust the C locations to match those from Emacs: first column is
15708 column 0.
15709 Change all the expected results.
15710 Conform to the GCS: simplify the locations when applicable.
15711 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
15712 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
15713 these CPP macros with the m4 macros new defined by...
15714 (AT_CHECK_PUSHDEFS): this, i.e.:
15715 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 15716 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
15717 New macros.
15718 (AT_CHECK_POPDEFS): Undefine them.
15719 (AT_CHECK_CALC_LALR1_CC): New.
15720 Use it for the first lalr1.cc test.
15721
43a176ef
AD
157222003-02-04 Akim Demaille <akim@epita.fr>
15723
15724 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
15725 Location as is defined.
15726
fc049e9c
AD
157272003-02-04 Akim Demaille <akim@epita.fr>
15728
15729 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
15730 name_ being defined.
15731
a737b216
PE
157322003-02-03 Paul Eggert <eggert@twinsun.com>
15733
15734 * src/gram.h (start_symbol): Remove unused decl.
15735
15736 Use more-consistent naming conventions for local vars.
15737
15738 * src/derives.c (derives_compute): Change type of local var from
15739 int to rule_number.
15740 * src/gram.c (grammar_rules_partial_print): Likewise.
15741 * src/print.c (print_core): Likewise.
15742 * src/reduce.c (reduce_grammar_tables): Likewise.
15743
15744 * src/gram.c (grammar_dump): Change name of item_number *
15745 local var from r to rp.
15746 * src/nullable.c (nullable_compute): Likewise.
15747
15748 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
15749
15750 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
15751 for symbol or symbol_number var.
15752 * src/reader.c (grammar_start_symbol_set): Likewise.
15753 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
15754 Likewise.
15755 * src/state.c (transitions_to): Likewise.
15756 * src/state.h: Likewise.
15757 * src/tables.c (symbol_number_to_vector_number): Likewise.
15758
15759 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
15760 char * var.
15761
15762 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
15763 var.
15764
15765 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
15766 var.
15767
15768 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
15769 Use str, not s, for char * var. Use ch, not c, for character var.
15770 Use size for size var.
15771
15772 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
15773 char * var.
15774 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
15775 uniqstr var.
15776 * src/uniqstr.h: Likewise.
15777
15778 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
15779 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
15780 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
15781 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
15782 param to have same name as that of enum, so that we don't use
15783 "s" to stand for a non-state.
15784
68e93ad5
AD
157852003-02-02 Akim Demaille <akim@epita.fr>
15786
15787 * src/scan-skel.l: Scan more than one inert character per yylex
15788 invocation.
15789
92898986
PE
157902003-02-01 Paul Eggert <eggert@twinsun.com>
15791
15792 Version 1.875a.
15793
1d9d5d71
PE
15794 * po/LINGUAS: Add ms.
15795
0435d061
AD
157962003-01-30 Akim Demaille <akim@epita.fr>
15797
15798 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
15799
6029a57f
PH
158002003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15801
15802 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
15803 of $1.
0435d061
AD
15804
15805 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 15806 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 15807 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 15808
6029a57f
PH
15809 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
15810 (b4_rhs_location): Ditto.
0435d061 15811 (yyfill): New function to copy from stack tree into array
6029a57f 15812 incrementally.
0435d061
AD
15813 (yyuserAction): Modify to allow incremental move of semantic values
15814 to rhs array when in GLR mode.
15815 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
15816 as needed.
15817 Remove dummy use of yystack, as there is now a guaranteed use.
15818 (yydoAction): Modify to allow incremental move of semantic values
15819 to rhs array when in GLR mode.
15820 (yyresolveAction): Ditto.
15821 (yyglrShiftDefer): Update comment.
0435d061 15822 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
15823 (yyglrReduce): Ditto.
15824 (yydoAction): Ditto
0435d061 15825
6029a57f
PH
15826 * tests/glr-regr1.at: Rename to ...
15827 * tests/glr-regression.at: Add new regression test for the problems
15828 described above (adapted from S. Eken).
15829 Update copyright notice.
15830 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
15831 * tests/Makefile.am: Ditto.
15832
6cee6297
PE
158332003-01-28 Paul Eggert <eggert@twinsun.com>
15834
15835 * data/lalr1.cc: Do not use @output_header_name@ unless
15836 b4_defines_flag is set. This fixes two bugs reported by
15837 Tim Van Holder in
161a71f3
PE
15838 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
15839 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 15840
b2a836b5
PE
158412003-01-21 Paul Eggert <eggert@twinsun.com>
15842
15843 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
15844 we don't need to worry about yyerrlab1 being reported as an
15845 "unused label" by non-GCC C compilers. The downside is that if
15846 locations are used then a couple of statements are duplicated each
15847 time YYERROR is invoked, but the upside is that the warnings
15848 should vanish.
15849 (yyerrlab1): Move code to YERROR.
15850 (yyerrlab2): Remove. Change uses back to yyerrlab1.
15851 This reverts some of the 2002-12-27 change.
15852
4196b931
PE
158532003-01-17 Paul Eggert <eggert@twinsun.com>
15854
15855 * src/output.c (symbol_printers_output): Fix typo that led
15856 to core dump. Problem reported by Antonio Rus in
161a71f3 15857 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 15858
3ae831b4
AD
158592003-01-13 Akim Demaille <akim@epita.fr>,
15860 Quoc Peyrot <chojin@lrde.epita.fr>,
15861 Robert Anisko <anisko_r@lrde.epita.fr>
15862
15863 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
15864 when the stacks contain one element, as the loop would otherwise
15865 free the last state, and then use the top state (the one we just
15866 popped). This means that the initial elements will not be freed
15867 explicitly, as is the case in yacc.c; it is not a problem, as
15868 these elements have fake values.
15869
e3aa65c5
PE
158702003-01-11 Paul Eggert <eggert@twinsun.com>
15871
15872 * NEWS: %expect-violations are now just warnings, reverting
15873 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
15874 bootstrapping problem reported by Matthias Klose; see
161a71f3 15875 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
15876 * src/conflicts.c (conflicts_print): Likewise.
15877 * tests/conflicts.at (%expect not enough, %expect too much,
15878 %expect with reduce conflicts): Likewise.
15879 * doc/bison.texinfo (Expect Decl): Document this. Also mention
15880 that the warning is enabled if the number of conflicts changes
15881 (not necessarily increases).
15882
15883 * src/getargs.c (version): Update copyright year.
15884
f0057011
AD
158852003-01-09 Akim Demaille <akim@epita.fr>
15886
15887 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
15888
1ee6d2a0
PE
158892003-01-08 Paul Eggert <eggert@twinsun.com>
15890
15891 * Makefile.maint (WGETFLAGS):
15892 New macro, containing "-C off" to disable proxy caches.
15893 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
15894 (rel-check): Use $(WGET) instead of wget.
15895
d4fd77c4
PE
158962003-01-06 Paul Eggert <eggert@twinsun.com>
15897
15898 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
15899 the GLR paper of Scott, Johnstone and Hussain.
15900
464c6927
PE
159012003-01-04 Paul Eggert <eggert@twinsun.com>
15902
d600ee67
PE
15903 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
15904 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
15905 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
15906 (EXTRA_LIBRARIES): New var, for liby.a.
15907 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
15908 (EXTRA_SCRIPTS): New var, for yacc.
15909
464c6927
PE
15910 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
15911 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
15912 Problem reported by Nelson H. F. Beebe.
15913
159142003-01-03 Paul Eggert <eggert@twinsun.com>
15915
15916 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
15917 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
15918 when compiling Bison 1.875's `bitset bset = obstack_alloc
15919 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
15920
15921 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
15922 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
15923 grow to a huge size with typical invocation.
d600ee67 15924
464c6927
PE
15925 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
15926 Use the pattern recommended by Autoconf 2.57, except also protect
15927 against double-definition.
15928 * src/system.h: Likewise.
15929 Portability issues reported by Nelson H. F. Beebe.
d600ee67 15930
464c6927
PE
15931 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
15932 All uses changed. Provide a definition in both C and C++.
15933 (yytrue, yyfalse): Define even if defined (__cplusplus).
15934
15935 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
15936 Reported by Nelson H. F. Beebe.
d600ee67 15937
464c6927
PE
15938 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
15939
0f42c7d5
PE
159402003-01-02 Paul Eggert <eggert@twinsun.com>
15941
15942 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
15943 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
15944 Bug reported by Nelson H. F. Beebe.
15945
dc546b0f
PE
159462003-01-01 Paul Eggert <eggert@twinsun.com>
15947
15948 * Version 1.875.
15949
2c09b6a7
PE
159502002-12-30 Paul Eggert <eggert@twinsun.com>
15951
15952 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
15953 Moved here from...
15954 (<INITIAL>","): Here. This causes stray "," to be treated
15955 more uniformly.
15956
dc546b0f 15957 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
15958 last brace in braced code when not in Yacc mode, for compatibility
15959 with Bison 1.35. This resurrects the 2001-12-15 patch to
15960 src/reader.c.
15961
15962 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
15963 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
15964
535c0f63
PE
159652002-12-28 Paul Eggert <eggert@twinsun.com>
15966
15967 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
15968 that of SYM's type. This fixes Debian bug 168069, reported by
15969 Thomas Olsson.
d600ee67 15970
963fcc17
PE
159712002-12-28 Paul Eggert <eggert@twinsun.com>
15972
15973 Version 1.75f.
15974
15975 Switch back to the Yacc style of conflict reports, undoing some
15976 of the 2002-07-30 change.
15977 * doc/bison.texinfo (Understanding): Use Yacc style for
15978 conflict reports. Also, use new way of locating rules.
15979 * src/conflicts.c (conflict_report):
15980 Renamed from conflict_report_yacc, removing the old
15981 'conflict_report'. Translate the entire conflict report at once,
15982 so that we don't assume that "," has the same interpretation in
15983 all languages.
15984 (conflicts_output): Use Yacc-style conflict report for each state,
15985 instead of our more-complicated style.
15986 (conflicts_print): Use Yacc-style conflict report, except print
15987 the input file name when not emulating Yacc.
15988 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
15989 Conflicted Reduction, %expect not enough, %expect too much,
15990 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
15991 * tests/existing.at (GNU Cim Grammar): Likewise.
15992 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
15993
15994 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
15995 fatal): Don't invoke fflush; it's not needed and it might even be
15996 harmful for stdout, as stdout might not be open.
15997 * src/reduce.c (reduce_print): Likewise.
15998
b1efe548
PE
159992002-12-27 Paul Eggert <eggert@twinsun.com>
16000
16001 Fix a bug where error locations were not being recorded correctly.
16002 This problem was originally reported by Paul Hilfinger in
161a71f3 16003 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
16004
16005 * data/yacc.c (yyparse): New local var yylerrsp, to record the
16006 top of the location stack's error locations.
16007 (yyerrlab): Set it. When discarding a token, push its location
16008 onto yylerrsp so that we don't lose track of the error's end.
16009 (yyerrlab1): Now is only the target of YYERROR, so that we can
16010 properly record the location of the action that failed. For GCC
16011 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
16012 GCC warning about yyerrlab1 being unused if YYERROR is unused.
16013 (yyerrlab2): New label, which yyerrlab now falls through to.
16014 Compute the error's location by applying YYLLOC_DEFAULT to
16015 the locations of all the symbols that went into the error.
16016 * doc/bison.texinfo (Location Default Action): Mention that
16017 YYLLOC_DEFAULT is also invoked for syntax errors.
16018 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
16019 Error locations include the locations of all the tokens that were
16020 discarded, not just the last token.
d600ee67 16021
983c5c2c
PE
160222002-12-26 Paul Eggert <eggert@twinsun.com>
16023
b1efe548
PE
16024 * src/files.c: Include quote.h.
16025 (compute_output_file_names): Warn if we detect conflicting
16026 outputs to the same file. This should catch the misunderstanding
16027 exemplified by Debian Bug 165349, reported by Bruce Stephens..
16028
16029 * src/conflicts.c (conflicts_print): If the user specifies
16030 "%expect N", report an error if there are any reduce/reduce
16031 conflicts. This is what the manual says should happen.
16032 This fixes Debian bug 130890, reported by Anthony DeRobertis.
16033 * tests/conflicts.at (%expect with reduce conflicts): New test.
16034
983c5c2c
PE
16035 Don't use m4_include on relative file names, as it doesn't work as
16036 desired if there happens to be a file with that name under ".".
d600ee67 16037
983c5c2c
PE
16038 * m4sugar/version.m4: Remove; it was included but it wasn't used.
16039 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
16040 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
16041 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
16042 * src/output.c (output_skeleton): Use full path names when
16043 specifying a file to include; don't rely on include path, as
16044 it's unreliable when the working file contains a file with
16045 that name.
d600ee67 16046
983c5c2c
PE
160472002-12-25 Paul Eggert <eggert@twinsun.com>
16048
16049 Remove obsolete references to bison.simple and bison.hairy.
16050 Problem mentioned by Aubin Mahe in
161a71f3 16051 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
16052 * data/glr.c: Comment fix.
16053 * doc/bison.1: Remove references. Also, mention "yacc".
16054
16055 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
16056 with -g option.
16057
16058 * src/parse-gram.y (declaration): Use enum "report_states" rather
16059 than its numeric value 1.
16060
16061 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
16062 opening a new one. This fixes Debian bug 165349, reported by
16063 Bruce Stephens.
16064
23f2d9dc
PE
160652002-12-24 Paul Eggert <eggert@twinsun.com>
16066
16067 Version 1.75e.
16068
16069 * Makefile.maint (cvs-update): Don't assume that the shell
16070 supports $(...), as Solaris sh doesn't.
16071
16072 * src/parse-gram.y (lloc_default): Remove test for empty
16073 nonterminals at the end, since it didn't change the result.
16074
160752002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
16076
16077 If the user does not define YYSTYPE as a macro, Bison now declares it
16078 using typedef instead of defining it as a macro. POSIX requires this.
16079 For consistency, YYLTYPE is also declared instead of defined.
16080
16081 %union directives can now have a tag before the `{', e.g., the
16082 directive `%union foo {...}' now generates the C code
16083 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
16084 The default union tag is `YYSTYPE', for compatibility with Solaris 9
16085 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
16086 instead of `yyltype'.
16087
16088 `yystype' and `yyltype' are now obsolescent macros instead of being
16089 typedefs or tags; they are no longer documented and will be
16090 withdrawn in a future release.
16091
16092 * data/glr.c (b4_location_type): Remove.
16093 (YYSTYPE): Renamed from yystype.
16094 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
16095 (struct YYLTYPE): Renamed from struct yyltype.
16096 (YYLTYPE): Renamed from yyltype.
16097 (yyltype, yystype): New (and obsolescent) macros,
16098 for backward compatibility.
16099 * data/yacc.c: Likewise.
16100
16101 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
16102 does not specify a union tag. This is for compatibility with
16103 Solaris 9 yacc.
16104
16105 * src/parse-gram.y (add_param): 2nd arg is now char * not char
16106 const *, since it is now modified by stripping surrounding { }.
16107 (current_braced_code): Remove.
16108 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
16109 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
16110 trailing " {...}". Now of type <chars>.
16111 (grammar_declaration): Adjust to bundled tokens.
16112 (code_content): Remove; stripping is now done by add_param.
16113 (print_token_value): Print contents of bundled tokens.
16114 (token_name): New function.
16115
16116 * src/reader.h (braced_code, current_braced_code): Remove.
16117 (token_name): New decl.
16118
16119 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
16120 token_type, not braced_code code_kind. All uses changed.
16121 (SC_PRE_CODE): New state, for scanning after a keyword that
16122 has (or usually has) an immediately-following braced code.
16123 (token_type): New local var, to keep track of which token type
16124 to return when scanning braced code.
16125 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 16126 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
16127 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
16128 instead of returning a token type immediately.
16129 (<INITIAL>"{"): Set token type.
16130 (<SC_BRACED_CODE>"}"): Use it.
16131 (handle_action_dollar, handle_action_at): Now returns bool
16132 indicating success. Fail if ! current_rule; this prevents a core dump.
16133 (handle_symbol_code_dollar, handle_symbol_code_at):
16134 Remove; merge body into caller.
16135 (handle_dollar, handle_at): Complain in invalid contexts.
16136
16137 * NEWS, doc/bison.texinfo: Document the above.
16138 * NEWS: Fix years and program names in copyright notice.
16139
879ca4f8
PE
161402002-12-17 Paul Eggert <eggert@twinsun.com>
16141
16142 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
16143 Reporting, Table of Symbols): Omit mentions of %lex-param and
16144 %parse-param from the documentation for now.
16145
1c5fe69d
PE
161462002-12-15 Paul Eggert <eggert@twinsun.com>
16147
16148 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
16149 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
16150 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
16151 disagreed with the Bison documentation. Bug
16152 reported by Andrew Walrond.
d600ee67 16153
1c5fe69d
PE
16154 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
16155 as the caller now does that.
16156 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
16157 (YYEMPTY): Parenthesize right hand side, since others use it.
16158 (yyparse): Don't assume that our generated code is the only code
16159 that sets yychar.
16160
d1de5372
PE
161612002-12-13 Paul Eggert <eggert@twinsun.com>
16162
16163 Version 1.75d.
16164
16165 POSIX requires a "yacc" command.
16166 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
16167 (MOSTLYCLEANFILES): Add yacc.
16168 (yacc): New rule.
1c5fe69d 16169 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
16170 as an alias for bison y.
16171
16172 * po/LINGUAS: Add da.
d600ee67 16173
d1de5372
PE
16174 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
16175 problem with latest <getopt.h>.
16176 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
16177
16178 * doc/fdl.texi: Upgrade to 1.2.
16179 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
16180 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
16181 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
16182 gnulib.
16183 * config/install-sh: Sync with autotools.
16184
16185 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 16186 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
16187 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
16188 locations are requested.
16189 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
16190 locations are requested.
16191
d0f3fe23
PE
161922002-12-12 Paul Eggert <eggert@twinsun.com>
16193
16194 Remove unportable casts and storage allocation tricks.
16195 While we're at it, remove almost all casts, since they
16196 usually aren't needed and are a sign of trouble.
16197
16198 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
16199
16200 * src/derives.c (derives_compute): Do not subtract NTOKENS from
16201 the pointer DSET returned by malloc; this isn't portable.
16202 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
16203 Similarly for DERIVES.
16204 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
16205 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
16206 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
16207
16208 * src/derives.c (derives_compute): Do not bother invoking
16209 int_of_rule_number, since rule numbers are integers.
16210
16211 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
16212 rather than XMALLOC (char, N).
16213
16214 * src/files.c (filename_split): Rewrite to avoid cast.
16215
16216 * src/gram.h (symbol_number_as_item_number,
16217 item_number_as_symbol_number, rule_number_as_item_number,
16218 item_number_as_rule_number):
16219 Now inline functions rather than macros, to avoid casts.
16220 * src/state.h (state_number_as_int): Likewise.
16221 * src/tables.c (state_number_to_vector_number,
16222 symbol_number_to_vector_number): Likewise.
16223
16224 * src/gram.h (int_of_rule_number): Remove; no longer used.
16225
16226 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
16227 since the resulting storage is always stored into.
16228
16229 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
16230 where it's needed.
16231
16232 * src/muscle_tab.c (muscle_m4_output):
16233 Now inline. Return bool, not int.
16234 * src/state.c (state_compare): Likewise.
16235 * src/symtab.c (symbol_check_defined,
16236 symbol_check_alias_consistency, symbol_pack, symbol_translation,
16237 hash_compare_symbol, hash_symbol):
16238 Likewise.
16239 * src/uniqstr.c (uniqstr_print): Likewise.
16240 * src/muscle_tab.c (muscle_m4_output_processor):
16241 New function, to avoid casts.
16242 * src/state.c (state_comparator, stage_hasher): Likewise.
16243 * src/symtab.c (symbol_check_defined_processor,
16244 symbol_check_alias_consistency_processor, symbol_pack_processor,
16245 symbol_translation_processor, hash_symbol_comparator,
16246 hash_symbol_hasher): Likewise.
16247 * src/uniqstr.c (uniqstr_print_processor): Likewise.
16248 * src/muscle_tab.c (muscles_m4_output):
16249 Use new functions instead of casting old functions unportably.
16250 * src/state.c (state_hash_new): Likewise.
16251 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
16252 symbols_token_translations_init):
16253 Likewise.
16254 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
16255
16256 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
16257 var instead of casting to long, to avoid casts.
16258 (prepare_states): Use MALLOC rather than alloca, so that we don't
16259 have to worry about alloca.
16260 * src/state.c (state_hash_lookup): Likewise.
16261
16262 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
16263 local var instead of casting to unsigned char, to avoid casts.
16264
16265 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
16266 STATE_ALLOC): Remove.
16267 (transitions_new, errs_new, reductions_new, state_new): Use malloc
16268 rather than calloc, and use offsetof to avoid allocating slightly
16269 too much storage.
16270 (state_new): Initialize all members.
16271
16272 * src/state.c (state_hash): Use unsigned accumulator, not signed.
16273
16274 * src/symtab.c (symbol_free): Remove; unused.
16275 (symbol_get): Remove cast in lhs of assignment.
16276 (symbols_do): Now static. Accept generic arguments, not
16277 hashing-related ones.
16278
16279 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
16280 (symbol_processor): Remove.
16281 (symbols_do): Remove decl; now static.
16282
16283 * src/system.h (alloca): Remove; decl no longer needed.
16284 (<stddef.h>): Include, for offsetof.
16285 (<inttypes.>, <stdint.h>): Include if available.
16286 (uintptr_t): New type, if system lacks it.
16287 (CALLOC, MALLOC, REALLOC): New macros.
16288 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
16289 new macros.
16290
16291 * src/tables.c (table_size): Now int, to pacify GCC.
16292 (table_grow, table_ninf_remap): Use signed table size.
16293 (save_row): Don't bother initializing locals when not needed.
16294 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
16295 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
16296
16297 * src/vcg.h: Correct misspellings.
16298
16299 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
16300
16301
16302 * src/getargs.c (getargs): Don't assume EOF == -1.
16303
26b4a969
PE
163042002-12-09 Paul Eggert <eggert@twinsun.com>
16305
16306 Change identifier spellings to avoid collisions with names
16307 that are reserved by POSIX.
16308
16309 Don't use names ending in _t, since POSIX reserves them.
16310 For consistency, remove _e and _s endings -- they're weren't
16311 needed to remove ambiguity. All uses changed.
16312 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
16313 turn was just renamed from struniq_t.
16314 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
16315 which in turn was just renamed from struniq_processor_t.
16316 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
16317 in turn was renamed from hash_compare_struniq_t.
16318 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
16319 (state_list): Renamed from state_list_t.
16320 * src/assoc.h (assoc): Renamed from assoc_t.
16321 * src/conflicts.c (enum conflict_resolution): Renamed from
16322 enum conflict_resolution_e.
16323 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
16324 (rule_list): Renamed from rule_list_t.
16325 * src/getargs.h (enum trace): Renamed from enum trace_e.
16326 (enum report): Renamed from enum report_e.
16327 * src/gram.h (item_number): Renamed from item_number_t.
16328 (rule_number): Renamed from rule_number_t.
16329 (struct rule_s): Remove the "rule_s" part; not used.
16330 (rule): Renamed from rule_t.
16331 (rule_filter): Renamed from rule_filter_t.
16332 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
16333 (goto_list): Renamed from goto_list_t.
16334 * src/lalr.h (goto_number): Renamed from goto_number_t.
16335 * src/location.h (location): Renamed from location_t.
16336 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
16337 and moved here from:
16338 * src/muscle_tab.h (muscle_entry_t): here.
16339 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
16340 (rule_list): Renamed from rule_list_t.
16341 * src/print_graph.c (static_graph): Renamed from graph.
16342 * src/reader.h (braced_code): Renamed from braced_code_t.
16343 Remove brace_code_e tag.
16344 * src/relation.h (relation_node): Renamed from relation_node_t.
16345 (relation_nodes): Renamed from relation_nodes_t.
16346 (relation): Renamed from relation_t.
16347 * src/state.h (state_number): Renamed from state_number_t.
16348 (struct state): Renamed from struct state_s.
16349 (state): Renamed from state_t.
16350 (transitions): Renamed from transitions_t. Unused (and
16351 misspelled) transtion_s tag removed.
16352 (errs): Renamed from errs_t. Unused errs_s tag removed.
16353 (reductions): Renamed from reductions_t. Unused tag
16354 reductions_s removed.
16355 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
16356 (struct symbol_list): Renamed from struct symbol_list_s.
16357 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
16358 (struct symbol): Renamed from struct symbol_s.
16359 (symbol): Renamed from symbol_t.
16360 * src/tables.c (vector_number): Renamed from vector_number_t.
16361 (action_number): Renamed from action_t.
16362 * src/tables.h (base_number): Renamed from base_t.
16363 * src/vcg.h (enum color): Renamed from enum color_e.
16364 (enum textmode): Renamed from enum textmode_e.
16365 (enum shape): Renamed from enum shape_e.
16366 (struct colorentry): Renamed from struct colorentry_s.
16367 (struct classname): Renamed from struct classname_s.
16368 (struct infoname): Renamed from struct infoname_s.
16369 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
16370 (enum decision): Renamed from enum decision_e.
16371 (enum orientation): Renamed from enum orientation_e.
16372 (enum alignment): Renamed from enum alignment_e.
16373 (enum arrow_mode): Renamed from enum arrow_mode_e.
16374 (enum crossing_type): Renamed from enum crossing_type_e.
16375 (enum view): Renamed from enum view_e.
16376 (struct node): Renamed from struct node_s.
16377 (node): Renamed from node_t.
16378 (enum linestyle): Renamed from enum linestyle_e.
16379 (enum arrowstyle): Renamed from enum arrowstyle_e.
16380 (struct edge): Renamed from struct edge.
16381 (edge): Renamed from edge_t.
16382 (struct graph): Renamed from struct graph_s.
16383 (graph): Renamed from graph_t.
16384 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
16385 Rename value_t -> value.
16386 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
16387 value_t_as_yystype -> value_as_yystype.
16388
16389 Don't include <errno.h> in the mainstream code, since it
16390 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
16391 * lib/get-errno.c, lib/get-errno.h: New files.
16392 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
16393 get-errno.c.
16394 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
16395 * src/output.c (output_skeleton): Likewise.
16396 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
16397 instead of errno.
16398 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
16399 Likewise.
16400 (handle_action_dollar, handle_action_at): Likewise.
16401 * src/system.h: Do not include <errno.h>.
16402 (TAB_EXT): Renamed from EXT_TAB.
16403 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
16404
16405 Avoid str[a-z]*, since <string.h> reserves that name space.
16406 Change all instances of "struniq" in names to "uniqstr", and
16407 likewise for "STRUNIQ" and "UNIQSTR".
16408 * src/uniqstr.c: Renamed from src/struniq.c.
16409 * src/uniqstr.h: Renamed from src/struniq.h.
16410 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
16411 * src/files.c (strsuffix): Remove; unused.
16412 (concat2): Renamed from stringappend. Now static.
16413 * src/files.h (strsuffix, stringappend): Remove; unused.
16414 * src/parse-gram.y (<chars>): Renamed from <string>.
16415 (<uniqstr>): Renamed from <struniq>.
16416 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
16417 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
16418 (struct graph_s.expand): Renamed from struct graph_s.stretch.
16419 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
16420 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
16421 (N_EXPAND): Renamed from N_STRETCH.
16422
16423 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
16424 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
16425 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
16426 Remove; unused.
16427 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
16428 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
16429 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
16430 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
16431 (BASE_MAXIMUM): Renamed from BASE_MAX.
16432 (BASE_MINIMUM): Renamed from BASE_MIN.
16433 (ACTION_MAX): Remove; unused.
16434 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
16435 Unnecessary casts removed from above defines.
16436
16437
16438 Fix misspelling in names.
16439 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
16440 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
16441 G_NODE_ALIGNEMENT.
16442
16443
16444 * lib/timevar.c (timevar_report): Renamed from time_report,
16445 for consistency with other names.
16446 * lib/timevar.h (timevar_report): New decl.
16447 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
16448
16449
16450 Sort include-file uses.
16451
16452 Reorder all include files under src to be in the order "system.h".
16453 then the ../lib include files in angle brackets (alphabetized),
16454 then the . include files in double-quotes (alphabetized). Fix
16455 dependency breakages encountered in this process, as follows:
16456 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
16457 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
16458 * src/state.h: Include "symtab.h".
16459
996b1c7e
PE
164602002-12-08 Paul Eggert <eggert@twinsun.com>
16461
16462 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
16463 since this causes problems when __file__ contains character
16464 sequences like "@" that are treated specially by src/scan-skel.l.
16465 Instead, just use the file's basename. This fixes the bug
16466 reported by Martin Mokrejs in
161a71f3 16467 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 16468
e19c4e5d
PE
164692002-12-06 Paul Eggert <eggert@twinsun.com>
16470
16471 Add support for rules that do not have trailing semicolons, as
16472 POSIX requires. Improve the quality of locations in Bison
16473 diagnostics.
26b4a969 16474
e19c4e5d
PE
16475 * src/location.c: Include <quotearg.h>.
16476 (empty_location): Now const.
16477 (location_print): New function. Follow the recommendation of the
16478 GNU Coding Standards for locations that span file boundaries.
16479 * src/location.h: Do not include <quotearg.h>; no longer needed.
16480 (boundary): New type.
16481 (location_t): Use it. This allows locations to span file boundaries.
16482 All member uses changed: file -> start.file or end.file (as needed),
16483 first_line -> start.line, first_column -> start.column,
16484 last_line -> end.line, last_column -> end.column.
16485 (equal_boundaries): New function.
16486 (LOCATION_RESET, LOCATION_STEP): Remove.
16487 (LOCATION_PRINT): Remove. All callers changed to use location_print.
16488 (empty_location): Now const.
16489 (location_print): New decl.
16490 * src/parse-gram.y (lloc_default): New function, which handles
16491 empty locations more accurately.
16492 (YYLLOC_DEFAULT): Use it.
16493 (%token COLON): Remove.
16494 (%token ID_COLON): New token.
26b4a969 16495 (rules): Use it.
e19c4e5d
PE
16496 (declarations, rules): Remove trailing semicolon.
16497 (declaration, rules_or_grammar_declaration):
16498 Allow empty (";") declaration.
16499 (symbol_def): Remove empty actions; no longer needed.
16500 (rules_or_grammar_declaration): Remove trailing semicolon.
16501 (semi_colon.opt): Remove.
16502 * src/reader.h: Include location.h.
16503 (scanner_cursor): New decl.
16504 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
16505 rolling our own.
16506 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
16507 of *loc.
16508 (STEP): Remove. No longer needed, now that adjust_location does
16509 the work. All uses removed.
16510 (scanner_cursor): New var.
16511 (adjust_location): Renamed from extend_location. It now sets
16512 *loc and adjusts the scanner cursor. All uses changed.
16513 Don't bother testing for CR.
16514 (handle_syncline): Remove location arg; now updates scanner cursor.
16515 All callers changed.
16516 (unexpected_end_of_file): Now accepts start boundary of token or
16517 comment, not location. All callers changed. Update scanner cursor,
16518 not the location.
16519 (SC_AFTER_IDENTIFIER): New state.
16520 (context_state): Renamed from c_context. All uses changed.
16521 (id_loc, code_start, token_start): New local vars.
16522 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
16523 processing of Yacc white space and equivalents here.
16524 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
16525 instead of returning ID immediately, since we need to search for
16526 a subsequent colon.
16527 (<INITIAL>"'", "\""): Save token_start.
16528 (<INITIAL>"%{", "{", "%%"): Save code_start.
16529 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
16530 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
16531 BEGIN context_state at end, not INITIAL.
16532 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
16533 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
16534 Return correct token start.
16535 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
16536 the start of a character, string or multiline comment is found.
16537 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
16538 Reduction): Adjust reported locations to match the more-precise
16539 results now expected.
16540 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
16541 * tests/reduce.at (Useless Rules, Reduced Automaton,
16542 Underivable Rules): Likewise.
16543 * tests/regression.at (Invalid inputs): No longer `expecting ";"
16544 or "|"' now that so many other tokens are allowed by the new grammar.
16545
16546 * src/complain.h (current_file): Remove duplicate decl;
16547 current_file is now owned by files.h.
16548 * src/complain.c, src/scan-gram.l: Include files.h.
16549
165502002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 16551
e19c4e5d
PE
16552 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
16553 promotes to int; it might be unsigned int.
16554 * data/yacc.c (yy_reduce_print): Likewise.
16555
16556 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
16557 be #defined in the prologue, not in the Bison declarations.
16558 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 16559
b64755e3
PE
165602002-12-02 Paul Eggert <eggert@twinsun.com>
16561
16562 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
16563 * lib/strtoul.c: New file, from gnulib.
16564 This fixes a porting bug reported by Peter Klein in
161a71f3 16565 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 16566
6e746484
PE
165672002-11-30 Paul Eggert <eggert@twinsun.com>
16568
b64755e3
PE
16569 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
16570 and put only a forward declaration in the prologue. This is for
16571 consistency with the other scanner helper functions.
16572
6ba55592
PE
16573 Type clashes now generate warnings, not errors, since it
16574 appears that POSIX may allow some grammars with type clashes.
16575 * src/reader.c (grammar_current_rule_check): Warn about
16576 type clashes instead of complaining.
16577 * tests/input.at (Type Clashes): Expect warnings, not complaints.
16578
6e746484
PE
16579 Add Yacc library, since POSIX requires it.
16580 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
16581 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
16582 * lib/main.c, lib/yyerror.c: New files.
16583
16584 gram_error can be static; it need not be extern.
16585 * src/reader.h (gram_error): Remove decl.
16586 * src/parse-gram.y (gram_error): Now static. Add static decl.
16587 (print_token_value): Omit parameter names from forward decl,
16588 for consistency.
16589
88510f9c
PE
165902002-11-29 Paul Eggert <eggert@twinsun.com>
16591
6e746484
PE
16592 * doc/bison.texinfo: Emphasize that yylex and yyerror must
16593 be declared before being used. E.g., one should typically
16594 declare them in the prologue. Use GNU coding style in examples.
16595 Put "const" consistently after the type it modifies. Mention
16596 that C99 supports "inline". Mention that yyerror traditionally
16597 returns "int".
16598
88510f9c
PE
16599 %parse-param and %lex-param now take just one argument, the
16600 declaration; the argument name is deduced from the declaration.
16601
16602 * doc/bison.texinfo (Parser Function, Pure Calling, Error
16603 Reporting, Table of Symbols): Document this.
16604 * src/parse-gram.y (add_param): New function.
16605 (COMMA): Remove.
16606 (declaration): Implement new rule for %parse-param and %lex-param.
16607 * src/scan-gram.l: "," now elicits a warning, rather than being
16608 a token; this is more compatible with byacc.
16609 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
16610
bb92250c
PE
166112002-11-27 Paul Eggert <eggert@twinsun.com>
16612
16613 Rename identifiers to avoid real and potential collisions.
16614
16615 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
16616 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 16617 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
16618 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
16619 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
16620 * src/parse-gram.y (print_token_value): Renamed from yyprint.
16621 All uses changed.
16622 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
16623 The name "yycontrol" violates the name space rules, and this stuff
16624 wasn't being used anyway.
16625 (input): Remove action; this stuff wasn't being used.
16626 (gram_error): Rename local variable yylloc -> loc.
16627 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
16628 (YY_DECL): Don't use "yy" at start of local variables.
16629 All uses changed, e.g., yylloc -> loc.
16630 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
16631 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
16632 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
16633 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
16634
16635 * src/parse-gram.y (gram_error): loc is now const *.
16636 * src/reader.h (gram_error): Likewise.
16637
3af4feb2
PE
166382002-11-24 Paul Eggert <eggert@twinsun.com>
16639
16640 Version 1.75c.
16641
16642 * tests/actions.at (Actions after errors): Use an output format
16643 more similar to that of the Printers and Destructors test.
16644 Test the position of the ';' token too.
16645 (Printers and Destructors): Likewise.
16646 (Printers and Destructors: %glr-parser): Remove for now, to avoid
16647 unnecessarily alarming people when the test fails.
16648
16649 * data/yacc.c (yyerrlab1): Move this label down, so that the
16650 parser does not discard the lookahead token if the user code
16651 invokes YYERROR. This change is required for POSIX conformance.
16652
16653 * lib/error.c: Sync with gnulib.
16654
166552002-11-22 Paul Eggert <eggert@twinsun.com>
16656
16657 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
16658 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
16659 * lib/xmalloc.c: Likewise.
26b4a969 16660
58004308
PE
166612002-11-20 Paul Eggert <eggert@twinsun.com>
16662
16663 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
16664
166652002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 16666
58004308
PE
16667 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
16668 should use `if (! x) abort ();' rather than `assert (x);', and
16669 anyway it's one less thing to worry about configuring.
16670
16671 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
16672 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
16673 and replace all instances of assert with abort.
16674 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
16675 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
16676
16677 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
16678 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
16679 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
16680 hash_find_entry, hash_rehash, hash_insert): Likewise.
16681 * src/conflicts.c (resolve_sr_conflict): Likewise.
16682 * src/lalr.c (set_goto_map, map_goto): Likewise.
16683 * src/nullable.c (nullable_compute): Likewise.
16684 * src/output.c (prepare_rules, token_definitions_output): Likewise.
16685 * src/reader.c (packgram, reader): Likewise.
16686 * src/state.c (state_new, state_free, state_transitions_set,
16687 state_reduction_find): Likewise.
16688 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
16689 symbol_pack): Likewise.
16690 * src/tables.c (conflict_row, pack_vector): Likewise.
16691 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
16692 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
16693 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
16694 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
16695
16696 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
16697 (ARGMATCH_CONSTRAINT): New macro.
16698 (ARGMATCH_ASSERT): Use it.
16699
16700 * src/system.h (verify): New macro.
16701 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
16702 rather than assert.
16703 * src/tables.c (tables_generate): Likewise.
16704
16705 * src/struniq.c (struniq_assert): Now returns void, and aborts
16706 if the assertion is false.
16707 (struniq_assert_p): Remove.
16708 * src/struniq.h: Likewise.
16709
76ae8198
PE
167102002-11-18 Paul Eggert <eggert@twinsun.com>
16711
16712 * data/glr.c (yygetLRActions): Replace `yyindex' with
16713 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
16714 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 16715 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 16716
d3c4e709
AD
167172002-11-18 Akim Demaille <akim@epita.fr>
16718
16719 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
16720 space.
16721 From Tim Van Holder.
16722
8d8a7238
PE
167232002-11-17 Paul Eggert <eggert@twinsun.com>
16724
16725 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
16726 to "SyntaxError" for consistency with my 2002-11-15 change.
16727
16728 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
16729 not define to {}, since this breaks the common use of `YYDPRINTF
16730 ((...));' if a single statement is desired (e.g. before `else').
16731 Work around GCC warnings by surrounding corresponding calls with
16732 {} if needed.
16733 (yyhasResolvedValue): Remove unused function.
16734 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
16735 loop body.
16736 (yyreportSyntaxError): Renamed from yyreportParseError.
16737 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
16738 All uses changed.
16739 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
16740 extern when possible. Remove unused initializations.
16741
b0937b22
AD
167422002-11-16 Akim Demaille <akim@epita.fr>
16743
16744 Augment the similarity between GLR and LALR traces.
16745
16746 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
16747 (YY_REDUCE_PRINT): New.
16748 (yyparse): Use them.
16749 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
16750 YYDPRINT here.
16751 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
16752 state reached after the reduction/recovery, since...
16753 (yyparse, yyprocessOneStack): Report the state we are entering in.
16754
c5e3e510
AD
167552002-11-16 Akim Demaille <akim@epita.fr>
16756
16757 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
16758 Add support for --trace=skeleton.
16759 * src/scan-skel.l: %option debug.
16760 Scan strings of non-@ or \n instead of character by character.
16761 (scan_skel): Handle trace_skeleton.
16762 (QPUTS): New.
16763 (@output_parser_name@, @output_header_name@): ``Restore'' their
16764 support (used to be M4 macros).
16765 * data/yacc.c: Quote larger chunks, a la glr.c.
16766 * data/lalr1.cc: Likewise.
16767 The header guards are no longer available, so use some other
16768 string than `YYLSP_NEEDED'.
16769
4c6cc1db
AD
167702002-11-16 Akim Demaille <akim@epita.fr>
16771
16772 Make the ``Printers and Destructors'' test more verbose, taking
16773 `yacc.c''s behavior as (possibly wrong) reference.
16774
16775 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
16776 instead of fprint on stdout.
16777 Set and report the last_line of the symbols.
16778 Consistently display values and locations.
16779
6d9e8019
PE
167802002-11-16 Paul Eggert <eggert@twinsun.com>
16781
16782 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
16783
6e649e65
PE
167842002-11-15 Paul Eggert <eggert@twinsun.com>
16785
b25d88f6
PE
16786 * tests/actions.at (Actions after errors): New test case.
16787
6e649e65
PE
16788 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
16789 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
16790 tests/action.at, tests/calc.at, tests/conflicts.at,
16791 tests/cxx-type.at, tests/regression.at:
16792 "parse error" -> "syntax error" for POSIX compatibility.
16793 "parsing stack overflow..." -> "parser stack overflow" so
16794 that code matches Bison documentation.
16795
0f39aab9
AD
167962002-11-15 Akim Demaille <akim@epita.fr>
16797
16798 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
16799 take two BRACED_CODE, not two string_content.
16800 Free the scanner's obstack when we are done.
16801 (code_content): New.
16802 * tests/calc.at: Adjust.
16803 * doc/bison.texinfo: Adjust.
16804 Also, make sure to include the `,' for these declarations.
16805
761c1926
AD
168062002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
16807
16808 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
16809 definition; avoids potential autoreconf problems.
16810
b0f98b10
AD
168112002-11-15 Akim Demaille <akim@epita.fr>
16812
16813 Always check the value returned by yyparse.
16814
16815 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
16816 returned by yyparse.
16817 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
16818 Adjust calls.
16819 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
16820 returned by yyparse.
16821
970785f1
PH
168222002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16823
16824 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
16825 on input.at test.
16826
8fcc7db1
PE
168272002-11-14 Paul Eggert <eggert@twinsun.com>
16828
7ec1b48e
PE
16829 * src/output.c (output_skeleton): Call xfopen instead of
16830 duplicating xfopen's body.
16831
cfff7583 16832 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 16833 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 16834
8fcc7db1
PE
16835 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
16836 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
16837 Group compiler. Instead, use "$CC -E bar.c". Include the .h
16838 file twice in the grammar, as an extra check.
16839
16840 * tests/input.at (Torturing the Scanner): Surround the
16841 backslash-newline tests with "#if 0", to make it less likely that
16842 we'll run into compiler bugs. Bring back solitary \ inside
16843 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 16844 test backslash-newline in C character constant.
8fcc7db1 16845
4e8d992c
AD
168462002-11-14 Akim Demaille <akim@epita.fr>
16847
16848 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
16849 status of the compiler.
f32b346d 16850 Calling `exit 1' is no longer needed.
4e8d992c
AD
16851 Reported by Nelson H. F. Beebe.
16852
9501dc6e
AD
168532002-11-14 Akim Demaille <akim@epita.fr>
16854
16855 * tests/atlocal.in (CPPFLAGS): We have config.h.
16856 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
16857 New.
16858 * tests/actions.at, tests/calc.at, tests/conflicts.at,
16859 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
16860 * tests/regression.at, tests/torture.at: Use them for all the
16861 grammars that are to be compiled.
16862 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
16863 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
16864 * doc/bison.texinfo (GLR Parsers): Document `inline'.
16865
18b519c0
AD
168662002-11-14 Akim Demaille <akim@epita.fr>
16867
16868 * doc/bison.texinfo: Various formatting changes (alignments in
16869 samples, additional @group/@end group, GCS in samples.
16870 Use @deffn instead of simple @table to define the directives,
16871 macros, variables etc.
16872
9a86cdb9
PE
168732002-11-13 Paul Eggert <eggert@twinsun.com>
16874
daa33def 16875 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 16876 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 16877
daa33def 16878 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 16879 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
16880 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
16881 * tests/headers.at (export YYLTYPE): Likewise.
16882
16883 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 16884 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 16885
9a86cdb9
PE
16886 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
16887 comments, since they're not portable. Use GNU coding style.
16888
9c1e26bd
AD
168892002-11-13 Akim Demaille <akim@epita.fr>
16890
16891 * data/yacc.c: Leave bigger chunks of quoted text.
16892 (YYDSYMPRINTF): New.
16893 Use it to report symbol activities.
16894 * data/glr.c (YYDSYMPRINTF): New.
16895 Use it.
16896
87f721cc
PE
168972002-11-12 Paul Eggert <eggert@twinsun.com>
16898
16899 Version 1.75b.
16900
16901 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
16902 (yyglrReduce): Return yyok, not 0.
16903 This should avoid the enumerated-type warnings reported
464c6927 16904 by Nelson H. F. Beebe in
161a71f3 16905 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
16906
16907 * lib/bbitset.h (BITSET_INLINE): Remove.
16908 * lib/bitset.h [! BITSET_INLINE]: Remove.
16909 (bitset_set, bitset_reset, bitset_test): Rename local vars
16910 to avoid shadowing warnings by GCC.
16911
16912 * data/glr.c (inline): Remove #define. It's the user's
16913 responsibility to #define it away, just like 'const'.
464c6927 16914 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 16915 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 16916
87f721cc
PE
16917 * Makefile.maint (po-check): Scan .l and .y files instead of the
16918 .c and the .h files that they generate. This fixes the bug
16919 reported by Tim Van Holder in:
161a71f3 16920 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
16921 Look for N_ as well as for _. Try to avoid matching #define for
16922 N_ and _.
16923 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
16924 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
16925 * src/scan-gram.l: Revamp regular expressions so that " and '
16926 do not confuse xgettext.
16927
16928 * src/struniq.h (struniq_new): Do not declare the return type
16929 to be 'const'; this violates the C standard.
16930 * src/struniq.c (struniq_new): Likewise.
16931
be14ade5
AD
169322002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
16933
16934 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
16935 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
16936 linker.
16937
05291fbc
AD
169382002-11-12 Akim Demaille <akim@epita.fr>
16939
16940 * Makefile.maint: Sync with Autoconf:
16941 (local_updates): New.
16942
1f5fd52e
AD
169432002-11-12 Akim Demaille <akim@epita.fr>
16944
16945 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
16946
283f1e64
AD
169472002-11-12 Akim Demaille <akim@epita.fr>
16948
16949 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
16950 locations.
16951
886b69d1
AD
169522002-11-12 Akim Demaille <akim@epita.fr>
16953
16954 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
16955 not yyvalue.
16956
3df37415
AD
169572002-11-12 Akim Demaille <akim@epita.fr>
16958
16959 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
16960 Use it to test the GLR parser.
16961
7bd6c77e
AD
169622002-11-12 Akim Demaille <akim@epita.fr>
16963
16964 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
16965 defines it.
16966 * data/glr.c (yystos): New.
16967 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
16968 (YYDSYMPRINT): New.
16969 (yyval): Don't define it, it is handled via M4.
16970 (yyrecoverParseError): Free verbosely the discarded symbols.
16971 * data/yacc.c (yysymprint): Remove, rather...
16972 (b4_yysymprint_generate): invoke.
16973 * data/c.m4 (b4_yysymprint_generate): New.
16974 Accept pointers as arguments, as opposed to the version from
16975 yacc.c.
16976 (b4_yydestruct_generate): Likewise.
16977 * tests/cations.at (Printers and Destructors): Use Bison directives
16978 instead of CPP macros.
16979 Don't rely on internal details.
16980
b0400cc6
AD
169812002-11-12 Akim Demaille <akim@epita.fr>
16982
16983 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
16984 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
16985 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
16986 it against YYEMPTY and so forth), work on yytoken (i.e., set
16987 it to YYEMPTY etc.).
16988 (yydestruct): Replace with a b4_yydestruct_generate invocation.
16989 (b4_symbol_actions): Remove.
16990 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
16991 for 0, end-of-input.
16992
72f889cc
AD
169932002-11-12 Akim Demaille <akim@epita.fr>
16994
16995 * doc/bison.texinfo (Destructor Decl): New.
16996
b1ae9233
AD
169972002-11-12 Akim Demaille <akim@epita.fr>
16998
16999 * src/tables.c (tables_generate): Use free for pointers that
17000 cannot be NULL, not XFREE.
17001 (pack_vector): Use assert, not fatal, for bound violations.
17002 * src/state.c (state_new): Likewise.
17003 * src/reader.c (reader): Likewise.
17004 * src/lalr.c (set_goto_map): Likewise.
72f889cc 17005 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
17006 the file name.
17007
7ec2d4cd
AD
170082002-11-12 Akim Demaille <akim@epita.fr>
17009
17010 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
17011 Restore.
17012 * src/scan-gram.l (last_string): Is global to the file, not to
17013 yylex.
17014 * src/parse-gram.y (input): Don't append the epilogue here,
17015 (epilogue.opt): do it here, and free the scanner's obstack.
17016 * src/reader.c (epilogue_set): Rename as...
17017 (epilogue_augment): this.
17018 * data/c.m4 (b4_epilogue): Defaults to empty.
17019
573a6cd3
AD
170202002-11-12 Akim Demaille <akim@epita.fr>
17021
17022 * src/getargs.c (long_options): Remove duplicates.
17023 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
17024 Remove.
17025 * doc/bison.rnh: Remove.
17026 * doc/bison.texinfo (VMS Invocation): Remove.
17027
95612cfa
AD
170282002-11-12 Akim Demaille <akim@epita.fr>
17029
17030 * src/struniq.h, src/struniq.c (struniq_t): Is const.
17031 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
17032
17033 Use struniq for symbols.
17034
17035 * src/symtab.h (symbol_t): The tag member is a struniq.
17036 (symbol_type_set): Adjust.
17037 * src/symtab.c (symbol_new): Takes a struniq.
17038 (symbol_free): Don't free the tag member.
17039 (hash_compare_symbol_t, hash_symbol_t): Rename as...
17040 (hash_compare_symbol, hash_symbol): these.
17041 Use the fact that tags as struniqs.
17042 (symbol_get): Use struniq_new.
17043 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
17044 Returns a strniq.
17045 * src/reader.h (merger_list, grammar_currentmerge_set): The name
17046 and type members are struniqs.
17047 * src/reader.c (get_merge_function)
17048 (grammar_current_rule_merge_set): Adjust.
17049 (TYPE, current_type): Are struniq.
17050
17051 Use struniq for file names.
17052
17053 * src/files.h, src/files.c (infile): Split into...
17054 (grammar_file, current_file): these.
17055 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
17056 * src/reduce.c (reduce_print): Likewise.
17057 * src/getargs.c (getargs): Likewise.
17058 * src/complain.h, src/complain.c: Likewise.
17059 * src/main.c (main): Call struniqs_new early enough to use it for
17060 file names.
17061 Don't free the input file name.
17062
3e6656f9
AD
170632002-11-12 Akim Demaille <akim@epita.fr>
17064
17065 * src/symtab.c (symbol_free): Remove dead deactivated code:
17066 type_name are properly removed.
17067 Don't use XFREE to free items that cannot be NULL.
17068 * src/struniq.h, src/struniq.c: New.
17069 * src/main.c (main): Initialize/free struniqs.
17070 * src/parse-gram.y (%union): Add astruniq member.
17071 (yyprint): Adjust.
17072 * src/scan-gram.l (<{tag}>): Return a struniq.
17073 Free the obstack bit that used to store it.
17074 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
17075
7672019c
PE
170762002-11-11 Paul Eggert <eggert@twinsun.com>
17077
17078 Revamp to fix many (but not all) of the C- and M4-related quoting
17079 problems. Among other things, this fixes the Bison bug reported
17080 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 17081 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
17082
17083 Use new @ escapes consistently. Represent brackets with @{ and @}
17084 rather than @<:@ and @:>@, since this works a bit better with dumb
17085 editors like vi. Represent @ with @@, since @ is now consistently
17086 an escape. Use @oline@ and @ofile@ rather than __oline__ and
17087 __ofile__, to avoid unexpected expansions. Similarly, use @output
17088 rather than #output.
17089
17090 * data/c.m4 (b4_copyright): Omit file name from comment, since
17091 the file name could contain "*/".
17092 (b4_synclines_flag): Don't quote the 2nd argument; it should already
17093 be quoted. All uses changed.
17094
17095 * data/glr.c: Use new @ escapes consistently.
17096 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
17097 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
17098 Remove, since they couldn't handle arbitrary characters in file
17099 names.
17100 * data/lalr1.cc: Likewise.
17101 * data/yacc.c: Likewise.
17102
17103 * src/files.c (output_infix): Remove; all uses removed.
17104 * src/files.h: Likewise.
17105
17106 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
17107 mishandled funny characters in file names, and anyway it isn't
17108 needed any more.
17109 * data/yacc.c: Likewise.
17110 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
17111
17112 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
17113 * data/yacc.c: Likewise.
17114
17115 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
17116 strings now.
17117 (muscle_init): Quote filename as a C string.
17118 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
17119 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
17120 * src/output.c (escaped_file_name_output): New function.
17121 (prepare_symbols): Quote tokens for M4.
17122 (prepare): Don't insert output_infix, output_prefix,
17123 output_parser_name, output_header_name; this is now down by scan-skel.
17124 Insert skeleton as a C string.
17125
17126 * src/output.c (user_actions_output, symbol_destructors_output,
17127 symbol_printers_output): Quote filenames for C and M4.
17128 * src/reader.c (prologue_augment, epilogue_set): Likewise.
17129
17130 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
17131 escapes other than \\ and \'; this simplifies the code.
17132 (<SC_STRING>): Likewise, for \\ and \".
17133 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
17134 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
17135 Use new escapes @{ and @} for [ and ].
17136
17137 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
17138 them with auto vars.
17139 Switch to new escape scheme, where @ is the escape character uniformly.
17140 Abort if a stray escape character is found. Avoid unbounded input
17141 buffer when parsing non-escaped text.
17142
17143 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
17144 __oline__, #output, $@, and @{ do not have unintended meanings.
17145
acea4f3b
PE
171462002-11-09 Paul Eggert <eggert@twinsun.com>
17147
17148 Fix the test failure due to GCC warnings described in
161a71f3 17149 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
17150 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
17151 evaluate to 0 if it's impossible for NINF to be in the respective
17152 table.
17153 (yygetLRActions, yyrecoverParseError): Use them.
17154
17155 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
17156 counted in the token inserted at end of file. Now takes
17157 location_t *, not location_t, so that the location can be
17158 adjusted. All uses changed.
17159
17160 * tests/regression.at (Invalid inputs): Adjust wording in
17161 diagnostic to match the new behavior.
17162
17163 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
17164 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
17165 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
17166 abort ();'. This reduces the runtime of the "Many lookaheads"
17167 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
17168 GCC 3.2.
17169
20ef1ad5
PE
171702002-11-07 Paul Eggert <eggert@twinsun.com>
17171
17172 * src/parse-gram.y (CHARACTER): Remove unused token.
17173 All uses removed.
17174
17175 * src/scan-gram.l: Remove stack option. We no longer use the
17176 stack, since the stack was never deeper than 1; instead, use the
17177 new auto var c_context to record the stacked value.
17178
17179 Remove nounput option. At an unexpected end of file, we now unput
17180 the minimal input necessary to end cleanly; this simplifies the
17181 code.
17182
17183 Avoid unbounded token sizes where this is easy.
17184
17185 (unexpected_end_of_file): New function.
17186 Use it to systematize the error message on unexpected EOF.
17187 (last-string): Now auto, not static.
17188 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
17189 (scanner_last_string_free): Remove; not used.
17190 (percent_percent_count): Move decl to just before use.
17191 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
17192 not the (never otherwised-used) CHARACTER.
17193
93724f13
AD
171942002-11-07 Akim Demaille <akim@epita.fr>
17195
17196 Let yyerror always receive the msg as last argument, so that
17197 yyerror can be variadic.
17198
17199 * data/yacc.c (b4_yyerror_args): New.
17200 Use it when calling yyerror.
17201 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
17202 Use it when calling yyerror.
17203 * doc/bison.texinfo (Error Reporting): Adjust.
17204 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
17205 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
17206
6e40b4eb
AD
172072002-11-06 Akim Demaille <akim@epita.fr>
17208
17209 #line should have quoted strings.
17210 Ideally, this should be done by m4_quotearg.
17211
17212 * src/scan-skel.l: Include quotearg.h.
17213 Quote __ofile__.
17214 * src/output.c (symbol_printers_output)
17215 (symbol_destructors_output): Quote the file name.
17216
2dfbfc12
AD
172172002-11-06 Akim Demaille <akim@epita.fr>
17218
17219 * tests/regression.at (Invalid inputs): Adjust to the recent
17220 messages.
17221
437c2d80
AD
172222002-11-06 Akim Demaille <akim@epita.fr>
17223
17224 Restore --no-lines.
17225 Reported by Jim Kent.
17226
17227 * data/c.m4 (b4_syncline): New.
17228 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
17229 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
17230 * src/output.c (user_actions_output): Likewise.
17231 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 17232 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 17233
900c5db5
AD
172342002-11-06 Akim Demaille <akim@epita.fr>
17235
17236 * src/main.c (main): Free `infile'.
17237 * src/scan-gram.l (handle_syncline): New.
17238 Recognize `#line'.
17239 * src/output.c (user_actions_output, symbol_destructors_output)
17240 (symbol_printers_output): Use the location's file name, not
17241 infile.
17242 * src/reader.c (prologue_augment, epilogue_set): Likewise.
17243
e183b123 172442002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 17245
e183b123 17246 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 17247 either has GLR conflict entries.
e183b123 17248
193eb6b7
PE
172492002-11-05 Paul Eggert <eggert@twinsun.com>
17250
e183b123
PE
17251 * src/scan-gram.l: Use more accurate diagnostics, e.g.
17252 "integer out of range" rather than "invalid value".
17253 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
17254 accordingly.
17255
193eb6b7
PE
17256 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
17257 Also, remove one static variable in the scanner.
17258
17259 * src/scan-gram.l (braces_level): Now auto, not static.
17260 Initialize to zero if the compiler is being picky.
17261 (INITIAL): Clear braces_level instead of incrementing it.
17262 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
17263 as POSIX 1003.1-2001 requires.
17264 * src/system.h (IF_LINT): New macro, taken from coreutils.
17265 * configure.ac: Define "lint" if --enable-gcc-warnings.
17266
29c01725
AD
172672002-11-05 Akim Demaille <akim@epita.fr>
17268
17269 * src/scan-gram.l: When it starts with `%', complain about the
17270 whole directive, not just that `invalid character: %'.
17271
8aeac3ca
AD
172722002-11-04 Akim Demaille <akim@epita.fr>
17273
17274 * Makefile.maint: Update from Autoconf.
17275 (update, cvs-update, po-update, do-po-update): New.
17276
793a58bb
AD
172772002-11-04 Akim Demaille <akim@epita.fr>
17278
17279 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
17280 and yyerror.
17281 Have yyerror `use' its arguments.
17282 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
17283 returns true when location & yacc & pure & parse-param.
17284 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
17285
c4d720cd
AD
172862002-11-04 Akim Demaille <akim@epita.fr>
17287
17288 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
17289 clashes.
17290 * src/scan-gram.l: Use [\'] instead of ['] to pacify
17291 font-lock-mode.
17292 Use complain_at.
17293 Use quote, not quote_n since LOCATION_PRINT no longer uses the
17294 slot 0.
17295
613a0dc5
PE
172962002-11-03 Paul Eggert <eggert@twinsun.com>
17297
17298 * src/reader.c (get_merge_function, grammar_current_rule_check):
17299 Use consistent diagnostics for reporting type name clashes.
17300 Quote the types with <>, for consistency with Yacc.
17301 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
17302
2a8d363a
AD
173032002-11-03 Akim Demaille <akim@epita.fr>
17304
17305 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
17306 New.
17307 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
17308 (b4_parse_param): Remove.
17309 Use b4_identification.
17310 Propagate b4_pure_args where needed to pass them to yyerror.
17311 * data/glr.m4 (b4_parse_param): Remove.
17312 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
17313 (b4_lpure_formals): New.
17314 Use b4_identification.
17315 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
17316 b4_user_formals and b4_user_args.
17317 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
17318 (yyreportAmbiguity): When using a pure parser, also need
17319 the location, and the parse-params.
17320 Adjust callers.
17321 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
17322 When using a pure parser, also need the parse-params.
17323 Adjust callers.
17324 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
17325 (%pure-parser + %parse-param) LALR and GLR parsers.
17326 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
17327 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
17328 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
17329 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
17330 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
17331 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
17332 * doc/bison.texinfo: Untabify the whole file.
17333 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
17334 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
17335 (Error Reporting): Adjust to these new directives.
17336 Document %error-verbose, deprecate YYERROR_VERBOSE.
17337
9e32add8
AD
173382002-11-03 Akim Demaille <akim@epita.fr>
17339
17340 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
17341 AT_CHECK_CALC_GLR invocations to use % directives, instead of
17342 command line options.
17343 * tests/cxx-type.at: Formatting changes.
17344
b02d90a5
PE
173452002-11-03 Paul Eggert <eggert@twinsun.com>
17346
17347 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
17348 to count columns correctly, and to check for invalid inputs.
9e32add8 17349
b02d90a5
PE
17350 Use mbsnwidth to count columns correctly. Account for tabs, too.
17351 Include mbswidth.h.
17352 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
17353 (extend_location): New function.
17354 (YY_LINES): Remove.
17355
17356 Handle CRLF in C code rather than in Lex code.
17357 (YY_INPUT): New macro.
17358 (no_cr_read): New function.
17359
17360 Scan UCNs, even though we don't fully handle them yet.
17361 (convert_ucn_to_byte): New function.
17362
17363 Handle backslash-newline correctly in C code.
17364 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
17365 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
17366 all uses changed.
17367 (tag, splice): New EREs. Do not allow NUL or newline in tags.
17368 Use {splice} wherever C allows backslash-newline.
17369 YY_STEP after space, newline, vertical-tab.
17370 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 17371
b02d90a5
PE
17372 (letter, id): Don't assume ASCII; e.g., spell out a-z.
17373
17374 ({int}, handle_action_dollar, handle_action_at): Check for integer
17375 overflow.
9e32add8 17376
b02d90a5
PE
17377 (YY_STEP): Omit trailing semicolon, so that it's more like C.
17378
17379 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
17380 as well as \000. Check for UCHAR_MAX, not 255.
17381 Allow \x with an arbitrary positive number of digits, as in C.
17382 Check for overflow here.
17383 Allow \? and UCNs, for compatibility with C.
17384
17385 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
17386 with quote slot used by complain_at.
17387
17388 * tests/input.at: Add tests for backslash-newline, m4 quotes
17389 in symbols, long literals, and funny escapes in strings.
17390
17391 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
17392 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
17393 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
17394 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
17395 * m4/mbswidth.m4: New file, from GNU coreutils.
17396
17397 * doc/bison.texinfo (Grammar Outline): Document // comments.
17398 (Symbols): Document that trigraphs have no special meaning in Bison,
17399 nor is backslash-newline allowed.
17400 (Actions): Document that trigraphs have no special meaning.
17401
17402 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
17403 no longer used.
17404
174052002-11-02 Paul Eggert <eggert@twinsun.com>
17406
17407 * src/reader.c: Don't include quote.h; not needed.
17408 (get_merge_function): Reword warning to be consistent with
17409 type clash diagnostic in grammar_current_rule_check.
17410
17411 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
17412 bug in trigraph handling.
17413
17414 * src/output.c (prepare_symbols): When printing token names,
17415 escape "[" as "@<:@" and likewise for "]".
17416
17417 * src/system.h (errno): Remove declaration, as we are now
17418 assuming C89 or better, and C89 guarantees errno.
17419
762b212b
PE
174202002-10-30 Paul Eggert <eggert@twinsun.com>
17421
17422 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
17423 Check for close failures.
17424 * src/files.h (xfclose): Return void, not int, since it always
17425 returned zero.
17426 * src/files.c (xfclose): Likewise. Report I/O error if ferror
17427 indicates one.
17428 * src/output.c (output_skeleton): Use xfclose rather than fclose
17429 and ferror. xfclose now checks ferror.
17430
17431 * data/glr.c (YYLEFTMOST_STATE): Remove.
17432 (yyreportTree): Use a stack-based leftmost state. This avoids
17433 our continuing battles with bogus warnings about initializers.
17434
56100c60
AD
174352002-10-30 Akim Demaille <akim@epita.fr>
17436
17437 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
17438 #if.
17439
51b4a04c
PH
174402002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17441
17442 * tests/glr-regr1.at: New test for reported regressions.
17443 * tests/testsuite.at: Add glr-regr1.at test.
17444 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 17445
bf1ebda2
PE
174462002-10-24 Paul Eggert <eggert@twinsun.com>
17447
5c16c6b1
PE
17448 Version 1.75a.
17449
bf1ebda2
PE
17450 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
17451 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
17452 we use malloc. Don't assume 'A' through 'Z' are contiguous.
17453 Don't assume strdup exists; POSIX says its an XSI extension.
17454 Check for buffer overflow on input.
17455
b526ee61
AD
174562002-10-24 Akim Demaille <akim@epita.fr>
17457
17458 * src/output.c (output_skeleton): Don't disable M4sugar comments
17459 too soon: it results in comments being expanded.
17460 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
17461 first output.
17462
f1886bb2
AD
174632002-10-24 Akim Demaille <akim@epita.fr>
17464
17465 * data/yacc.c (m4_int_type): New.
17466 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
17467 char' as only yacc.c wants K&R portability.
17468 * data/glr.c (yysigned_char): Remove.
17469 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
17470 Reported by Quoc Peyrot.
17471
c5576256
PE
174722002-10-23 Paul Eggert <eggert@twinsun.com>
17473
17474 * src/main.c (main): With --trace=time, report times even if a
17475 non-fatal error occurs. Formerly, the times were reported in some
17476 such cases but not in others.
17477 * src/reader.c (reader): Just return if a complaint has been issued,
17478 instead of exiting, so that 'main' can report times.
17479
27b0ffea
AD
174802002-10-22 Akim Demaille <akim@epita.fr>
17481
17482 * src/system.h: Include sys/types.
17483 Reported by Bert Deknuydt.
17484
223a7883
PE
174852002-10-23 Paul Eggert <eggert@twinsun.com>
17486
17487 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
17488 Suggested by Art Haas.
17489
174902002-10-22 Paul Eggert <eggert@twinsun.com>
17491
17492 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
17493 decl; not needed any more.
17494 * src/main.c (main): Use return to exit, undoing yesterday's change.
17495 The last OS that we could find where this wouldn't work is
17496 SunOS 3.5, and that's too old to worry about now.
17497
17498 * data/glr.c (struct yyltype): Define members even when not
17499 doing locations. This is more consistent with yacc.c, and it
17500 works around the following bug reports:
161a71f3
PE
17501 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
17502 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 17503
223a7883
PE
17504 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
17505 @acronym consistently. Standardize on "Yacc" instead of "YACC",
17506 "Algol" instead of "ALGOL". Give a bit more history about BNF.
17507
8b76775a
AD
175082002-10-22 Akim Demaille <akim@epita.fr>
17509
17510 * data/README: New.
17511
6db10d14
PE
175122002-10-21 Paul Eggert <eggert@twinsun.com>
17513
17514 Be consistent about 'bool'; the old code used an enum in one
17515 module and an int in another, and this violates the C standard.
17516 * m4/stdbool.m4: New file, from coreutils 4.5.3.
17517 * configure.ac (AC_HEADER_STDBOOL): Add.
17518 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
17519 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
17520 * src/symtab.c (hash_compare_symbol_t): Likewise.
17521 * src/system.h (bool, false, true): Use a definition consistent
17522 with ../lib/hash.c. All uses changed.
17523
17524 * src/complain.c (warning_issued): Renamed from warn_message_count,
17525 so that we needn't worry about integer overflow (!).
17526 Now of type bool. All uses changed.
17527 (complaint_issued): Renamed from complain_message_count; likewise.
17528
17529 * src/main.c (main): Use exit to exit with failure.
27b0ffea 17530
6db10d14
PE
17531 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
17532 rather than 1 and 0.
17533 * src/main.c (main): Likewise.
17534 * src/getargs.c (getargs): Likewise.
17535 * src/reader.c (reader): Likewise.
17536
17537 * src/getarg.c (getargs): Remove duplicate code for
17538 "Try `bison --help'".
17539
17540 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
17541 What was that "2" for?
17542
17543 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
17544 * src/getargs.c (usage): Likewise.
17545
17546 * src/getargs.c (getargs): When there are too few operands, report
17547 the last one. When there are too many, report the first extra
17548 one. This is how diffutils does it.
17549
92a060fd
PE
175502002-10-20 Paul Eggert <eggert@twinsun.com>
17551
17552 Remove K&R vestiges.
17553 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
17554 * src/complain.c (VA_START): Remove. Assume prototypes.
17555 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
17556 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
17557 fatal): Assume prototypes.
17558 * src/complain.h: Assume prototypes.
17559 * src/system.h (PARAMS): Remove.
17560 Include <limits.h> unconditionally, since it's guaranteeed even
17561 for a freestanding C89 compiler.
17562 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
17563 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 17564
e7cb57c0
AD
175652002-10-20 Akim Demaille <akim@epita.fr>
17566
17567 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
17568 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
17569 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
17570 (yyresolveStates, yyresolveAction, yyresolveStack)
17571 (yyprocessOneStack): Use them.
17572 (yy_reduce_print): New.
17573 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
17574
0245f82d
AD
175752002-10-20 Akim Demaille <akim@epita.fr>
17576
17577 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
17578 arguments and output `void'.
17579 (b4_c_function): Rename as...
17580 (b4_c_function_def): this.
17581 (b4_c_function_decl, b4_c_ansi_function_def)
17582 (b4_c_ansi_function_decl): New.
17583 Change the interpretation of the arguments: before `int, foo', now
17584 `int foo, foo'.
17585 * data/yacc.c (yyparse): Prototype and define thanks to these.
17586 Adjust b4_c_function_def uses.
17587 * data/glr.c (yyparse): Likewise, but ANSI only.
17588
39912f52
AD
175892002-10-20 Akim Demaille <akim@epita.fr>
17590
17591 * src/output.c (prepare): Move the definition of `tokens_number',
17592 `nterms_number', `undef_token_number', `user_token_number_max'
17593 to...
17594 (prepare_tokens): Here.
17595 (prepare_tokens): Rename as...
17596 (prepare_symbols): this.
17597 (prepare): Move the definition of `rules_number' to...
17598 (prepare_rules): here.
17599 (prepare): Move the definition of `last', `final_state_number',
17600 `states_number' to...
17601 (prepare_states): here.
17602 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
17603
20c1e2ad
AD
176042002-10-20 Akim Demaille <akim@epita.fr>
17605
17606 * src/tables.h, src/tables.c, src/output.c: Comment changes.
17607
21964f43
AD
176082002-10-20 Akim Demaille <akim@epita.fr>
17609
17610 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
17611 * data/c.m4: here.
17612
66d30cd4
AD
176132002-10-20 Akim Demaille <akim@epita.fr>
17614
17615 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
17616 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
17617 `pair'.
17618 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
17619 `name' to...
17620 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
17621 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
17622 These.
17623
95f2c9fe
PE
176242002-10-19 Paul Eggert <eggert@twinsun.com>
17625
17626 Do not create a temporary file, as that involves security and
17627 cleanup headaches. Instead, use a pair of pipes.
17628 Derived from a suggestion by Florian Krohm.
17629 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
17630 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
17631 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
17632 (BISON_PREREQ_SUBPIPE): Add.
17633 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
17634 Add subpipe.h, subpipe.c.
17635 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
17636 * po/POTFILES.in: Add lib/subpipe.c.
17637 * src/output.c: Include "subpipe.h".
17638 (m4_invoke): Remove decl.
17639 (scan_skel): New decl.
17640 (output_skeleton): Use pipe rather than temporary file for m4 input.
17641 Check that m4sugar.m4 is readable, to avoid deadlock.
17642 Check for pipe I/O error.
17643 * src/scan-skel.l (readpipe): Remove decl.
17644 (scan_skel): New function, to be used in place of m4_invoke.
17645 Read from stream rather than file.
66d30cd4 17646
95f2c9fe
PE
17647 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
17648 float, as this generates a warning on Solaris 8 + GCC 3.2 with
17649 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
17650 this generates a more-accurate value anyway.
17651
17652 * lib/timevar.c (timervar_accumulate): Rename locals to
17653 avoid confusion with similarly-named more-global.
17654 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
17655
17656 * src/output.c (prepare): Use xstrdup to convert char const *
17657 to char *, to avoid GCC warning.
17658
c19988b7
AD
176592002-10-19 Akim Demaille <akim@epita.fr>
17660
17661 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
17662 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
17663 Use them to have `calc.y' ready for %pure-parser.
17664 * data/yacc.c (YYLEX): Pass a yylex return type to
17665 b4_c_function_call.
17666
ae7453f2
AD
176672002-10-19 Akim Demaille <akim@epita.fr>
17668
17669 Prototype support of %lex-param and %parse-param.
17670
17671 * src/parse-gram.y: Add the definition of the %lex-param and
17672 %parse-param tokens, plus their rules.
17673 Drop the `_' version of %glr-parser.
17674 Add the "," token.
17675 * src/scan-gram.l (INITIAL): Scan them.
17676 * src/muscle_tab.c: Comment changes.
17677 (muscle_insert, muscle_find): Rename `pair' as `probe'.
17678 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
17679 (muscle_entry_s): The `value' member is no longer const.
17680 Adjust all dependencies.
17681 * src/muscle_tab.c (muscle_init): Adjust: use
17682 MUSCLE_INSERT_STRING.
17683 Initialize the obstack earlier.
17684 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
17685 (muscle_pair_list_grow): New.
17686 * data/c.m4 (b4_c_function_call, b4_c_args): New.
17687 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
17688 * tests/calc.at: Use %locations, not --locations.
17689 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
17690
0e575721
AD
176912002-10-19 Akim Demaille <akim@epita.fr>
17692
17693 * src/getargs.c (usage): Take status as argument and exit
17694 accordingly.
17695 Report the traditional `Try ... --help' message when status != 0.
17696 (usage, version): Don't take a FILE * as arg, it is pointless.
17697 (getargs): When there is an incorrect number of arguments, make it
17698 an error, and report it GNUlically thanks to `usage ()'.
17699
724ce7f5
PE
177002002-10-18 Paul Eggert <eggert@twinsun.com>
17701
3a781eb2
PE
17702 * data/glr.c (yyreportParseError): Don't assume that sprintf
17703 yields the length of the printed string, as this is not true
17704 on SunOS 4.1.4. Reported by Peter Klein.
17705
724ce7f5
PE
17706 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
17707 * tests/conflicts.at (%nonassoc and eof): Likewise.
17708 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
17709
473d0a75
AD
177102002-10-17 Akim Demaille <akim@epita.fr>
17711
17712 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
17713 * src/getargs.c (trace_types, trace_args): Adjust.
17714 * src/reader.c (grammar_current_rule_prec_set)
17715 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
17716 Standardize error messages.
17717 And s/@prec/%prec/!
17718 (reader): Use trace_flag to enable scanner/parser debugging,
17719 instead of an adhoc scheme.
17720 * src/scan-gram.l: Remove trailing debugging code.
17721
e76d2469
PE
177222002-10-16 Paul Eggert <eggert@twinsun.com>
17723
93e2236a
PE
17724 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
17725 MUSCLE_TAB_H.
17726
e76d2469
PE
17727 * NEWS: Officially drop support for building Bison with K&R C,
17728 since it didn't work anyway and it's not worth worrying about.
17729 * Makefile.maint (wget_files): Remove ansi2knr.c.
17730 (ansi2knr.c-url_prefix): Remove.
17731 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
17732 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
17733 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
17734
5bd1c419
PE
177352002-10-15 Paul Eggert <eggert@twinsun.com>
17736
17737 Stop using the "enum_" trick for K&R-style function definitions;
17738 it confused me, and I was the author! Instead, assume that people
17739 who want to use K&R C compilers (when using these modules in GCC,
17740 perhaps?) will run ansi2knr.
17741
17742 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
17743 All uses of "enum_" changed to "enum ".
17744 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
17745 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 17746
5bd1c419
PE
17747 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
17748 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
17749 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
17750 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
17751 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
17752 abitset_not, abitset_ones, abitset_or, abitset_or_and,
17753 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
17754 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
17755 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
17756 Use function prototypes; this removes the need for declaring
17757 static functions simply to provide their prototypes.
17758 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
17759 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
17760 bitset_count_, bitset_create, bitset_dump, bitset_first,
17761 bitset_free, bitset_init, bitset_last, bitset_next,
17762 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
17763 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
17764 bitset_print, bitset_release_memory, bitset_toggle_,
17765 bitset_type_choose, bitset_type_get, bitset_type_name_get,
17766 debug_bitset): Likewise.
17767 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
17768 * lib/bitset_stats.c (bitset_log_histogram_print,
17769 bitset_percent_histogram_print, bitset_stats_and,
17770 bitset_stats_and_cmp, bitset_stats_and_or,
17771 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
17772 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
17773 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
17774 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
17775 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
17776 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
17777 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
17778 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
17779 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
17780 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
17781 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
17782 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
17783 bitset_stats_zero): Likewise.
17784 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
17785 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
17786 bitsetv_dump, debug_bitsetv): Likewise.
17787 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
17788 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
17789 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
17790 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
17791 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
17792 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
17793 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
17794 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
17795 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
17796 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
17797 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
17798 Likewise.
17799 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
17800 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
17801 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
17802 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
17803 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
17804 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
17805 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
17806 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
17807 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
17808 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
17809 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 17810
ae26e1f0
AD
178112002-10-14 Akim Demaille <akim@epita.fr>
17812
17813 Version 1.75.
17814
d43baf71
AD
178152002-10-14 Akim Demaille <akim@epita.fr>
17816
17817 * tests/Makefile.am (maintainer-check-posix): New.
17818
7ebc83e3
AD
178192002-10-14 Akim Demaille <akim@epita.fr>
17820
17821 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
17822 member.
17823
05846dae
AD
178242002-10-14 Akim Demaille <akim@epita.fr>
17825
17826 * src/tables.c (table_ninf_remap): base -> tab.
17827 Reported by Matt Rosing.
17828
1318e37d
PE
178292002-10-14 Paul Eggert <eggert@twinsun.com>
17830
447fbb17
PE
17831 * tests/action.at, tests/calc.at, tests/conflicts.at,
17832 tests/cxx-type.at, tests/headers.at, tests/input.at,
17833 tests/regression.at, tests/synclines.at, tests/torture.at:
17834 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
17835 so that the tests still work even if POSIXLY_CORRECT is set.
17836 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 17837
1318e37d
PE
17838 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
17839 for portability to K&R hosts. Fix typo: signed char is guaranteed
17840 only to 127, not to 128.
17841 * data/glr.c (yysigned_char): New type.
17842 * data/yacc.c (yysigned_char): Likewise.
17843 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
17844
cc0f0794
PE
178452002-10-13 Paul Eggert <eggert@twinsun.com>
17846
5038f418
PE
17847 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
17848 true due to limited range of data type" warning from GCC.
17849
cc0f0794
PE
17850 * data/c.m4 (b4_token_defines): Protect against double-inclusion
17851 by wrapping enum yytokentype's definition inside #ifndef
17852 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
17853
6fed0802
AD
178542002-10-13 Akim Demaille <akim@epita.fr>
17855
17856 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
17857 Un yy- yyrhs to avoid the name clash with the global YYRHS.
17858
32f0598d
AD
178592002-10-13 Akim Demaille <akim@epita.fr>
17860
17861 * Makefile.maint: Update from Autoconf 2.54.
17862 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
17863
7ea9a33f
AD
178642002-10-13 Akim Demaille <akim@epita.fr>
17865
17866 * src/print.c (print_state): Separate the list of solved conflicts
17867 from the other items.
17868 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
17869
ea99527d
AD
178702002-10-13 Akim Demaille <akim@epita.fr>
17871
17872 Let nondeterministic skeletons be usable with deterministic
17873 tables.
17874
17875 With the patch, GAWK compiled by GCC without -O2 passes its test
17876 suite using a GLR parser driven by LALR tables. It fails with -O2
17877 because `struct stat' gives two different answers on my machine:
17878 88 (definition of an auto var) and later 96 (memset on this var).
17879 Hence the stack is badly corrumpted. The headers inclusion is to
17880 blame: if I move the awk.h inclusion before GLR's system header
17881 inclusion, the two struct stat have the same size.
17882
17883 * src/tables.c (pack_table): Always create conflict_table.
17884 (token_actions): Always create conflict_list.
17885 * data/glr.c (YYFLAG): Remove, unused.
17886
f377f69f
AD
178872002-10-13 Akim Demaille <akim@epita.fr>
17888
17889 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
17890 (O0FLAGS): New.
17891 (VALGRIND, GXX): New.
17892 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
17893 * tests/bison.in: Run $PREBISON a pre-command.
17894 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
17895 (maintainer-check-g++): New.
17896 * Makefile.am (maintainer-check): New.
17897
2a1fe6ed
AD
178982002-10-13 Akim Demaille <akim@epita.fr>
17899
17900 * data/glr.c: Formatting changes.
17901 Tweak some trace messages to match yacc.c's.
17902
f50adbbd
AD
179032002-10-13 Akim Demaille <akim@epita.fr>
17904
17905 GLR parsers sometimes raise parse errors instead of performing the
17906 default reduction.
17907 Reported by Charles-Henry de Boysson.
17908
17909 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 17910 check the length of the traces when %glr.
f50adbbd
AD
17911 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
17912 GLR's traces.
17913 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
17914 Test GLR parsers.
17915 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
17916 (yyltype): Remove the yy prefix from the member names.
17917 (yytable): Complete its comment.
17918 (yygetLRActions): Map error action number from YYTABLE from
17919 YYTABLE_NINF to 0.
17920 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
17921 (which was a bug: it should have been YYTABEL_NINF, and yet it was
17922 not satisfying as we could compare an YYACTION computed from
17923 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
17924 only value for error actions.
17925 (yyreportParseError): In verbose parse error messages, don't issue
17926 `error' in the list of expected tokens.
17927 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
17928 next action to perform to match glr.c's decoding.
17929 (yytable): Complete its comment.
17930
bcbad5b9
PE
179312002-10-13 Paul Eggert <eggert@twinsun.com>
17932
17933 Fix problem reported by Henrik Grubbstroem in
161a71f3 17934 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
17935 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
17936 because the Bison parser reads the second action before reducing
17937 the first one.
17938 * src/scan-gram.l (rule_length): New static var.
17939 Use it to keep track of the rule length in the scanner, since
17940 we can't expect the parser to be in lock-step sync with the scanner.
17941 (handle_action_dollar, handle_action_at): Use this var.
17942 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 17943
14904b89
PE
179442002-10-12 Paul Eggert <eggert@twinsun.com>
17945
1fe611e5
PE
17946 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
17947 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
17948 Include <sys/time.h> when checking for clock_t and struct tms.
17949 Use same include order as source.
17950 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 17951 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 17952
1fe611e5
PE
17953 * lib/timevar.c: Update copyright date and clarify comments.
17954 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 17955
1fe611e5
PE
17956 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
17957 GCC version as of today, then merge Bison's changes.
17958 Change "GCC" to "Bison" in copyright notice. timevar.def's
17959 author is Akim, so change that too.
17960
98194095
PE
17961 * src/reader.c (grammar_current_rule_check):
17962 Don't worry about the default action if $$ is untyped.
17963 Prevents bogus warnings reported by Jim Gifford in
161a71f3 17964 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 17965
14904b89
PE
17966 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
17967 * data/glr.c, data/lalr1.cc, data/yacc.c:
17968 Output token definitions before the first part of user declarations.
17969 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 17970 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 17971
ff6dca18
PE
179722002-10-11 Paul Eggert <eggert@twinsun.com>
17973
17974 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
17975 (yyparse): here. This undoes some of the 2002-07-25 change.
17976 Compatibility problem reported by Ralf S. Engelschall with
17977 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
17978
eb714592
AD
179792002-10-11 Akim Demaille <akim@epita.fr>
17980
17981 * tests/regression.at Characters Escapes): New.
17982 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
17983 characters.
17984 Reported by Jan Nieuwenhuizen.
17985
b7195100
AD
179862002-10-11 Akim Demaille <akim@epita.fr>
17987
17988 * po/id.po: New.
17989
f28a0f2d
PE
179902002-10-10 Paul Eggert <eggert@twinsun.com>
17991
17992 Portability fixes for bitsets; this also avoids several GCC
17993 warnings.
17994
17995 * lib/abitset.c: Include <stddef.h>, for offsetof.
17996 * lib/lbitset.c: Likewise.
17997
17998 * lib/abitset.c (abitset_bytes): Return a size that is aligned
17999 properly for vectors of objects. Do not assume that adding a
18000 header size to a multiple of a word size yields a value that is
18001 properly aligned for the whole union.
18002 * lib/bitsetv.c (bitsetv_alloc): Likewise.
18003
18004 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
18005 unique names for structures.
18006 * lib/ebitset.c (ebitset_bytes): Likewise.
18007 * lib/lbitset.c (lbitset_bytes): Likewise.
18008
18009 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
18010 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
18011 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
18012 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
18013 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
18014 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
18015 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
18016 to improve the type-checking that GCC can do.
18017 * lib/bitset.c (bitset_op4_cmp): Likewise.
18018 * lib/bitset_stats.c (bitset_stats_count,
18019 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
18020 bitset_stats_copy, bitset_stats_disjoint_p,
18021 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
18022 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
18023 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
18024 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
18025 bitset_stats_and_or_cmp, bitset_stats_andn_or,
18026 bitset_stats_andn_or_cmp, bitset_stats_or_and,
18027 bitset_stats_or_and_cmp): Likewise.
18028 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
18029 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
18030 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
18031 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
18032
18033 * lib/abitset.h: Include bitset.h, not bbitset.h.
18034 * lib/ebitset.h: Likewise.
18035 * lib/lbitset.h: Likewise.
18036
18037 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
18038 All instances of parameters of type enum bitset_opts are now of
18039 type enum_bitset_opts, to conform to the C Standard, and similarly
18040 for enum_bitset_type.
18041 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
18042 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
18043
18044 Do not use "struct bitset_struct" to mean different things in
18045 different modules. Not only is this confusing, it violates
18046 the C Standard, which requires that structure types in different
18047 modules must be compatible if one is to be passed to the other.
18048 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
18049 All instances of "struct bitset_struct *" replaced with "bitset".
18050 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
18051 (union bitset_union, struct abitset_struct, struct ebitset_struct,
18052 struct lbitset_struct, struct bitset_stats_struct): New types.
18053 All uses of struct bitset_struct changed to union bitset_union,
18054 etc.
ba0fe3c7 18055 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
18056 struct bitset_struct): Remove.
18057 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
18058 struct bitset_struct): Remove.
18059 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
18060 bitset_struct): Remove.
18061 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
18062 Likewise.
18063
18064 Do not call a function of type T using a call that assumes the
18065 function is of a different type U. Standard C requires that a
18066 function must be called with a type that is compatible with its
18067 definition.
18068 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
18069 New decls.
18070 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
18071 New functions.
18072 * lib/ebitset.c (PFV): Remove.
18073 * lib/lbitset.c (PFV): Likewise.
18074 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
18075 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
18076 decls.
18077 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
18078 (ebitset_vtable): Use them.
18079 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
18080 lbitset_xor): New functions.
18081 (lbitset_vtable): Use them.
18082
18083 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
18084 Declare.
18085
18086 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
18087 GCC warning.
18088 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
18089 Use offsetof, for simplicity.
18090
6fbe4984
PE
180912002-10-06 Paul Eggert <eggert@twinsun.com>
18092
18093 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
18094 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 18095 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
18096 which was inadvertently undone by the 2002-09-30 patch.
18097 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
18098 the same width as int.
18099
420f93c8
PE
181002002-10-04 Paul Eggert <eggert@twinsun.com>
18101
18102 Version 1.50.
18103
18104 * configure.ac (AC_INIT), NEWS: Increment version number.
18105
18106 * doc/bison.texinfo: Minor spelling, grammar, and white space
18107 fixes.
18108 (Symbols): Mention that any negative value returned from yylex
18109 signifies end-of-input. Warn about negative chars. Mention
18110 the portable Standard C character set.
18111
18112 The GNU coding standard says CFLAGS and YFLAGS are reserved
18113 for the installer to set.
18114 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
18115 * src/Makefile.am (AM_CFLAGS): Likewise.
18116 (AM_YFLAGS): Renamed from YFLAGS.
18117
18118 Fix some MAX and MIN problems.
18119 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
18120 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
18121 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
18122 * src/reader.c (reader): Use it.
18123
18124 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
18125 POSIX 1003.1-2001 has removed fgrep.
18126
181272002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
18128
18129 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
18130 interpreted as signed.
18131 * lib/ebitset.c (ebitset_list): Fix bug.
18132
ff68026d
PE
181332002-10-01 Paul Eggert <eggert@twinsun.com>
18134
18135 More fixes for 64-bit hosts and large bitsets.
18136
18137 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
18138 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
18139 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
18140 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
18141 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
18142 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
18143 bitset_count_): Likewise.
18144 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
18145 bitset_first, bitset_last): Likewise.
18146 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
18147 bitset_stats_list_reverse, bitset_stats_size,
18148 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
18149 Likewise.
18150 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
18151 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
18152 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
18153 bitsetv_reflexive_transitive_closure): Likewise.
18154 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
18155 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
18156 Likewise.
18157 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
18158 Likewise.
420f93c8 18159
ff68026d
PE
18160 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
18161 Use size_t, not unsigned int, to count bytes.
18162 * lib/abitset.h (abitset_bytes): Likewise.
18163 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
18164 Likewise.
18165 * lib/bitset.h (bitset_bytes): Likewise.
18166 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
18167 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
18168 * lib/bitsetv.c (bitsetv_alloc): Likewise.
18169 * lib/ebitset.c (ebitset_bytes): Likewise.
18170 * lib/ebitset.h (ebitset_bytes): Likewise.
18171 * lib/lbitset.c (lbitset_bytes): Likewise.
18172 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 18173
ff68026d
PE
18174 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
18175 abitset_subset_p, abitset_disjoint_p, abitset_and,
18176 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
18177 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
18178 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
18179 abitset_or_and, abitset_or_and_cmp):
18180 Use bitset_windex instead of unsigned int.
18181 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
18182 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
18183 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
18184 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
18185 Likewise.
18186 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 18187
ff68026d
PE
18188 * lib/bitset.c (bitset_print):
18189 Use proper printf formats for widths of integer types.
18190 * lib/bitset_stats.c (bitset_percent_histogram_print,
18191 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
18192 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
18193 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
18194 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 18195
ff68026d
PE
18196 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
18197 BITSET_SIZE_MAX): New macros.
18198 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
18199 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
18200 to BITSET_WINDEX_MAX.
18201
18202 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
18203 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
18204 since we now return the bitset_bindex type (not int).
18205
18206 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
18207 when computing sizes.
18208 * lib/ebitset.c (ebitset_elts_grow): Likewise.
18209
18210 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
18211 and avoid cast to unsigned.
18212
6aa452a6
AD
182132002-09-30 Akim Demaille <akim@epita.fr>
18214
18215 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
18216 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
18217 Updates from Michael Hayes.
18218
927f7817
AD
182192002-09-30 Art Haas <ahaas@neosoft.com>
18220
18221 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
18222 invocations.
18223 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
18224 defined.
18225
9738f41e
AD
182262002-09-27 Akim Demaille <akim@epita.fr>
18227
18228 Version 1.49c.
18229
a5c75d7f
AD
182302002-09-27 Akim Demaille <akim@epita.fr>
18231
18232 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
18233 (Because of AC_LIBSOURCE).
18234
8280e179
AD
182352002-09-27 Akim Demaille <akim@epita.fr>
18236
18237 Playing with Autoscan.
18238
18239 * configure.ac: Remove the old LIBOBJ tweaks.
18240 (AC_REPLACE_FUNCS): Add strrchr and strtol.
18241 * lib/strrchr.c: New.
18242 * lib/strtol.c: New, from the Coreutils 4.5.1.
18243
ae64af35
AD
182442002-09-27 Akim Demaille <akim@epita.fr>
18245
18246 Playing with Autoscan.
18247
18248 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
18249 * lib/Makefile.am (libbison_a_SOURCES): No longer include
18250 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
18251 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
18252 Coreutils 4.5.1.
18253
d1a1114f
AD
182542002-09-24 Akim Demaille <akim@epita.fr>
18255
18256 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
18257 (Frequently Asked Questions, Parser Stack Overflow): New.
18258
b906441c
AD
182592002-09-13 Akim Demaille <akim@epita.fr>
18260
18261 Playing with autoscan.
18262
18263 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
18264 * src/files.c (skeleton_find): Remove, unused.
18265 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
18266 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
18267
bd701811
AD
182682002-09-13 Akim Demaille <akim@epita.fr>
18269
18270 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
18271 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
18272
e0a13e7b
AD
182732002-09-13 Akim Demaille <akim@epita.fr>
18274
18275 * configure.ac: Require 2.54.
18276 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
18277 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
18278 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
18279 Remove, provided by Autoconf macros.
18280
c97011bf
AD
182812002-09-12 Akim Demaille <akim@epita.fr>
18282
18283 * m4/prereq.m4: Update, from Coreutils 4.5.1.
18284
d862b1be
AD
182852002-09-12 Akim Demaille <akim@epita.fr>
18286
18287 * m4/prereq.m4: Update, from Fileutils 4.1.5.
18288 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
18289 Reported by Martin Mokrejs.
18290
3d38c03a
AD
182912002-09-10 Akim Demaille <akim@epita.fr>
18292
18293 * src/parse-gram.y: Associate a human readable string to each
18294 token type.
18295 * tests/regression.at (Invalid inputs): Adjust.
18296
b6347355
AD
182972002-09-10 Gary V. Vaughan <gary@gnu.org>
18298
18299 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
18300 with an Autoconf-2.5x style configure.ac.
18301
09ba4ab2
PE
183022002-09-06 Paul Eggert <eggert@twinsun.com>
18303
18304 * doc/bison.texinfo (Conditions): Make explicit that the GPL
18305 exception applies only to yacc.c. This is a modification of a
18306 patch originally suggested by Akim Demaille.
18307
21846f69
AD
183082002-09-06 Akim Demaille <akim@epita.fr>
18309
09ba4ab2
PE
18310 * data/c.m4 (b4_copyright): Move the GPL exception comment from
18311 here to...
18312 * data/yacc.c: here.
18313
21846f69
AD
18314 * data/lalr1.cc (struct yyltype): Don't define it, since we use
18315 LocationType.
18316 (b4_ltype): Default to yy::Location from location.hh.
18317
c0ad8bf3
AD
183182002-09-04 Jim Meyering <jim@meyering.net>
18319
18320 * data/yacc.c: Guard the declaration of yytoknum also with
18321 `#ifdef YYPRINT', so it is declared only when used.
18322
3a93251e
AD
183232002-09-04 Akim Demaille <akim@epita.fr>
18324
18325 * configure.in: Rename as...
18326 * configure.ac: this.
18327 Bump to 1.49c.
18328
427c0dda
AD
183292002-09-04 Akim Demaille <akim@epita.fr>
18330
18331 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
18332 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
18333 translate maintainer only messages.
18334
6a254321
PE
183352002-08-12 Paul Eggert <eggert@twinsun.com>
18336
645e30d1
PE
18337 Version 1.49b.
18338
6a254321
PE
18339 * Makefile.am (SUBDIRS): Remove intl.
18340 (DISTCLEANFILES): Remove.
18341 * NEWS: Mention that GNU M4 is now required. Clarify what is
18342 meant by "larger grammars". Mention the pt_BR translation.
18343 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
18344 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
18345 Bump version from 0.11.2 to 0.11.5.
18346 (BISON_PREREQ_STAGE): Remove.
18347 (AM_GNU_GETTEXT): Use external gettext.
18348 (AC_OUTPUT): Remove intl/Makefile.
18349
18350 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
18351
18352 * data/glr.c: Include string.h, for strlen.
18353 (yyreportParseError): Use size_t for yysize.
18354 (yy_yypstack): No longer nested inside yypstates, as nested
18355 functions are not portable. Do not assume size_t is the
18356 same width as int.
18357 (yypstates): Do not assume that ptrdiff_t is the same width
18358 as int, and similarly for yyposn and YYINDEX.
18359
18360 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
18361
18362 * lib/Makefile.am (INCLUDES): Do not include from the intl
18363 directory, which has been removed.
18364 * src/Makefile.am (INCLUDES): Likewise.
18365
18366 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
18367 (bitsets_sources, additional_bitsets_sources, timevars_sources):
18368 New vars.
18369
18370 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
18371 * tests/Makefile.am (EXTRA_DIST): Likewise.
18372
18373 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
18374 Do not assume that bitset_windex is the same width as unsigned.
18375
18376 * lib/abitset.c (abitset_unused_clear): Do not assume that
18377 bitset_word is the same width as int.
18378 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
18379 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
18380 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
18381 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
18382 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
18383
18384 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
18385 portability to one's complement hosts!).
18386 * lib/ebitset.c (ebitset_op1): Likewise.
18387 * lib/lbitset.c (lbitset_op1): Likewise.
18388
18389 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
18390 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
18391 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
18392 Sync with fileutils.
18393 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
18394 lib/gettext.h: Sync with diffutils.
18395
18396 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
18397 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
18398
18399 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
18400 PROTOTYPES to check for prototypes, and "defined __STDC__" to
18401 check for void *.
18402
18403 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
18404 size_t; the old version tried to do this but casted improperly.
18405 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
18406 (bitset_test): Now returns int, not unsigned long.
18407
18408 * lib/bitset_stats.c: Include "gettext.h".
18409 (_): New macro.
18410 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
18411 name locals "index", as it generates unnecessary warnings on some
18412 hosts that have an "index" function.
18413
18414 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
18415 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
18416 they need translation.
18417 * src/LR0.c (state_list_append, new_itemsets, get_state,
18418 append_states, generate_states): Likewise.
18419 * src/assoc.c (assoc_to_string): Likewise.
18420 * src/closure.c (print_closure, set_firsts, closure): Likewise.
18421 * src/gram.c (grammar_dump): Likewise.
18422 * src/injections.c (injections_compute): Likewise.
18423 * src/lalr.c (lookaheads_print): Likewise.
18424 * src/relation.c (relation_transpose): Likewise.
18425 * src/scan-gram.l: Likewise.
18426 * src/tables.c (table_grow, pack_vector): Likewise.
18427
18428 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
18429 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
18430 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
18431 * m4/mbstate_t.m4: Sync with fileutils.
18432 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
18433
18434 * po/LINGUAS: Add pt_BR.
18435 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
18436 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
18437 lib/timevar.c.
18438 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
18439 manual recommends.
18440 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
18441
18442 * src/complain.c (strerror_r): Remove decl; not needed.
18443 (strerror): Use same pattern as ../lib/error.c.
18444
18445 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
18446
18447 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
18448
18449 * src/main.c (main): Cast result of bindtextdomain and textdomain
18450 to void, to avoid a GCC warning when --disable-nls is in effect.
18451
18452 * src/scan-gram.l: Use strings rather than escapes when possible,
18453 to minimize the number of warnings from xgettext.
18454 (handle_action_dollar, handle_action_at): Don't use isdigit,
18455 as it mishandles negative chars and it may not work as expected
18456 outside the C locale.
18457
18458 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
18459 this is a GCC extension and is not portable to other compilers.
18460
18461 * src/system.h (alloca): Use same pattern as ../lib/error.c.
18462 Do not include <ctype.h>; no longer needed.
18463 Do not include <malloc.h>; no longer needed (and generates
18464 warnings on OpenBSD 3.0).
18465
18466 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
18467 it's not portable.
18468
18469 * tests/regression.at: Do not use 'cc -c input.c -o input';
18470 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
18471
18472 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
18473 exit status as failure, not just exit status 1. Sun C exits
18474 with status 2 sometimes.
18475
18476 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
18477 Use it for the two large tests.
18478
c8f002c7
AD
184792002-08-02 Akim Demaille <akim@epita.fr>
18480
18481 * src/conflicts.c (conflicts_output): Don't output rules never
18482 reduced here, since anyway that computation doesn't work.
18483 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
18484 (rule_useless_p, rule_never_reduced_p): New.
18485 (grammar_rules_partial_print): Use a filter instead of a range.
18486 Display the title only if needed.
18487 (grammar_rules_print): Adjust.
18488 (grammar_rules_never_reduced_report): New.
18489 * src/tables.c (action_row): Move the computation of rules never
18490 reduced to...
18491 (token_actions): here.
18492 * src/main.c (main): Make the parser before making the report, so
18493 that rules never reduced are computed.
18494 Call grammar_rules_never_reduced_report.
18495 * src/print.c (print_results): Report rules never reduced.
18496 * tests/conflicts.at, tests/reduce.at: Adjust.
18497
cd08e51e
AD
184982002-08-01 Akim Demaille <akim@epita.fr>
18499
18500 Instead of attaching lookaheads and duplicating the rules being
18501 reduced by a state, attach the lookaheads to the reductions.
18502
18503 * src/state.h (state_t): Remove the `lookaheads',
18504 `lookaheads_rule' member.
18505 (reductions_t): Add a `lookaheads' member.
18506 Use a regular array for the `rules'.
18507 * src/state.c (reductions_new): Initialize the lookaheads member
18508 to 0.
18509 (state_rule_lookaheads_print): Adjust.
18510 * src/state.h, src/state.c (state_reductions_find): New.
18511 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
18512 (count_rr_conflicts): Adjust.
18513 * src/lalr.c (LArule): Remove.
18514 (add_lookback_edge): Adjust.
18515 (state_lookaheads_count): New.
18516 (states_lookaheads_initialize): Merge into...
18517 (initialize_LA): this.
18518 (lalr_free): Adjust.
18519 * src/main.c (main): Don't free nullable and derives too early: it
18520 is used by --verbose.
18521 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
18522
bb0027a9
AD
185232002-08-01 Akim Demaille <akim@epita.fr>
18524
18525 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
18526 `rule_number_t**'.
18527 (set_derives, free_derives): Rename as...
18528 (derives_compute, derives_free): this.
18529 Adjust all dependencies.
18530 * src/nullable.c (set_nullable, free_nullable): Rename as...
18531 (nullable_compute, nullable_free): these.
18532 (rule_list_t): Store rule_t *, not rule_number_t.
18533 * src/state.c (state_rule_lookaheads_print): Directly compare rule
18534 pointers, instead of their numbers.
18535 * src/main.c (main): Call nullable_free, and derives_free earlier,
18536 as they were lo longer used.
18537
3325ddc4
AD
185382002-08-01 Akim Demaille <akim@epita.fr>
18539
18540 * lib/timevar.c (get_time): Include children time.
18541 * src/lalr.h (LA, LArule): Don't export them: used with the
18542 state_t.
18543 * src/lalr.c (LA, LArule): Static.
18544 * src/lalr.h, src/lalr.c (lalr_free): New.
18545 * src/main.c (main): Call it.
18546 * src/tables.c (pack_vector): Check whether loc is >= to the
18547 table_size, not >.
18548 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
18549 (tables_generate): do it, since that's also it which allocates
18550 them.
18551 Don't free LA and LArule, main does.
18552
c6f1a33c
AD
185532002-07-31 Akim Demaille <akim@epita.fr>
18554
18555 Separate parser tables computation and output.
18556
18557 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
18558 (conflict_list, conflict_list_cnt, table, check, table_ninf)
18559 (yydefgoto, yydefact, high): Move to...
18560 * src/tables.h, src/tables.c: here.
18561 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
18562 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
18563 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
18564 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
18565 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
18566 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
18567 (action_row, save_row, token_actions, save_column, default_goto)
18568 (goto_actions, sort_actions, matching_state, pack_vector)
18569 (table_ninf_remap, pack_table, prepare_actions): Move to...
18570 * src/tables.c: here.
18571 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
18572 * src/output.c (token_actions, output_base, output_conflicts)
18573 (output_check): Merge into...
18574 (prepare_actions): this.
18575 (actions_output): Rename as...
18576 (user_actions_output): this.
18577 * src/main.c (main): Call tables_generate and tables_free.
18578
1509d42f
AD
185792002-07-31 Akim Demaille <akim@epita.fr>
18580
18581 Steal GCC's --time-report support.
18582
18583 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
18584 stolen/adjusted from GCC.
18585 * m4/stage.m4: Remove time related checks.
18586 * m4/timevar.m4: New.
18587 * configure.in: Adjust.
18588 * src/system.h: Adjust to using timevar.h.
18589 * src/getargs.h, src/getargs.c: Support trace_time for
18590 --trace=time.
18591 * src/main.c (stage): Remove.
18592 (main): Replace `stage' invocations with timevar calls.
18593 * src/output.c: Insert pertinent timevar calls.
18594
273a74fa
AD
185952002-07-31 Akim Demaille <akim@epita.fr>
18596
18597 Let --trace have arguments.
18598
18599 * src/getargs.h (enum trace_e): New.
18600 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
18601 (long_options, short_options): --trace/-T takes an optional
18602 argument.
18603 Change all the uses of trace_flag to reflect the new flags.
18604 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
18605
18606 Strengthen `stage' portability.
18607
18608 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
18609 * configure.in: Use it.
18610 Don't check for malloc.h and sys/times.h.
18611 * src/system.h: Include them when appropriate.
18612 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
18613 times and struct tms are available.
18614
217598da
AD
186152002-07-30 Akim Demaille <akim@epita.fr>
18616
18617 In verbose parse error message, don't report `error' as an
18618 expected token.
18619 * tests/actions.at (Printers and Destructors): Adjust.
18620 * tests/calc.at (Calculator $1): Adjust.
18621 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
18622 error message, do not report the parser accepts the error token in
18623 that state.
18624
52489d44
AD
186252002-07-30 Akim Demaille <akim@epita.fr>
18626
18627 Normalize conflict related messages.
18628
18629 * src/complain.h, src/complain.c (warn, complain): New.
18630 * src/conflicts.c (conflicts_print): Use them.
18631 (conflict_report_yacc): New, extracted from...
18632 (conflicts_print): here.
18633 * tests/conflicts.at, tests/existing.at: Adjust.
18634
e8832397
AD
186352002-07-30 Akim Demaille <akim@epita.fr>
18636
18637 Report rules which are never reduced by the parser: those hidden
18638 by conflicts.
18639
18640 * src/LR0.c (save_reductions): Don't make the final state too
18641 different: save its reduction (accept) instead of having a state
18642 without any action (no shift or goto, no reduce).
18643 Note: the final state is now a ``regular'' state, i.e., the
18644 parsers now contain `reduce 0' as default reduction.
18645 Nevertheless, since they decide to `accept' when yystate =
18646 final_state, they still will not reduce rule 0.
18647 * src/print.c (print_actions, print_reduction): Adjust.
18648 * src/output.c (action_row): Track reduced rules.
18649 (token_actions): Report rules never reduced.
18650 * tests/conflicts.at, tests/regression.at: Adjust.
18651
caf23d24
AD
186522002-07-30 Akim Demaille <akim@epita.fr>
18653
18654 `stage' was accidently included in a previous patch.
18655 Initiate its autoconfiscation.
18656
18657 * configure.in: Look for malloc.h and sys/times.h.
18658 * src/main.c (stage): Adjust.
18659 Report only when trace_flag.
18660
640748ee
AD
186612002-07-29 Akim Demaille <akim@epita.fr>
18662
18663 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
18664 state_number_t.
18665 (errs_t): symbol_t*, not symbol_number_t.
18666 (reductions_t): rule_t*, not rule_number_t.
18667 (FOR_EACH_SHIFT): New.
18668 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
18669 * src/print.c, src/print_graph.c: Adjust.
18670
88bce5a2
AD
186712002-07-29 Akim Demaille <akim@epita.fr>
18672
18673 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
18674
18675 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
18676 (endtoken, accept): these.
18677 * src/reader.c (reader): Set endtoken's default tag to "$end".
18678 Set undeftoken's tag to "$undefined" instead of "$undefined.".
18679 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
18680 Adjust.
18681
1bfb97db
AD
186822002-07-29 Akim Demaille <akim@epita.fr>
18683
18684 * src/reduce.c (reduce_grammar): When the language is empty,
18685 complain about the start symbol, not the axiom.
18686 Use its location.
18687 * tests/reduce.at (Empty Language): New.
18688
fc5734fe
AD
186892002-07-26 Akim Demaille <akim@epita.fr>
18690
18691 * src/reader.h, src/reader.c (gram_error): ... can't get
18692 yycontrol without making too strong assumptions on the parser
18693 itself.
18694 * src/output.c (prepare_tokens): Use the real 0th value of
18695 token_translations instead of `0'.
18696 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
18697 visible here.
18698 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
18699 for the time being: %locations ought to provide it to yyerror.
18700
3650b4b8
AD
187012002-07-25 Akim Demaille <akim@epita.fr>
18702
18703 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
18704 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
18705 * tests/regression.at (Web2c Actions): Adjust.
18706
4b3d3a8e
AD
187072002-07-25 Akim Demaille <akim@epita.fr>
18708
18709 Stop storing rules from 1 to nrules + 1.
18710
18711 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
18712 * src/nullable.c, src/output.c, src/print.c, src/reader.c
18713 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
18714 Iterate from 0 to nrules.
18715 Use rule_number_as_item_number and item_number_as_rule_number.
18716 Adjust to `derive' now containing possibly 0.
18717 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
18718 Handle the `- 1' part in rule numbers from/to item numbers.
18719 * src/conflicts.c (log_resolution): Fix the message which reversed
18720 shift and reduce.
18721 * src/output.c (action_row): Initialize default_rule to -1.
18722 (token_actions): Adjust.
18723 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
18724 expected output.
18725 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
18726
4a2a22f4
AD
187272002-07-25 Akim Demaille <akim@epita.fr>
18728
18729 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
18730 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
18731 (b4_c_knr_arg_decl): New.
18732 * data/yacc.c: Use it to define yysymprint, yydestruct, and
18733 yyreport_parse_error.
18734
b8df3223
AD
187352002-07-25 Akim Demaille <akim@epita.fr>
18736
18737 * data/yacc.c (yyreport_parse_error): New, extracted from...
18738 (yyparse): here.
18739 (yydestruct, yysymprint): Move above yyparse.
18740 Be K&R compliant.
18741
a762e609
AD
187422002-07-25 Akim Demaille <akim@epita.fr>
18743
18744 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
18745 replace...
18746 (b4_sint_type, b4_uint_type): these.
18747 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
18748 * tests/regression.at (Web2c Actions): Adjust.
18749
12b0043a
AD
187502002-07-25 Akim Demaille <akim@epita.fr>
18751
18752 * src/gram.h (TIEM_NUMBER_MAX): New.
18753 (item_number_of_rule_number, rule_number_of_item_number): Rename
18754 as...
18755 (rule_number_as_item_number, item_number_as_rule_number): these.
18756 Adjust dependencies.
18757 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
18758 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
18759 (symbol_number_to_vector_number): New.
18760 (order): Of vector_number_t* type.
18761 (base_t, BASE_MAX, BASE_MIN): New.
18762 (froms, tos, width, pos, check): Of base_t type.
18763 (action_number_t, ACTION_MIN, ACTION_MAX): New.
18764 (actrow): Of action_number_t type.
18765 (conflrow): Of unsigned int type.
18766 (table_ninf, base_ninf): New.
18767 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
18768 (muscle_insert_int_table, muscle_insert_base_table)
18769 (muscle_insert_rule_number_table): New.
18770 (prepare_tokens): Output `toknum' as int_table.
18771 (action_row): Returns a rule_number_t.
18772 Use ACTION_MIN, not SHRT_MIN.
18773 (token_actions): yydefact is rule_number_t*.
18774 (table_ninf_remap): New.
18775 (pack_table): Use it for `base' and `table'.
18776 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
18777 replaced with...
18778 (YYPACT_NINF, YYTABLE_NINF): these.
18779 (yypact, yytable): Compute their types instead of hard-coded
18780 `short'.
18781 * tests/regression.at (Web2c Actions): Adjust.
18782
5dde258a
AD
187832002-07-19 Akim Demaille <akim@epita.fr>
18784
18785 * src/scan-gram.l (id): Can start with an underscore.
18786
a945ec39
AD
187872002-07-16 Akim Demaille <akim@epita.fr>
18788
18789 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
18790 Adjust all former `associativity' dependencies.
18791 * src/symtab.c (symbol_new): Default associativity is `undef', not
18792 `right'.
18793 (symbol_check_alias_consistence): Adjust.
18794
fae437e8
AD
187952002-07-09 Akim Demaille <akim@epita.fr>
18796
18797 * doc/bison.texinfo: Properly set the ``header'' part.
18798 Use @dircategory ``GNU programming tools'' as per Texinfo's
18799 documentation.
18800 Use @copying.
18801
1a715ef2
AD
188022002-07-09 Akim Demaille <akim@epita.fr>
18803
18804 * lib/quotearg.h: Protect against multiple inclusions.
18805 * src/location.h (location_t): Add a `file' member.
18806 (LOCATION_RESET, LOCATION_PRINT): Adjust.
18807 * src/complain.c (warn_at, complain_at, fatal_at): Drop
18808 `error_one_per_line' support.
18809
a5d50994
AD
188102002-07-09 Akim Demaille <akim@epita.fr>
18811
18812 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
18813 * src/reader.c (lineno): Remove.
18814 Adjust all dependencies.
18815 (get_merge_function): Take a location and use complain_at.
18816 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
18817 * tests/regression.at (Invalid inputs, Mixing %token styles):
18818 Adjust.
18819
b275314e
AD
188202002-07-09 Akim Demaille <akim@epita.fr>
18821
18822 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
18823 recovery rule, and forbid extensions when --yacc.
18824 (gram_error): Use complain_at.
18825 * src/reader.c (reader): Exit if there were parse errors.
18826
865b9df1
AD
188272002-07-09 Akim Demaille <akim@epita.fr>
18828
18829 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
18830 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
18831 Reported by R Blake <blakers@mac.com>.
18832
c76e14da
AD
188332002-07-09 Akim Demaille <akim@epita.fr>
18834
18835 * data/yacc.c: Output the copyright notive in the header.
18836
7db2ed2d
AD
188372002-07-03 Akim Demaille <akim@epita.fr>
18838
18839 * src/output.c (froms, tos): Are state_number_t.
18840 (save_column): sp, sp1, and sp2 are state_number_t.
18841 (prepare): Rename `final' as `final_state_number', `nnts' as
18842 `nterms_number', `nrules' as `rules_number', `nstates' as
18843 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
18844 unused.
18845 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
18846 * data/lalr1.cc (nsym_): Remove, unused.
18847
e68e0410
AD
188482002-07-03 Akim Demaille <akim@epita.fr>
18849
18850 * src/lalr.h, src/lalr.c (goto_number_t): New.
18851 * src/lalr.c (goto_list_t): New.
18852 Propagate them.
18853 * src/nullable.c (rule_list_t): New.
18854 Propagate.
18855 * src/types.h: Remove.
18856
e1a4f3a4
AD
188572002-07-03 Akim Demaille <akim@epita.fr>
18858
18859 * src/closure.c (print_fderives): Use rule_rhs_print.
18860 * src/derives.c (print_derives): Use rule_rhs_print.
18861 (rule_list_t): New, replaces `shorts'.
18862 (set_derives): Add comments.
18863 * tests/sets.at (Nullable, Firsts): Adjust.
18864
536545f3
AD
188652002-07-03 Akim Demaille <akim@epita.fr>
18866
18867 * src/output.c (prepare_actions): Free `tally' and `width'.
18868 (prepare_actions): Allocate and free `order'.
18869 * src/symtab.c (symbols_free): Free `symbols'.
18870 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
18871 * src/output.c (m4_invoke): Move to...
18872 * src/scan-skel.l: here.
18873 (<<EOF>>): Close yyout, and free its name.
18874
8b752b00
AD
188752002-07-03 Akim Demaille <akim@epita.fr>
18876
18877 Fix some memory leaks, and fix a bug: state 0 was examined twice.
18878
18879 * src/LR0.c (new_state): Merge into...
18880 (state_list_append): this.
18881 (new_states): Merge into...
18882 (generate_states): here.
18883 (set_states): Don't ensure a proper `errs' state member here, do it...
18884 * src/conflicts.c (conflicts_solve): here.
18885 * src/state.h, src/state.c: Comment changes.
18886 (state_t): Rename member `shifts' as `transitions'.
18887 Adjust all dependencies.
18888 (errs_new): For consistency, also take the values as argument.
18889 (errs_dup): Remove.
18890 (state_errs_set): New.
18891 (state_reductions_set, state_transitions_set): Assert that no
18892 previous value was assigned.
18893 (state_free): New.
18894 (states_free): Use it.
18895 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
18896 temporary storage: use `errs' and `nerrs' as elsewhere.
18897 (set_conflicts): Allocate and free this `errs'.
18898
613f5e1a
AD
188992002-07-02 Akim Demaille <akim@epita.fr>
18900
18901 * lib/libiberty.h: New.
18902 * lib: Update the bitset implementation from upstream.
18903 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
18904 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
18905 * src/main.c: Adjust bitset stats calls.
18906
26e0cadc
PE
189072002-07-01 Paul Eggert <eggert@twinsun.com>
18908
18909 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
18910 char, so that negative chars don't collide with $.
18911
1154cced
AD
189122002-06-30 Akim Demaille <akim@epita.fr>
18913
18914 Have the GLR tests be `warning' checked, and fix the warnings.
18915
18916 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
18917 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
18918 (yyremoveDeletes): `yyi' and `yyj' are size_t.
18919 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
18920 (yyaddDeferredAction): static.
18921 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
18922 (yyreportParseError): yyprefix is const.
18923 yytokenp is used only when verbose.
18924 (yy__GNUC__): Replace with __GNUC__.
18925 (yypdumpstack): yyi is size_t.
18926 (yypreference): Un-yy local variables and arguments, to avoid
18927 clashes with `yyr1'. Anyway, we are not in the user name space.
18928 (yytname_size): be an int, as is compared with ints.
18929 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
18930 Use them.
18931 * tests/cxx-gram.at: Use quotation to protect $1.
18932 Use AT_COMPILE to enable warnings hunts.
18933 Prototype yylex and yyerror.
18934 `Use' argc.
18935 Include `string.h', not `strings.h'.
18936 Produce and prototype stmtMerge only when used.
18937 yylex takes a location.
18938
97650f4e
AD
189392002-06-30 Akim Demaille <akim@epita.fr>
18940
18941 We spend a lot of time in quotearg, in particular when --verbose.
18942
18943 * src/symtab.c (symbol_get): Store a quoted version of the key.
18944 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
18945 Adjust all callers.
18946
d2576365
AD
189472002-06-30 Akim Demaille <akim@epita.fr>
18948
18949 * src/state.h (reductions_t): Rename member `nreds' as num.
18950 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
18951 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
18952
ccaf65bc
AD
189532002-06-30 Akim Demaille <akim@epita.fr>
18954
18955 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
18956 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
18957 (shifts_to): Rename as...
18958 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
18959 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
18960 (TRANSITION_IS_DISABLED, transitions_to): these.
18961
87675353
AD
189622002-06-30 Akim Demaille <akim@epita.fr>
18963
18964 * src/print.c (print_shifts, print_gotos): Merge into...
18965 (print_transitions): this.
18966 (print_transitions, print_errs, print_reductions): Align the
18967 lookaheads columns.
18968 (print_core, print_transitions, print_errs, print_state,
18969 print_grammar): Output empty lines separator before, not after.
18970 (state_default_rule_compute): Rename as...
18971 (state_default_rule): this.
18972 * tests/conflicts.at (Defaulted Conflicted Reduction),
18973 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
18974 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
18975
ce4ccb4b
AD
189762002-06-30 Akim Demaille <akim@epita.fr>
18977
18978 Display items as we display rules.
18979
18980 * src/gram.h, src/gram.c (rule_lhs_print): New.
18981 * src/gram.c (grammar_rules_partial_print): Use it.
18982 * src/print.c (print_core): Likewise.
18983 * tests/conflicts.at (Defaulted Conflicted Reduction),
18984 (Unresolved SR Conflicts): Adjust.
18985 (Unresolved SR Conflicts): Adjust and rename as...
18986 (Resolved SR Conflicts): this, as was meant.
18987 * tests/regression.at (Web2c Report): Adjust.
18988
bc933ef1
AD
189892002-06-30 Akim Demaille <akim@epita.fr>
18990
18991 * src/print.c (state_default_rule_compute): New, extracted from...
18992 (print_reductions): here.
18993 Pessimize, but clarify the code.
18994 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
18995
53d4308d
AD
189962002-06-30 Akim Demaille <akim@epita.fr>
18997
18998 * src/output.c (action_row): Let default_rule be always a rule
18999 number.
19000
574fb2d5
AD
190012002-06-30 Akim Demaille <akim@epita.fr>
19002
19003 * src/closure.c (print_firsts, print_fderives, closure):
19004 Use BITSET_EXECUTE.
19005 * src/lalr.c (lookaheads_print): Likewise.
19006 * src/state.c (state_rule_lookaheads_print): Likewise.
19007 * src/print_graph.c (print_core): Likewise.
19008 * src/print.c (print_reductions): Likewise.
19009 * src/output.c (action_row): Likewise.
19010 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
19011
05811fd7
AD
190122002-06-30 Akim Demaille <akim@epita.fr>
19013
19014 * src/print_graph.c: Use report_flag.
19015
0e4d5753
AD
190162002-06-30 Akim Demaille <akim@epita.fr>
19017
19018 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
19019 to...
19020 * src/relation.h, src/relation.c (traverse, relation_digraph)
19021 (relation_print, relation_transpose): New.
19022
24c7d800
AD
190232002-06-30 Akim Demaille <akim@epita.fr>
19024
19025 * src/state.h, src/state.c (shifts_to): New.
19026 * src/lalr.c (build_relations): Use it.
19027
9222837b
AD
190282002-06-30 Akim Demaille <akim@epita.fr>
19029
19030 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
19031 (item_number_of_rule_number, rule_number_of_item_number): New.
19032 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
19033 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
19034 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
19035 Propagate their use.
19036 Much remains to be done, in particular wrt `shorts' from types.h.
19037
260008e5
AD
190382002-06-30 Akim Demaille <akim@epita.fr>
19039
19040 * src/symtab.c (symbol_new): Initialize the `printer' member.
19041
8a731ca8
AD
190422002-06-30 Akim Demaille <akim@epita.fr>
19043
19044 * src/LR0.c (save_reductions): Remove, replaced by...
19045 * src/state.h, src/state.c (state_reductions_set): New.
19046 (reductions, errs): Rename as...
19047 (reductions_t, errs_t): these.
19048 Adjust all dependencies.
19049
32e1e0a4
AD
190502002-06-30 Akim Demaille <akim@epita.fr>
19051
19052 * src/LR0.c (state_list_t, state_list_append): New.
19053 (first_state, last_state): Now symbol_list_t.
19054 (this_state): Remove.
19055 (new_itemsets, append_states, save_reductions): Take a state_t as
19056 argument.
19057 (set_states, generate_states): Adjust.
19058 (save_shifts): Remove, replaced by...
19059 * src/state.h, src/state.c (state_shifts_set): New.
19060 (shifts): Rename as...
19061 (shifts_t): this.
19062 Adjust all dependencies.
19063 * src/state.h (state_t): Remove the `next' member.
19064
e5fb6710
AD
190652002-06-30 Akim Demaille <akim@epita.fr>
19066
19067 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
19068 escaped in slot 0.
19069
c7ca99d4
AD
190702002-06-30 Akim Demaille <akim@epita.fr>
19071
19072 Use hash.h for the state hash table.
19073
19074 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
19075 (allocate_storage): Use state_hash_new.
19076 (free_storage): Use state_hash_free.
19077 (new_state, get_state): Adjust.
19078 * src/lalr.h, src/lalr.c (states): Move to...
19079 * src/states.h (state_t): Remove the `link' member, no longer
19080 used.
19081 * src/states.h, src/states.c: here.
19082 (state_hash_new, state_hash_free, state_hash_lookup)
19083 (state_hash_insert, states_free): New.
19084 * src/states.c (state_table, state_compare, state_hash): New.
19085 * src/output.c (output_actions): Do not free states now, since we
19086 still need to know the final_state number in `prepare', called
19087 afterwards. Do it...
19088 * src/main.c (main): here: call states_free after `output'.
19089
df0e7316
AD
190902002-06-30 Akim Demaille <akim@epita.fr>
19091
19092 * src/state.h, src/state.c (state_new): New, extracted from...
19093 * src/LR0.c (new_state): here.
19094 * src/state.h (STATE_ALLOC): Move to...
19095 * src/state.c: here.
19096 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
19097 * src/state.h, src/state.c: here.
19098
39f41916
AD
190992002-06-30 Akim Demaille <akim@epita.fr>
19100
19101 * src/reader.c (gensym): Rename as...
19102 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
19103 (getsym): Rename as...
19104 (symbol_get): this.
19105
d57650a5
AD
191062002-06-30 Akim Demaille <akim@epita.fr>
19107
19108 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
19109 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
19110 * src/output.c, src/print.c, src/print_graph.c: Propagate.
19111 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
19112
5a08f1ce
AD
191132002-06-30 Akim Demaille <akim@epita.fr>
19114
19115 Make the test suite pass with warnings checked.
19116
19117 * tests/actions.at (Printers and Destructors): Improve.
19118 Avoid unsigned vs. signed issues.
19119 * tests/calc.at: Don't exercise the scanner here, do it...
19120 * tests/input.at (Torturing the Scanner): here.
19121
720623af
PH
191222002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19123
88e7e941 19124 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
19125 reorganize first lines parallel to yacc.c.
19126
fb8135fa
AD
191272002-06-28 Akim Demaille <akim@epita.fr>
19128
19129 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
19130 (b4_token_enum, b4_token_defines): New, factored from...
19131 * data/lalr1.cc, data/yacc.c, glr.c: here.
19132
41442480
AD
191332002-06-28 Akim Demaille <akim@epita.fr>
19134
19135 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
19136 unused variables.
19137 * src/output.c (merger_output): static.
19138
e0e5bf84
AD
191392002-06-28 Akim Demaille <akim@epita.fr>
19140
ba0fe3c7 19141 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
19142 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
19143 pacify GCC.
19144 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 19145
676385e2
PH
191462002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19147
19148 Accumulated changelog for new GLR parsing features.
19149
6a254321 19150 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
19151 conflicts_total_count.
19152 * src/conflicts.h: Ditto.
19153 * src/output.c (token_actions): Use the new name.
19154 (output_conflicts): Change conflp => conflict_list_heads, and
19155 confl => conflict_list for better readability.
19156 * data/glr.c: Use the new names.
19157 * NEWS: Add self to GLR announcement.
e0e5bf84 19158
676385e2
PH
19159 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
19160
19161 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
19162 Akim Demaille.
19163
19164 * data/bison.glr: Change name to glr.c
19165 * data/glr.c: Renamed from bison.glr.
19166 * data/Makefile.am: Add glr.c
e0e5bf84
AD
19167
19168 * src/getargs.c:
19169
676385e2 19170 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 19171 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 19172
676385e2
PH
19173 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19174
19175 * data/bison.glr: Be sure to restore the
19176 current #line when returning to the skeleton contents after having
19177 exposed the input file's #line.
19178
19179 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19180
19181 * data/bison.glr: Bring up to date with changes to bison.simple.
19182
19183 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19184
19185 * data/bison.glr: Correct definitions that use b4_prefix.
19186 Various reformatting.
19187 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
19188 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
19189 yytokenp argument; now part of stack.
19190 (yychar): Define to behave as documented.
19191 (yyclearin): Ditto.
e0e5bf84 19192
676385e2
PH
19193 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19194
19195 * src/reader.h: Add declaration for free_merger_functions.
19196
19197 * src/reader.c (merge_functions): New variable.
19198 (get_merge_function): New function.
19199 (free_merger_functions): New function.
19200 (readgram): Check for %prec that is not followed by a symbol.
19201 Handle %dprec and %merge declarations.
19202 (packgram): Initialize dprec and merger fields in rules array.
19203
19204 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
19205 conflict_list_cnt, conflict_list_free): New variables.
19206 (table_grow): Also grow conflict_table.
e0e5bf84 19207 (prepare_rules): Output dprec and merger tables.
676385e2 19208 (conflict_row): New function.
e0e5bf84 19209 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
19210 default reduction in conflicted states for GLR parser so that there
19211 are spaces for the conflict lists.
19212 (save_row): Also save conflict information.
19213 (token_actions): Allocate conflict list.
19214 (merger_output): New function.
19215 (pack_vector): Pack conflict table, too.
19216 (output_conflicts): New function to output yyconflp and yyconfl.
19217 (output_check): Allocate conflict_tos.
19218 (output_actions): Output conflict tables, also.
19219 (output_skeleton): Output b4_mergers definition.
19220 (prepare): Output b4_max_rhs_length definition.
19221 Use 'bison.glr' as default skeleton for GLR parsers.
19222
19223 * src/gram.c (glr_parser): New flag.
19224 (grammar_free): Call free_merger_functions.
19225
19226 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
19227 all pairs of conflicting reductions, rather than just all tokens
19228 causing conflicts. Needed to size conflict tables.
e0e5bf84 19229 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
19230 interface.
19231 (conflicts_print): Ditto.
19232 (count_total_conflicts): New function.
19233
19234 * src/reader.h (merger_list): New type.
19235 (merge_functions): New variable.
19236
19237 * src/lex.h (tok_dprec, tok_merge): New token types.
19238
19239 * src/gram.h (rule_s): Add dprec and merger fields.
19240 (glr_parser): New flag.
19241
19242 * src/conflicts.h (count_total_conflicts): New function.
19243
19244 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
19245
19246 * doc/bison.texinfo (Generalized LR Parsing): New section.
19247 (GLR Parsers): New section.
19248 (Language and Grammar): Mention GLR parsing.
19249 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
19250 Correct typo ("tge" -> "the").
19251
19252 * data/bison.glr: New skeleton for GLR parsing.
19253
19254 * tests/cxx-gram.at: New tests for GLR parsing.
19255
19256 * tests/testsuite.at: Include cxx-gram.at.
19257
19258 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 19259
676385e2
PH
19260 * src/parse-gram.y:
19261
19262 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
19263
19264 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 19265
b5480d74 192662002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
19267
19268 * src/options.h, src/options.c: Remove.
19269 * src/getargs.c (short_options, long_options): New.
19270
60491a94
AD
192712002-06-27 Akim Demaille <akim@epita.fr>
19272
19273 * data/bison.simple, data/bison.c++: Rename as...
19274 * data/yacc.c, data/lalr1.cc: these.
19275 * doc/bison.texinfo (Environment Variables): Remove.
19276
9be0c25b
AD
192772002-06-25 Raja R Harinath <harinath@cs.umn.edu>
19278
19279 * src/getargs.c (report_argmatch): Initialize strtok().
19280
1ae72863
AD
192812002-06-20 Akim Demaille <akim@epita.fr>
19282
19283 * data/bison.simple (b4_symbol_actions): New, replaces...
19284 (b4_symbol_destructor, b4_symbol_printer): these.
19285 (yysymprint): Be sure to call YYPRINT only for tokens, and using
19286 user token numbers.
19287
87542d29
AD
192882002-06-20 Akim Demaille <akim@epita.fr>
19289
19290 * data/bison.simple (yydestructor): Rename as...
19291 (yydestruct): this.
19292
1a31ed21
AD
192932002-06-20 Akim Demaille <akim@epita.fr>
19294
19295 * src/symtab.h, src/symtab.c (symbol_type_set)
19296 (symbol_destructor_set, symbol_precedence_set): The location is
19297 the last argument.
19298 Adjust all callers.
19299
e776192e
AD
193002002-06-20 Akim Demaille <akim@epita.fr>
19301
19302 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
19303 internals.
19304 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
19305 Takes a location.
19306 * src/symtab.h, src/symtab.c (symbol_class_set)
19307 (symbol_user_token_number_set): Likewise.
19308 Adjust all callers.
19309 Promote complain_at.
19310 * tests/input.at (Type Clashes): Adjust.
19311
5c1180b3
AD
193122002-06-20 Akim Demaille <akim@epita.fr>
19313
19314 * data/bison.simple (YYLEX): Fix the declaration when
19315 %pure-parser.
19316
e3170060
AD
193172002-06-20 Akim Demaille <akim@epita.fr>
19318
19319 * data/bison.simple (yysymprint): Don't print the token number,
19320 just its name.
19321 * tests/actions.at (Destructors): Rename as...
19322 (Printers and Destructors): this.
19323 Also exercise %printer.
19324
253862fd
AD
193252002-06-20 Akim Demaille <akim@epita.fr>
19326
19327 * data/bison.simple (YYDSYMPRINT): New.
19328 Use it to remove many of the #if YYDEBUG/if (yydebug).
19329
366eea36
AD
193302002-06-20 Akim Demaille <akim@epita.fr>
19331
19332 * src/symtab.h, src/symtab.c (symbol_t): printer and
19333 printer_location are new members.
19334 (symbol_printer_set): New.
19335 * src/parse-gram.y (PERCENT_PRINTER): New token.
19336 Handle its associated rule.
19337 * src/scan-gram.l: Adjust.
19338 (handle_destructor_at, handle_destructor_dollar): Rename as...
19339 (handle_symbol_code_at, handle_symbol_code_dollar): these.
19340 * src/output.c (symbol_printers_output): New.
19341 (output_skeleton): Call it.
19342 * data/bison.simple (yysymprint): New. Cannot be named yyprint
19343 since there are already many grammar files with a user `yyprint'.
19344 Replace the calls to YYPRINT to calls to yysymprint.
19345 * tests/calc.at: Adjust.
19346 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
19347 taking advantage of parser very internal details (stack size!).
19348
4f25ebb0
AD
193492002-06-20 Akim Demaille <akim@epita.fr>
19350
19351 * src/scan-gram.l: Complete the scanner with the missing patterns
19352 to pacify Flex.
19353 Use `quote' and `symbol_tag_get' where appropriate.
19354
93b68a0e
AD
193552002-06-19 Akim Demaille <akim@epita.fr>
19356
19357 * tests/actions.at (Destructors): Augment to test locations.
19358 * data/bison.simple (yydestructor): Pass it the current location
19359 if locations are enabled.
19360 Prototype only when __STDC__ or C++.
19361 Change the argument names to move into the yy name space: there is
19362 user code here.
19363
58612f1d
AD
193642002-06-19 Akim Demaille <akim@epita.fr>
19365
74310291
AD
19366 * data/bison.simple (b4_pure_if): New.
19367 Use it instead of #ifdef YYPURE.
19368
193692002-06-19 Akim Demaille <akim@epita.fr>
19370
19371 * data/bison.simple (b4_location_if): New.
58612f1d
AD
19372 Use it instead of #ifdef YYLSP_NEEDED.
19373
f25bfb75
AD
193742002-06-19 Akim Demaille <akim@epita.fr>
19375
19376 Prepare @$ in %destructor, but currently don't bind it in the
19377 skeleton, as %location use is not cleaned up yet.
19378
19379 * src/scan-gram.l (handle_dollar, handle_destructor_at)
19380 (handle_action_at): New.
19381 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
19382 a braced_code_t and a location as additional arguments.
19383 (handle_destructor_dollar): Instead of requiring `b4_eval', just
19384 unquote one when outputting `b4_dollar_dollar'.
19385 Adjust callers.
19386 * data/bison.simple (b4_eval): Remove.
19387 (b4_symbol_destructor): Adjust.
19388 * tests/input.at (Invalid @n): Adjust.
19389
c732d2c6
AD
193902002-06-19 Zack Weinberg <zack@codesourcery.com>
19391
19392 * doc/bison.texinfo: Document ability to have multiple
19393 prologue sections.
19394
8c165d89
AD
193952002-06-18 Akim Demaille <akim@epita.fr>
19396
19397 * src/files.c (compute_base_names): When computing the output file
19398 names from the input file name, strip the directory part.
19399
ca98bf57
AD
194002002-06-18 Akim Demaille <akim@epita.fr>
19401
19402 * data/bison.simple.new: Comment changes.
19403 Reported by Andreas Schwab.
19404
0bfb02ff
AD
194052002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
19406
19407 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
19408 there are no `label `yyoverflowlab' defined but not used' warnings
19409 when yyoverflow is defined.
19410
24c0aad7
AD
194112002-06-18 Akim Demaille <akim@epita.fr>
19412
19413 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
19414 new member.
19415 (symbol_destructor_set): Adjust.
19416 * src/output.c (symbol_destructors_output): Output the destructor
19417 locations.
19418 Output the symbol name.
19419 * data/bison.simple (b4_symbol_destructor): Adjust.
19420
5719c109
AD
194212002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
19422 and Akim Demaille <akim@epita.fr>
19423
19424 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
19425 what's left on the stack when the error recovery hits EOF.
19426 * tests/actions.at (Destructors): Complete to exercise this case.
19427
9280d3ef
AD
194282002-06-17 Akim Demaille <akim@epita.fr>
19429
19430 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
19431 arguments is really empty, not only equal to `[]'.
19432 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
19433 member.
19434 (symbol_destructor_set): New.
19435 * src/output.c (symbol_destructors_output): New.
19436 * src/reader.h (brace_code_t, current_braced_code): New.
19437 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
19438 (handle_dollar): Rename as...
19439 (handle_action_dollar): this.
19440 (handle_destructor_dollar): New.
19441 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
19442 (grammar_declaration): Use it.
19443 * data/bison.simple (yystos): Is always defined.
19444 (yydestructor): New.
19445 * tests/actions.at (Destructors): New.
19446 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
19447
dafdc66f
AD
194482002-06-17 Akim Demaille <akim@epita.fr>
19449
19450 * src/symlist.h, src/symlist.c (symbol_list_length): New.
19451 * src/scan-gram.l (handle_dollar, handle_at): Compute the
19452 rule_length only when needed.
19453 * src/output.c (actions_output, token_definitions_output): Output
19454 the full M4 block.
19455 * src/symtab.c: Don't access directly to the symbol tag, use
19456 symbol_tag_get.
19457 * src/parse-gram.y: Use symbol_list_free.
19458
56c47203
AD
194592002-06-17 Akim Demaille <akim@epita.fr>
19460
19461 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
19462 (symbol_list_prepend, get_type_name): Move to...
19463 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
19464 (symbol_list_prepend, symbol_list_n_type_name_get): here.
19465 Adjust all callers.
19466 (symbol_list_free): New.
19467 * src/scan-gram.l (handle_dollar): Takes a location.
19468 * tests/input.at (Invalid $n): Adjust.
19469
1e0bab92
AD
194702002-06-17 Akim Demaille <akim@epita.fr>
19471
19472 * src/reader.h, src/reader.c (symbol_list_new): Export it.
19473 (symbol_list_prepend): New.
19474 * src/parse-gram.y (%union): `list' is a new member.
19475 (symbols.1): New, replaces...
19476 (terms_to_prec.1, nterms_to_type.1): these.
19477 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
19478 Take a location as additional argument.
19479 Adjust all callers.
19480
04e60654
AD
194812002-06-15 Akim Demaille <akim@epita.fr>
19482
19483 * src/parse-gram.y: Move %token in the declaration section so that
19484 we don't depend upon CVS Bison.
19485
10e5b8bd
AD
194862002-06-15 Akim Demaille <akim@epita.fr>
19487
19488 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
19489 * src/print.c (print_core): Use it.
19490
9801d40c
AD
194912002-06-15 Akim Demaille <akim@epita.fr>
19492
19493 * src/conflicts.c (log_resolution): Accept the rule involved in
19494 the sr conflicts instead of the lookahead number that points to
19495 that rule.
19496 (flush_reduce): Accept the current lookahead vector as argument,
19497 instead of the index in LA.
19498 (resolve_sr_conflict): Accept the current number of lookahead
19499 bitset to consider for the STATE, instead of the index in LA.
19500 (set_conflicts): Adjust.
19501 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
19502
c0263492
AD
195032002-06-15 Akim Demaille <akim@epita.fr>
19504
19505 * src/state.h (state_t): Replace the `lookaheadsp' member, a
19506 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
19507 Adjust all dependencies.
19508 * src/lalr.c (initialize_lookaheads): Split into...
19509 (states_lookaheads_count, states_lookaheads_initialize): these.
19510 (lalr): Adjust.
19511
9757c359
AD
195122002-06-15 Akim Demaille <akim@epita.fr>
19513
19514 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
19515 out of...
19516 (grammar_rules_print): here.
19517 * src/reduce.c (reduce_output): Use it.
19518 * tests/reduce.at (Useless Rules, Reduced Automaton)
19519 (Underivable Rules): Adjust.
19520
6b98e4b5
AD
195212002-06-15 Akim Demaille <akim@epita.fr>
19522
19523 Copy BYacc's nice way to report the grammar.
19524
19525 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
19526 New.
19527 Don't print the rules' location, it is confusing and useless.
19528 (rule_print): Use grammar_rhs_print.
19529 * src/print.c (print_grammar): Use grammar_rules_print.
19530
6b98e4b5
AD
195312002-06-15 Akim Demaille <akim@epita.fr>
19532
19533 Complete and rationalize `useless thing' warnings.
19534
19535 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
19536 (symbol_tag_print): New.
19537 Use them everywhere in place of accessing directly the tag member.
19538 * src/gram.h, src/gram.c (rule_print): New.
19539 Use it where a rule used to be printed `by hand'.
19540 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
19541 (reduce_grammar_tables): Report the useless rules.
19542 (reduce_print): Useless things are a warning, not an error.
19543 Report it as such.
19544 * tests/reduce.at (Useless Nonterminals, Useless Rules):
19545 (Reduced Automaton, Underivable Rules): Adjust.
19546 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
19547 * tests/conflicts.at (Unresolved SR Conflicts)
19548 (Solved SR Conflicts): Adjust.
19549
ee000ba4
AD
195502002-06-15 Akim Demaille <akim@epita.fr>
19551
19552 Let symbols have a location.
19553
19554 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
19555 (getsym): Adjust.
19556 Adjust all callers.
19557 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
19558 Use location_t, not int.
19559 * src/symtab.c (symbol_check_defined): Take advantage of the
19560 location.
19561 * tests/regression.at (Invalid inputs): Adjust.
19562
8efe435c
AD
195632002-06-15 Akim Demaille <akim@epita.fr>
19564
19565 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
19566 (input): Don't try to initialize yylloc here, do it in the
19567 scanner.
19568 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
19569 * src/gram.h (rule_t): Change line and action_line into location
19570 and action_location, of location_t type.
19571 Adjust all dependencies.
19572 * src/location.h, src/location.c (empty_location): New.
19573 * src/reader.h, src/reader.c (grammar_start_symbol_set)
19574 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
19575 (grammar_current_rule_symbol_append)
19576 (grammar_current_rule_action_append): Expect a location as argument.
19577 * src/reader.c (grammar_midrule_action): Adjust to attach an
19578 action's location as dummy symbol location.
19579 * src/symtab.h, src/symtab.c (startsymbol_location): New.
19580 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
19581 the line numbers.
19582
1921f1d7
AD
195832002-06-14 Akim Demaille <akim@epita.fr>
19584
19585 Grammar declarations may be found in the grammar section.
19586
19587 * src/parse-gram.y (rules_or_grammar_declaration): New.
19588 (declarations): Each declaration may end with a semicolon, not
19589 just...
19590 (grammar_declaration): `"%union"'.
19591 (grammar): Branch to rules_or_grammar_declaration.
19592
4515534c
AD
195932002-06-14 Akim Demaille <akim@epita.fr>
19594
19595 * src/main.c (main): Invoke scanner_free.
19596
f958596b
AD
195972002-06-14 Akim Demaille <akim@epita.fr>
19598
19599 * src/output.c (m4_invoke): Extracted from...
19600 (output_skeleton): here.
19601 Free tempfile.
19602
2c569025
AD
196032002-06-14 Akim Demaille <akim@epita.fr>
19604
19605 * src/parse-gram.y (directives, directive, gram)
19606 (grammar_directives, precedence_directives, precedence_directive):
19607 Rename as...
19608 (declarations, declaration, grammar, grammar_declaration)
19609 (precedence_declaration, precedence_declarator): these.
19610 (symbol_declaration): New.
19611
592e8d4d
AD
196122002-06-14 Akim Demaille <akim@epita.fr>
19613
19614 * src/files.c (action_obstack): Remove, unused.
19615 (output_obstack): Remove it, and all its dependencies, as it is no
19616 longer needed.
19617 * src/reader.c (epilogue_set): Build the epilogue in the
19618 muscle_obstack.
19619 * src/output.h, src/output.c (muscle_obstack): Move to...
19620 * src/muscle_tab.h, src/muscle_tab.h: here.
19621 (muscle_init): Initialize muscle_obstack.
19622 (muscle_free): New.
19623 * src/main.c (main): Call it.
19624
0c15323d
AD
196252002-06-14 Akim Demaille <akim@epita.fr>
19626
19627 * src/location.h: New, extracted from...
19628 * src/reader.h: here.
19629 * src/Makefile.am (noinst_HEADERS): Merge into
19630 (bison_SOURCES): this.
19631 Add location.h.
19632 * src/parse-gram.y: Use location_t instead of Bison's.
19633 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
19634 Use location_t instead of ints.
19635
e96c9728
AD
196362002-06-14 Akim Demaille <akim@epita.fr>
19637
19638 * data/bison.simple, data/bison.c++: Be sure to restore the
19639 current #line when returning to the skeleton contents after having
19640 exposed the input file's #line.
19641
75d1fe16
AD
196422002-06-12 Akim Demaille <akim@epita.fr>
19643
19644 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
19645 eager.
19646 * tests/actions.at (Exotic Dollars): New.
19647
6c35d22c
AD
196482002-06-12 Akim Demaille <akim@epita.fr>
19649
19650 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
19651 ['"/] too eagerly.
19652 * tests/input.at (Torturing the Scanner): New.
19653
1d6412ad
AD
196542002-06-11 Akim Demaille <akim@epita.fr>
19655
19656 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
19657 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
19658 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
19659 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
19660 * src/reader.c (reader): Use it.
19661
4cdb01db
AD
196622002-06-11 Akim Demaille <akim@epita.fr>
19663
19664 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
19665 Adjust all callers.
19666 (scanner_last_string_free): New.
19667
44995b2e
AD
196682002-06-11 Akim Demaille <akim@epita.fr>
19669
19670 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
19671 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
19672 (last_string, YY_OBS_FREE): New.
19673 Use them when returning an ID.
19674
e9955c83
AD
196752002-06-11 Akim Demaille <akim@epita.fr>
19676
19677 Have Bison grammars parsed by a Bison grammar.
19678
19679 * src/reader.c, src/reader.h (prologue_augment): New.
19680 * src/reader.c (copy_definition): Remove.
19681
19682 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
19683 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
19684 (grammar_current_rule_prec_set, grammar_current_rule_check)
19685 (grammar_current_rule_symbol_append)
19686 (grammar_current_rule_action_append): Export.
19687 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
19688 (symbol_list_action_append): Remove.
19689 Hook the routines from reader.
19690 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
19691 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
19692
19693 * src/reader.c (read_declarations): Remove, unused.
19694
19695 * src/parse-gram.y: Handle the epilogue.
19696 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
19697 (grammar_start_symbol_set): this.
19698 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
19699 * src/reader.c (readgram): Remove, unused.
19700 (reader): Adjust to insert eoftoken and axiom where appropriate.
19701
19702 * src/reader.c (copy_dollar): Replace with...
19703 * src/scan-gram.h (handle_dollar): this.
19704 * src/parse-gram.y: Remove `%thong'.
19705
19706 * src/reader.c (copy_at): Replace with...
19707 * src/scan-gram.h (handle_at): this.
19708
19709 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
19710 New.
19711
19712 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
19713 time being.
19714
19715 * src/reader.h, src/reader.c (grammar_rule_end): New.
19716
19717 * src/parse.y (current_type, current_class): New.
19718 Implement `%nterm', `%token' support.
19719 Merge `%term' into `%token'.
19720 (string_as_id): New.
19721 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
19722 type name.
19723
19724 * src/parse-gram.y: Be sure to handle properly the beginning of
19725 rules.
19726
19727 * src/parse-gram.y: Handle %type.
19728 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
19729
19730 * src/parse-gram.y: More directives support.
19731 * src/options.c: No longer handle source directives.
19732
19733 * src/parse-gram.y: Fix %output.
19734
19735 * src/parse-gram.y: Handle %union.
19736 Use the prologue locations.
19737 * src/reader.c (parse_union_decl): Remove.
19738
19739 * src/reader.h, src/reader.c (epilogue_set): New.
19740 * src/parse-gram.y: Use it.
19741
19742 * data/bison.simple, data/bison.c++: b4_stype is now either not
19743 defined, then default to int, or to the contents of %union,
19744 without `union' itself.
19745 Adjust.
19746 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
19747
19748 * src/output.c (actions_output): Don't output braces, as they are
19749 already handled by the scanner.
19750
19751 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
19752 characters to themselves.
19753
19754 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
19755 that the epilogue has a proper #line.
19756
19757 * src/parse-gram.y: Handle precedence/associativity.
19758
19759 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
19760 a terminal.
19761 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
19762 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
19763 at all to define terminals that cannot be emitted.
19764
19765 * src/scan-gram.l: Escape M4 characters.
19766
19767 * src/scan-gram.l: Working properly with escapes in user
19768 strings/characters.
19769
19770 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
19771 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
19772 grammar.
19773 Use more modest sizes, as for the time being the parser does not
19774 release memory, and therefore the process swallows a huge amount
19775 of memory.
19776
19777 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
19778 stricter %token grammar.
19779
19780 * src/symtab.h (associativity): Add `undef_assoc'.
19781 (symbol_precedence_set): Do nothing when passed an undef_assoc.
19782 * src/symtab.c (symbol_check_alias_consistence): Adjust.
19783
19784 * tests/regression.at (Invalid %directive): Remove, as it is now
19785 meaningless.
19786 (Invalid inputs): Adjust to the new error messages.
19787 (Token definitions): The new grammar doesn't allow too many
19788 eccentricities.
19789
19790 * src/lex.h, src/lex.c: Remove.
19791 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
19792 (copy_character, copy_string2, copy_string, copy_identifier)
19793 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
19794 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
19795 (parse_action): Remove.
19796 * po/POTFILES.in: Adjust.
19797
2e047461
AD
197982002-06-11 Akim Demaille <akim@epita.fr>
19799
cd05d13c 19800 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
19801 rule's action member: return the action as a string.
19802 Don't require `rule_length' as an argument: compute it.
19803 (grammar_current_rule_symbol_append)
19804 (grammar_current_rule_action_append): New, eved out from
19805 (readgram): here.
19806 Remove `action_flag', `rulelength', unused now.
19807
9af3fbce
AD
198082002-06-11 Akim Demaille <akim@epita.fr>
19809
19810 * src/reader.c (grammar_current_rule_prec_set).
19811 (grammar_current_rule_check): New, eved out from...
19812 (readgram): here.
19813 Remove `xaction', `first_rhs': useless.
19814 * tests/input.at (Type clashes): New.
19815 * tests/existing.at (GNU Cim Grammar): Adjust.
19816
1485e106
AD
198172002-06-11 Akim Demaille <akim@epita.fr>
19818
19819 * src/reader.c (grammar_midrule_action): New, Eved out from
19820 (readgram): here.
19821
da4160c3
AD
198222002-06-11 Akim Demaille <akim@epita.fr>
19823
19824 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
19825 New.
19826 (readgram): Use them as replacement of inlined code, crule and
19827 crule1.
19828
f6d0f937
AD
198292002-06-11 Akim Demaille <akim@epita.fr>
19830
19831 * src/reader.c (grammar_end, grammar_symbol_append): New.
19832 (readgram): Use them.
19833 Make the use of `p' as local as possible.
19834
69078d4b
AD
198352002-06-10 Akim Demaille <akim@epita.fr>
19836
19837 GCJ's parser requires the tokens to be defined before the prologue.
19838
19839 * data/bison.simple: Output the token definition before the user's
19840 prologue.
19841 * tests/regression.at (Braces parsing, Duplicate string)
19842 (Mixing %token styles): Check the output from bison.
19843 (Early token definitions): New.
19844
5e424082
AD
198452002-06-10 Akim Demaille <akim@epita.fr>
19846
19847 * src/symtab.c (symbol_user_token_number_set): Don't complain when
19848 assigning twice the same user number to a token, so that we can
19849 use it in...
19850 * src/lex.c (lex): here.
19851 Also use `symbol_class_set' instead of hand written code.
19852 * src/reader.c (parse_assoc_decl): Likewise.
19853
44536b35
AD
198542002-06-10 Akim Demaille <akim@epita.fr>
19855
19856 * src/symtab.c, src/symtab.c (symbol_class_set)
19857 (symbol_user_token_number_set): New.
19858 * src/reader.c (parse_token_decl): Use them.
19859 Use a switch instead of ifs.
19860 Use a single argument.
19861
8b9f2372
AD
198622002-06-10 Akim Demaille <akim@epita.fr>
19863
19864 Remove `%thong' support as it is undocumented, unused, duplicates
19865 `%token's job, and creates useless e-mail traffic with people who
19866 want to know what it is, why it is undocumented, unused, and
19867 duplicates `%token's job.
19868
19869 * src/reader.c (parse_thong_decl): Remove.
19870 * src/options.c (option_table): Remove "thong".
19871 * src/lex.h (tok_thong): Remove.
19872
3ae2b51f
AD
198732002-06-10 Akim Demaille <akim@epita.fr>
19874
19875 * src/symtab.c, src/symtab.c (symbol_type_set)
19876 (symbol_precedence_set): New.
19877 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
19878 (value_components_used): Remove, unused.
19879
2f1afb73
AD
198802002-06-09 Akim Demaille <akim@epita.fr>
19881
19882 Move symbols handling code out of the reader.
19883
19884 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
19885 (axiom): Move to...
19886 * src/symtab.h, src/symtab.c: here.
19887
19888 * src/gram.c (start_symbol): Remove: use startsymbol->number.
19889 * src/reader.c (startval): Rename as...
19890 * src/symtab.h, src/symtab.c (startsymbol): this.
19891 * src/reader.c: Adjust.
19892
19893 * src/reader.c (symbol_check_defined, symbol_make_alias)
19894 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
19895 (token_translations_init)
19896 Move to...
19897 * src/symtab.c: here.
19898 * src/reader.c (packsymbols): Move to...
19899 * src/symtab.h, src/symtab.c (symbols_pack): here.
19900 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
19901 argument.
19902
e9bca3ad
AD
199032002-06-03 Akim Demaille <akim@epita.fr>
19904
19905 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
19906 then statements.
19907
86eff183
AD
199082002-06-03 Akim Demaille <akim@epita.fr>
19909
19910 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
19911 structs with non literals.
19912 * src/scan-skel.l: never-interactive.
19913 * src/conflicts.c (enum conflict_resolution_e): No trailing
19914 comma.
19915 * src/getargs.c (usage): Split long literal strings.
19916 Reported by Hans Aberg.
19917
717be197
AD
199182002-05-28 Akim Demaille <akim@epita.fr>
19919
19920 * data/bison.c++: Use C++ ostreams.
19921 (cdebug_): New member.
19922
670ddffd
AD
199232002-05-28 Akim Demaille <akim@epita.fr>
19924
19925 * src/output.c (output_skeleton): Be sure to allocate enough room
19926 for `/' _and_ for `\0' in full_skeleton.
19927
769b430f
AD
199282002-05-28 Akim Demaille <akim@epita.fr>
19929
19930 * data/bison.c++: Catch up with bison.simple:
19931 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19932 and Paul Eggert <eggert@twinsun.com>: `error' handing.
19933 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
19934 and popping traces.
19935
7067cb36
PH
199362002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19937
19938 * src/output.c (output_skeleton): Put an explicit path in front of
19939 the skeleton file name, rather than relying on the -I directory,
19940 to partially alleviate effects of having a skeleton file lying around
19941 in the current directory.
769b430f 19942
4a713ec2
PH
199432002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19944
769b430f 19945 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
19946 obstack_printf should be obstack_fgrow1.
19947
b408954b
AD
199482002-05-26 Akim Demaille <akim@epita.fr>
19949
19950 * src/state.h (state_t): `solved_conflicts' is a new member.
19951 * src/LR0.c (new_state): Set it to 0.
19952 * src/conflicts.h, src/conflicts.c (print_conflicts)
19953 (free_conflicts, solve_conflicts): Rename as...
19954 (conflicts_print, conflicts_free, conflicts_solve): these.
19955 Adjust callers.
19956 * src/conflicts.c (enum conflict_resolution_e)
19957 (solved_conflicts_obstack): New, used by...
19958 (log_resolution): this.
19959 Adjust to attach the conflict resolution to each state.
19960 Complete the description with the precedence/associativity
19961 information.
19962 (resolve_sr_conflict): Adjust.
19963 * src/print.c (print_state): Output its solved_conflicts.
19964 * tests/conflicts.at (Unresolved SR Conflicts)
19965 (Solved SR Conflicts): Exercise --report=all.
19966
a49aecd5
AD
199672002-05-26 Akim Demaille <akim@epita.fr>
19968
19969 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
19970 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
19971 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
19972 (token_number_t, item_number_as_token_number)
19973 (token_number_as_item_number, muscle_insert_token_number_table):
19974 Rename as...
19975 (symbol_number_t, item_number_as_symbol_number)
19976 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
19977 these, since it is more appropriate.
19978
5504898e
AD
199792002-05-26 Akim Demaille <akim@epita.fr>
19980
19981 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
19982 `Error:' lines.
19983 * data/bison.simple (yystos) [YYDEBUG]: New.
19984 (yyparse) [YYDEBUG]: Display the symbols which are popped during
19985 error recovery.
19986 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
19987
ec3bc396
AD
199882002-05-25 Akim Demaille <akim@epita.fr>
19989
19990 * doc/bison.texinfo (Debugging): Split into...
19991 (Tracing): this new section, its former contents, and...
19992 (Understanding): this new section.
19993 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
19994 by...
19995 (report_flag): this.
19996 Adjust all dependencies.
19997 (report_args, report_types, report_argmatch): New.
19998 (usage, getargs): Report/support -r, --report.
19999 * src/options.h
20000 (struct option_table_struct): Rename as..,
20001 (struct option_table_s): this.
20002 Rename the `set_flag' member to `flag' to match with getopt_long's
20003 struct.
20004 * src/options.c (option_table): Split verbose into an entry for
20005 %verbose, and another for --verbose.
20006 Support --report/-r, so remove -r from the obsolete --raw.
20007 * src/print.c: Attach full item sets and lookaheads reports to
20008 report_flag instead of trace_flag.
20009 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
20010
78df8250
PE
200112002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
20012 and Paul Eggert <eggert@twinsun.com>
769b430f 20013
78df8250
PE
20014 * data/bison.simple (yyparse): Correct error handling to conform to
20015 POSIX and yacc. Specifically, after syntax error is discovered,
20016 do not reduce further before shifting the error token.
20017 Clean up the code a bit by removing the labels yyerrdefault,
20018 yyerrhandle, yyerrpop.
20019 * NEWS: Document the above.
20020
c0c9ea05
PH
200212002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
20022
20023 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
20024 type; it isn't always big enough, since it doesn't necessarily
20025 include non-terminals.
769b430f 20026 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
20027 the latter can be removed.
20028 (yy_token_number_type): Remove, only one use.
20029 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
20030 don't use TokenNumberType as element type.
769b430f 20031
c0c9ea05
PH
20032 * tests/regression.at: Modify expected output to agree with change
20033 to yyr1 and yytranslate.
769b430f 20034
6390a83f
FK
200352002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
20036
20037 * src/reader.c (parse_action): Use copy_character instead of
20038 obstack_1grow.
20039
db7c8e9a
AD
200402002-05-13 Akim Demaille <akim@epita.fr>
20041
20042 * tests/regression.at (Token definitions): Prototype yylex and
20043 yyerror.
20044
fcc61800
PH
200452002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
20046
158c687b 20047 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
20048 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
20049 32-bit arithmetic.
20050 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
20051
5683e9b2
AD
200522002-05-07 Akim Demaille <akim@epita.fr>
20053
20054 * tests/synclines.at: Be sure to prototype yylex and yyerror to
20055 avoid GCC warnings.
20056
0c2d3f4c
AD
200572002-05-07 Akim Demaille <akim@epita.fr>
20058
20059 Kill GCC warnings.
20060
20061 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
20062 over the RHS of each rule.
20063 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
20064 * src/state.h (state_t): Member `nitems' is unsigned short.
20065 * src/LR0.c (get_state): Adjust.
20066 * src/reader.c (packgram): Likewise.
20067 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
20068 `Type'.
20069 (muscle_insert_int_table): Remove, unused.
20070 (prepare_rules): Remove `max'.
20071
1565b720
AD
200722002-05-06 Akim Demaille <akim@epita.fr>
20073
20074 * src/closure.c (print_firsts): Display of the symbol tags.
20075 (bitmatrix_print): Move to...
20076 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
20077 here.
20078 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
20079
cfaee611
AD
200802002-05-06 Akim Demaille <akim@epita.fr>
20081
20082 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
20083 hash_do_for_each.
20084
458be8e0
AD
200852002-05-06 Akim Demaille <akim@epita.fr>
20086
20087 * src/LR0.c (new_state, get_state): Instead of using the global
20088 `kernel_size' and `kernel_base', have two new arguments:
20089 `core_size' and `core'.
20090 Adjust callers.
20091
a900a624
AD
200922002-05-06 Akim Demaille <akim@epita.fr>
20093
20094 * src/reader.c (packgram): No longer end `ritem' with a 0
20095 sentinel: it is not used.
20096
d4e7d3a1
AD
200972002-05-05 Akim Demaille <akim@epita.fr>
20098
20099 New experimental feature: display the lookaheads in the report and
20100 graph.
20101
20102 * src/print (print_core): When --trace-flag, display the rules
20103 lookaheads.
20104 * src/print_graph.c (print_core): Likewise.
20105 Swap the arguments.
20106 Adjust caller.
20107
39ceb25b
AD
201082002-05-05 Akim Demaille <akim@epita.fr>
20109
20110 * tests/torture.at (Many lookaheads): New test.
20111
5372019f
AD
201122002-05-05 Akim Demaille <akim@epita.fr>
20113
20114 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
20115 (GENERATE_MUSCLE_INSERT_TABLE): this.
20116 (output_int_table, output_unsigned_int_table, output_short_table)
20117 (output_token_number_table, output_item_number_table): Replace with...
20118 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
20119 (muscle_insert_short_table, muscle_insert_token_number_table)
20120 (muscle_insert_item_number_table): these.
20121 Adjust all callers.
20122 (prepare_tokens): Don't free `translations', since...
20123 * src/reader.h, src/reader.c (grammar_free): do it.
20124 Move to...
20125 * src/gram.h, src/gram.c (grammar_free): here.
20126 * data/bison.simple, data/bison.c++: b4_token_number_max is now
20127 b4_translate_max.
20128
5df5f6d5
AD
201292002-05-05 Akim Demaille <akim@epita.fr>
20130
20131 * src/output.c (output_unsigned_int_table): New.
20132 (prepare_rules): `i' is unsigned.
20133 `prhs', `rline', `r2' are unsigned int.
20134 Rename muscle `rhs_number_max' as `rhs_max'.
20135 Output muscles `prhs_max', `rline_max', and `r2_max'.
20136 Free rline and r1.
20137 * data/bison.simple, data/bison.c++: Adjust to use these muscles
20138 to compute types instead of constant types.
20139 * tests/regression.at (Web2c Actions): Adjust.
20140
b87f8b21
AD
201412002-05-04 Akim Demaille <akim@epita.fr>
20142
20143 * src/symtab.h (SALIAS, SUNDEF): Rename as...
20144 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
20145 Adjust dependencies.
20146 * src/output.c (token_definitions_output): Be sure not to output a
20147 `#define 'a'' when fed with `%token 'a' "a"'.
20148 * tests/regression.at (Token definitions): New.
20149
8bb936e4
PE
201502002-05-03 Paul Eggert <eggert@twinsun.com>
20151
20152 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
20153 for K&R C.
20154
201552002-05-03 gettextize <bug-gnu-gettext@gnu.org>
20156
20157 * Makefile.am (SUBDIRS): Remove intl.
20158 (EXTRA_DIST): Add config/config.rpath.
20159
53c71a12
AD
201602002-05-03 Akim Demaille <akim@epita.fr>
20161
20162 * data/bison.simple (m4_if): Don't output empty enums.
20163 And actually, output valid enum definitions :(.
20164
289dd0cf
AD
201652002-05-03 Akim Demaille <akim@epita.fr>
20166
20167 * configure.bat: Remove, completely obsolete.
20168 * Makefile.am (EXTRA_DIST): Adjust.
20169 Don't distribute config.rpath...
20170 * config/Makefile.am (EXTRA_DIST): Do it.
20171
db85e524
AD
201722002-05-03 Akim Demaille <akim@epita.fr>
20173
20174 * configure.in (GETTEXT_VERSION): New.
20175 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
20176
83ccf991
AD
201772002-05-03 Akim Demaille <akim@epita.fr>
20178
20179 * data/bison.simple (b4_token_enum): New.
20180 (b4_token_defines): Use it to output tokens both as #define and
20181 enums.
20182 Suggested by Paul Eggert.
20183 * src/output.c (token_definitions_output): Don't output spurious
20184 white spaces.
20185
1f418995
AD
201862002-05-03 Akim Demaille <akim@epita.fr>
20187
20188 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
20189
45119f04
RA
201902002-05-02 Robert Anisko <robert@lrde.epita.fr>
20191
20192 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
20193 Update the stack class, give a try to deque as the default container.
20194
b2d52318
AD
201952002-05-02 Akim Demaille <akim@epita.fr>
20196
20197 * data/bison.simple (yyparse): Do not implement @$ = @1.
20198 (YYLLOC_DEFAULT): Adjust to do it.
20199 * doc/bison.texinfo (Location Default Action): Fix.
20200
3a8b4109
AD
202012002-05-02 Akim Demaille <akim@epita.fr>
20202
20203 * src/reader.c (parse_braces): Merge into...
20204 (parse_action): this.
20205
84614e13
AD
202062002-05-02 Akim Demaille <akim@epita.fr>
20207
20208 * configure.in (ALL_LINGUAS): Remove.
20209 * po/LINGUAS, hr.po: New.
20210
fdbcd8e2
AD
202112002-05-02 Akim Demaille <akim@epita.fr>
20212
20213 Remove the so called hairy (semantic) parsers.
20214
20215 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
20216 * src/gram.h, src/gram.c (semantic_parser): Remove.
20217 (rule_t): Remove the guard and guard_line members.
20218 * src/lex.h (token_t): remove tok_guard.
20219 * src/options.c (option_table): Remove %guard and %semantic_parser
20220 support.
20221 * src/output.c, src/output.h (guards_output): Remove.
20222 (prepare): Adjust.
20223 (token_definitions_output): Don't output the `T'
20224 tokens (???).
20225 (output_skeleton): Don't output the guards.
20226 * src/files.c, src/files.c (attrsfile): Remove.
20227 * src/reader.c (symbol_list): Remove the guard and guard_line
20228 members.
20229 Adjust dependencies.
20230 (parse_guard): Remove.
20231 * data/bison.hairy: Remove.
20232 * doc/bison.texinfo (Environment Variables): Remove occurrences of
20233 BISON_HAIRY.
20234
82b6cb3f
AD
202352002-05-02 Akim Demaille <akim@epita.fr>
20236
20237 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
20238 (parse_guard): Rename the formal argument `stack_offset' as
20239 `rule_length', which is more readable.
20240 Adjust callers.
20241 (copy_at, copy_dollar): Instead of outputting the hard coded
20242 values of $$, $n and so forth, output invocation to b4_lhs_value,
20243 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
20244 Note: this patch partially drops `semantic-parser' support: it
20245 always does `rule_length - n', where semantic parsers ought to
20246 always use `-n'.
82b6cb3f
AD
20247 * data/bison.simple, data/bison.c++ (b4_lhs_value)
20248 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
20249
6cbfbcc5
AD
202502002-05-02 Akim Demaille <akim@epita.fr>
20251
20252 * configure.in (AC_INIT): Bump to 1.49b.
20253 (AM_INIT_AUTOMAKE): Short invocation.
20254
b8548114
AD
202552002-05-02 Akim Demaille <akim@epita.fr>
20256
20257 Version 1.49a.
20258
c20cd1fa
AD
202592002-05-01 Akim Demaille <akim@epita.fr>
20260
20261 * src/skeleton.h: Remove.
20262
8a9566d4
AD
202632002-05-01 Akim Demaille <akim@epita.fr>
20264
20265 * src/skeleton.h: Fix the #endif.
20266 Reported by Magnus Fromreide.
20267
8c6d399a
PE
202682002-04-26 Paul Eggert <eggert@twinsun.com>
20269
20270 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
20271 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 20272 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 20273
2b7ed18a
RA
202742002-04-25 Robert Anisko <robert@lrde.epita.fr>
20275
20276 * src/scan-skel.l: Postprocess quadrigraphs.
20277
20278 * src/reader.c (copy_character): New function, used to output
20279 single characters while replacing `[' and `]' with quadrigraphs, to
20280 avoid troubles with M4 quotes.
20281 (copy_comment): Output characters with copy_character.
20282 (read_additionnal_code): Likewise.
20283 (copy_string2): Likewise.
20284 (copy_definition): Likewise.
20285
20286 * tests/calc.at: Exercise M4 quoting.
20287
34a89c50
AD
202882002-04-25 Akim Demaille <akim@epita.fr>
20289
20290 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
20291 between `!' and the command.
20292 Reported by Paul Eggert.
20293
0dd1580a
RA
202942002-04-24 Robert Anisko <robert@lrde.epita.fr>
20295
20296 * tests/calc.at: Exercise prologue splitting.
20297
20298 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
20299 `b4_post_prologue' instead of `b4_prologue'.
20300
20301 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
20302 muscles.
20303 (output): Free pre_prologue_obstack and post_prologue_obstack.
20304 * src/files.h, src/files.c (attrs_obstack): Remove.
20305 (pre_prologue_obstack, post_prologue_obstack): New.
20306 * src/reader.c (copy_definition): Add a parameter to specify the
20307 obstack to fill, instead of using attrs_obstack unconditionally.
20308 (read_declarations): Pass pre_prologue_obstack to copy_definition if
20309 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
20310
83c1796f
PE
203112002-04-23 Paul Eggert <eggert@twinsun.com>
20312
20313 * data/bison.simple: Remove unnecessary commentary and white
20314 space differences from 1_29-branch.
20315 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
20316
20317 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
20318 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
20319 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
20320 constructors or destructors.
20321
20322 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
20323
1207eeac
AD
203242002-04-23 Akim Demaille <akim@epita.fr>
20325
20326 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
20327 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
20328 location with columns.
20329 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
20330 All reported by Paul Eggert.
20331
78ab8f67
AD
203322002-04-22 Akim Demaille <akim@epita.fr>
20333
20334 * src/reduce.c (dump_grammar): Move to...
20335 * src/gram.h, src/gram.c (grammar_dump): here.
20336 Be sure to separate long item numbers.
20337 Don't read the members of a rule's prec if its nil.
20338
133c20e2
AD
203392002-04-22 Akim Demaille <akim@epita.fr>
20340
20341 * src/output.c (table_size, table_grow): New.
20342 (MAXTABLE): Remove, replace uses with table_size.
20343 (pack_vector): Instead of dying when the table is too big, grow it.
20344
9515e8a7
AD
203452002-04-22 Akim Demaille <akim@epita.fr>
20346
20347 * data/bison.simple (yyr1): Its type is that of a token number.
20348 * data/bison.c++ (r1_): Likewise.
20349 * tests/regression.at (Web2c Actions): Adjust.
20350
23c5a174
AD
203512002-04-22 Akim Demaille <akim@epita.fr>
20352
20353 * src/reader.c (token_translations_init): 256 is now the default
20354 value for the error token, i.e., it will be assigned another
20355 number if the user assigned 256 to one of her tokens.
20356 (reader): Don't force 256 to error.
20357 * doc/bison.texinfo (Symbols): Adjust.
20358 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
20359 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
20360 etc. instead of 10, 20, 30 (which was used to `jump' over error
20361 (256) and undefined (2)).
20362
5fbb0954
AD
203632002-04-22 Akim Demaille <akim@epita.fr>
20364
20365 Propagate more token_number_t.
20366
20367 * src/gram.h (token_number_as_item_number)
20368 (item_number_as_token_number): New.
20369 * src/output.c (GENERATE_OUTPUT_TABLE): New.
20370 Use it to create output_item_number_table and
20371 output_token_number_table.
20372 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
20373 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
20374 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
20375 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
20376
4f940944
AD
203772002-04-22 Akim Demaille <akim@epita.fr>
20378
20379 * src/output.h, src/output.c (get_lines_number): Remove.
20380
3ded9a63
AD
203812002-04-19 Akim Demaille <akim@epita.fr>
20382
20383 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
20384 as Lex/Flex'.
20385 (Debugging): More details about enabling the debugging features.
20386 (Table of Symbols): Describe $$, $n, @$, and @n.
20387 Suggested by Tim Josling.
20388
e0c471a9
AD
203892002-04-19 Akim Demaille <akim@epita.fr>
20390
20391 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
20392
fecc10cd
AD
203932002-04-10 Akim Demaille <akim@epita.fr>
20394
20395 * src/system.h: Rely on HAVE_LIMITS_H.
20396 Suggested by Paul Eggert.
20397
51dec47b
AD
203982002-04-09 Akim Demaille <akim@epita.fr>
20399
20400 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
20401 full stderr, and strip it according to the bison options, instead
20402 of composing the error message from different bits.
20403 This makes it easier to check for several error messages.
20404 Adjust all the invocations.
20405 Add an invocation exercising the error token.
20406 Add an invocation demonstrating a stupid error message.
20407 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
20408 Adjust the tests.
20409 Error message are for stderr, not stdout.
20410
007a50a4
AD
204112002-04-09 Akim Demaille <akim@epita.fr>
20412
20413 * src/gram.h, src/gram.c (error_token_number): Remove, use
20414 errtoken->number.
20415 * src/reader.c (reader): Don't specify the user token number (2)
20416 for $undefined, as it uselessly prevents using it.
20417 * src/gram.h (token_number_t): Move to...
20418 * src/symtab.h: here.
20419 (state_t.number): Is a token_number_t.
20420 * src/print.c, src/reader.c: Use undeftoken->number instead of
20421 hard coded 2.
20422 (Even though this 2 is not the same as above: the number of the
20423 undeftoken remains being 2, it is its user token number which
20424 might not be 2).
20425 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
20426 `user_token_number_max'.
20427 Output `undef_token_number'.
20428 * data/bison.simple, data/bison.c++: Use them.
20429 Be sure to map invalid yylex return values to
20430 `undef_token_number'. This saves us from gratuitous SEGV.
20431
20432 * tests/conflicts.at (Solved SR Conflicts)
20433 (Unresolved SR Conflicts): Adjust.
20434 * tests/regression.at (Web2c Actions): Adjust.
20435
06446ccf
AD
204362002-04-08 Akim Demaille <akim@epita.fr>
20437
20438 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
20439 Adding #line.
20440 Remove the duplicate `typedefs'.
20441 (RhsNumberType): Fix the declaration and various other typos.
20442 Use __ofile__.
20443 * data/bison.simple: Use __ofile__.
20444 * src/scan-skel.l: Handle __ofile__.
20445
62a3e4f0
AD
204462002-04-08 Akim Demaille <akim@epita.fr>
20447
20448 * src/gram.h (item_number_t): New, the type of item numbers in
20449 RITEM. Note that it must be able to code symbol numbers as
20450 positive number, and the negation of rule numbers as negative
20451 numbers.
20452 Adjust all dependencies (pretty many).
20453 * src/reduce.c (rule): Remove this `short *' pointer: use
20454 item_number_t.
20455 * src/system.h (MINSHORT, MAXSHORT): Remove.
20456 Include `limits.h'.
20457 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
20458 (shortcpy): Remove.
20459 (MAXTABLE): Move to...
20460 * src/output.c (MAXTABLE): here.
20461 (prepare_rules): Use output_int_table to output rhs.
20462 * data/bison.simple, data/bison.c++: Adjust.
20463 * tests/torture.at (Big triangle): Move the limit from 254 to
20464 500.
20465 * tests/regression.at (Web2c Actions): Ajust.
20466
20467 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
20468 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
20469 passes, but produces negative #line number, once fixed, GCC is
20470 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
20471 C), it passes.
20472 * src/state.h (state_h): Code input lines on ints, not shorts.
20473
bb88b0fc
AD
204742002-04-08 Akim Demaille <akim@epita.fr>
20475
20476 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
20477 and then the grammar.
20478
9a636f47
AD
204792002-04-08 Akim Demaille <akim@epita.fr>
20480
20481 * src/system.h: No longer using strndup.
20482
680e8701
AD
204832002-04-07 Akim Demaille <akim@epita.fr>
20484
20485 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
20486 * src/output.c (output_table_data): Return the longest number.
20487 (prepare_tokens): Output `token_number_max').
20488 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
20489 New.
20490 Use them to define yy_token_number_type/TokenNumberType.
20491 Use this type for yytranslate.
20492 * tests/torture.at (Big triangle): Push the limit from 124 to
20493 253.
20494 * tests/regression.at (Web2c Actions): Adjust.
20495
817e9f41
AD
204962002-04-07 Akim Demaille <akim@epita.fr>
20497
20498 * tests/torture.at (Big triangle): New.
20499 (GNU AWK Grammar, GNU Cim Grammar): Move to...
20500 * tests/existing.at: here.
20501
5123689b
AD
205022002-04-07 Akim Demaille <akim@epita.fr>
20503
20504 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
20505 nritems.
20506 Adjust dependencies.
20507
f3849179
AD
205082002-04-07 Akim Demaille <akim@epita.fr>
20509
20510 * src/reader.c: Normalize increments to prefix form.
20511
bd02036a
AD
205122002-04-07 Akim Demaille <akim@epita.fr>
20513
20514 * src/reader.c, symtab.c: Remove debugging code.
20515
db8837cb
AD
205162002-04-07 Akim Demaille <akim@epita.fr>
20517
20518 Rename all the `bucket's as `symbol_t'.
20519
20520 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
20521 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
20522 * src/symtab.c, src/symtab.h (bucket): Rename as...
20523 (symbol_t): this.
20524 (symbol_list_new, bucket_check_defined, bucket_make_alias)
20525 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
20526 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
20527 (buckets_new, buckets_free, buckets_do): Rename as...
20528 (symbol_list_new, symbol_check_defined, symbol_make_alias)
20529 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
20530 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
20531 (symbols_new, symbols_free, symbols_do): these.
20532
72a23c97
AD
205332002-04-07 Akim Demaille <akim@epita.fr>
20534
20535 Use lib/hash for the symbol table.
20536
20537 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
20538 EOF.
20539 * src/lex.c (lex): Set the `number' member of new terminals.
20540 * src/reader.c (bucket_check_defined, bucket_make_alias)
20541 (bucket_check_alias_consistence, bucket_translation): New.
20542 (reader, grammar_free, readgram, token_translations_init)
20543 (packsymbols): Adjust.
20544 (reader): Number the predefined tokens.
20545 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
20546 for predefined tokens.
20547 * src/symtab.h (bucket): Remove all the hash table related
20548 members.
20549 * src/symtab.c (symtab): Replace by...
20550 (bucket_table): this.
20551 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
20552 (buckets_new, buckets_do): New.
20553
280a38c3
AD
205542002-04-07 Akim Demaille <akim@epita.fr>
20555
20556 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
20557 (start_symbol, max_user_token_number, semantic_parser)
20558 (error_token_number): Initialize.
20559 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
20560 Initialize.
20561 (reader): Don't.
20562 (errtoken, eoftoken, undeftoken, axiom): Extern.
20563
03b31c0c
AD
205642002-04-07 Akim Demaille <akim@epita.fr>
20565
20566 * src/gram.h (rule_s): prec and precsym are now pointers
20567 to the bucket giving the priority/associativity.
20568 Member `associativity' removed: useless.
20569 * src/reduce.c, src/conflicts.c: Adjust.
20570
8b3df748
AD
205712002-04-07 Akim Demaille <akim@epita.fr>
20572
20573 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
20574 Properly escape the symbols' TAG when outputting them.
20575
e601aa1d
AD
205762002-04-07 Akim Demaille <akim@epita.fr>
20577
20578 * src/lalr.h (LA): Is a bitsetv, not bitset*.
20579
b0299a2e
AD
205802002-04-07 Akim Demaille <akim@epita.fr>
20581
20582 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
20583 (LArule): this, which is an array to rule_t*.
20584 * src/print.c, src/conflicts.c: Adjust.
20585
d7e1f00c
AD
205862002-04-07 Akim Demaille <akim@epita.fr>
20587
20588 * src/gram.h (rule_t): Rename `number' as `user_number'.
20589 `number' is a new member.
20590 Adjust dependencies.
20591 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
20592
cc9305dd
AD
205932002-04-07 Akim Demaille <akim@epita.fr>
20594
20595 As a result of the previous patch, it is no longer needed
20596 to reorder ritem itself.
20597
20598 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
20599
b0940840
AD
206002002-04-07 Akim Demaille <akim@epita.fr>
20601
20602 Be sure never to walk through RITEMS, but use only data related to
20603 the rules themselves. RITEMS should be banished.
20604
20605 * src/output.c (output_token_translations): Rename as...
20606 (prepare_tokens): this.
20607 In addition to `translate', prepare the muscles `tname' and
20608 `toknum', which were handled by...
20609 (output_rule_data): this.
20610 Remove, and move the remainder of its outputs into...
20611 (prepare_rules): this new routines, which also merges content from
20612 (output_gram): this.
20613 (prepare_rules): Be sure never to walk through RITEMS.
20614 (output_stos): Rename as...
20615 (prepare_stos): this.
20616 (output): Always invoke prepare_states, after all, just don't use it
20617 in the output if you don't need it.
20618
643a5994
AD
206192002-04-07 Akim Demaille <akim@epita.fr>
20620
20621 * src/LR0.c (new_state): Display `nstates' as the name of the
20622 newly created state.
20623 Adjust to initialize first_state and last_state if needed.
20624 Be sure to distinguish the initial from the final state.
20625 (new_states): Create the itemset of the initial state, and use
20626 new_state.
20627 * src/closure.c (closure): Now that the initial state has its
20628 items properly set, there is no need for a special case when
20629 creating `ruleset'.
20630
20631 As a result, now the rule 0, reducing to $axiom, is visible in the
20632 outputs. Adjust the test suite.
20633
20634 * tests/conflicts.at (Solved SR Conflicts)
20635 (Unresolved SR Conflicts): Adjust.
20636 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
20637 * tests/conflicts.at (S/R in initial): New.
20638
b4c4ccc2
AD
206392002-04-07 Akim Demaille <akim@epita.fr>
20640
20641 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
20642 the RHS of the rules.
20643 * src/output.c (output_gram): Likewise.
20644
bba97eb2
AD
206452002-04-07 Akim Demaille <akim@epita.fr>
20646
20647 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
20648 bucket.
20649 Adjust all dependencies.
20650 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
20651 `number' of the buckets too.
20652 * src/gram.h: Include `symtab.h'.
20653 (associativity): Move to...
20654 * src/symtab.h: here.
20655 No longer include `gram.h'.
20656
c3b407f4
AD
206572002-04-07 Akim Demaille <akim@epita.fr>
20658
20659 * src/gram.h, src/gram.c (rules_rhs_length): New.
20660 (ritem_longest_rhs): Use it.
20661 * src/gram.h (rule_t): `number' is a new member.
20662 * src/reader.c (packgram): Set it.
20663 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
20664 the end of `rules', and count them out of `nrules'.
20665 (reduce_output, dump_grammar): Adjust.
20666 * src/print.c (print_grammar): It is no longer needed to check for
20667 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
20668 * tests/reduce.at (Reduced Automaton): New test.
20669
11652ab3
AD
206702002-04-07 Akim Demaille <akim@epita.fr>
20671
20672 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
20673 lacking `+ 1' to nrules, Bison reported as useless a token if it
20674 was used solely to set the precedence of the last rule...
20675
26b23c1a
AD
206762002-04-07 Akim Demaille <akim@epita.fr>
20677
20678 * data/bison.c++, data/bison.simple: Don't output the current file
20679 name in #line, to avoid useless diffs between two identical
20680 outputs under different names.
20681
18bcecb0
AD
206822002-04-07 Akim Demaille <akim@epita.fr>
20683
20684 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
20685 Normalize loops to using `< nrules + 1', not `<= nrules'.
20686
fa770c86
AD
206872002-04-07 Akim Demaille <akim@epita.fr>
20688
20689 * TODO: Update.
20690
d9b739c3
AD
206912002-04-07 Akim Demaille <akim@epita.fr>
20692
20693 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
20694 bucket.value as bucket.number.
20695
99013900
AD
206962002-04-07 Akim Demaille <akim@epita.fr>
20697
20698 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
20699 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
20700 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
20701 RHS, instead of being an index in RITEMS.
20702
e966383b
PE
207032002-04-04 Paul Eggert <eggert@twinsun.com>
20704
20705 * doc/bison.texinfo: Update copyright date.
20706 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
20707 (Symbols): Warn about running Bison in one character set,
20708 but compiling and/or running in an incompatible one.
20709 Warn about character code 256, too.
20710
207112002-04-03 Paul Eggert <eggert@twinsun.com>
20712
20713 * src/bison.data (YYSTACK_ALLOC): Depend on whether
20714 YYERROR_VERBOSE is nonzero, not whether it is defined.
20715
20716 Merge changes from bison-1_29-branch.
c307773e 20717
8d6c48b9
PE
207182002-03-20 Paul Eggert <eggert@twinsun.com>
20719
20720 Merge fixes from Debian bison_1.34-1.diff.
20721
20722 * configure.in (AC_PREREQ): 2.53.
20723
e53c6322
AD
207242002-03-20 Akim Demaille <akim@epita.fr>
20725
20726 * src/conflicts.c (log_resolution): Argument `resolution' is const.
20727
9ffbeca7
PE
207282002-03-19 Paul Eggert <eggert@twinsun.com>
20729
21db0b2a
PE
20730 * src/bison.simple (YYCOPY): New macro.
20731 (YYSTACK_RELOCATE): Use it.
20732 Remove Type arg; no longer needed. All callers changed.
20733 (yymemcpy): Remove; no longer needed.
20734
9ffbeca7
PE
20735 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
20736 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
20737
642cb8f8
AD
207382002-03-19 Akim Demaille <akim@epita.fr>
20739
20740 Test and fix the #line outputs.
20741
20742 * tests/atlocal.at (GCC): New.
20743 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 20744 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
20745 (Action synch line, Epilogue synch line): New tests.
20746 * src/reader.c (parse_union_decl): Define the muscle stype_line.
20747 * data/bison.simple, data/bison.c++: Use it.
20748
3c31a486
AD
207492002-03-19 Akim Demaille <akim@epita.fr>
20750
20751 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
20752 (Solved SR Conflicts, %expect not enough, %expect right)
20753 (%expect too much): Move to...
20754 * tests/conflicts.at: this new file.
20755
0d8bed56
AD
207562002-03-19 Akim Demaille <akim@epita.fr>
20757
20758 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
20759 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
20760 that we can move to enums for instance.
20761 * src/output.c (token_definitions_output): Output a list of
20762 `token-name, token-number' instead of the #define.
20763 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
20764
9208d17f
AD
207652002-03-14 Akim Demaille <akim@epita.fr>
20766
20767 Use Gettext 0.11.1.
20768
af27eacb
RA
207692002-03-09 Robert Anisko <robert@lrde.epita.fr>
20770
20771 * data/bison.c++: Make the user able to add members to the generated
20772 parser by subclassing.
20773
9101a310
RA
207742002-03-05 Robert Anisko <robert@lrde.epita.fr>
20775
20776 * src/reader.c (read_additionnal_code): `c' should be an integer, not
20777 a character.
20778 Reported by Nicolas Tisserand and Nicolas Burrus.
20779
fff9bf0b
RA
207802002-03-04 Robert Anisko <robert@lrde.epita.fr>
20781
20782 * src/reader.c: Warn about lacking semi-colons, do not complain.
20783
64dba31e
RA
207842002-03-04 Robert Anisko <robert@lrde.epita.fr>
20785
20786 * data/bison.c++: Remove a debug line.
20787
374f5a14
RA
207882002-03-04 Robert Anisko <robert@lrde.epita.fr>
20789
20790 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
20791 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
20792 provide a default implementation.
20793
bfcf1f3a
AD
207942002-03-04 Akim Demaille <akim@epita.fr>
20795
20796 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
20797 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
20798 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
20799 * tests/semantic.at (Parsing Guards): Similarly.
20800 * src/reader.at (readgram): Complain if the last rule is not ended
20801 with a semi-colon.
20802
65ccf9fc
AD
208032002-03-04 Akim Demaille <akim@epita.fr>
20804
20805 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
20806 * src/closure.c: here.
20807 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
20808 RTC.
20809 * src/warshall.h, src/warshall.c: Remove.
20810 * tests/sets.at (Broken Closure): Adjust.
20811
d0039cbc
AD
208122002-03-04 Akim Demaille <akim@epita.fr>
20813
20814 * src/output.c (output_skeleton): tempdir is const.
20815 bytes_read is unused.
20816
345cea78
AD
208172002-03-04 Akim Demaille <akim@epita.fr>
20818
20819 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
20820 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
20821 Update.
20822 From Michael Hayes.
20823
564801f7
AD
208242002-03-04 Akim Demaille <akim@epita.fr>
20825
20826 * src/closure.c (closure): `r' is unused.
20827
e5352bc7
AD
208282002-03-04 Akim Demaille <akim@epita.fr>
20829
20830 * tests/sets.at (Broken Closure): Add the ending `;'.
20831 * src/reader.at (readgram): Complain if a rule is not ended with a
20832 semi-colon.
20833
914feea9
AD
208342002-03-04 Akim Demaille <akim@epita.fr>
20835
20836 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
20837 (count_sr_conflicts): Use bitset_count.
20838 * src/reduce.c (inaccessable_symbols): Ditto.
20839 (bits_size): Remove.
20840 * src/warshall.h, src/warshall.c: Convert to bitsetv.
20841
f0250de6
AD
208422002-03-04 Akim Demaille <akim@epita.fr>
20843
20844 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
20845 * src/reduce.c: Remove the `bitset_zero's following the
20846 `bitset_create's, as now it is performed by the latter.
20847
ef017502
AD
208482002-03-04 Akim Demaille <akim@epita.fr>
20849
20850 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
20851 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
20852 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
20853 latest sources from Michael.
20854
76514394
AD
208552002-03-04 Akim Demaille <akim@epita.fr>
20856
20857 * src/output.c (output): Don't free the grammar.
20858 * src/reader.c (grammar_free): New.
20859 * src/main.c (main): Call it and don't free symtab here.
20860
55024580
AD
208612002-03-04 Akim Demaille <akim@epita.fr>
20862
20863 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
20864 before returning.
20865 Reported by Benoit Perrot.
20866
f9abaa2c
AD
208672002-03-04 Akim Demaille <akim@epita.fr>
20868
20869 Use bitset operations when possible, not loops over bits.
20870
20871 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
20872 bitset_or.
20873 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
20874 * src/reduce.c (useless_nonterminals): Formatting changes.
20875 * src/warshall.c (TC): Use bitset_or.
20876
0e721e75
AD
208772002-03-04 Akim Demaille <akim@epita.fr>
20878
20879 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
20880 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
20881 Ditto.
20882
0fb1ffb1
AD
208832002-03-04 Akim Demaille <akim@epita.fr>
20884
20885 * src/lalr.c (F): Now a bitset*.
20886 Adjust all dependencies.
20887
b86796bf
AD
208882002-03-04 Akim Demaille <akim@epita.fr>
20889
20890 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
20891 Adjust all dependencies.
20892
602bbf31
AD
208932002-03-04 Akim Demaille <akim@epita.fr>
20894
20895 * src/L0.c, src/LR0.h (nstates): Be size_t.
20896 Adjust comparisons (signed vs unsigned).
20897 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
20898 bitset*.
20899 Adjust all dependencies.
20900
d8a0245c
AD
209012002-03-04 Akim Demaille <akim@epita.fr>
20902
20903 * src/closure.c (firsts): Now, also a bitset.
20904 Adjust all dependencies.
20905 (varsetsize): Remove, now unused.
20906 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
20907
34ba9743
AD
209082002-03-04 Akim Demaille <akim@epita.fr>
20909
20910 * src/print.c: Convert to use bitset.h, not hand coded iterations
20911 over ints.
20912
ed86e78c
AD
209132002-03-04 Akim Demaille <akim@epita.fr>
20914
20915 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
20916
dfdb1797
AD
209172002-03-04 Akim Demaille <akim@epita.fr>
20918
20919 * src/closure.c (ruleset): Be a bitset.
20920 (rulesetsize): Remove.
20921
7086e707
AD
209222002-03-04 Akim Demaille <akim@epita.fr>
20923
20924 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
20925 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
20926 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
20927 * src/closure.c (fderives): Be an array of bitsets.
20928
98254360
RA
209292002-02-28 Robert Anisko <robert@lrde.epita.fr>
20930
20931 * data/bison.c++: Merge the two generated headers. Insert a copyright
20932 notice in each output file.
20933
a75c057f
AD
209342002-02-28 Akim Demaille <akim@epita.fr>
20935
20936 * data/bison.c++: Copy the prologue of bison.simple to fetch
20937 useful M4 definitions, such as b4_header_guard.
20938
06b00abc
AD
209392002-02-25 Akim Demaille <akim@epita.fr>
20940
20941 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
20942 translator friendly scheme for the bgr
20943 copyright notice.
06b00abc 20944
70e7d534
AD
209452002-02-25 Akim Demaille <akim@epita.fr>
20946
20947 * src/output.c (header_output): Remove, now handled completely via
20948 M4.
20949
abe017f6
AD
209502002-02-25 Akim Demaille <akim@epita.fr>
20951
20952 * m4/m4.m4: New, from CVS Autoconf.
20953 * configure.in: Invoke it.
20954 * src/output.c (output_skeleton): Use its result instead of the
20955 hard coded name.
20956
381fb12e
AD
209572002-02-25 Akim Demaille <akim@epita.fr>
20958
20959 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
20960 Fileutils 4.1.5.
20961 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
20962 * src/output.c (output_skeleton): Use mkstemp to create a real
20963 temporary file.
20964 Move the filling of `skeleton' and its muscle to...
20965 (prepare): here.
20966 (output): Move the definition of the prologue muscle to...
20967 (prepare): here.
20968 * src/system.h (DEFAULT_TMPDIR): New.
20969
6f38107f
PE
209702002-02-14 Paul Eggert <eggert@twinsun.com>
20971
20972 Remove the support for C++ namespace cleanliness; it was
20973 causing more problems than it was curing, since it didn't work
20974 properly on some nonstandard C++ compilers. This can wait
20975 for a proper C++ parser.
20976
20977 * NEWS: Document this.
20978 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
20979 of C++, as it's treated like C now.
20980 * src/bison.simple (YYSTD): Remove.
20981 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
20982 Treat C++ just like Standard C instead of trying to support
20983 namespace cleanliness.
20984
80cce3da
AD
209852002-02-14 Akim Demaille <akim@epita.fr>
20986
20987 * tests/regression.at (else): Adjust to Andreas' change.
20988
842e8679
AD
209892002-02-14 Akim Demaille <akim@epita.fr>
20990
20991 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
20992
4bda3f10
AD
209932002-02-13 Andreas Schwab <schwab@suse.de>
20994
20995 * src/output.c (output_rule_data): Don't output NULL, it might
20996 not be defined yet.
20997
4162fa07 209982002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 20999
4162fa07
RA
21000 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
21001 (Copyright notice): Update.
b418ecd8 21002
bd16a5dc
AD
210032002-02-11 Akim Demaille <akim@epita.fr>
21004
21005 * tests/regression.at (%nonassoc and eof): Don't include
21006 nonportable headers.
21007
8d69a1a3
RA
210082002-02-08 Robert Anisko <robert@lrde.epita.fr>
21009
21010 * data/bison.c++: Correct error recovery. Make the user able to
21011 initialize the starting location.
21012
9b2d0677
AD
210132002-02-07 Akim Demaille <akim@epita.fr>
21014
21015 * tests/input.at: New.
21016
69e2658b
RA
210172002-02-07 Robert Anisko <robert@lrde.epita.fr>
21018
21019 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 21020 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
21021 directives around tables only needed for debugging.
21022
4aacc3a7
RA
210232002-02-07 Robert Anisko <robert@lrde.epita.fr>
21024
21025 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
21026 C++ parsers.
21027 (yy::b4_name::parse): Use print_.
21028
762a801e
RA
210292002-02-07 Robert Anisko <robert@lrde.epita.fr>
21030
21031 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
21032
4bb2bc3f
RA
210332002-02-07 Robert Anisko <robert@lrde.epita.fr>
21034
21035 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
21036 C++ parsers.
21037 (yy::b4_name::parse): Build verbose error messages, and use error_.
21038
6b45a3ca
RA
210392002-02-06 Robert Anisko <robert@lrde.epita.fr>
21040
21041 * data/bison.c++: Fix m4 quoting in comments.
21042
50997c6e
RA
210432002-02-06 Robert Anisko <robert@lrde.epita.fr>
21044
21045 * data/bison.c++: Adjust the parser code. Fix some muscles that were
21046 not expanded by m4.
21047
3f3eed27
AD
210482002-02-05 Akim Demaille <akim@epita.fr>
21049
21050 * data/bison.c++: Adjust to the M4 back end.
21051 More is certainly needed.
21052
be2a1a68
AD
210532002-02-05 Akim Demaille <akim@epita.fr>
21054
21055 Give a try to M4 as a back end.
21056
21057 * lib/readpipe.c: New, from wdiff.
21058 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
21059 BISON_HAIRY.
21060 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
21061 specific values. Now it is m4 that performs the lookup.
21062 * src/parse-skel.y: Remove.
21063 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
21064 * src/output.c (actions_output, guards_output)
21065 (token_definitions_output): No longer keeps track of the output
21066 line number, hence remove the second argument.
21067 (guards_output): Check against the guard member of a rule, not the
21068 action member.
21069 Adjust callers.
21070 (output_skeleton): Don't look for the skeleton location, let m4 do
21071 that.
21072 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
21073 file will be used.
21074 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
21075 (prepare): Given that for the time being changesyntax is not
21076 usable in M4, rename the muscles using `-' to `_'.
21077 Define `defines_flag', `output_parser_name' and `output_header_name'.
21078 * src/output.h (actions_output, guards_output)
21079 (token_definitions_output): Adjust prototypes.
21080 * src/scan-skel.l: Instead of scanning the skeletons, it now
21081 processes the output of m4: `__oline__' and `#output'.
21082 * data/bison.simple: Adjust to be used by M4(sugar).
21083 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
21084 to date.
21085 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
21086 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
21087 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
21088 shamelessly stolen from CVS Autoconf.
21089
beda758b
AD
210902002-02-05 Akim Demaille <akim@epita.fr>
21091
21092 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
21093 * configure.in: Check for the declarations of free and malloc.
21094 * src/muscle_tab.c: Adjust.
21095
5ece6d43
AD
210962002-02-05 Akim Demaille <akim@epita.fr>
21097
21098 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
21099 which have no values.
21100
5bb18f9a
AD
211012002-02-05 Akim Demaille <akim@epita.fr>
21102
21103 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
21104 * data/: here.
21105
894dd62e
PE
211062002-01-29 Paul Eggert <eggert@twinsun.com>
21107
21108 * src/bison.simple (YYSIZE_T): Do not define merely because
21109 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
21110 On some platforms, <alloca.h> does not declare YYSTD (size_t).
21111
82841af7
AD
211122002-01-27 Akim Demaille <akim@epita.fr>
21113
21114 Fix `%nonassoc and eof'.
21115
21116 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
21117 which were not properly copied! Replace
21118 memcpy (res->errs, src->errs, src->nerrs);
21119 with
21120 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
21121 !!!
21122 * tests/regression.at (%nonassoc and eof): Adjust to newest
21123 Autotest: `.' is not in the PATH.
21124
318b76e9
AD
211252002-01-27 Akim Demaille <akim@epita.fr>
21126
21127 * tests/sets.at (AT_EXTRACT_SETS): New.
21128 (Nullable): Use it.
21129 (Firsts): New.
21130
30d2f3d5
AD
211312002-01-26 Akim Demaille <akim@epita.fr>
21132
21133 * tests/actions.at, tests/calc.at, tests/headers.at,
21134 * tests/torture.at: Adjust to the newest Autotest which no longer
21135 forces `.' in the PATH.
21136
30f8c395
AD
211372002-01-25 Akim Demaille <akim@epita.fr>
21138
21139 * tests/regression.at (%nonassoc and eof): New.
21140 Suggested by Robert Anisko.
21141
29ae55f1
AD
211422002-01-24 Akim Demaille <akim@epita.fr>
21143
21144 Bison dumps core when trying to complain about broken input files.
21145 Reported by Cris van Pelt.
21146
21147 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
21148 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
21149 into...
21150 (Invalid inputs): Strengthen: exercise parse_percent_token.
21151
2b548aa6
RA
211522002-01-24 Robert Anisko <robert.anisko@epita.fr>
21153
21154 * src/Makefile.am: Add bison.c++.
21155 * src/bison.c++: New skeleton.
21156
bb0146c2
AD
211572002-01-21 Paolo Bonzini <bonzini@gnu.org>
21158
21159 * po/it.po: New.
21160
bec30531
AD
211612002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
21162
21163 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
21164
fc6edc45
MA
211652002-01-20 Marc Autret <marc@gnu.org>
21166
21167 * src/files.c (compute_output_file_names): Fix
21168
5e5d5415
MA
211692002-01-20 Marc Autret <marc@gnu.org>
21170
21171 * tests/output.at: New test.
21172 * src/files.c (compute_base_names): Don't map extensions when
21173 the YACC flag is set, use defaults.
21174 Reported by Evgeny Stambulchik.
21175
44ea3fbd
MA
211762002-01-20 Marc Autret <marc@gnu.org>
21177
ba0fe3c7
PE
21178 * src/system.h: Need to define __attribute__ away for non-GCC
21179 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
21180 Suggested by Albert Chin-A-Young.
21181
338963d1
TVH
211822002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
21183
21184 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
21185 canonical definition.
21186 * src/system.h: Use the canonical definition for PARAMS (avoids
21187 a conflict with the macro from lib/hash.h).
21188
c57b2479
AD
211892002-01-11 Akim Demaille <akim@epita.fr>
21190
21191 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 21192 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 21193
b85810ae
AD
211942002-01-09 Akim Demaille <akim@epita.fr>
21195
21196 * src/files.c, src/files.h (output_infix): New.
21197 (tab_extension): Remove.
21198 (compute_base_names): Compute the former, drop the latter.
21199 * src/output.c (prepare): Insert the muscles `output-infix', and
21200 `output-suffix'.
21201 * src/parse-skel.y (string, string.1): New.
21202 (section.header): Use it.
21203 (section.yacc): Remove.
21204 (prefix): Remove too.
21205 * src/scan-skel.l: Adjust.
21206 * src/bison.simple, src/bison.hairy: Adjust.
21207
cae60122
AD
212082002-01-09 Akim Demaille <akim@epita.fr>
21209
21210 * configure.in (WERROR_CFLAGS): Compute it.
21211 * src/Makefile.am (CFLAGS): Pass it.
21212 * tests/atlocal.in (CFLAGS): Idem.
21213 * src/files.c: Fix a few warnings.
21214 (get_extension_index): Remove, unused.
21215
ae404801
AD
212162002-01-08 Akim Demaille <akim@epita.fr>
21217
21218 * src/getargs.c (AS_FILE_NAME): New.
21219 (getargs): Use it to convert DOSish file names.
21220 * src/files.c (base_name): Rename as full_base_name to avoid
21221 clashes with `base_name ()'.
21222 (filename_split): New.
21223 (compute_base_names): N-th rewrite, using filename_split.
21224
22312b71
AD
212252002-01-08 Akim Demaille <akim@epita.fr>
21226
21227 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
21228 New, stolen from the Fileutils 4.1.
21229 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
21230 * configure.in: Check for the presence of memrchr, and of its
21231 prototype.
21232
a67cef01
TVH
212332002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
21234
21235 * lib/hash.h (__P): Added definition for this macro.
21236 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
21237 BUILT_SOURCES, to ensure they are generated first.
21238 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
21239 %error-verbose to allow bootstrapping with bison 1.30x.
21240
2b25d624
AD
212412002-01-06 Akim Demaille <akim@epita.fr>
21242
21243 * src/reader.c (parse_braces): Don't fetch the next char, the
21244 convention is to fetch on entry.
21245 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
21246 'switch' without a following semicolon.
21247 * tests/regression.at (braces parsing): New.
21248
3460813b
AD
212492002-01-06 Akim Demaille <akim@epita.fr>
21250
21251 Bison is dead wrong in its RR conflict reports.
21252
21253 * tests/torture.at (GNU Cim Grammar): New.
21254 * src/conflicts.c (count_rr_conflicts): Fix.
21255
73784c64
AD
212562002-01-06 Akim Demaille <akim@epita.fr>
21257
21258 Creating package.m4 from configure.ac causes too many problems.
21259
21260 * tests/Makefile.am (package.m4): Create it by hand,
21261 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
21262
25d81090
AD
212632002-01-06 Akim Demaille <akim@epita.fr>
21264
21265 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
21266 skeleton.h.
21267
a9b8959e
PE
212682002-01-04 Paul Eggert <eggert@twinsun.com>
21269
21270 * doc/bison.texinfo (Debugging):
21271 Remove YYSTDERR; it's no longer defined or used.
21272 Also, s/cstdio.h/cstdio/.
21273
25d81090
AD
212742002-01-03 Akim Demaille <akim@epita.fr>
21275
21276 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
21277
1109455c
AD
212782002-01-03 Akim Demaille <akim@epita.fr>
21279
21280 * src/parse-skel.y (process_skeleton): Don't bind the parser's
21281 tracing code to --trace, wait for a better --trace option, with
21282 args.
21283
7ea5e977
AD
212842002-01-03 Akim Demaille <akim@epita.fr>
21285
21286 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
21287 The ISO C++ standard is extremely clear about it: stderr is
21288 considered a macro, not a regular symbol (see table 94 `Header
21289 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
21290 Therefore std:: does not apply to it. It still does with fprintf.
21291 Also, s/cstdio.h/cstdio/.
21292
fab5b110
AD
212932002-01-03 Akim Demaille <akim@epita.fr>
21294
21295 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
21296 for non system headers.
21297
aed7fd9b
AD
212982002-01-02 Akim Demaille <akim@epita.fr>
21299
21300 Equip the skeleton chain with location tracking, runtime trace,
21301 pure parser and scanner.
21302
21303 * src/parse-skel.y: Request a pure parser, locations, and prefix
21304 renaming.
21305 (%union): Having several members with the same type does not help
21306 type mismatches, simplify.
21307 (YYPRINT, yyprint): New.
21308 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
21309 (skel_error): this.
21310 Handle locations.
21311 * src/scan-skel.l: Adjust to these changes.
21312 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
21313 (LOCATION_PRINT, skel_control_t): New.
21314
24fad99e
AD
213152001-12-30 Akim Demaille <akim@epita.fr>
21316
21317 * src/parse-skel.y: Get rid of the shift/reduce conflict:
21318 replace `gb' with BLANKS.
21319 * src/scan-skel.l: Adjust.
21320
a4b36db4
AD
213212001-12-30 Akim Demaille <akim@epita.fr>
21322
21323 * src/system.h: We don't need nor want bcopy.
21324 Throw away MS-DOS crap: we don't need getpid.
21325 * configure.in: We don't need strndup. It was even causing
21326 problems: because Flex includes the headers *before* us,
21327 _GNU_SOURCE is not defined by config.h, and therefore strndup was
21328 not visible.
21329 * lib/xstrndup.c: New.
21330 * src/scan-skel.l: Use it.
21331 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
21332 * src/parse-skel.y: Use %directives instead of #defines.
21333
1239777d
AD
213342001-12-30 Akim Demaille <akim@epita.fr>
21335
21336 * src/skeleton.h: New.
21337 * src/output.c (output_parser, output_master_parser): Remove, dead
21338 code.
21339 * src/output.h (get_lines_number, actions_output, guards_output)
21340 (token_definitions_output): Prototype them.
21341 * src/parse-skel.y: Add the license notice.
21342 Include output.h and skeleton.h.
21343 (process_skeleton): Returns void, and takes a single parameter.
21344 * src/scan-skel.l: Add the license notice.
21345 Include skeleton.h.
21346 Don't use %option yylineno: it seems that then Flex imagines
21347 REJECT has been used, and therefore it won't reallocate its
21348 buffers (which makes no other sense to me than a bug). It results
21349 in warnings for `unused: yy_flex_realloc'.
21350
9b3add5b
RA
213512001-12-30 Robert Anisko <robert.anisko@epita.fr>
21352
21353 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
21354 (MUSCLE_INSERT_PREFIX): ...to there.
21355 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
21356 (MUSCLE_INSERT_PREFIX): Move from here...
21357
21358 * src/bison.hairy: Add a section directive. Put braces around muscle
21359 names. This parser skeleton is still broken, but Bison should not
21360 choke on a bad muscle 'syntax'.
21361 * src/bison.simple: Add a section directive. Put braces around muscle
21362 names.
21363
21364 * src/files.h (strsuffix, stringappend): Add declarations.
21365 (tab_extension): Add declaration.
21366 (short_base_name): Add declaration.
21367
21368 * src/files.c (strsuffix, stringappend): No longer static. These
21369 functions are used in the skeleton parser.
21370 (tab_extension): New.
21371 (compute_base_names): Use the computations done in this function
fab5b110 21372 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
21373 names.
21374 (short_base_name): No longer static.
21375
21376 * src/output.c (output_skeleton): New.
21377 (output): Disable call to output_master_parser, and give a try to
21378 a new skeleton handling system.
21379 (guards_output, actions_output): No longer static.
21380 (token_definitions_output, get_lines_number): No longer static.
21381
21382 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
21383
fab5b110 21384 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
21385 parse-skel.y.
21386
21387 * src/parse-skel.y: New file.
21388 * src/scan-skel.l: New file.
21389
b5b61c61
AD
213902001-12-29 Akim Demaille <akim@epita.fr>
21391
21392 %name-prefix is broken.
21393
21394 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
21395 Adjust all dependencies.
21396 * tests/headers.at (export YYLTYPE): Strengthen this test: use
21397 %name-prefix.
21398
21399 Renaming yylval but not yylloc is not consistent. Now we do.
21400
21401 * src/bison.simple: Prefix yylloc if used.
21402 * doc/bison.texinfo (Decl Summary): Document that.
21403
8c9a50be
AD
214042001-12-29 Akim Demaille <akim@epita.fr>
21405
21406 * doc/bison.texinfo: Promote `%long-directive' over
21407 `%long_directive'.
21408 Remove all references to fixed-output-files, yacc is enough.
21409
d99361e6
AD
214102001-12-29 Akim Demaille <akim@epita.fr>
21411
21412 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
21413 user prologue. These are defaults.
21414 * tests/actions.at (Mid-rule actions): Make sure the user can
21415 define YYDEBUG and YYERROR_VERBOSE.
21416
b9cecb91
AD
214172001-12-29 Akim Demaille <akim@epita.fr>
21418
21419 * src/output.c (header_output): Don't forget to export YYLTYPE and
21420 yylloc.
21421 * tests/headers.at (export YYLTYPE): New, make sure it does.
21422 * tests/regression.at (%union and --defines, Invalid CPP headers):
21423 Move to...
21424 * tests/headers.at: here.
21425
aea13e97
AD
214262001-12-29 Akim Demaille <akim@epita.fr>
21427
21428 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
21429
931394cb
AD
214302001-12-29 Akim Demaille <akim@epita.fr>
21431
21432 * tests/actions.at (Mid-rule actions): Output on a single line
21433 instead of several.
21434
704a47c4
AD
214352001-12-29 Akim Demaille <akim@epita.fr>
21436
21437 * doc/bison.texinfo: Formatting changes.
21438
091e20bb
AD
214392001-12-29 Akim Demaille <akim@epita.fr>
21440
21441 Don't store the token defs in a muscle, just be ready to output it
21442 on command. Now possible via `symbols'. Fixes a memory leak.
21443
21444 * src/output.c (token_definitions_output): New.
21445 (output_parser, header_output): Use it.
21446 * src/reader.c (symbols_save): Remove.
21447
cce71710
AD
214482001-12-29 Akim Demaille <akim@epita.fr>
21449
21450 * src/bison.simple: Do not provide a default for YYSTYPE and
21451 YYLTYPE before the user's prologue. Otherwise it's hardly... a
21452 default.
21453
82c035a8
AD
214542001-12-29 Akim Demaille <akim@epita.fr>
21455
21456 Mid-rule actions are simply... ignored!
21457
21458 * src/reader.c (readgram): Be sure to attach mid-rule actions to
21459 the empty-rule associated to the dummy symbol, not to the host
21460 rule.
21461 * tests/actions.at (Mid-rule actions): New.
21462
8419d367
AD
214632001-12-29 Akim Demaille <akim@epita.fr>
21464
21465 Memory leak.
21466
21467 * src/reader.c (reader): Free grammar.
21468
375d5806
AD
214692001-12-29 Akim Demaille <akim@epita.fr>
21470
21471 Memory leak.
21472
21473 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
21474 since it allocates it for each state, although only one is needed.
21475 (allocate_storage): Do it here.
21476
f51cb8ff
AD
214772001-12-29 Akim Demaille <akim@epita.fr>
21478
21479 * src/options.h, src/options.c (create_long_option_table): Rename
21480 as...
21481 (long_option_table_new): this, with a clearer prototype.
21482 (percent_table): Remove, unused,
21483 * src/getargs.c (getargs): Adjust.
21484
29e88316
AD
214852001-12-29 Akim Demaille <akim@epita.fr>
21486
21487 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
21488 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
21489 as states.
21490
b9f71f19
AD
214912001-12-29 Akim Demaille <akim@epita.fr>
21492
21493 * src/lalr.c (build_relations): Rename `states' as `states1'.
21494 Sorry, I don't understand exactly what it is, no better name...
21495
1a2b5d37
AD
214962001-12-29 Akim Demaille <akim@epita.fr>
21497
21498 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
21499 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
21500 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
21501 as rules.
21502
1cca533e
AD
215032001-12-29 Akim Demaille <akim@epita.fr>
21504
21505 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
21506 ago.
21507
c03ae966
AD
215082001-12-29 Akim Demaille <akim@epita.fr>
21509
21510 * src/reader.c, src/reader.h (user_toknums): Remove.
21511 Adjust all users to use symbols[i]->user_token_number.
21512
5a670b1e
AD
215132001-12-29 Akim Demaille <akim@epita.fr>
21514
21515 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
21516 Adjust all users to use symbols[i]->prec or ->assoc.
21517
ad949da9
AD
215182001-12-29 Akim Demaille <akim@epita.fr>
21519
21520 * src/reader.c, src/reader.h (tags): Remove.
21521 Adjust all users to use symbols[i]->tag.
21522
0e78e603
AD
215232001-12-29 Akim Demaille <akim@epita.fr>
21524
21525 * src/gram.h, src/gram.c (symbols): New, similar to state_table
21526 and rule_table.
21527 * src/reader.c (packsymbols): Fill this table.
21528 Drop sprec.
21529 * src/conflicts.c (resolve_sr_conflict): Adjust.
21530 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
21531 single table.
21532 Use symbols[i]->tag instead of tags[i].
21533
213e640e
AD
215342001-12-29 Akim Demaille <akim@epita.fr>
21535
21536 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
21537 In addition, put a comment in there, to replace...
21538 * tests/regression.at (%union and C comments): Remove.
21539
e7b8bef1
AD
215402001-12-29 Akim Demaille <akim@epita.fr>
21541
21542 * tests/regression.at (Web2c Actions): Blindly move the actual
21543 output as expected output. The contents *seem* right to me, but I
21544 can't pretend reading perfectly parser tables... Nonetheless, all
21545 the other tests pass correctly, the table look OK, even though the
21546 presence of `$axiom' is to be noted: AFAICS it is useless (but
21547 harmless).
21548
b68e7744
AD
215492001-12-29 Akim Demaille <akim@epita.fr>
21550
21551 * src/reader.c (readgram): Don't add the rule 0 if there were no
21552 rules read. In other words, add it _after_ having performed
21553 grammar sanity checks.
21554 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
21555
78d5bae9
AD
215562001-12-29 Akim Demaille <akim@epita.fr>
21557
21558 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
21559 visible, and some states have now a different number.
21560
ff442794
AD
215612001-12-29 Akim Demaille <akim@epita.fr>
21562
21563 * src/reader.c (readgram): Bind the initial rule's lineno to that
21564 of the first rule.
21565 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
21566 (Solved SR Conflicts): Adjust rule 0's line number.
21567
610ab194
AD
215682001-12-29 Akim Demaille <akim@epita.fr>
21569
21570 Fix the `GAWK Grammar' failure.
21571
21572 * src/LR0.c (final_state): Initialize to -1 so that we do compute
21573 the reductions of the first state which was mistakenly confused
21574 with the final state because precisely final_state was initialized
21575 to 0.
21576 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
21577 now noticed by Bison.
21578 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
21579 have a reduction on $default.
21580
29d29c8f
AD
215812001-12-29 Akim Demaille <akim@epita.fr>
21582
21583 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
21584 rule line numbers.
21585 * src/closure.c (print_closure): Likewise.
21586 * src/derives.c (print_derives): Likewise.
21587 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
21588 now.
21589
7c6b64d0
AD
215902001-12-29 Akim Demaille <akim@epita.fr>
21591
21592 * src/lalr.c (lookaheads_print): New.
21593 (lalr): Call it when --trace-flag.
21594 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
21595 are dumped.
21596
3d4daee3
AD
215972001-12-29 Akim Demaille <akim@epita.fr>
21598
21599 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
21600 when walking through ritem, even via rule->rhs.
21601 * src/reduce.c (dump_grammar, useful_production, reduce_output)
21602 (useful_production, useless_nonterminals): Likewise.
21603 (reduce_grammar_tables): Likewise, plus update nritems.
21604 * src/nullable.c (set_nullable): Likewise.
21605 * src/lalr.c (build_relations): Likewise.
21606 * tests/sets.at (Nullable): Adjust.
21607 Fortunately, now, the $axiom is no longer nullable.
21608
9e7f6bbd
AD
216092001-12-29 Akim Demaille <akim@epita.fr>
21610
21611 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
21612 the 0-sentinel.
21613 * src/gram.c (ritem_longest_rhs): Likewise.
21614 * src/reduce.c (nonterminals_reduce): Likewise.
21615 * src/print_graph.c (print_graph): Likewise.
21616 * src/output.c (output_rule_data): Likewise.
21617 * src/nullable.c (set_nullable): Likewise.
21618
255ef638
AD
216192001-12-29 Akim Demaille <akim@epita.fr>
21620
21621 * src/output.c: Comment changes.
21622
0d8a7363
AD
216232001-12-27 Paul Eggert <eggert@twinsun.com>
21624
21625 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
21626 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
21627 Sparc, as they were causing more porting problems than the
21628 (minor) performance improvement was worth.
21629
21630 Also, catch up with 1.31's YYSTD.
21631
3db472b9
AD
216322001-12-27 Akim Demaille <akim@epita.fr>
21633
21634 * src/output.c (output_gram): Rely on nritems, not the
21635 0-sentinel. See below.
21636 Use -1 as separator, not 0.
21637 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
21638 Rely on -1 as separator in yyrhs, instead of 0.
21639 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
21640 twice `Now at end of input', therefore there are two lines less to
21641 expect.
21642
b365aa05
AD
216432001-12-27 Akim Demaille <akim@epita.fr>
21644
21645 * tests/regression.at (Unresolved SR Conflicts):
21646 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
21647 below.
21648
30171f79
AD
216492001-12-27 Akim Demaille <akim@epita.fr>
21650
21651 * src/LR0.c (new_state): Recognize the final state by the fact it
21652 is reached by eoftoken.
21653 (insert_start_shifting_state, insert_eof_shifting_state)
21654 (insert_accepting_state, augment_automaton): Remove, since now
21655 these states are automatically computed from the initial state.
21656 (generate_states): Adjust.
21657 * src/print.c: When reporting a rule number to the user, substract
21658 1, so that the axiom rule is rule 0, and the first user rule is 1.
21659 * src/reduce.c: Likewise.
21660 * src/print_graph.c (print_core): For the time being, just as for
21661 the report, depend upon --trace-flags to dump the full set of
21662 items.
21663 * src/reader.c (readgram): Once the grammar read, insert the rule
21664 0: `$axiom: START-SYMBOL $'.
21665 * tests/set.at: Adjust: rule 0 is now displayed, and since the
21666 number of the states has changed (the final state is no longer
21667 necessarily the last), catch up.
21668
75142d45
AD
216692001-12-27 Akim Demaille <akim@epita.fr>
21670
21671 Try to make the use of the eoftoken valid. Given that its value
21672 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
21673 is used instead of > 0 where appropriate, (ii), depend upon nritems
21674 instead of the 0-sentinel.
21675
21676 * src/gram.h, src/gram.c (nritems): New.
21677 Expected to be duplication of nitems, but for the time being...
21678 * src/reader.c (packgram): Assert nritems and nitems are equal.
21679 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
21680 * src/closure.c (print_closure, print_fderives): Likewise.
21681 * src/gram.c (ritem_print): Likewise.
21682 * src/print.c (print_core, print_grammar): Likewise.
21683 * src/print_graph.c: Likewise.
21684
b7c49edf
AD
216852001-12-27 Akim Demaille <akim@epita.fr>
21686
21687 * src/main.c (main): If there are complains after grammar
21688 reductions, then output the report anyway if requested, then die.
21689 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
21690 * src/reader.c (eoftoken): New.
21691 (parse_token_decl): If the token being defined has value `0', it
21692 is the eoftoken.
21693 (packsymbols): No longer hack `tags' to insert `$' by hand.
21694 Be sure to preserve the value of the eoftoken.
21695 (reader): Make sure eoftoken is defined.
21696 Initialize nsyms to 0: now eoftoken is created just like the others.
21697 * src/print.c (print_grammar): Don't special case the eof token.
21698 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
21699 lie anyway, albeit pleasant.
21700 * tests/calc.at: Exercise error messages with eoftoken.
21701 Change the grammar so that empty input is invalid.
21702 Adjust expectations.
21703 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
21704
ec2da99f
AD
217052001-12-27 Akim Demaille <akim@epita.fr>
21706
21707 * configure.in: Check the protos of strchr ans strspn.
21708 Replace strchr if needed.
21709 * src/system.h: Provide the protos of strchr, strspn and memchr if
21710 missing.
21711 * lib/strchr.c: New.
21712 * src/reader.c (symbols_save): Use strchr.
21713
8adfa272
AD
217142001-12-27 Akim Demaille <akim@epita.fr>
21715
21716 * src/print.c, src/print_graph.c (escape): New.
21717 Use it to quote the TAGS outputs.
21718 * src/print_graph.c (print_state): Now errors are in red, and
21719 reductions in green.
21720 Prefer high to wide: output the state number on a line of its own.
21721
80dac38c
AD
217222001-12-27 Akim Demaille <akim@epita.fr>
21723
21724 * src/state.h, src/state.c (reductions_new): New.
21725 * src/LR0.c (set_state_table): Let all the states have a
21726 `reductions', even if reduced to 0.
21727 (save_reductions): Adjust.
21728 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
21729 * src/print.c (print_reductions, print_actions): Adjust.
21730 * src/output.c (action_row): Adjust.
21731
2cec70b9
AD
217322001-12-27 Akim Demaille <akim@epita.fr>
21733
21734 * src/state.h, src/state.c (errs_new, errs_dup): New.
21735 * src/LR0.c (set_state_table): Let all the states have an errs,
21736 even if reduced to 0.
21737 * src/print.c (print_errs, print_reductions): Adjust.
21738 * src/output.c (output_actions, action_row): Adjust.
21739 * src/conflicts.c (resolve_sr_conflict): Adjust.
21740
13ca549a
AD
217412001-12-27 Akim Demaille <akim@epita.fr>
21742
21743 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
21744
5092aba5
AD
217452001-12-27 Akim Demaille <akim@epita.fr>
21746
21747 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
21748 * src/print.c: here.
21749 (lookaheadset, shiftset): New, used as additional storage by
21750 print_reductions.
21751 (print_results): Adjust.
21752 (print_shifts, print_gotos, print_errs): New, extracted from...
21753 (print_actions): here.
21754 * src/print_graph.c (print_actions): Remove dead code.
21755
11e2beca
AD
217562001-12-27 Akim Demaille <akim@epita.fr>
21757
21758 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
21759 `$n' and `@n'.
21760
dac3c910
AD
217612001-12-27 Akim Demaille <akim@epita.fr>
21762
21763 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
21764 (build_relations): Adjust.
21765
d0b0fefa
AD
217662001-12-27 Akim Demaille <akim@epita.fr>
21767
21768 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
21769 duplication.
21770
adc8c848
AD
217712001-12-27 Akim Demaille <akim@epita.fr>
21772
21773 * src/reader.c (packgram): Catch nitems overflows.
21774
14d293ac
AD
217752001-12-27 Akim Demaille <akim@epita.fr>
21776
21777 * src/files.c, src/files.h (guard_obstack): Remove.
21778 * src/output.c (output): Adjust.
21779 * src/reader.c (parse_braces): New, factoring...
21780 (copy_action, copy_guard): these two which are renamed as...
21781 (parse_action, parse_guard): these.
21782 As a voluntary consequence, using braces around guards is now
21783 mandatory.
21784
f499b062
AD
217852001-12-27 Akim Demaille <akim@epita.fr>
21786
21787 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
21788 * src/reader.c (symbol_list): `guard' and `guard_line' are new
21789 members.
21790 (symbol_list_new): Adjust.
21791 (copy_action): action_line is the first line, not the last.
21792 (copy_guard): Just as for actions, store the `action' only, not
21793 the switch/case/break flesh.
21794 Don't parse the user action that might follow the guard, let...
21795 (readgram): do it, i.e., now, there can be an action after a
21796 guard.
21797 In other words the guard is just explicitly optional.
21798 (packgram): Adjust.
21799 * src/output.c (guards_output): New.
21800 (output_parser): Call it when needed.
21801 (output): Also free the guard and attrs obstacks.
21802 * src/files.c, src/files.h (obstack_save): Remove.
21803 (output_files): Remove.
21804 As a result, if one needs the former `.act' file, using an
21805 appropriate skeleton which requires actions and guards is now
21806 required.
21807 * src/main.c (main): Adjust.
21808 * tests/semantic.at: New.
21809 * tests/regression.at: Use `input.y' as input file name.
21810 Avoid 8+3 problems by requiring input.c when the test needs the
21811 parser.
21812
d945f5cd
AD
218132001-12-27 Akim Demaille <akim@epita.fr>
21814
21815 * src/reader.c (symbol_list_new): Be sure to initialize all the
21816 fields.
21817
d200e455
AD
218182001-12-27 Akim Demaille <akim@epita.fr>
21819
21820 All the hacks using a final pseudo state are now useless.
21821
21822 * src/LR0.c (set_state_table): state_table holds exactly nstates.
21823 * src/lalr.c (nLA): New.
21824 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
21825 instead of lookaheadsp from the pseudo state (nstate + 1).
21826
f9507c28
AD
218272001-12-27 Akim Demaille <akim@epita.fr>
21828
21829 * src/output.c (action_row, token_actions): Use a state_t instead
21830 of a integer, and nlookaheads instead of the following state's
21831 lookaheadsp.
21832
065fbd27
AD
218332001-12-27 Akim Demaille <akim@epita.fr>
21834
21835 * src/conflicts.c (log_resolution, flush_shift)
21836 (resolve_sr_conflict, set_conflicts, solve_conflicts)
21837 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
21838 (conflicts_print, print_reductions): Use a state_t instead of an
21839 integer when referring to a state.
21840 As much as possible, depend upon nlookaheads, instead of the
21841 `lookaheadsp' member of the following state (since lookaheads of
21842 successive states are successive, the difference between state n + 1
21843 and n served as the number of lookaheads for state n).
21844 * src/lalr.c (add_lookback_edge): Likewise.
21845 * src/print.c (print_core, print_actions, print_state)
21846 (print_results): Likewise.
21847 * src/print_graph.c (print_core, print_actions, print_state)
21848 (print_graph): Likewise.
21849 * src/conflicts.h: Adjust.
21850
1b177bd7
AD
218512001-12-27 Akim Demaille <akim@epita.fr>
21852
21853 * src/bison.hairy: Formatting/comment changes.
21854 ANSIfy.
21855 Remove `register' indications.
21856 Add plenty of `static'.
21857
7742ddeb
AD
218582001-12-27 Akim Demaille <akim@epita.fr>
21859
21860 * src/output.c (prepare): Drop the muscle `ntbase' which
21861 duplicates ntokens.
21862 * src/bison.simple: Formatting/comment changes.
21863 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
21864 is an undocumented synonym.
21865
1fa14068
AD
218662001-12-22 Akim Demaille <akim@epita.fr>
21867
21868 * src/output.c (output_table_data): Change the prototype to use
21869 `int' for array ranges: some invocations do pass an int, not a
21870 short.
21871 Reported by Wayne Green.
21872
b9752825
AD
218732001-12-22 Akim Demaille <akim@epita.fr>
21874
21875 Some actions of web2c.y are improperly triggered.
21876 Reported by Mike Castle.
21877
21878 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
21879 * tests/regression.at (Web2c): Rename as...
21880 (Web2c Report): this.
21881 (Web2c Actions): New.
21882
776209d6
AD
218832001-12-22 Akim Demaille <akim@epita.fr>
21884
21885 Reductions in web2c.y are improperly reported.
21886 Reported by Mike Castle.
21887
21888 * src/conflicts.c (print_reductions): Fix.
21889 * tests/regression.at (Web2c): New.
21890
275fc3ad
AD
218912001-12-18 Akim Demaille <akim@epita.fr>
21892
21893 Some host fail on `assert (!"foo")', which expands to
21894 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
21895 Reported by Nelson Beebee.
21896
21897 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
21898 `#define it_succeeded 0' and `assert (it_succeeded)'.
21899
897668ee
MA
219002001-12-17 Marc Autret <autret_m@epita.fr>
21901
21902 * src/bison.simple: Don't hard code the skeleton line and filename.
21903 * src/output.c (output_parser): Rename 'line' as 'output_line'.
21904 New line counter 'skeleton_line' (skeleton-line muscle).
21905
ab3399e0
PE
219062001-12-17 Paul Eggert <eggert@twinsun.com>
21907
21908 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
21909 YYDEBUG must be defined to a nonzero value.
21910
21911 * src/bison.simple (yytname): Do not assume that the user defines
21912 YYDEBUG to a properly parenthesized expression.
21913
3877f72b
AD
219142001-12-17 Akim Demaille <akim@epita.fr>
21915
21916 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
21917 nlookaheads is a new member.
21918 Adjust all users.
21919 * src/lalr.h (nlookaheads): Remove this orphan declaration.
21920 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
21921 state.
776209d6 21922
331dbc1b
AD
219232001-12-17 Akim Demaille <akim@epita.fr>
21924
21925 * src/files.h, src/files.c (open_files, close_files): Remove.
21926 * src/main.c (main): Don't open/close files, nor invoke lex_free,
21927 let...
21928 * src/reader.c (reader): Do it.
776209d6 21929
be750e4c
AD
219302001-12-17 Akim Demaille <akim@epita.fr>
21931
21932 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 21933
709ae8c6
AD
219342001-12-17 Akim Demaille <akim@epita.fr>
21935
21936 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
21937 (flush_reduce): New.
21938 (resolve_sr_conflict): Adjust.
776209d6 21939
f87685c3
AD
219402001-12-17 Akim Demaille <akim@epita.fr>
21941
21942 * src/output.c (output_obstack): Be static and rename as...
21943 (format_obstack): this, to avoid any confusion with files.c's
21944 output_obstack.
21945 * src/reader.h (muscle_obstack): Move to...
21946 * src/output.h: here, since it's defined in output.c.
21947
837491d8
AD
219482001-12-17 Akim Demaille <akim@epita.fr>
21949
21950 * src/output.c (action_row, save_column, default_goto)
21951 (sort_actions, matching_state, pack_vector): Better variable
21952 locality.
21953
796d61fb
AD
219542001-12-17 Akim Demaille <akim@epita.fr>
21955
21956 * src/output.c: Various formatting changes.
776209d6 21957
64d15509
AD
219582001-12-17 Akim Demaille <akim@epita.fr>
21959
21960 * src/files.c (output_files): Free the output_obstack.
21961 * src/main.c (main): Call print and print_graph conditionally.
21962 * src/print.c (print): Work unconditionally.
21963 * src/print_graph.c (print_graph): Work unconditionally.
21964 * src/conflicts.c (log_resolution): Output only if verbose_flag.
21965
fbc8ecb7
MA
219662001-12-16 Marc Autret <autret_m@epita.fr>
21967
21968 * src/output.c (actions_output): Fix. When we use %no-lines,
21969 there is one less line per action.
21970
f0440388
MA
219712001-12-16 Marc Autret <autret_m@epita.fr>
21972
21973 * src/bison.simple: Remove a useless #line directive.
21974 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
21975 * src/output.c (get_lines_number): New.
776209d6 21976 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
21977 output muscles.
21978 Fix line numbering.
21979 (actions_output): Computes the number of lines taken by actions.
21980 (output_master_parser): Insert new skeleton which is the name of
21981 the output parser file name.
21982
a79986b8
MA
219832001-12-15 Marc Autret <autret_m@epita.fr>
21984
21985 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
21986
4ec8e00f
MA
219872001-12-15 Marc Autret <autret_m@epita.fr>
21988
21989 * src/output.c (output_gram): Keep track of the hairy one.
21990
1a4648ff
AD
219912001-12-15 Akim Demaille <akim@epita.fr>
21992
21993 Make `make distcheck' work.
21994
21995 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
21996 system.h which uses libgettext.h.
21997
9c2c67e6
AD
219982001-12-15 Akim Demaille <akim@epita.fr>
21999
22000 * src/nullable.c (set_nullable): Useless rules must be skipped,
22001 otherwise, since we range over their symbols, we might look at a
22002 nonterminal which no longer ``exists'', i.e., it is not counted in
22003 `nvars', hence we overflow our arrays.
22004
93ede233
AD
220052001-12-15 Akim Demaille <akim@epita.fr>
22006
22007 The header can also be produced directly, without any obstack!
22008 Yahoo!
22009
22010 * src/files.c, src/files.h (defines_obstack): Remove.
22011 (compute_header_macro): Global.
22012 (defines_obstack_save): Remove.
22013 * src/reader.c (parse_union_decl): No longer output to
22014 defines_obstack: its content can be found in the `stype' muscle
22015 anyway.
22016 (output_token_translations): Merge into...
22017 (symbols_output): this.
22018 Rename as...
22019 (symbols_save): this.
22020 (reader): Adjust.
22021 * src/output.c (header_output): New.
22022 (output): Call it.
22023
2666f928
AD
220242001-12-15 Akim Demaille <akim@epita.fr>
22025
22026 * src/reader.c (parse_union_decl): Instead of handling two obstack
22027 simultaneously, use one to define the `stype' muscle, and use the
22028 value of the latter to fill defines_obstack.
22029 (copy_comment): Remove.
22030 (copy_comment2): Work for a single obstack.
22031 Rename as...
22032 (copy_comment): this.
22033
428046f8
AD
220342001-12-15 Akim Demaille <akim@epita.fr>
22035
22036 * src/lex.c, src/lex.h (xgetc): No longer static.
22037 * src/reader.c (parse_union_decl): Revamp.
22038
ea52d706
AD
220392001-12-15 Akim Demaille <akim@epita.fr>
22040
22041 Still making progress in separating Bison into (i) input, (ii)
22042 process, (iii) output: now we can directly output the parser file
22043 without using table_obstack at all.
22044
22045 * src/files.c, src/files.h (table_obstack): Bye bye.
22046 (parser_file_name): New.
22047 * src/files.c (compute_output_file_names): Compute it.
22048 * src/output.c (actions_output, output_parser)
22049 (output_master_parser): To a file instead of an obstack.
22050
3f96f4dc
AD
220512001-12-15 Akim Demaille <akim@epita.fr>
22052
22053 Attach actions to rules, instead of pre-outputting them to
22054 actions_obstack.
22055
22056 * src/gram.h (rule_t): action and action_line are new members.
22057 * src/reader.c (symbol_list): Likewise.
22058 (copy_action): Save the actions within the rule.
22059 (packgram): Save them in rule_table.
22060 * src/output.c (actions_output): New.
22061 (output_parser): Use it on `%%actions'.
22062 (output_rule_data): Don't free rule_table.
22063 (output): Do it.
22064 (prepare): Don't save the `action' muscle.
22065 * src/bison.simple: s/%%action/%%actions/.
22066
51576fb3
AD
220672001-12-15 Akim Demaille <akim@epita.fr>
22068
22069 * src/reader.c (copy_action): When --yacc, don't append a `;'
22070 to the user action: let it fail if lacking.
dee049eb 22071 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 22072
2648a72d
AD
220732001-12-14 Akim Demaille <akim@epita.fr>
22074
22075 * src/lex.c (literalchar): Simply return the char you decoded, non
22076 longer mess around with obstacks and int pointers.
22077 Adjust all callers.
22078
92790e5b
AD
220792001-12-14 Akim Demaille <akim@epita.fr>
22080
22081 * src/lex.c (literalchar): Don't escape the special characters,
22082 just decode them, and keep them as char (before, eol was output as
22083 the 2 char string `\n' etc.).
22084 * src/output.c (output_rule_data): Use quotearg to output the
22085 token strings.
22086
927c1557
PE
220872001-12-13 Paul Eggert <eggert@twinsun.com>
22088
22089 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
22090 Do not infringe on the global user namespace when using C++.
22091 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
22092 All uses of `fprintf' and `stderr' changed.
22093
22094 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
22095
ed8e1f68
AD
220962001-12-13 Akim Demaille <akim@epita.fr>
22097
22098 The computation of nullable is broken: it doesn't handle empty
22099 RHS's properly.
22100
22101 * tests/torture.at (GNU AWK Grammar): New.
22102 * tests/sets.at (Nullable): New.
22103 * src/nullable.c (set_nullable): Instead of blindly looping over
22104 `ritems', loop over the rules, and then over their rhs's.
22105
22106 Work around Autotest bugs.
22107
22108 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
22109 frame, because Autotest understand lines starting with a `+' as
22110 traces from the shell. Then, they are not processed properly.
22111 Admittedly an Autotest bug, but we don't have time to wait for
22112 Autotest to catch up.
22113 * tests/regression.at (Broken Closure): Adjust to the new table
22114 frames.
22115 Move to...
22116 * tests/sets.at: here.
22117
cb581495
AD
221182001-12-13 Akim Demaille <akim@epita.fr>
22119
22120 * src/closure.c (closure): Use nrules instead of playing tricks
22121 with BITS_PER_WORD.
22122
2e729273
AD
221232001-12-13 Akim Demaille <akim@epita.fr>
22124
22125 * src/print.c (print_actions): Output the handling of `$' as the
22126 traces do: shifting the token EOF. Before EOF was treated as a
22127 nonterminal.
22128 * tests/regression.at: Adjust some tests.
22129 * src/print_graph.c (print_core): Complete the set of items via
22130 closure. The next-to-final and final states are still unsatisfying,
22131 but that's to be addressed elsewhere.
22132 No longer output the rule numbers, but do output the state number.
22133 A single loop for the shifts + gotos is enough, but picked a
22134 distinct color for each.
22135 (print_graph): Initialize and finalize closure.
22136
107f7dfb
AD
221372001-12-13 Akim Demaille <akim@epita.fr>
22138
22139 * src/reader.c (readgram): Remove dead code, an strip useless
22140 braces.
22141 (get_type): Remove, unused.
22142
9b53a24f
AD
221432001-12-12 Akim Demaille <akim@epita.fr>
22144
22145 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
22146 on that of lib/error.c.
22147
dbfb6dcd
AD
221482001-12-12 Akim Demaille <akim@epita.fr>
22149
22150 Some hosts don't like `/' in includes.
22151
22152 * src/system.h: Include libgettext.h without qualifying the path.
22153 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
22154 $(top_srcdir).
22155
c25fb648
MA
221562001-12-11 Marc Autret <autret_m@epita.fr>
22157
22158 * src/output.c (output_parser): Remove useless muscle.
22159
710ddc4f
MA
221602001-12-11 Marc Autret <autret_m@epita.fr>
22161
22162 * src/bison.simple: Remove #line just before %%epilogue. It
22163 is now handled in ...
22164 * src/reader.c (read_additionnal_code): Add the output of a
22165 #line for the epilogue.
22166
e83d80b8
MA
221672001-12-10 Marc Autret <autret_m@epita.fr>
22168
927c1557 22169 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
22170 replace precedent remove.
22171 * src/bison.simple: Remove #line before %%prologue because
22172 %%input-line is wrong at this time.
22173
971d5158
MA
221742001-12-10 Marc Autret <autret_m@epita.fr>
22175
22176 * src/reader.c (symbols_output): Clean up.
927c1557 22177 * src/output.c (output_gram, output): Clean up.
971d5158 22178
5edafffd
AD
221792001-12-10 Akim Demaille <akim@epita.fr>
22180
22181 * src/lalr.c (initialize_lookaheads): New. Extracted from...
22182 * src/LR0.c (set_state_table): here.
22183 * src/lalr.c (lalr): Call it.
22184
0279f8e9
AD
221852001-12-10 Akim Demaille <akim@epita.fr>
22186
22187 * src/state.h (shifts): Remove the `number' member: shifts are
22188 attached to state, hence no longer need to be labelled with a
22189 state number.
22190
190c4f5f
AD
221912001-12-10 Akim Demaille <akim@epita.fr>
22192
22193 Now that states have a complete set of members, the linked list of
22194 shifts is useless: just fill directly the state's shifts member.
22195
22196 * src/state.h (shifts): Remove the `next' member.
22197 * src/LR0.c (first_state, last_state): Remove.
22198 Adjust the callers.
22199 (augment_automaton): Don't look for the shifts that must be added
22200 a shift on EOF: it is those of the state we looked for! But now,
22201 since shifts are attached, it is no longer needed to looking
22202 merely by its id: its number.
22203
2a73b93d
AD
222042001-12-10 Akim Demaille <akim@epita.fr>
22205
22206 * src/LR0.c (augment_automaton): Better variable locality.
22207 Remove an impossible branch: if there is a state corresponding to
22208 the start symbol being shifted, then there is shift for the start
22209 symbol from the initial state.
22210
74392f6a
AD
222112001-12-10 Akim Demaille <akim@epita.fr>
22212
22213 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
22214 only when appropriate: when insert_start_shifting_state' is not
22215 invoked.
22216 * tests/regression.at (Rule Line Numbers): Adjust.
22217
37c82725
AD
222182001-12-10 Akim Demaille <akim@epita.fr>
22219
22220 * src/LR0.c (augment_automaton): Now that all states have shifts,
22221 merge the two cases addition shifts to the initial state.
22222
6a164e0c
AD
222232001-12-10 Akim Demaille <akim@epita.fr>
22224
22225 * src/lalr.c (set_state_table): Move to...
22226 * src/LR0.c: here.
22227 * src/lalr.c (lalr): Don't call it...
22228 * src/LR0.c (generate_states): do it.
22229 * src/LR0.h (first_state): Remove, only the table is used.
22230
7215de24
AD
222312001-12-10 Akim Demaille <akim@epita.fr>
22232
22233 * src/LR0.h (first_shift, first_reduction): Remove.
22234 * src/lalr.c: Don't use first_shift: find shifts through the
22235 states.
22236
80e25d4d
AD
222372001-12-10 Akim Demaille <akim@epita.fr>
22238
22239 * src/LR0.c: Attach shifts to states as soon as they are
22240 computed.
22241 * src/lalr.c (set_state_table): Instead of assigning shifts to
22242 state, just assert that the mapping was properly done.
22243
0ab3728b
AD
222442001-12-10 Akim Demaille <akim@epita.fr>
22245
22246 * src/LR0.c (insert_start_shift): Rename as...
22247 (insert_start_shifting_state): this.
22248 (insert_eof_shifting_state, insert_accepting_state): New.
22249 (augment_automaton): Adjust.
22250 Better locality of the variables.
22251 When looking if the start_symbol is shifted from the initial
22252 state, using `while (... symbol != start_symbol ...)' sounds
22253 better than `while (... symbol < start_symbol ...)': If fail
22254 to see how the order between symbols could be relevant!
22255
78af9bbc
AD
222562001-12-10 Akim Demaille <akim@epita.fr>
22257
22258 * src/getargs.h: Don't declare `spec_name_prefix' and
22259 `spec_file_prefix', declared by src/files.h.
22260 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
22261 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
22262 * src/output.c (prepare): Adjust.
22263 * src/reader.c (symbols_output): Likewise.
22264 * src/vmsgetargs.c: Vaguely adjust, but who cares?
22265
bdef2a41
AD
222662001-12-10 Akim Demaille <akim@epita.fr>
22267
22268 * src/muscle_tab.c (muscle_init): NULL is a better default than
22269 `"0"'.
22270
3735969c
AD
222712001-12-10 Akim Demaille <akim@epita.fr>
22272
22273 * src/reader.c (reader): Calling symbols_output once is enough.
22274
49701457
AD
222752001-12-10 Akim Demaille <akim@epita.fr>
22276
22277 Now that states have a complete set of members, the linked list of
22278 reductions is useless: just fill directly the state's reductions
22279 member.
22280
22281 * src/state.h (struct reductions): Remove member `number' and
22282 `next'.
22283 * src/LR0.c (first_reduction, last_reduction): Remove.
22284 (save_reductions): Don't link the new reductions, store them in
22285 this_state.
22286 * src/lalr.c (set_state_table): No need to attach reductions to
22287 states, it's already done.
22288 * src/output.c (output_actions): No longer free the shifts, then
22289 the reductions, then the states: free all the states and their
22290 members.
22291
0edad749
AD
222922001-12-10 Akim Demaille <akim@epita.fr>
22293
22294 * src/options.c (OPTN, DRTV, BOTH): New.
22295 (option_table): Use them.
22296
0edad749
AD
22297 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
22298 the job of system.h.
22299 * src/options.c: Don't include stdio.h and xalloc.h for the same
22300 reasons.
22301
5449dd0f
AD
223022001-12-10 Akim Demaille <akim@epita.fr>
22303
22304 * src/output.c (output, prepare): Make sure the values of the
22305 muscles `action' and `prologue' are 0-terminated.
22306
a870c567
AD
223072001-12-10 Akim Demaille <akim@epita.fr>
22308
22309 Clean up GCC warnings.
22310
22311 * src/reader.c (copy_action): `buf' is not used.
22312 (parse_skel_decl): Be static.
22313 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
22314 * src/options.h (create_long_option_table): Have a real prototype.
22315 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
22316 (hash_delete_at): Return const void *.
22317 Adjust casts to preserve the const.
22318
80df8768
AD
223192001-12-10 Akim Demaille <akim@epita.fr>
22320
22321 * configure.in: Require 2.52g.
22322 M4 is not needed, but AUTOM4TE is.
22323 * m4/m4.m4: Remove.
22324 * tests/Makefile.am: Adjust.
22325
f693ad14
AD
223262001-12-10 Akim Demaille <akim@epita.fr>
22327
22328 One structure for states is enough, even though theoretically
22329 there are LR(0) states and LALR(1) states.
22330
22331 * src/lalr.h (state_t): Remove.
22332 (state_table): Be state_t **, not state_t *.
22333 * src/state.h (core, CORE_ALLOC): Rename as...
22334 (state_t, STATE_ALLOC): this.
22335 Add the LALR(1) members: shifts, reductions, errs.
22336 * src/LR0.c (state_table): Rename as...
22337 (state_hash): this, to avoid name clashes with the global
22338 `state_table'.
22339 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
22340 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
22341
74ffbcb6
AD
223422001-12-10 Akim Demaille <akim@epita.fr>
22343
22344 Bison dumps core on bash.y.
22345 Reported by Pascal Bart.
22346
22347 * src/warshall.c (bitmatrix_print): New.
22348 (TC): Use it.
ba0fe3c7 22349 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
22350 j must be the outer loop.
22351 * tests/regression.at (Broken Closure): New.
22352
07708e19
AD
223532001-12-05 Akim Demaille <akim@epita.fr>
22354
22355 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
22356 its argument.
ba1ecc07 22357 Reported by Peter Hamorsky.
07708e19 22358
92b16366
AD
223592001-12-05 Akim Demaille <akim@epita.fr>
22360
22361 * src/conflicts.c (err_table): Remove.
22362 (resolve_sr_conflict): Adjust.
22363 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
22364 Rename as...
22365 (state_t.reductions, state_t.shifts): this.
22366
076ab033
AD
223672001-12-05 Akim Demaille <akim@epita.fr>
22368
22369 * src/reduce.c (reduce_grammar_tables): No longer disable the
22370 removal of useless rules via CPP but via `if (0)', so that the
22371 compiler still check the code is valid.
22372 For instance, it should have noticed `rline' no longer exists: use
22373 the `line' member of rule_t.
22374 * src/gram.c (dummy, rline): Remove, unused.
22375
3843c413
AD
223762001-12-05 Akim Demaille <akim@epita.fr>
22377
22378 * src/output.c (pack_vector): Use assert, not berror.
22379 * src/main.c (berror): Remove, unused.
22380
43168960
AD
223812001-12-05 Akim Demaille <akim@epita.fr>
22382
22383 New experimental feature: if --verbose --trace output all the
22384 items of a state, not only its kernel.
22385
22386 * src/print.c (print_core): If `trace_flag', then invoke closure
22387 before outputting the items of the state (print_core is no longer
22388 a correct name them).
22389 (print_results): Invoke new_closure/free_closure if needed.
22390
b2872512
AD
223912001-12-05 Akim Demaille <akim@epita.fr>
22392
22393 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
22394 * src/closure.c, src/closure.h (itemsetsize): Rename as...
22395 (nitemset): for consistency with the rest of the project.
22396
23cbcc6c
AD
223972001-12-05 Akim Demaille <akim@epita.fr>
22398
22399 * src/closure.c (print_closure): Improve.
22400 (closure): Use it for printing input and output.
22401
03ec521c
AD
224022001-12-05 Akim Demaille <akim@epita.fr>
22403
22404 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
22405 indexed by nonterminals.
22406
3a7456dd
AD
224072001-12-05 Akim Demaille <akim@epita.fr>
22408
22409 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
22410 what it was!).
22411 * src/warshall.h: Remove accidental duplication of the content.
22412
1cbcf2e7
AD
224132001-12-05 Akim Demaille <akim@epita.fr>
22414
22415 * src/closure.c (set_fderives): De-obfuscate.
22416
84182270
AD
224172001-12-05 Akim Demaille <akim@epita.fr>
22418
22419 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
22420
3f6f053c
AD
224212001-12-05 Akim Demaille <akim@epita.fr>
22422
22423 * src/closure.c (set_firsts): De-obfuscate.
22424
7a5350ba
AD
224252001-12-05 Akim Demaille <akim@epita.fr>
22426
22427 * src/output.c (action_row): De-obfuscate
22428 using the good o' techniques: arrays not pointers, variable
22429 locality, BITISSET, RESETBIT etc.
22430
d954473d
AD
224312001-12-05 Akim Demaille <akim@epita.fr>
22432
22433 Pessimize the code to simplify it: from now on, all the states
22434 have a valid SHIFTS, which NSHIFTS is possibly 0.
22435
22436 * src/LR0.c (shifts_new): Be global and move to..
22437 * src/state.c, src/state.h: here.
22438 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
22439 * src/print_graph: Adjust.
22440
9839bbe5
AD
224412001-12-05 Akim Demaille <akim@epita.fr>
22442
22443 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
22444 * src/conflicts.c: Use it.
22445 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
22446 incorrectly ``simplified''.
22447
9f136c07
AD
224482001-12-05 Akim Demaille <akim@epita.fr>
22449
22450 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
22451 using the good o' techniques: arrays not pointers, variable
22452 locality, BITISSET, RESETBIT etc.
22453
b608206e
AD
224542001-12-05 Akim Demaille <akim@epita.fr>
22455
22456 * src/state.h (SHIFT_SYMBOL): New.
22457 * src/conflicts.c: Use it to deobfuscate.
22458
52afa962
AD
224592001-12-05 Akim Demaille <akim@epita.fr>
22460
22461 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
22462 (print_reductions): De-obfuscate using the good o' techniques:
22463 arrays not pointers, variable locality, BITISSET.
22464
e74dc321
AD
224652001-12-05 Akim Demaille <akim@epita.fr>
22466
22467 * src/conflicts.c (print_reductions): Arrays, not pointers.
22468 Use BITISSET.
22469
768fca83
AD
224702001-12-05 Akim Demaille <akim@epita.fr>
22471
22472 * src/conflicts.c (print_reductions): Pessimize, but clarify.
22473
a17e599f
AD
224742001-12-05 Akim Demaille <akim@epita.fr>
22475
22476 * src/conflicts.c (print_reductions): Improve variable locality.
22477
a04bc341
AD
224782001-12-05 Akim Demaille <akim@epita.fr>
22479
22480 * src/conflicts.c (print_reductions): Pessimize, but clarify.
22481
c8ea038e
AD
224822001-12-05 Akim Demaille <akim@epita.fr>
22483
22484 * src/conflicts.c (print_reductions): Improve variable locality.
22485
aa2aab3c
AD
224862001-12-05 Akim Demaille <akim@epita.fr>
22487
22488 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
22489 * src/lalr.c: Use them.
22490
b178c8cc
AD
224912001-12-05 Akim Demaille <akim@epita.fr>
22492
22493 * src/LR0.c (augment_automaton): Formatting changes.
22494 Better variable locality.
22495
f67d13aa
AD
224962001-12-05 Akim Demaille <akim@epita.fr>
22497
22498 * src/lalr.c (matrix_print): New.
22499 (transpose): Use it.
22500 Use arrays instead of pointers.
22501
c2713865
AD
225022001-12-05 Akim Demaille <akim@epita.fr>
22503
22504 * src/lalr.c (maxrhs): Move to...
22505 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
22506 * src/lalr.c (build_relations): Adjust.
22507
9887c18a
AD
225082001-12-05 Akim Demaille <akim@epita.fr>
22509
22510 * src/lalr.c (transpose): Free the memory allocated to the
22511 argument, as it is replaced by the results by the unique caller.
22512 (build_relations): Merely invoke transpose: it handles the memory
22513 deallocation.
22514 Improve variable locality.
22515 Avoid variables used as mere abbreviations.
22516 (compute_lookaheads): Use arrays instead of pointers.
22517
4d4f699c
AD
225182001-12-05 Akim Demaille <akim@epita.fr>
22519
22520 * src/lalr.c (initialize_F): Improve variable locality.
22521 Avoid variables used as mere abbreviations.
22522
80a69750
AD
225232001-12-05 Akim Demaille <akim@epita.fr>
22524
22525 * src/derives.c (print_derives): Display the ruleno.
22526 * src/lalr.c (initialize_F, transpose): Better variable locality
22527 to improve readability.
22528 Avoid variables used as mere abbreviations.
22529
fe961097
AD
225302001-12-05 Akim Demaille <akim@epita.fr>
22531
22532 * src/lalr.c (traverse): Use arrays instead of pointers.
22533
e3e4e814
AD
225342001-12-05 Akim Demaille <akim@epita.fr>
22535
22536 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
22537 the handling of squeue.
22538 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
22539
630e182b
AD
225402001-12-05 Akim Demaille <akim@epita.fr>
22541
22542 Because useless nonterminals are now kept alive (instead of being
22543 `destroyed'), we now sometimes examine them, and store information
22544 related to them. Hence we need to know their number, and adjust
22545 memory allocations.
22546
22547 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
22548 static.
22549 * src/LR0.c (allocate_itemsets): The memory allocated to
22550 `symbol_count' was used for two different purpose: once to count
22551 the number of occurrences of each symbol, and later reassigned to
22552 `shift_symbol', containing the symbol that can be shifted from a
22553 given state.
22554 Deobfuscate, i.e., allocate, use and free `symbol_count' here
22555 only, and...
22556 (new_itemsets): Allocate `shift_symbol' here.
22557 (allocate_itemsets): symbol_count includes useless nonterminals.
22558 Make room for them.
22559 (free_storage): Use `free', not `XFREE', for pointers that cannot
22560 be null.
22561
81b51460
AD
225622001-12-05 Akim Demaille <akim@epita.fr>
22563
22564 * src/nullable.c (set_nullable): Deobfuscate the handling of
22565 ritem.
22566 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
22567
3067fbef
AD
225682001-12-05 Akim Demaille <akim@epita.fr>
22569
22570 * src/gram.c, src/gram.h (ritem_print): New.
22571 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
22572 (This useless function was defined only to work around VMS linkers
22573 that can't handle compilation units with variables only).
22574 * src/reduce.c (dump_grammar): Use it to trace the construction of
22575 ritem.
22576
c2bea5f9
PE
225772001-12-04 Paul Eggert <eggert@twinsun.com>
22578
7d27c823
PE
22579 * src/bison.simple (union yyalloc): Change member names
22580 to be the same as the stack names.
22581 (yyparse): yyptr is now union yyalloc *, not char *.
22582 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
22583 and may generate better code on some machines.
c2bea5f9
PE
22584 (yystpcpy): Use prototype if __STDC__ is defined, not just
22585 if __cplusplus is defined.
35687a9d 22586
2c8a9dfa
AD
225872001-11-30 Akim Demaille <akim@epita.fr>
22588
22589 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
22590 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
22591 Gettext doesn't compile cleanly, and dies with -Werror.
22592 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
22593 Include WARNING_CFLAGS here.
22594 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
22595 before being defined.
22596
f4e421e6
AD
225972001-11-27 Paul Eggert <eggert@twinsun.com>
22598
22599 * lib/quotearg.h (quotearg_n, quotearg_n_style):
22600 First arg is int, not unsigned.
22601 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
22602 (SIZE_MAX, UINT_MAX): New macros.
22603 (quotearg_n_options): Abort if N is negative.
22604 Avoid overflow check on hosts where size_t is 64 bits and int
22605 is 32 bits, as overflow is impossible there.
22606 Fix off-by-one typo that caused unnecessary reallocation.
22607
7093d0f5
AD
226082001-11-29 Paul Eggert <eggert@twinsun.com>
22609
22610 Name space cleanup in generated parser.
22611
22612 * doc/bison.texinfo (Bison Parser): Discuss system headers
22613 and their effect on the user name space.
22614
22615 * src/bison.simple:
22616 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
22617 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
22618 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
22619
22620 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
22621 on user names when possible.
22622
22623 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
22624 Simplify test for whather <alloca.h> exists.
22625
22626 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
22627
22628 (<stdio.h>): Include if YYDEBUG.
22629
22630 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
22631 ! defined (yyoverflow) && ! defined (yymemcpy).
22632
22633 (yymemcpy, yyparse): Rename local variables as needed so that
22634 they all begin with 'yy'.
22635
22636 (yystrlen, yystpcpy): New functions.
22637
22638 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
22639 All uses changed.
22640
22641 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
22642 instead of relying on string.h functions. Use YYSTACK_ALLOC
22643 and YYSTACK_FREE instead of malloc and free.
22644
fd51e5ff
AD
226452001-11-30 Akim Demaille <akim@epita.fr>
22646
22647 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
22648 before their first uses.
22649 (YYBISON, YYPURE): Move to the top of the output.
22650
7d13ff5f
AD
226512001-11-30 Akim Demaille <akim@epita.fr>
22652
22653 * tests/reduce.at (Useless Nonterminals): Fix.
22654
892a3995
AD
226552001-11-30 Akim Demaille <akim@epita.fr>
22656
22657 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
22658 if body instead of `;' to pacify GCC's warnings.
22659
68f1e3ed
AD
226602001-11-30 Akim Demaille <akim@epita.fr>
22661
22662 Instead of mapping the LHS of unused rules to -1, keep the LHS
22663 valid, but flag the rules as invalid.
22664
22665 * src/gram.h (rule_t): `useful' is a new member.
22666 * src/print.c (print_grammar): Adjust.
22667 * src/derives.c (set_derives): Likewise.
22668 * src/reader.c (packgram, reduce_output): Likewise.
22669 * src/reduce.c (reduce_grammar_tables): Likewise.
22670 * tests/reduce.at (Underivable Rules, Useless Rules): New.
22671
d2d1b42b
AD
226722001-11-30 Akim Demaille <akim@epita.fr>
22673
22674 * src/reduce.c (reduce_output): Formatting changes.
22675 * src/print.c (print_results, print_grammar): Likewise.
22676 * tests/regression.at (Rule Line Numbers)
22677 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
22678
760b53a8
AD
226792001-11-30 Akim Demaille <akim@epita.fr>
22680
22681 * src/reduce.c (nonterminals_reduce): Instead of throwing away
22682 useless nonterminals, move them at the end of the symbol arrays.
22683 (reduce_output): Adjust.
22684 * tests/reduce.at (Useless Nonterminals): Adjust.
22685
00238958
AD
226862001-11-30 Akim Demaille <akim@epita.fr>
22687
22688 * src/reduce.c: Various comment/formatting changes.
22689 (nonterminals_reduce): New, extracted from...
22690 (reduce_grammar_tables): here.
22691 (reduce_grammar): Call nonterminals_reduce.
22692
396452de
PE
226932001-11-29 Paul Eggert <eggert@twinsun.com>
22694
22695 * src/bison.simple (YYSTACK_REALLOC): Remove.
22696 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
22697 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
22698 New macros.
22699 (union yyalloc): New type.
22700 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
22701 an arbitrary restriction on hosts where size_t is wider than int.
22702
22703 (yyparse): Don't dump core if alloca or malloc fails; instead, report
22704 a parser stack overflow. Allocate just one block of memory for all
22705 three stacks, instead of allocating three blocks; this typically is
22706 faster and reduces fragmentation.
22707
22708 Do not limit the number of items in the stack to a value that fits
22709 in 'int', as this is an arbitrary limit on hosts with 64-bit
22710 size_t and 32-bit int.
22711
147e184c
MA
227122001-11-29 Marc Autret <autret_m@epita.fr>
22713
22714 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
22715 of defining YYERROR_VERBOSE.
22716 [AT_DATA]: $4 is now out of C declarations in the prologue.
22717
426cf563
MA
227182001-11-28 Marc Autret <autret_m@epita.fr>
22719
22720 * src/reader.c (parse_dquoted_param): New.
22721 (parse_skel_decl): Use it.
22722 * src/lex.h: Add its prototype.
22723 * src/lex.c (literalchar): Become not static.
22724
c7925b99
MA
227252001-11-28 Marc Autret <autret_m@epita.fr>
22726
22727 * src/output.h: And put its extern declaration here.
22728 * src/output.c (error_verbose): Define here.
22729 (prepare): Echo name modification.
22730 * src/getargs.h: Clean its extern declaration.
22731 * src/getargs.c (error_verbose_flag): Remove.
22732 (getargs): Remove case 'e'.
22733 * src/options.c (option_table): 'error-verbose' is now seen as simple
22734 percent option.
22735 Include output.h.
22736
22737 * src/reader.c (read_declarations): Remove case tok_include.
22738 (parse_include_decl): Remove.
22739 * src/lex.h (token_t): Remove tok_include.
22740 * src/options.c (option_table): 'include' is now a simple command line
22741 option.
22742
5b5d1929
MA
227432001-11-28 Marc Autret <autret_m@epita.fr>
22744
22745 * src/bison.simple: Adjust muscle names.
22746 * src/muscle_tab.c (muscle_init): Also rename the muscles.
22747 * src/output.c (prepare): s/_/-/ for the muscles names.
22748 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
22749
8850be4b
MA
227502001-11-28 Marc Autret <autret_m@epita.fr>
22751
22752 * src/bison.simple: Fix debug.
22753 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
22754
4a38e613
AD
227552001-11-28 Akim Demaille <akim@epita.fr>
22756
22757 * src/LR0.c (shifts_new): New.
22758 (save_shifts, insert_start_shift, augment_automaton): Use it.
22759
4b35e1c1
AD
227602001-11-28 Akim Demaille <akim@epita.fr>
22761
22762 * src/closure.c (closure): `b' and `ruleno' denote the same value:
22763 keep ruleno only.
22764
d2b04478
AD
227652001-11-28 Akim Demaille <akim@epita.fr>
22766
22767 * src/closure.c (closure): Instead of looping over word in array
22768 then bits in words, loop over bits in array.
22769
2c4c30aa
AD
227702001-11-28 Akim Demaille <akim@epita.fr>
22771
22772 * src/closure.c (closure): No longer optimize the special case
22773 where all the bits of `ruleset[r]' are set to 0, to make the code
22774 clearer.
22775
576890b7
AD
227762001-11-28 Akim Demaille <akim@epita.fr>
22777
22778 * src/closure.c (closure): `r' and `c' are new variables, used to
22779 de-obfuscate accesses to RULESET and CORE.
22780
cb487d7d
AD
227812001-11-28 Akim Demaille <akim@epita.fr>
22782
22783 * src/reduce.c (reduce_print): Use ngettext.
22784 (dump_grammar): Improve the trace accuracy.
22785
6013d43f
AD
227862001-11-28 Akim Demaille <akim@epita.fr>
22787
22788 * src/reduce.c (dump_grammar): Don't translate trace messages.
22789
cb4956ee
AD
227902001-11-28 Akim Demaille <akim@epita.fr>
22791
22792 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
22793 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
22794 as all tags are free'ed afterwards.
22795 From Enrico Scholz.
22796
648185ab
PE
227972001-11-27 Paul Eggert <eggert@twinsun.com>
22798
22799 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
22800 use alloca when we didn't want to, and vice versa.
22801
68254a03
MA
228022001-11-27 Marc Autret <autret_m@epita.fr>
22803
9113b58f
AD
22804 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
22805 initialization.
68254a03
MA
22806 * src/output.c (prepare): Remove its update.
22807
04d843a2
MA
228082001-11-27 Marc Autret <autret_m@epita.fr>
22809
22810 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
22811 Use %error-verbose.
22812
d2079671 228132001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
22814
22815 * src/bison.simple: Remove YYERROR_VERBOSE using.
22816 Use %%error_verbose.
22817 (yyparse): Likewise.
22818 * src/output.c (prepare): Give its final value.
22819 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
22820 * src/getargs.h: Add its extern declaration.
22821 * src/getargs.c (error_verbose_flag): New int.
22822 (getargs): Update to catch new case.
22823 * src/options.c (option_table): 'error-verbose' is a new option.
22824 (shortopts): Update.
22825
e0327bc8
AD
228262001-11-27 Akim Demaille <akim@epita.fr>
22827
22828 * src/system.h: Use intl/libgettext.h.
22829 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
22830
000f1a3c
AD
228312001-11-27 Akim Demaille <akim@epita.fr>
22832
22833 * tests/torture.at (Exploding the Stack Size with Malloc):
22834 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
22835
26cfe0be
AD
228362001-11-27 Akim Demaille <akim@epita.fr>
22837
22838 * src/files.c: Include error.h.
22839 Reported by Hans Aberg.
22840
f6bd5427
MA
228412001-11-26 Marc Autret <autret_m@epita.fr>
22842
d2079671 22843 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
22844 (read_declarations): Add case tok_include.
22845 * src/getargs.h (include): Add its extern definition.
22846 * src/getargs.c (include): New const char *.
22847 (getargs): Add case '-I'.
22848 * src/options.c (option_table): Add include as command line and
22849 percent option.
22850 * src/lex.h (token_t): Add tok_include.
22851
2ca209c1
AD
228522001-11-26 Akim Demaille <akim@epita.fr>
22853
22854 * src/reader.c (readgram): Make sure rules for mid-rule actions
22855 have a lineno equal to that of their host rule.
22856 Reported by Hans Aberg.
22857 * tests/regression.at (Rule Line Numbers): New.
22858
0e41b407
AD
228592001-11-26 Akim Demaille <akim@epita.fr>
22860
22861 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
22862 size_ts.
22863
228642001-11-26 Akim Demaille <akim@epita.fr>
22865
22866 * src/complain.c, src/complain.h (error): Remove, provided by
22867 lib/error.[ch].
22868
e0c40012
AD
228692001-11-26 Akim Demaille <akim@epita.fr>
22870
22871 * src/reader.c (read_declarations): Don't abort on tok_illegal,
22872 issue an error message.
22873 * tests/regression.at (Invalid %directive): New.
22874 Reported by Hans Aberg.
22875
5e147124
AD
228762001-11-26 Akim Demaille <akim@epita.fr>
22877
22878 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
22879 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
22880
a034c8b8
AD
228812001-11-26 Akim Demaille <akim@epita.fr>
22882
22883 * src/conflicts.c (conflicts_print): Don't complain at all when
22884 there are no reduce/reduce conflicts, and as many shift/reduce
22885 conflicts as expected.
22886 * tests/regression.at (%expect right): Adjust.
22887
c64a20f3
AD
228882001-11-23 Akim Demaille <akim@epita.fr>
22889
22890 * lib/alloca.c: Update, from fileutils.
22891
5b0d29bb
AD
228922001-11-23 Akim Demaille <akim@epita.fr>
22893
22894 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
22895
722c4bfe
AD
228962001-11-23 Akim Demaille <akim@epita.fr>
22897
22898 * src/system.h: Include alloca.h.
22899 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
22900
6255b435
AD
229012001-11-23 Akim Demaille <akim@epita.fr>
22902
22903 * src/print_graph.c (print_actions): Remove `rule', unused.
22904 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
22905 pacify GCC's signed < unsigned warnings.
22906 * src/closure.c (itemsetsize): Likewise.
22907 * src/reader.c (symbol_list_new): Static.
22908
b29b2ed5
AD
229092001-11-23 Akim Demaille <akim@epita.fr>
22910
22911 Attaching lineno to buckets is stupid, since only one copy of each
22912 symbol is kept, only the line of the first occurrence is kept too.
22913
22914 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
22915 * src/reader.c (rline_allocated): Remove, unused.
22916 (symbol_list): Have a `line' member.
22917 (symbol_list_new): New.
22918 (readgram): Use it.
22919 * src/print.c (print_grammar): Output the rule line numbers.
22920 * tests/regression.at (Solved SR Conflicts)
22921 (Unresolved SR Conflicts): Adjust.
22922 Reported by Hans Aberg.
22923
a81b1d4a
MA
229242001-11-22 Marc Autret <autret_m@epita.fr>
22925
22926 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
22927
c1ecb3c1
MA
229282001-11-22 Marc Autret <autret_m@epita.fr>
22929
22930 * src/muscle_tab.c (muscle_init): Remove initialization of
22931 skeleton muscle.
22932 * src/output.c (output_master_parser): Do it here.
22933
fbe01355
AD
229342001-11-20 Akim Demaille <akim@epita.fr>
22935
22936 * po/sv.po: New.
22937 * configure.in (ALL_LINGUAS): Adjust.
22938 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
22939 longer contains strings to translate.
22940
81e895c0
AD
229412001-11-19 Akim Demaille <akim@epita.fr>
22942
22943 * src/conflicts.c (conflicts_print): Add a missing \n.
22944
6bb1878b
AD
229452001-11-19 Akim Demaille <akim@epita.fr>
22946
22947 * src/nullable.c (nullable_print): New.
22948 (set_nullable): Call it when tracing.
22949 Better locality of variables.
22950
d9ec2d07
AD
229512001-11-19 Akim Demaille <akim@epita.fr>
22952
22953 * src/print.c (print_actions): Better locality of variables.
22954
720e5c1b
AD
229552001-11-19 Akim Demaille <akim@epita.fr>
22956
22957 * src/derives.c (print_derives): Fix and enrich.
22958 * src/closure.c (print_fderives): Likewise.
22959
fb908786
AD
229602001-11-19 Akim Demaille <akim@epita.fr>
22961
22962 * src/closure.c (itemsetend): Remove, replaced with...
22963 (itemsetsize): new.
22964
125ecb56
AD
229652001-11-19 Akim Demaille <akim@epita.fr>
22966
22967 * src/LR0.c (kernel_end): Remove, replaced with...
22968 (kernel_size): new.
22969
d8cf039f
AD
229702001-11-19 Akim Demaille <akim@epita.fr>
22971
22972 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
22973 to clarify.
22974
7bec0760
AD
229752001-11-19 Akim Demaille <akim@epita.fr>
22976
22977 * src/closure.c (closure): Use arrays instead of pointers to clarify.
22978
c87d4863
AD
229792001-11-19 Akim Demaille <akim@epita.fr>
22980
22981 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
22982 trace messages.
22983 * src/LR0.c: Likewise.
22984 (allocate_itemsets): Use arrays instead of pointers to clarify.
22985
9bfe901c
AD
229862001-11-19 Akim Demaille <akim@epita.fr>
22987
22988 * src/getargs.c (statistics_flag): Replace with...
22989 (trace_flag): New.
22990 (longopts): Accept --trace instead of --statistics.
22991 * src/getargs.h, src/options.c: Adjust.
22992 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
22993 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
22994
97db7bd4
AD
229952001-11-19 Akim Demaille <akim@epita.fr>
22996
cc72668c 22997 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
22998 pointers to clarify the code.
22999 (save_reductions, save_shifts): Factor common parts of alternatives.
23000
2c5f66ed
AD
230012001-11-19 Akim Demaille <akim@epita.fr>
23002
23003 * src/LR0.c (new_state, get_state): Complete TRACE code.
23004 * src/closure.c: Include `reader.h' to get `tags', needed by the
23005 trace code.
23006 Rename the conditional DEBUG as TRACE.
23007 Output consistently TRACEs to stderr, not stdout.
23008 * src/derives.c: Likewise.
23009 * src/reduce.c: (inaccessable_symbols): Using if is better style
23010 than goto.
23011 Use `#if TRACE' instead of `#if 0' for tracing code.
23012
300f275f
AD
230132001-11-19 Akim Demaille <akim@epita.fr>
23014
23015 * src/system.h (LIST_FREE, shortcpy): New.
23016 * src/LR0.c: Use them.
23017 * src/output.c (free_itemsets, free_reductions, free_shifts):
23018 Remove, replaced by LIST_FREE.
23019
f59c437a
AD
230202001-11-19 Akim Demaille <akim@epita.fr>
23021
23022 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
23023 (REDUCTIONS_ALLOC): New.
23024 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
23025 allocation.
23026
6986fd9e
AD
230272001-11-19 Akim Demaille <akim@epita.fr>
23028
23029 * src/LR0.c (new_state): Complete trace code.
23030 * src/nullable.c (set_nullable): Don't translate traces.
23031
4bc30f78
AD
230322001-11-19 Akim Demaille <akim@epita.fr>
23033
23034 * src/print_graph.c (print_core): Better locality of variables.
23035 * src/print.c (print_core): Likewise.
23036
08a946e0
AD
230372001-11-19 Akim Demaille <akim@epita.fr>
23038
23039 * src/vcg.c: You do the output, so you are responsible of the
23040 handling of VCG syntax, in particular: use quotearg.
23041 * src/print_graph.c: Don't.
23042 (print_actions): Don't output the actions as part of the nodes,
23043 since that's the job of the edges.
23044 (print_state): Don't output by hand: fill the node description,
9bfe901c 23045 and ask for its output.
08a946e0 23046
f0473484
AD
230472001-11-19 Akim Demaille <akim@epita.fr>
23048
cc72668c
AD
23049 * src/bison.simple (yyparse): When verbosely reporting an error,
23050 no longer put additional quotes around token names.
f0473484
AD
23051 * tests/calc.at: Adjust.
23052
e41dc700
AD
230532001-11-19 Akim Demaille <akim@epita.fr>
23054
23055 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
23056 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
23057 * src/output.c: Adjust.
23058
652a871c
AD
230592001-11-19 Akim Demaille <akim@epita.fr>
23060
23061 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
23062 (rule_t): this.
23063 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
23064
b2ed6e58
AD
230652001-11-19 Akim Demaille <akim@epita.fr>
23066
23067 * src/gram.h (rule_t): New.
23068 (rule_table): New.
23069 (rrhs, rlhs): Remove, part of state_t.
23070 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
23071 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
23072 * src/reader.c, src/reduce.c: Adjust.
23073
edad7067
AD
230742001-11-19 Akim Demaille <akim@epita.fr>
23075
23076 * src/reader.c (symbols_output): New, extracted from...
23077 (packsymbols): Here.
23078 (reader): Call it.
23079
3feec034
AD
230802001-11-19 Akim Demaille <akim@epita.fr>
23081
23082 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
23083 (maxrhs): this new function.
23084
ddcd5fdf
AD
230852001-11-19 Akim Demaille <akim@epita.fr>
23086
cc72668c 23087 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
23088 Adjust.
23089
bb527fc2
AD
230902001-11-19 Akim Demaille <akim@epita.fr>
23091
cc72668c 23092 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
23093 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
23094 * src/lalr.c: Adjust.
23095
a845a697
AD
230962001-11-19 Akim Demaille <akim@epita.fr>
23097
23098 * src/lalr.c (initialize_LA): Only initialize LA. Let...
23099 (set_state_table): handle the `lookaheads' members.
23100
f004bf6a
AD
231012001-11-19 Akim Demaille <akim@epita.fr>
23102
cc72668c
AD
23103 * src/lalr.h (lookaheads): Removed array, whose contents is now
23104 a member of...
f004bf6a
AD
23105 (state_t): this structure.
23106 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
23107 Adjust.
23108
de326cc0
AD
231092001-11-19 Akim Demaille <akim@epita.fr>
23110
cc72668c
AD
23111 * src/lalr.h (consistent): Removed array, whose contents is now
23112 a member of...
de326cc0
AD
23113 (state_t): this structure.
23114 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
23115 Adjust.
23116
90b4416b
AD
231172001-11-19 Akim Demaille <akim@epita.fr>
23118
cc72668c
AD
23119 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
23120 contents are now members of...
90b4416b
AD
23121 (state_t): this structure.
23122 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
23123 Adjust.
23124
9703cc49
AD
231252001-11-19 Akim Demaille <akim@epita.fr>
23126
23127 * src/lalr.h (state_t): New.
23128 (state_table): Be a state_t * instead of a core **.
23129 (accessing_symbol): Remove, part of state_t.
23130 * src/lalr.c: Adjust.
23131 (set_accessing_symbol): Merge into...
23132 (set_state_table): this.
23133 * src/print_graph.c, src/conflicts.c: Adjust.
23134
d803322e
AD
231352001-11-14 Akim Demaille <akim@epita.fr>
23136
23137 * tests/calc.at, tests/output.at, tests/regression.at,
23138 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
23139 now the tests are run in private dirs, therefore AC_CLEANUP and
23140 family can be simplified to 0-ary.
23141 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
23142 use abs. path to find config.h.
23143 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
23144 stderr, there can be way too much random noise.
23145 Instead pass -Werror to GCC and rely on the exit status.
23146 Reported by Wolfram Wagner.
23147
3d76b07d
AD
231482001-11-14 Akim Demaille <akim@epita.fr>
23149
23150 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
23151 defined only if yyoverflow is defined, to avoid `warning: unused
23152 variable `yyvs1''.
23153 Reported by The Test Suite.
23154
09b503c8
AD
231552001-11-14 Akim Demaille <akim@epita.fr>
23156
23157 * src/print.c: Include reduce.h.
23158 Reported by Hans Aberg.
23159
231602001-11-14 Akim Demaille <akim@epita.fr>
23161
23162 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
23163 Revert a previous patch: these are really const.
23164 * src/conflicts.c (conflict_report): Additional useless pair of
23165 braces to pacify GCC's warnings for `if () if () {} else {}'.
23166 * src/lex.c (parse_percent_token): Replace equal_offset with
23167 arg_offset.
23168 arg is const.
23169 Be sure to strdup `arg' when used, since there is no reason for
23170 token_buffer not to change.
23171
0f37a994
AD
231722001-11-14 Akim Demaille <akim@epita.fr>
23173
23174 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
23175 definition.
23176 * src/main.c (main): Use them.
23177 Suggested by Hans Aberg.
23178
d39d93b8
AD
231792001-11-12 Akim Demaille <akim@epita.fr>
23180
23181 * src/system.h (ngettext): Now that we use ngettext, be sure to
23182 provide a default definition when NLS are not used.
23183
9edcd895
AD
231842001-11-12 Akim Demaille <akim@epita.fr>
23185
23186 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
23187 Use @kbd to denote user input.
23188 (Language and Grammar): ANSIfy the example.
23189 Adjust its layout for info/notinfo.
23190 (Location Tracking Calc): Output error messages to stderr.
23191 Output locations in a more GNUtically correct way.
23192 Fix a couple of Englishos.
23193 Adjust @group/@end group pairs.
23194
7da99ede
AD
231952001-11-12 Akim Demaille <akim@epita.fr>
23196
e3aa65c5 23197 %expect was not functioning at all.
7da99ede
AD
23198
23199 * src/conflicts.c (expected_conflicts): Set to -1.
23200 (conflict_report): Use ngettext.
23201 (conflicts_print): Check %expect and make its violation an error.
23202 * doc/bison.texinfo (Expect Decl): Adjust.
23203 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
23204 * tests/regression.at (%expect not enough, %expect right)
23205 (%expect too much): New.
23206
ba9dda1a
AD
232072001-11-12 Akim Demaille <akim@epita.fr>
23208
23209 * tests/regression.at (Conflicts): Rename as...
23210 (Unresolved SR Conflicts): this.
23211 (Solved SR Conflicts): New.
23212
337c5bd1
AD
232132001-11-12 Akim Demaille <akim@epita.fr>
23214
23215 * src/reduce.c (print_results): Rename as...
23216 (reduce_output): This.
23217 Output to OUT, passed as argument, instead of output_obstack.
23218 (dump_grammar): Likewise.
23219 (reduce_free): New.
23220 Also free V1.
23221 (reduce_grammar): No longer call reduce_output, since...
23222 * src/print.c (print_results): do it.
23223 * src/main.c (main): Call reduce_free;
23224
c73a41af
AD
232252001-11-12 Akim Demaille <akim@epita.fr>
23226
23227 * src/conflicts.c (print_reductions): Accept OUT as argument.
23228 Output to it, not to output_obstack.
23229 * src/print.c (print_actions): Adjust.
23230
0df87bb6
AD
232312001-11-12 Akim Demaille <akim@epita.fr>
23232
23233 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
23234 the result instead of using...
23235 (src_total, rrc_total, src_count, rrc_count): Remove.
23236 (any_conflicts): Remove.
23237 (print_conflicts): Split into...
23238 (conflicts_print, conflicts_output): New.
23239 * src/conflicts.h: Adjust.
23240 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 23241 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
23242 * tests/regression.at (Conflicts): New.
23243 Reported by Tom Lane.
23244
e4d3d4de
AD
232452001-11-12 Akim Demaille <akim@epita.fr>
23246
23247 * tests/regression.at (Invalid input): Remove, duplicate with
23248 ``Invalid input: 1''.
23249
6d7d248e
AD
232502001-11-12 Akim Demaille <akim@epita.fr>
23251
23252 * tests/torture.at (AT_DATA_STACK_TORTURE)
23253 (Exploding the Stack Size with Alloca)
23254 (Exploding the Stack Size with Malloc): New.
23255
e9e4c321
AD
232562001-11-12 Akim Demaille <akim@epita.fr>
23257
23258 * src/bison.simple (YYSTACK_REALLOC): New.
23259 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 23260 Reported by Per Allansson.
e9e4c321 23261
5f7e0832
AD
232622001-11-12 Pascal Bart <pascal.bart@epita.fr>
23263
23264 * src/bison.simple: Define type yystype instead of YYSTYPE, and
23265 define CPP macro, which substitute YYSTYPE by yystype.
23266 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
23267 with yyltype/YYLTYPE. This allows inclusion of the generated
23268 header within the parser if the compiler, such as GGC, accepts
23269 multiple equivalent #defines.
23270 From Akim.
23271
e3f1699f
AD
232722001-11-05 Akim Demaille <akim@epita.fr>
23273
23274 * src/reader.c (symbols_output): New, extracted from...
23275 (packsymbols): here.
23276 (reader): Adjust.
23277
65be0866
AD
232782001-11-05 Akim Demaille <akim@epita.fr>
23279
23280 * src/lex.c (parse_percent_token): s/quotearg/quote/.
23281
e4d910bf
AD
232822001-11-05 Akim Demaille <akim@epita.fr>
23283
23284 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
23285 pattern.
23286
951366c1
AD
232872001-11-05 Akim Demaille <akim@epita.fr>
23288
23289 * src/options.h (struct option_table_struct): set_flags is void*.
23290 * src/options.c (longopts): Support `--output' and `%output'.
23291 (usage): Adjust.
23292 * src/lex.h (tok_setopt): Remove, replaced with...
23293 (tok_intopt, tok_stropt): these new guys.
23294 * src/lex.c (getopt.h): Not needed.
23295 (token_buffer, unlexed_token_buffer): Not const.
23296 (percent_table): Promote `-' over `_' in directive names.
23297 Active `%name-prefix', `file-prefix', and `output'.
23298 (parse_percent_token): Accept possible arguments to directives.
23299 Promote `-' over `_' in directive names.
23300
d8988b2f
AD
233012001-11-04 Akim Demaille <akim@epita.fr>
23302
23303 * doc/bison.texinfo (Decl Summary): Split the list into
23304 `directives for grammars' and `directives for bison'.
23305 Sort'em.
23306 Add description of `%name-prefix', `file-prefix', and `output'.
23307 Promote `-' over `_' in directive names.
23308 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
23309 Simplify the description of `--name-prefix'.
23310 Promote `-' over `_' in directive names.
23311 Promote `--output' over `--output-file'.
23312 Fix the description of `--defines'.
23313 * tests/output.at: Exercise %file-prefix and %output.
23314
6468d18e
AD
233152001-11-02 Akim Demaille <akim@epita.fr>
23316
23317 * doc/refcard.tex: Update.
23318
6b7e85b9
AD
233192001-11-02 Akim Demaille <akim@epita.fr>
23320
23321 * src/symtab.h (SUNDEF): New.
23322 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
23323 stand for `uninitialized', instead of 0.
23324 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
23325 * src/lex.c (lex): Adjust.
23326
23327 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
23328 Number it 0.
23329 Let yylex return it instead of a plain 0.
23330 Reported by Dick Streefland.
23331
cd5aafcf
AD
233322001-11-02 Akim Demaille <akim@epita.fr>
23333
23334 * tests/regression.at (Mixing %token styles): New test.
23335
037ca2f1
AD
233362001-11-02 Akim Demaille <akim@epita.fr>
23337
23338 * src/reader.c (parse_thong_decl): Formatting changes.
23339 (token_translations_init): New, extracted from...
23340 (packsymbols): Here.
23341 Adjust.
23342
270a173c
AD
233432001-11-01 Akim Demaille <akim@epita.fr>
23344
23345 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
23346 Check that `9foo.y' produces correct cpp guards.
23347 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
23348 guards.
23349 Reported by Wwp.
23350
561f9a30
AD
233512001-11-01 Akim Demaille <akim@epita.fr>
23352
23353 * tests/regression.at (Invalid input: 2): New.
23354 * src/lex.c (unlexed_token_buffer): New.
23355 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
23356 too.
23357 Reported by Wwp.
23358
f987e9d2
AD
233592001-11-01 Akim Demaille <akim@epita.fr>
23360
23361 * tests/calc.at: Catch up with 1.30.
23362 * configure.in: Bump to 1.49a.
23363 Adjust to newer Autotest.
23364
0846f581
PB
233652001-10-19 Pascal Bart <pascal.bart@epita.fr>
23366
23367 * src/conflicts.c: Move global variables rrc_total and src_total ...
23368 (print_conflicts): here.
23369 * src/output.c (output): Free global variable user_toknums.
23370 * src/lex.c (token_obstack): Become static.
23371
3c1a79b3
AD
233722001-10-18 Akim Demaille <akim@epita.fr>
23373
23374 * tests/atlocal.in (GCC): Add.
23375 * tests/calc.at: s/m4_match/m4_bmatch/.
23376 s/m4_patsubst/m4_bpatsubst/.
23377 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
23378 * configure.in: AC_SUBST(GCC).
23379
5d52e7d0
MA
233802001-10-14 Marc Autret <autret_m@epita.fr>
23381
23382 * src/options.c (create_long_option_table): Fix.
23383
631aa1d3
AD
233842001-10-10 Akim Demaille <akim@epita.fr>
23385
23386 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
23387
f6ec6d13
AD
233882001-10-04 Akim Demaille <akim@epita.fr>
23389
23390 * src/reader.c (parse_union_decl): Push the caracters in
23391 union_obstack, not attrs_obstack.
23392
342b8b6e
AD
233932001-10-04 Akim Demaille <akim@epita.fr>
23394
23395 Merge in the branch 1.29.
23396
23397 * src/reader.c (packsymbols): Use a temporary obstack for
23398 `%%tokendef', since output_stack is already used elsewhere.
23399
23400 2001-10-02 Akim Demaille <akim@epita.fr>
23401
23402 Bump 1.29d.
23403
23404 2001-10-02 Akim Demaille <akim@epita.fr>
23405
23406 Version 1.29c.
23407
23408 2001-10-02 Akim Demaille <akim@epita.fr>
23409
23410 * tests/regression.at (Invalid CPP headers): New.
23411 From Alexander Belopolsky.
23412 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
23413
23414 2001-10-02 Akim Demaille <akim@epita.fr>
23415
23416 * tests/regression.at (Invalid input): New.
23417 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
23418 Reported by Shura.
23419
23420 2001-10-02 Akim Demaille <akim@epita.fr>
23421
23422 * tests/calc.at: Now that --debug works, the tests must be adjusted.
23423
23424 2001-10-02 Akim Demaille <akim@epita.fr>
23425
23426 * src/output.c (output_parser): Assert `skeleton'.
23427 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
23428 systems.
23429 From Shura.
23430
23431 2001-10-01 Marc Autret <autret_m@epita.fr>
23432
23433 * src/lex.h: Echo modifications.
23434 * src/lex.c (unlex): Parameter is now token_t.
23435 From Hans Aberg.
23436
23437 2001-10-01 Marc Autret <autret_m@epita.fr>
23438
23439 * src/main.c: Include lex.h.
23440 From Hans Aberg.
23441
23442 2001-09-29 Akim Demaille <akim@epita.fr>
23443
23444 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
23445
23446 2001-09-28 Akim Demaille <akim@epita.fr>
23447
23448 * tests/testsuite.at: Update to newer Autotest.
23449 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
23450
23451 2001-09-27 Akim Demaille <akim@epita.fr>
23452
23453 Position independent wrapper.
23454
23455 * tests/bison: Remove.
23456 * tests/bison.in: New.
23457 * configure.in: Adjust.
23458
23459 2001-09-27 Paul Eggert <eggert@twinsun.com>
23460
23461 Port quotearg fixes from tar 1.13.24.
23462
23463 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
23464 tm to be declared.
23465 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
23466 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
23467
23468 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
23469 * m4/mbrtowc.m4: New file.
23470 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
23471 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
23472
23473 2001-09-27 Akim Demaille <akim@epita.fr>
23474
23475 Bump to 1.29c.
23476
23477 2001-09-27 Akim Demaille <akim@epita.fr>
23478
23479 Version 1.29b.
23480
23481 2001-09-25 Akim Demaille <akim@epita.fr>
23482
23483 * src/system.h: Include `xalloc.h'.
23484 Remove it from the C files.
23485 * src/files.c (output_files): Free the obstacks.
23486 * src/lex.c (init_lex): Rename as...
23487 (lex_init): this.
23488 (lex_free): New.
23489 * src/main.c (main): Use it.
23490
23491 2001-09-24 Marc Autret <autret_m@epita.fr>
23492
23493 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
23494 to output informations in fout (FILE*).
23495 (open_graph, close_graph): Likewise.
23496 (output_graph, output_edge, output_node): Likewise.
23497 * src/vcg.h: Update function prototypes.
23498 * src/print_graph.c (print_graph): Open output graph file.
23499 (print_actions): Adjust.
23500 * src/files.h: Remove extern declaration.
23501 * src/files.c: Remove graph_obstack declaration.
23502 (open_files): Remove graph_obstack initialization.
23503 (output_files): Remove graph_obstack saving.
23504
23505 2001-09-24 Marc Autret <autret_m@epita.fr>
23506
23507 * src/files.c (compute_output_file_names): Fix.
23508
23509 2001-09-24 Marc Autret <autret_m@epita.fr>,
23510 Akim Demaille <akim@epita.fr>
23511
23512 * src/reader.c (reader): Remove call to free_symtab ().
23513 * src/main.c (main): Call it here.
23514 Include symtab.h.
23515 * src/conflicts.c (initialize_conflicts): Rename as...
23516 (solve_conflicts): this.
23517 * src/print.c (print_core, print_actions, print_state)
23518 (print_grammar): Dump to a file instead a `output_obstack'.
23519 (print_results): Dump `output_obstack', and then proceed with the
23520 FILE *.
23521 * src/files.c (compute_output_file_names, close_files): New.
23522 (output_files): Adjust.
23523 * src/main.c (main): Adjust.
23524
23525 2001-09-23 Marc Autret <autret_m@epita.fr>
23526
23527 * src/files.c (compute_header_macro): Computes header macro name
23528 from spec_defines_file when given.
23529
23530 2001-09-23 Marc Autret <autret_m@epita.fr>
23531
23532 * src/files.c (output_files): Add default extensions.
23533
23534 2001-09-22 Akim Demaille <akim@epita.fr>
23535
23536 * src/conflicts.c (finalize_conflicts): Rename as...
23537 (free_conflicts): this.
23538
23539 2001-09-22 Akim Demaille <akim@epita.fr>
23540
23541 * src/gram.c (gram_free): Rename back as...
23542 (dummy): this.
23543 (output_token_translations): Free `token_translations'.
23544 * src/symtab.c (free_symtab): Free the tag field.
23545
23546 2001-09-22 Akim Demaille <akim@epita.fr>
23547
23548 Remove `translations' as it is always set to true.
23549
23550 * src/gram.h: Adjust.
23551 * src/reader.c (packsymbols, parse_token_decl): Adjust
23552 * src/print.c (print_grammar): Adjust.
23553 * src/output.c (output_token_translations): Adjust.
23554 * src/lex.c (lex): Adjust.
23555 * src/gram.c: Be sure the set pointers to NULL.
23556 (dummy): Rename as...
23557 (gram_free): this.
23558
23559 2001-09-22 Akim Demaille <akim@epita.fr>
23560
23561 * configure.in: Invoke AM_LIB_DMALLOC.
23562 * src/system.h: Use dmalloc.
23563 * src/LR0.c: Be sure to have pointers initialized to NULL.
23564 (allocate_itemsets): Allocate kernel_items only if needed.
23565
23566 2001-09-22 Akim Demaille <akim@epita.fr>
23567
23568 * configure.in: Bump to 1.29b.
23569 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
23570 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
23571 need xmalloc.c in calc.y.
23572 From Pascal Bart.
23573
23574 2001-09-21 Akim Demaille <akim@epita.fr>
23575
23576 Version 1.29a.
23577 * Makefile.maint, config/config.guess, config/config.sub,
23578 * config/missing: Update from masters.
23579 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
23580 upon package.m4.
23581 * configure.in (ALL_LINGUAS): Add `tr'.
23582
23583 2001-09-21 Akim Demaille <akim@epita.fr>
23584
23585 * tests/Makefile.am (package.m4): Move to...
23586 ($(srcdir)/$(TESTSUITE)): here.
23587
23588 2001-09-20 Akim Demaille <akim@epita.fr>
23589
23590 * src/complain.c: No longer try to be standalone: use system.h.
23591 Don't assume __STDC__ is defined to 1. Just test if it is defined.
23592 * src/complain.h: Likewise.
23593 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
23594 Remove the unused variable `n'.
23595 From Albert Chin-A-Young.
23596
23597 2001-09-18 Marc Autret <autret_m@epita.fr>
23598
23599 * doc/bison.1: Update.
23600 * doc/bison.texinfo (Bison Options): Update --defines and --graph
23601 descriptions.
23602 (Option Cross Key): Update.
23603 Add --graph.
23604
23605 2001-09-18 Marc Autret <autret_m@epita.fr>
23606
23607 * tests/regression.at: New test (comment in %union).
23608
23609 2001-09-18 Marc Autret <autret_m@epita.fr>
23610
23611 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
23612 do that.
23613 Reported by Keith Browne.
23614
23615 2001-09-18 Marc Autret <autret_m@epita.fr>
23616
23617 * tests/output.at: Add tests for --defines and --graph.
23618
23619 2001-09-18 Marc Autret <autret_m@epita.fr>
23620
23621 * tests/output.at: Removes tests of %{header,src}_extension features.
23622
23623 2001-09-18 Akim Demaille <akim@epita.fr>
23624
23625 * tests/Makefile.am (package.m4): New.
23626 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
23627 (_AT_CHECK_CALC_ERROR): Likewise.
23628 Factor the `, ' part of verbose error messages.
23629
23630 2001-09-18 Marc Autret <autret_m@epita.fr>
23631
23632 * src/getargs.c (longopts): Declare --defines and --graph as options
23633 with optional arguments.
23634 * src/files.h: Add extern declarations.
23635 * src/files.c (spec_graph_file, spec_defines_file): New.
23636 (output_files): Update.
23637 Remove CPP-outed code.
23638
23639 2001-09-18 Marc Autret <autret_m@epita.fr>
23640
23641 Turn off %{source,header}_extension feature.
23642
23643 * src/files.c (compute_exts_from_gf): Update.
23644 (compute_exts_from_src): Update.
23645 (output_files): CPP-out useless code.
23646 * src/files.h: Remove {header,source}_extension extern declarations.
23647 * src/reader.c (parse_dquoted_param): CPP-out.
23648 (parse_header_extension_decl): Remove.
23649 (parse_source_extension_decl): Remove.
23650 (read_declarations): Remove cases tok_{hdrext,srcext}.
23651 * src/lex.c (percent_table): Remove {header,source}_extension entries.
23652 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
23653
23654 2001-09-10 Akim Demaille <akim@epita.fr>
23655
23656 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
23657 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
23658 (AT_CHECK_OUTPUT): this.
23659 Merely check ls' exit status, its output is useless.
23660
23661 2001-09-10 Akim Demaille <akim@epita.fr>
23662
23663 * tests/calc.at: Use m4_match.
23664 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
23665
23666 2001-09-10 Marc Autret <autret_m@epita.fr>,
23667 Akim Demaille <akim@epita.fr>
23668
23669 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
23670 enum color_e.
23671 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
23672 to `normal'.
23673 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
23674 * src/lex.h: Adjust prototype.
23675 (token_t): Add `tok_undef'.
23676 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
23677 (parse_percent_token): Now returns token_t.
23678 Add default statement in switch.
23679 (lex): Separate `c' as an input variable, from the token_t result
23680 part.
23681 (unlexed): Is a token_t.
23682
23683 2001-09-10 Akim Demaille <akim@epita.fr>
23684
23685 * configure.in: Bump to 1.29a.
23686
23687 2001-09-07 Akim Demaille <akim@epita.fr>
23688
23689 Version 1.29.
23690
23691 2001-08-30 Akim Demaille <akim@epita.fr>
23692
23693 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
23694 * m4/atconfig.m4: Remove.
23695 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
23696 * tests/bison: New.
23697 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
23698 m4_if, m4_patsubst, and m4_regexp.
23699 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
23700 `input' file instead of echo.
23701
23702 2001-08-29 Akim Demaille <akim@epita.fr>
23703
23704 Bump to 1.28e.
23705
23706 2001-08-29 Akim Demaille <akim@epita.fr>
23707
23708 Version 1.28d.
23709
23710 2001-08-29 Paul Eggert <eggert@twinsun.com>
23711
23712 * src/bison.simple (yyparse): Don't take the address of an
23713 item before the start of an array, as that doesn't conform to
23714 the C Standard.
23715
23716 2001-08-29 Robert Anisko <anisko_r@epita.fr>
23717
23718 * doc/bison.texinfo (Location Tracking Calc): New node.
23719
23720 2001-08-29 Paul Eggert <eggert@twinsun.com>
23721
23722 * src/output.c (output): Do not define const, as this now
23723 causes more problems than it cures.
23724
23725 2001-08-29 Akim Demaille <akim@epita.fr>
23726
23727 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
23728 the nodes.
23729 Be sure to tag the `detailmenu'.
23730
23731 2001-08-29 Akim Demaille <akim@epita.fr>
23732
23733 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
23734 download in a tmp dir.
23735
23736 2001-08-28 Marc Autret <autret_m@epita.fr>
23737
23738 * config/depcomp: New file.
23739
23740 2001-08-28 Marc Autret <autret_m@epita.fr>
23741
23742 * doc/bison.1 (mandoc): Adjust.
23743 From Juan Manuel Guerrero.
23744
23745 2001-08-28 Marc Autret <autret_m@epita.fr>
23746
23747 * src/print_graph.c (print_state): Fix.
23748
23749 2001-08-27 Marc Autret <autret_m@epita.fr>
23750
23751 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
23752 char * members.
23753 Echo modifications to the functions prototypes.
23754 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
23755
23756 2001-08-27 Marc Autret <autret_m@epita.fr>
23757
23758 * src/vcg.c: Include `xalloc.h'.
23759 (add_colorentry): New.
23760 (add_classname): New.
23761 (add_infoname): New.
23762 * src/vcg.h: Add new prototypes.
23763
23764 2001-08-27 Akim Demaille <akim@epita.fr>
23765
23766 * Makefile.maint: Sync. again with CVS Autoconf.
23767
23768 2001-08-27 Akim Demaille <akim@epita.fr>
23769
23770 * Makefile.maint: Formatting changes.
23771 (po-update, cvs-update, update): New targets.
23772 (AMTAR): Remove.
23773
23774 2001-08-27 Akim Demaille <akim@epita.fr>
23775
23776 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
23777 * Makefile.maint: Sync. with CVS Autoconf.
23778
23779 2001-08-27 Marc Autret <autret_m@epita.fr>
23780
23781 * src/vcg.h (struct infoname_s): New.
23782 (struct colorentry_s): New.
23783 (graph_s): New fields {vertical,horizontal}_order in structure.
23784 Add `infoname' field.
23785 Add `colorentry' field;
23786 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
23787 (G_HORIZONTAL_ORDER): New.
23788 (G_INFONAME): New.
23789 (G_COLORENTRY): New.
23790 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
23791 Add output of `infoname'.
23792 Add output of `colorentry'.
23793
23794 2001-08-27 Marc Autret <autret_m@epita.fr>
23795
23796 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
23797 This one shadowed a global parameter.
23798
23799 2001-08-24 Marc Autret <autret_m@epita.fr>
23800
23801 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
23802 instead of `unsigned'.
23803 (print_state): Do not call obstack_object_size () in obstack_grow ()
23804 to avoid macro variables shadowing.
23805
23806 2001-08-23 Marc Autret <autret_m@epita.fr>
23807
23808 * src/lex.c (percent_table): Typo: s/naem/name/.
23809 Add graph option.
23810 Normalize new options declarations.
23811
23812 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
23813
23814 * tests/suite.at: Exercise %header_extension and %source_extension.
23815
23816 2001-08-16 Marc Autret <autret_m@epita.fr>
23817
23818 * src/reader.c (parse_dquoted_param): New.
23819 (parse_header_extension_decl): Use it.
23820 (parse_source_extension_decl): Likewise.
23821
23822 2001-08-16 Marc Autret <autret_m@epita.fr>
23823
23824 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
23825 (get_xxxx_str): Use assert () instead of complain ().
23826 Remove return invokations in default cases.
23827 (get_decision_str): Modify default behaviour. Remove second argument.
23828 Echo modifications on calls.
23829 (output_graph): Fix.
23830
23831 2001-08-16 Marc Autret <autret_m@epita.fr>
23832
23833 * src/getargs.c (usage): Update with ``-g, --graph''.
23834
23835 2001-08-16 Marc Autret <autret_m@epita.fr>
23836
23837 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
23838 (Option Cross Key): Likewise.
23839 * doc/bison.1: Update.
23840
1c8c2190
PB
238412001-09-25 Pascal Bart <pascal.bart@epita.fr>
23842
23843 * src/output.c (output_master_parser): Don't finish action_obstack.
23844 (output_parser): Don't care about the muscle action, here.
23845 (prepare): Copy the action_obstack in the action muscle.
23846 (output): Free action_obstack.
23847
180d45ba
PB
238482001-09-23 Pascal Bart <pascal.bart@epita.fr>
23849
23850 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
23851 will contain `%union' declaration.
23852 (parse_union_decl): Delete #line directive output.
23853 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
23854 informations about %union.
23855 (parse_union_decl): Copy the union_obstack in the muscle stype.
23856 * src/bison.simple: Add new #line directive.
23857 Add typdef %%stype YYSTYPE.
23858
c51d1a19
PB
238592001-09-23 Pascal Bart <pascal.bart@epita.fr>
23860
23861 * src/bison.simple: Add new `#line' directive.
23862
6f9344da
PB
238632001-09-22 Pascal Bart <pascal.bart@epita.fr>
23864
23865 * src/bison.simple: New `#line' directive.
23866 * src/output.c (output_parser): Support new dynamic muscle input_line.
23867
652def80
MA
238682001-09-22 Marc Autret <autret_m@epita.fr>
23869
23870 * src/output.c (output_master_parser): New.
23871 (output_parser): Be more re-entrant.
23872
25b222fa
MA
238732001-09-21 Marc Autret <autret_m@epita.fr>
23874
23875 * src/reader.c (copy_definition, parse_union_decl): Update and use
23876 `linef' muscle.
23877 (copy_action): Likewise.
23878 Use obstack_1grow ().
23879 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
23880
6bc35ae5
MA
238812001-09-21 Marc Autret <autret_m@epita.fr>
23882
23883 * src/options.c (option_table): Adjust.
23884 * src/lex.c (parse_percent_token): Fix.
23885
c0629aa1
PB
238862001-09-20 Pascal Bart <pascal.bart@epita.fr>
23887
23888 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 23889
82b6d266
PB
238902001-09-20 Pascal Bart <pascal.bart@epita.fr>
23891
23892 * src/lex.c (parse_percent_token): Change type of variable `tx', which
23893 is now an option_table_struct*.
23894 (option_strcmp): New function option_strcmp.
23895 (parse_percent_token): Call option_strcmp.
23896 * src/getargs.c (xalloc.h, options.h): Include it.
23897 (getargs): Call create_long_option_table.
23898 (getargs): Free longopts at the end of the function.
23899 (shortopts): Move in options.c.
23900 * src/options.c (create_long_option_table): New function. Convert
23901 information from option_table to option structure.
23902 * src/reader.c (options.h): Include it.
23903
23904 * src/Makefile.am: Adjust.
23905 * src/options.c (option_table): Create from longopts and percent_table.
23906 * src/getargs.c (longopts): Delete.
23907 * src/lex.c (struct percent_table_struct): Delete.
23908 (percent_table): Delete.
23909 (options.h): Include it.
23910 * src/options.c: Create.
23911 * src/options.h: Create.
23912 Declare enum opt_access_e.
23913 Define struct option_table_struct.
23914
75f5aaea
MA
239152001-09-20 Marc Autret <autret_m@epita.fr>
23916
23917 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
23918 sections of Bison.
23919
f508cb0a
PB
239202001-09-19 Pascal Bart <pascal.bart@epita.fr>
23921
23922 * src/bison.simple: s/%%filename/%%skeleton.
23923 * src/muscle_tab.c (getargs.h): Include it.
23924 (muscle_init): Insert new muscle skeleton.
23925
13105fc1
PB
239262001-09-18 Pascal Bart <pascal.bart@epita.fr>
23927
23928 * src/output.c (output_parser): Delete unused variable actions_dumped.
23929
b0c4483e
PB
239302001-09-07 Pascal Bart <pascal.bart@epita.fr>
23931
23932 * src/output.c (output): Delete call to reader_output_yylsp.
23933 * src/reader.c (reader): Likewise.
ba0fe3c7 23934 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 23935
11d82f03
MA
239362001-09-02 Marc Autret <autret_m@epita.fr>
23937
23938 * src/reader.c: Include muscle_tab.h.
23939 (parse_union_decl): Update.
23940 (parse_macro_decl): Rename parse_muscle_decl.
23941 Update to use renamed functions and variable.
23942 (read_declarations, copy_action, read_additionnal_code, : Updated
23943 with correct variables and functions names.
23944 (packsymbols, reader): Likewise.
342b8b6e 23945
11d82f03 23946 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 23947
11d82f03
MA
23948 * src/output.c: Include muscle_tab.h
23949 In all functions using macro_insert, change by using muscle_insert ().
23950 (macro_obstack): Rename muscle_obstack.
23951 Echo modifications in the whole file.
23952 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
23953 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
23954 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
23955
23956 * src/muscle_tab.h: Update double inclusion macros.
23957 (macro_entry_s): Rename muscle_entry_s.
23958 Update prototypes.
342b8b6e 23959
11d82f03
MA
23960 * src/muscle_tab.c: Include muscle_tab.h.
23961 Rename macro_tabble to muscle_table.
23962 (mhash1, mhash2, mcmp): Use muscle_entry.
23963 (macro_init): Rename muscle_init. Update.
23964 (macro_insert): Rename muscle_insert. Update.
23965 (macro_find): Rename muscle_find. Update.
23966
23967 * src/main.c: Include muscle_tab.h.
23968 (main): Call muscle_init ().
23969 * src/Makefile.am (bison_SOURCES): Echo modifications.
23970
93a37297
MA
239712001-09-02 Marc Autret <autret_m@epita.fr>
23972
f753cd62 23973 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 23974
f753cd62
MA
23975 * src/muscle_tab.c, src/muscle_tab.h: Add files.
23976
239772001-09-02 Marc Autret <autret_m@epita.fr>
23978
23979 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 23980
682d48cd
PB
239812001-09-01 Pascal Bart <pascal.bart@epita.fr>
23982
342b8b6e 23983 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
23984 filename.
23985
087c8fda
MA
239862001-09-01 Marc Autret <autret_m@epita.fr>
23987
23988 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
23989 to an explicit value to activate the feature. We do it here.
23990
dda680cb
PB
239912001-08-31 Pascal Bart <pascal.bart@epita.fr>
23992
23993 * src/output.c (prepare): Delete the `filename' muscule insertion.
23994 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
23995 (parse_union_decl): Likewise.
23996 * src/macrotab.c (macro_init): Initialize filename by infile.
23997
9e644e64
MA
239982001-08-31 Marc Autret <autret_m@epita.fr>
23999
24000 * src/bison.simple (YYLSP_NEEDED): New definition.
24001 * src/output.c (prepare): Add macro insertion of `locations_flag'
24002
17da6427
PB
240032001-08-31 Pascal Bart <pascal.bart@epita.fr>
24004
24005 * src/output.c (prepare): Delete insertion of previous muscles,
24006 and insert the `prefix' muscles.
24007 * src/macrotab.c (macro_init): Likewise.
24008 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 24009 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
24010 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
24011 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 24012 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
24013 name_prefix.
24014
e8cb70b9
PB
240152001-08-31 Pascal Bart <pascal.bart@epita.fr>
24016
24017 * src/main.c (main): Standardize.
24018 * src/output.c (output_table_data, output_parser): Likewise.
24019 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
24020
63c2d5de
MA
240212001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
24022
342b8b6e 24023 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
24024 %%epilogue.
24025 * src/output.c (output): Rename %%declarations to %%prologue.
24026 * src/bison.simple: Echo modifications.
342b8b6e 24027
d8cb5183
MA
240282001-08-31 Marc Autret <autret_m@epita.fr>
24029
24030 * src/reader.c (readgram): CleanUp.
24031 (output_token_defines): Likewise.
24032 (packsymbols): Likewise.
24033 (reader): Likewise.
24034 * src/output.c (output): CPP-out useless code.
24035
6c686258
PB
240362001-08-31 Pascal Bart <pascal.bart@epita.fr>
24037
342b8b6e 24038 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
24039 output_trailers and output_headers.
24040 * src/output.h: Remove obsolete functions prototypes of output_headers
24041 and output_trailers.
24042
8f451ef7
PB
240432001-08-30 Pascal Bart <pascal.bart@epita.fr>
24044
24045 * src/main.c: Include macrotab.h.
342b8b6e 24046 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
24047 Adjust functions prototypes.
24048 * src/macrotab.c (macro_insert): Constify key and value.
24049 (macro_find): Constify key.
24050 (macro_insert): Include 'xalloc.h'
24051 (macro_insert): Use XMALLOC.
24052 (macro_find): Constify return value.
24053 * src/output.c (output_table_data): Rename table to table_data.
24054 (output_parser): Constify macro_key, macro_value.
24055
997b6fd0 240562001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
24057
24058 * src/reader.c (parse_skel_decl): New.
342b8b6e 24059 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
24060 * src/lex.h (token_t): New token `tok_skel'.
24061 * src/lex.c (percent_table): Add skeleton option entry.
24062 Standardize.
24063
ff48177d
MA
240642001-08-29 Marc Autret <autret_m@epita.fr>
24065
24066 * src/bison.simple: Add %%user_code directive at the end.
24067 * src/reader.c (read_additionnal_code): New.
24068 (reader): Use it.
24069 * src/output.c (output_program): Remove.
24070 (output): Update.
24071
b33160bf
MA
240722001-08-28 Marc Autret <autret_m@epita.fr>
24073
24074 * src/output.c (output_actions): Clean up.
4e5caae2 24075 (output_gram): CPP-out useless code.
b33160bf
MA
24076 * src/reader.c (reader): Clean up, CPP-out useless code.
24077
d1a2daf7
PB
240782001-08-28 Pascal Bart <pascal.bart@epita.fr>
24079
342b8b6e 24080 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 24081 directive.
d1a2daf7
PB
24082 * src/bison.simple: Add `%%definitions'.
24083
2b763dfe
MA
240842001-08-28 Marc Autret <autret_m@epita.fr>
24085
24086 * config/depcomp: New file.
24087
f1a87ef6
PE
240882001-08-27 Paul Eggert <eggert@twinsun.com>
24089
24090 * src/bison.simple (yyparse): Don't take the address of an
24091 item before the start of an array, as that doesn't conform to
24092 the C Standard.
24093
82e236e2
RA
240942001-08-27 Robert Anisko <robert.anisko@epita.fr>
24095
f1a87ef6 24096 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
24097 obstack. It was done too late here.
24098
24099 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
24100 completely wrong.
24101 (reader): Initialize the macro obstack here, since we need it to grow
24102 '%define' directives.
24103
24104 * src/reader.h: Declare the macro obstack as extern.
24105
b0cfa28a
RA
241062001-08-27 Robert Anisko <robert.anisko@epita.fr>
24107
24108 * src/output.c (output_parser): Fix. Store single '%' characters in
24109 the output obstack instead of throwing them away.
24110
6fc74234
AD
241112001-08-27 Akim Demaille <akim@epita.fr>
24112
24113 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
24114
9c76d118
RA
241152001-08-25 Robert Anisko <robert.anisko@epita.fr>
24116
24117 * lib/Makefile.am: Adjust.
24118
a8289c62
RA
241192001-08-25 Robert Anisko <robert.anisko@epita.fr>
24120
24121 * src/bison.simple: Update and add '%%' directives.
24122
b6610515
RA
241232001-08-25 Robert Anisko <robert.anisko@epita.fr>
24124
24125 * src/reader.c (reader): Remove calls to 'output_headers' and
24126 'output_trailers'. Remove some C output.
24127 (readgram): Disable a piece of code that was writing a default
24128 definition for 'YYSTYPE'.
24129 (reader_output_yylsp): Remove.
24130 (packsymbols): Output token defintions to a macro.
24131 (copy_definition): Disable C output.
6fc74234 24132
b6610515
RA
24133 * src/reader.c (parse_macro_decl): New function used to parse macro
24134 declarations.
24135 (copy_string2): Put the body of copy_string into this new function.
24136 Add a parameter to let the caller choose whether he wants to copy the
24137 string delimiters or not.
24138 (copy_string): Be a simple call to copy_string2 with the last argument
24139 bound to true.
24140 (read_declarations): Add case for macro definition.
24141 (copy_identifier): New.
6fc74234 24142 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
24143 rather than lex.
24144
26f609ff
RA
241452001-08-25 Robert Anisko <robert.anisko@epita.fr>
24146
24147 * src/output.c (prepare): Add prefixed names.
24148 (output_parser): Output semantic actions.
24149 (output_parser): Fix bug on '%%line' directives.
6fc74234 24150
26f609ff
RA
24151 * src/output.c (output_headers): Remove. The C code printed by this
24152 function should now be in the skeletons.
24153 (output_trailers): Remove.
24154 (output): Disable call to 'reader_output_yylsp'.
24155 (output_rule_data): Do not output tables to the table obstack.
24156
24157 * src/output.c: Remove some C dedicated output.
24158 Improve the use of macro and output obstacks.
24159 (output_defines): Remove.
6fc74234 24160
26f609ff
RA
24161 * src/output.c (output_token_translations): Associate 'translate'
24162 table with a macro. No output to the table obstack.
24163 (output_gram): Same for 'rhs' and 'prhs'.
24164 (output_stos): Same for 'stos'.
24165 (output_rule_data): Same for 'r1' and 'r2'.
24166 (token_actions): Same for 'defact'.
24167 (goto_actions): Same for 'defgoto'.
24168 (output_base): Same for 'pact' and 'pgoto'.
24169 (output_table): Same for 'table'.
24170 (output_check): Same for 'check'.
6fc74234 24171
26f609ff
RA
24172 * src/output.c (output_table_data): New function.
24173 (output_short_table): Remove.
24174 (output_short_or_char_table): Remove.
6fc74234 24175
26f609ff
RA
24176 * src/output.c (output_parser): Replace most of the skeleton copy code
24177 with something new. Skeletons are now processed character by character
24178 rather than line by line, and Bison looks for '%%' macros. This is the
24179 first step in making Bison's output process (a lot) more flexible.
24180 (output_parser): Use the macro table.
24181
6f43b113
RA
241822001-08-25 Robert Anisko <robert.anisko@epita.fr>
24183
24184 * src/main.c (main): Initialize the macro table.
24185
dd3127cf
RA
241862001-08-25 Robert Anisko <robert.anisko@epita.fr>
24187
24188 * src/lex.c (percent_table): Add tok_define.
24189 * src/lex.h: Add tok_define.
24190
aa321494
RA
241912001-08-25 Robert Anisko <robert.anisko@epita.fr>
24192
24193 * src/macrotab.c: New file.
24194 * src/macrotab.h: New file.
24195 * src/Makefile.am: Update.
24196
68bd3b6b
RA
241972001-08-25 Robert Anisko <robert.anisko@epita.fr>
24198
24199 * lib/hash.c: New file.
24200 * lib/hash.h: New file.
24201 * lib/Makefile.am: Update.
24202
45f8dd1e
AD
242032001-08-15 Akim Demaille <akim@epita.fr>
24204
24205 Version 1.28c.
24206
40a64a7a 242072001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
24208
24209 * src/reader.c (readgram): Indent output macro YYSTYPE.
24210 (packsymbols): Likewise.
24211 (output_token_defines): Likewise.
24212 * src/files.c: Standardize.
24213 (compute_header_macro): New.
24214 (defines_obstack_save): New. Use compute_header_macro.
24215 (output_files): Update. Use defines_obstack_save.
24216
f9a8293a
AD
242172001-08-15 Akim Demaille <akim@epita.fr>
24218
24219 * doc/bison.texinfo (Table of Symbols): Document
24220 YYSTACK_USE_ALLOCA.
24221
150ca7a7
AD
242222001-08-15 Akim Demaille <akim@epita.fr>
24223
24224 * missing: Update from CVS Automake.
24225 * config/config.guess, config/config.sub, config/texinfo.tex:
24226 Update from gnu.org.
24227
69b5cec4
AD
242282001-08-15 Akim Demaille <akim@epita.fr>
24229
24230 * Makefile.maint: Sync with CVS Autoconf.
24231
f2b5126e
PB
242322001-08-14 Pascal Bart <pascal.bart@epita.fr>
24233
69b5cec4 24234 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
24235 `fdl.texi'.
24236 * doc/fdl.texi: Add to package.
24237
4ecbf796
MA
242382001-08-14 Marc Autret <autret_m@epita.fr>
24239
24240 Turn on %{source,header}_extension features.
24241
69b5cec4 24242 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
24243 source_extension.
24244 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 24245 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
24246 between options.
24247
95fb5662
MA
242482001-08-14 Marc Autret <autret_m@epita.fr>
24249
24250 * src/files.c (compute_base_names): Add extensions computing when
24251 `--file-prefix' used.
24252 Standardize function calls.
24253
78d09da9
MA
242542001-08-13 Marc Autret <autret_m@epita.fr>
24255
69b5cec4 24256 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
24257 defining it (defined but null disables alloca).
24258
5a009f2c
MA
242592001-08-13 Marc Autret <autret_m@epita.fr>
24260
24261 * src/bison.simple (_yy_memcpy): CPP reformat.
24262
1e41465a
PB
242632001-08-13 Pascal Bart <pascal.bart@epita.fr>
24264
24265 * tests/atconfig.in (CPPFLAGS): Fix.
24266
c67a198d
PB
242672001-08-10 Pascal Bart <pascal.bart@epita.fr>
24268
79282c6c 24269 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
24270 `gpl.texi'.
24271 * doc/gpl.texi: Add to package.
24272
09a6de7e
MA
242732001-08-10 Marc Autret <autret_m@epita.fr>
24274
24275 * src/print_graph.h: Fix.
24276 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
24277
b77b9ee0
AD
242782001-08-10 Akim Demaille <akim@epita.fr>
24279
24280 * src/system.h: Provide default declarations for stpcpy, strndup,
24281 and strnlen.
24282
3e259915
MA
242832001-08-10 Robert Anisko <anisko_r@epita.fr>
24284
24285 * doc/bison.texinfo (Locations): Update @$ stuff.
24286
ca96bc2d
MA
242872001-08-09 Robert Anisko <anisko_r@epita.fr>
24288
24289 * src/bison.simple (YYLLOC_DEFAULT): Update.
24290 (yyparse): Adjust.
24291
fdc6758b
MA
242922001-08-08 Marc Autret <autret_m@epita.fr>
24293
b77b9ee0 24294 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
24295 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
24296 Reported by Fabrice Bauzac.
957d4dbf 24297
600cad3b
MA
242982001-08-08 Marc Autret <autret_m@epita.fr>
24299
24300 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
24301 * src/vcg.c (output_node): Fix.
24302 * src/vcg.h: Cleanup.
24303 * src/print_graph.c: Add comments.
b77b9ee0 24304 (node_output_size): New global variable. Simplify the formatting of
600cad3b 24305 the VCG graph output.
b77b9ee0 24306 (print_actions): Unused code is now used. It notifies the final state
600cad3b 24307 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 24308 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
24309 blue.
24310 Get the current node name and node_obstack by argument.
24311 (node_obstack): New variable.
24312 (print_state): Manage node_obstack.
24313 (print_core): Use node_obstack given by argument.
24314 A node is not only computed here but in print_actions also.
24315 (print_graph): CPP out useless code instead of commenting it.
24316
976e528f
AD
243172001-08-07 Pascal Bart <pascal.bart@epita.fr>
24318
24319 * tests/atconfig.in (CPPFLAGS): Fix.
24320
20e8e5ca
AD
243212001-08-07 Akim Demaille <akim@epita.fr>
24322
24323 * src/print_graph.c (quote): New.
24324 (print_core): Use it.
24325
957d4dbf 243262001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 24327
3e3da797
AD
24328 * src/vcg.c (complain.h): Include it.
24329 Unepitaize `return' invocations.
c4b66126 24330 [NDEBUG] (main): Remove.
79282c6c 24331 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
24332 * src/files.c (open_files): Initialize graph_obstack.
24333 * src/print_graph.c (print_actions): CPP out useless code.
24334 (print_core): Don't output the last `\n' in labels.
24335 Use `quote'.
24336 * src/files.c (output_files): Output the VCG file.
24337 * src/main.c (main): Invoke print_graph ();
3e3da797 24338
957d4dbf 243392001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
24340
24341 Automaton VCG graph output.
24342 Using option ``-g'' or long option ``--graph'', you can generate
24343 a gram_filename.vcg file containing a VCG description of the LALR (1)
24344 automaton of your grammar.
24345
24346 * src/main.c: Call to print_graph() function.
24347 * src/getargs.h: Update.
24348 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
24349 (graph_flag): New flag.
24350 (longopts): Update.
24351 (getargs): Add case `g'.
24352 * src/files.c (graph_obstack): New obstack struct.
24353 (open_files): Initialize new obstack.
24354 (output_files): Saves graph_obstack if required.
24355 * src/files.h (graph_obstack): New extern declaration.
24356 * src/Makefile.am: Add new source files.
24357
927c1557 243582001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
24359
24360 * src/print_graph.c, src/print_graph.h (graph): New.
24361 * src/vcg.h: New file.
24362 * src/vcg.c: New file, VCG graph handling.
24363
7333d403
AD
243642001-08-06 Marc Autret <autret_m@epita.fr>
24365
24366 Add of %source_extension and %header_extension which specify
24367 the source or/and the header output file extension.
24368
24369 * src/files.c (compute_base_names): Remove initialisation of
24370 src_extension and header_extension.
24371 (compute_exts_from_gf): Update.
24372 (compute_exts_from_src): Update.
24373 (output_files): Update.
24374 * src/reader.c (parse_header_extension_decl): New.
24375 (parse_source_extension_decl): New.
24376 (read_declarations): New case statements for the new tokens.
24377 * src/lex.c (percent_table): Add entries for %source_extension
24378 and %header_extension.
24379 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
24380
84163231
AD
243812001-08-06 Marc Autret <autret_m@epita.fr>
24382
24383 * configure.in: Bump to 1.28c.
24384 * doc/bison.texinfo: Texinfo thingies.
24385
8303fc42
AD
243862001-08-04 Pascal Bart <pascal.bart@epita.fr>
24387
24388 * tests/atconfig.in (CPPFLAGS): Add.
24389 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
24390
70a84437
AD
243912001-08-03 Akim Demaille <akim@epita.fr>
24392
24393 Version 1.28b.
24394
2ce10144
AD
243952001-08-03 Akim Demaille <akim@epita.fr>
24396
24397 * tests/Makefile.am (check-local): Ship testsuite.
24398 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
24399 Include `string.h'.
24400
1e3e4bc1
AD
244012001-08-03 Akim Demaille <akim@epita.fr>
24402
24403 * configure.in: Try using -Wformat when compiling.
24404
42b45b7f
AD
244052001-08-03 Akim Demaille <akim@epita.fr>
24406
24407 * configure.in: Bump to 1.28b.
24408
8f13fe33
AD
244092001-08-03 Akim Demaille <akim@epita.fr>
24410
24411 * src/complain.c: Adjust strerror_r portability issues.
24412
b37ba92c
AD
244132001-08-03 Akim Demaille <akim@epita.fr>
24414
24415 Version 1.28a.
24416
b0ce6046
AD
244172001-08-03 Akim Demaille <akim@epita.fr>
24418
24419 * src/getargs.c, src/getarg.h (skeleton)): Constify.
24420 * src/lex.c (literalchar): Avoid name clashes on `buf'.
24421 * src/getargs.c: Include complain.h.
24422 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
24423 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
24424
d01c415b
AD
244252001-08-03 Akim Demaille <akim@epita.fr>
24426
24427 * src/reader.c (readgram): Display hidden chars in error messages.
24428
459dd1a6
AD
244292001-08-03 Akim Demaille <akim@epita.fr>
24430
24431 Update to gettext 0.10.39.
24432
53b74c0c
AD
244332001-08-03 Akim Demaille <akim@epita.fr>
24434
24435 * lib/strspn.c: New.
24436
234a3be3
AD
244372001-08-01 Marc Autret <autret_m@epita.fr>
24438
24439 * doc/bison.texinfo: Update.
24440 * doc/bison.1 (mandoc): Update.
24441 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
24442 * src/files.c: Support output files extensions computing.
24443 (src_extension): New static variable.
24444 (header_extension): New static variable.
24445 (tr): New function.
24446 (get_extension_index): New function, gets the index of an extension
24447 filename in a string.
24448 (compute_exts_from_gf): New function, computes extensions from the
24449 grammar file extension.
24450 (compute_exts_from_src): New functions, computes extensions from the
24451 C source file extension, file given by ``-o'' option.
24452 (compute_base_names): Update.
24453 (output_files): Update.
24454
847bf1f5
AD
244552001-08-01 Robert Anisko <anisko_r@epita.fr>
24456
d995fee7 24457 * doc/bison.texi: Document @$.
847bf1f5
AD
24458 (Locations): New section.
24459
d074a105
AD
244602001-07-18 Akim Demaille <akim@epita.fr>
24461
24462 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
24463 * config/prev-version.txt, config/move-if-change: New.
24464 * Makefile.am: Adjust.
24465
3419715d
AD
244662001-07-08 Pascal Bart <pascal.bart@epita.fr>
24467
24468 * src/bison.simple (yyparse): Suppress warning `comparaison
24469 between signed and unsigned'.
24470
62ab6972
AD
244712001-07-05 Pascal Bart <pascal.bart@epita.fr>
24472
24473 * src/getargs.h (raw_flag): Remove.
24474 * src/getargs.c: Die on `-r'/`--raw'.
24475 * src/lex.c (parse_percent_token): Die on `%raw'.
24476 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
24477 * tests/calc.at: Suppress test with option `--raw'.
24478
1e24cc5b
AD
244792001-07-14 Akim Demaille <akim@epita.fr>
24480
24481 * config/: New.
24482 * configure.in: Require Autoconf 2.50.
24483 Update to gettext 0.10.38.
24484
32dfccf8
AD
244852001-03-16 Akim Demaille <akim@epita.fr>
24486
24487 * doc/bison.texinfo: ANSIfy the examples.
24488
cd5bd6ac
AD
244892001-03-16 Akim Demaille <akim@epita.fr>
24490
24491 * getargs.c (skeleton): New variable.
24492 (longopts): --skeleton is a new option.
24493 (shortopts, getargs): -S is a new option.
24494 * getargs.h: Declare skeleton.
24495 * output.c (output_parser): Use it.
24496
5141b016
AD
244972001-03-16 Akim Demaille <akim@epita.fr>
24498
24499 * m4/strerror_r.m4: New.
24500 * m4/error.m4: Run AC_FUNC_STRERROR_R.
24501 * lib/error.h, lib/error.c: Update.
24502
447992b9
AD
245032001-03-16 Akim Demaille <akim@epita.fr>
24504
24505 * src/getargs.c (longopts): Clean up.
24506
274d42ce
AD
245072001-02-21 Akim Demaille <akim@epita.fr>
24508
24509 * src/reader.c (gensym): `gensym_count' is your own.
24510 Use a static buf to create the symbol name, as token_buffer is no
24511 longer a buffer.
24512
22c821f3
AD
245132001-02-08 Akim Demaille <akim@epita.fr>
24514
24515 * src/conflicts.c (conflict_report): Be sure not to append to res
24516 between two calls, which could happen if both first sprintf were
24517 skipped, but not the first cp += strlen.
24518
18569462
AD
245192001-02-08 Akim Demaille <akim@epita.fr>
24520
24521 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
24522 New, from fileutils 4.0.37.
24523 * configure.in: Require Autoconf 2.49c. I took some time before
24524 making this decision. This is the only way out for portability
24525 issues in Bison, it would mean way too much duplicate effort to
24526 import in Bison features implemented in 2.49c since 2.13.
24527 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
24528
0d8f3c8a
AD
245292001-02-02 Akim Demaille <akim@epita.fr>
24530
24531 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 24532 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 24533
f17bcd1f
AD
245342001-01-19 Akim Demaille <akim@epita.fr>
24535
24536 Get rid of the ad hoc handling of token_buffer in the scanner: use
24537 the obstacks.
24538
24539 * src/lex.c (token_obstack): New.
24540 (init_lex): Initialize it. No longer call...
24541 (grow_token_buffer): this. Remove it.
24542 Adjust all the places which used it to use the obstack.
24543
511e79b3
AD
245442001-01-19 Akim Demaille <akim@epita.fr>
24545
24546 * src/lex.h: Rename all the tokens:
24547 s/\bENDFILE\b/tok_eof/g;
24548 s/\bIDENTIFIER\b/tok_identifier/g;
24549 etc.
24550 Let them be enums, not #define, to ease debugging.
24551 Adjust all the code.
24552
0d6508ef
AD
245532001-01-18 Akim Demaille <akim@epita.fr>
24554
24555 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
24556 * src/lex.c (maxtoken, grow_token_buffer): Static.
24557
6deb4447
AD
245582001-01-18 Akim Demaille <akim@epita.fr>
24559
24560 Since we now use obstacks, more % directives can be enabled.
24561
24562 * src/lex.c (percent_table): Also accept `%yacc',
24563 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
24564 `%debug'.
24565 Handle the actions for `%semantic_parser' and `%pure_parser' here,
24566 instead of returning a token.
24567 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
24568 * src/reader.c (read_declarations): Adjust.
24569 * src/files.c (open_files): Don't call `compute_base_names', don't
24570 compute `attrsfile' since they depend upon data which might be
24571 *in* the input file now.
24572 (output_files): Do it here.
24573 * src/output.c (output_headers): Document the fact that this patch
24574 introduces a guaranteed SEGV for semantic parsers.
24575 * doc/bison.texinfo: Document them.
24576 * tests/suite.at: Exercise these %options.
24577
ff4423cc
AD
245782000-12-20 Akim Demaille <akim@epita.fr>
24579
24580 Also handle the output file (--verbose) with obstacks.
24581
24582 * files.c (foutput): Remove.
24583 (output_obstack): New.
24584 Adjust all dependencies.
24585 * src/conflicts.c: Return a string.
24586 * src/system.h (obstack_grow_string): Rename as...
24587 (obstack_sgrow): this. Be ready to work with non literals.
24588 (obstack_fgrow4): New.
24589
956dba3a
AD
245902000-12-20 Akim Demaille <akim@epita.fr>
24591
24592 * src/files.c (open_files): Fix the computation of short_base_name
24593 in the case of `-o foo.tab.c'.
24594
337bab46
AD
245952000-12-20 Akim Demaille <akim@epita.fr>
24596
24597 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
24598 (copy_dollar): Now that everything uses obstacks, get rid of the
24599 FILE * parameters.
24600
5d3214b8
AD
246012000-12-20 Akim Demaille <akim@epita.fr>
24602
24603 * src/files.c (open_files): Actually the `.output' file is based
24604 on the short_base_name, not base_name.
24605 * tests/suite.at (Checking output file names): Adjust.
24606
29092a57
AD
246072000-12-20 Akim Demaille <akim@epita.fr>
24608
24609 * src/bison.s1: Remove, we now use directly...
24610 * src/bison.simple: this.
24611 * src/Makefile.am: Use pkgdata instead of data.
24612
ea5607fd
AD
246132000-12-20 Akim Demaille <akim@epita.fr>
24614
24615 * src/files.c (guard_obstack): New.
24616 (open_files): Initialize it.
24617 (output_files): Dump it...
24618 * src/files.h: Export it.
24619 * src/reader.c (copy_guard): Use it.
24620
27110317
AD
246212000-12-19 Akim Demaille <akim@epita.fr>
24622
24623 * src/files.c (outfile, defsfile, actfile): Removed as global
24624 vars.
24625 (open_files): Don't compute them.
24626 (output_files): Adjust.
24627 (base_name, short_base_name): Be global.
24628 Adjust dependencies.
24629
19c50364
AD
246302000-12-19 Akim Demaille <akim@epita.fr>
24631
24632 * src/files.c (strsuffix): New.
24633 (stringappend): Be just like strcat but allocate.
24634 (base_names): Eve out from open_files.
24635 Try to simplify the rather hairy computation of base_name and
24636 short_base_name.
24637 (open_files): Use it.
24638 * tests/suite.at (Checking output file names): New test.
24639
573c1d9f
AD
246402000-12-19 Akim Demaille <akim@epita.fr>
24641
24642 * src/system.h (obstack_grow_literal_string): Rename as...
24643 (obstack_grow_string): this.
24644 * src/output.c (output_parser): Recognize `%% actions' instead of
24645 `$'.
24646 * src/bison.s1: s/$/%% actions/.
24647 * src/bison.hairy: Likewise.
24648
ef7ddedd
AD
246492000-12-19 Akim Demaille <akim@epita.fr>
24650
24651 * src/output.c (output_parser): Compute the `#line' lines when
24652 there are.
24653 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
24654 Suggested by Hans Aberg.
24655
ff61dabd
AD
246562000-12-19 Akim Demaille <akim@epita.fr>
24657
24658 Let the handling of the skeleton files be local to the procedures
24659 that use it.
24660
24661 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
24662 longer static.
24663 (fparser, open_extra_files): Remove.
24664 (open_files, output_files): Don't take care of fparser.
24665 * src/files.h: Adjust.
24666 * src/output.c (output_parser): Open and close the file to the
24667 skeleton.
24668 * src/reader.c (read_declarations): When %semantic_parser, open
24669 fguard.
24670
55b96341
AD
246712000-12-19 Akim Demaille <akim@epita.fr>
24672
24673 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
24674 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
24675
358c15b7
AD
246762000-12-19 Akim Demaille <akim@epita.fr>
24677
24678 * src/files.c (open_files): Yipee! We no longer need all the code
24679 looking for `/tmp' since we have no tmp file.
24680
7de3329e
AD
246812000-12-19 Akim Demaille <akim@epita.fr>
24682
24683 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
24684 New macros.
24685 * src/files.c (open_files): Less dependency on MSDOS etc.
24686
3abcd459
AD
246872000-12-14 Akim Demaille <akim@epita.fr>
24688
24689 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
24690 Provide a default definition.
24691 Use it when executing the default @ action.
24692 * src/reader.c (reader_output_yylsp): No longer include
24693 `timestamp' and `text' in the default YYLTYPE.
24694
2a91a95e
AD
246952000-12-12 Akim Demaille <akim@epita.fr>
24696
24697 * src/reader.c (copy_definition, parse_union_decl, copy_action)
24698 (copy_guard): Quote the file names.
24699 Reported by Laurent Mascherpa.
24700
14d3eb9b
AD
247012000-12-12 Akim Demaille <akim@epita.fr>
24702
24703 * src/output.c (output_headers, output_program, output): Be sure
24704 to escape special characters when outputting filenames.
24705 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
24706 (output_headers): Don't depend on them, Use ACTSTR.
24707
d7045ec6
AD
247082000-11-17 Akim Demaille <akim@epita.fr>
24709
24710 * lib/obstack.h: Formatting changes.
24711 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
24712 prevents type checking.
24713 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
24714 cast the value to (void *): assigning a `foo *' to a `void *'
24715 variable is valid.
24716 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
24717 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
24718 append characters.
24719
6fd54b73
AD
247202000-11-17 Akim Demaille <akim@epita.fr>
24721
24722 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
24723 as...
24724 (suite.m4, regression.m4, calc.m4): these.
24725 * tests/atgeneral.m4: Update from CVS Autoconf.
24726
4c50eae6
AD
247272000-11-17 Akim Demaille <akim@epita.fr>
24728
24729 * tests/regression.m4 (%union and --defines): New test,
24730 demonstrating a current bug in the obstack implementation.
24731
a35f64ea
AD
247322000-11-17 Akim Demaille <akim@epita.fr>
24733
24734 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
24735 macros.
24736 Use them to declare the variables which are global or local to
24737 `yyparse'.
24738
7de23534
AD
247392000-11-17 Akim Demaille <akim@epita.fr>
24740
24741 * acconfig.h: Remove, no longer used.
24742
aa7815f5
AD
247432000-11-07 Akim Demaille <akim@epita.fr>
24744
24745 * src: s/Copyright (C)/Copyright/g.
24746
5af1f549
AD
247472000-11-07 Akim Demaille <akim@epita.fr>
24748
24749 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
24750 defining.
24751 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
24752
553e2b22
AD
247532000-11-07 Akim Demaille <akim@epita.fr>
24754
24755 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
24756 Merge in a single CPP if/else.
24757
8a4f41d6
AD
247582000-11-07 Akim Demaille <akim@epita.fr>
24759
24760 * src/output.c (output): Remove useless variables.
24761 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
24762 argument `data' for consistency with the prototypes.
24763 Qualify it `const'.
24764 (obstack_copy, obstack_copy0): Rename the second argument as
24765 `address' for consistency. Qualify it `const'.
24766 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
24767 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
24768 `const' their input argument (`data' or `address').
24769 Adjust the corresponding macros to include `const' in casts.
24770
095a3fb5
AD
247712000-11-03 Akim Demaille <akim@epita.fr>
24772
24773 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
24774 s/PFILE1/BISON_HAIRY/.
24775 Adjust dependencies.
24776
d1cdce7c
AD
247772000-11-03 Akim Demaille <akim@epita.fr>
24778
090c5ebf 24779 For some reason, this was not applied.
d1cdce7c
AD
24780
24781 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
24782 `unlink': it's no longer used.
24783
9311529b
AD
247842000-11-03 Akim Demaille <akim@epita.fr>
24785
24786 * src/files.c (skeleton_find): New function, eved out of...
24787 (open_files, open_extra_files): here.
24788
d8880f69
AD
247892000-11-03 Akim Demaille <akim@epita.fr>
24790
24791 Don't use `atexit'.
24792
24793 * src/files.c (obstack_save): New function.
24794 (done): Rename as...
24795 (output_files): this.
24796 Use `obstack_save'.
24797 * src/main.c (main): Don't use `atexit' to register `done', since
24798 it no longer has to remove tmp files, just call `output_files'
24799 when there are no errors.
24800
0dbb648e
AD
248012000-11-02 Akim Demaille <akim@epita.fr>
24802
24803 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
24804 `unlink': it's no longer used.
24805 * src/files.h: Formatting changes.
24806
896fe5c1
AD
248072000-11-02 Akim Demaille <akim@epita.fr>
24808
24809 Remove the last uses of mktemp and unlink/delete.
24810
24811 * src/files.c (fdefines, ftable): Removed.
24812 (defines_ostack, table_obstack): New.
24813 Adjust dependencies of the former into uses of the latter.
24814 * src/output.c (output_short_or_char_table, output_short_table):
24815 Convert to using obstacks.
24816 * src/reader.c (copy_comment2): Accept one FILE * and two
24817 obstacks.
24818 (output_token_defines, reader_output_yylsp): Use obstacks.
24819 * src/system.h (obstack_fgrow3): New.
1f65350a 24820 * po/POTFILES.in: Adjust.
896fe5c1 24821
dd60faec
AD
248222000-11-01 Akim Demaille <akim@epita.fr>
24823
24824 Change each use of `fattrs' into a use of `attrs_obstack'.
24825
24826 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
24827 * src/files.c (fattrs): Remove.
24828 (attrs_obstack): New.
24829 Adjust all dependencies.
24830 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
24831
8c7ebe49
AD
248322000-11-01 Akim Demaille <akim@epita.fr>
24833
24834 Introduce obstacks.
24835 Change each use of `faction' into a use of `action_obstack'.
24836
24837 * lib/obstack.h, lib/obstack.c: New files.
24838 * src/files.c (faction): Remove.
24839 (action_obstack): New.
24840 Adjust all dependencies.
24841
77aee789
AD
248422000-10-20 Akim Demaille <akim@epita.fr>
24843
24844 * lib/quote.h (PARAMS): New macro. Use it.
24845
43591cec
AD
248462000-10-16 Akim Demaille <akim@epita.fr>
24847
24848 * src/output.c (output_short_or_char_table): New function.
24849 (output_short_table, output_token_translations): Use it.
24850 (goto_actions): Use output_short_table.
24851
1e9798d5
AD
248522000-10-16 Akim Demaille <akim@epita.fr>
24853
24854 * src/symtab.c (bucket_new): New function.
24855 (getsym): Use it.
24856
24857 * src/output.c (output_short_table): New argument to display the
24858 comment associated with the table.
24859 Adjust dependencies.
24860 (output_gram): Use it.
24861 (output_rule_data): Nicer output layout for YYTNAME.
24862
f282676b
AD
248632000-10-16 Akim Demaille <akim@epita.fr>
24864
24865 * src/lex.c (read_typename): New function.
24866 (lex): Use it.
24867 * src/reader.c (copy_dollar): Likewise.
24868
550a72a3
AD
248692000-10-16 Akim Demaille <akim@epita.fr>
24870
24871 * src/reader.c (copy_comment2): Expect the input stream to be on
24872 the `/' which is suspected to open a comment, instead of being
24873 called after `//' or `/*' was read.
24874 (copy_comment, copy_definition, parse_union_decl, copy_action)
24875 (copy_guard): Adjust.
24876
131e2fef
AD
248772000-10-16 Akim Demaille <akim@epita.fr>
24878
24879 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
24880 `read_signed_integer'.
24881
79282c5a
AD
248822000-10-16 Akim Demaille <akim@epita.fr>
24883
24884 * src/reader.c (copy_dollar): New function.
24885 (copy_guard, copy_action): Use it.
24886
ff4a34be
AD
248872000-10-16 Akim Demaille <akim@epita.fr>
24888
24889 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
24890 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
24891 New files, from Fileutils 4.0.27.
24892 * src/main.c (printable_version): Remove.
24893 * src/lex.c, src/reader.c: Use `quote'.
24894
248952000-10-04 Akim Demaille <akim@epita.fr>
24896
24897 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
24898
14ded682
AD
248992000-10-04 Akim Demaille <akim@epita.fr>
24900
24901 * doc/bison.texinfo: Various typos spotted by Neil Booth.
24902
8e03724b
AD
249032000-10-04 Akim Demaille <akim@epita.fr>
24904
24905 When a literal string is used to define two different tokens,
24906 `bison -v' segfaults.
24907 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
24908
24909 * tests/regression.m4: New file.
24910 Include the core of the sample provided by Piotr Gackiewicz.
24911 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
24912 properly.
24913
a9e64249
AD
249142000-10-04 Akim Demaille <akim@epita.fr>
24915
24916 * src/reader.c (parse_expect_decl): Keep `count' within the size
24917 of `buffer'.
24918 From Neil Booth.
24919
da9abf43
AD
249202000-10-02 Paul Eggert <eggert@twinsun.com>
24921
24922 * bison.s1 (yyparse): Assign the default value
24923 unconditionally, to avoid a GCC warning and make the parser a
24924 tad smaller.
24925
c33638bb
AD
249262000-10-02 Akim Demaille <akim@epita.fr>
24927
24928 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
24929 options.
24930
444c570a
AD
249312000-10-02 Akim Demaille <akim@epita.fr>
24932
24933 * src/derives.c, src/print.c, src/reduce.c: To ease the
24934 translation, move some `\n' out of the translated strings.
24935
89cab50d
AD
249362000-10-02 Akim Demaille <akim@epita.fr>
24937
24938 The location tracking mechanism is precious for parse error
24939 messages. Nevertheless, it is enabled only when `@n' is used in
24940 the grammar, which is a different issue (you can use it in error
24941 message, but not in the grammar per se). Therefore, there should
24942 be another means to enable it.
24943
24944 * src/getargs.c (getargs): Support `--locations'.
24945 (usage): Report it.
24946 * src/getargs.h (locationsflag): Export it.
24947 * src/lex.c (percent_table): Support `%locations'.
24948 * src/reader.c (yylsp_needed): Remove this variable, now replaced
24949 with `locationsflag'.
24950 * doc/bison.texinfo: Document `--locations' and `%locations'.
24951 Sort the options.
24952 * tests/calc.m4: Test it.
24953
24954 For regularity of the names, replace each
24955 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
24956 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
24957 In addition replace each `flag' with `_flag'.
24958
d6c2cba0
AD
249592000-10-02 Akim Demaille <akim@epita.fr>
24960
24961 Also test parse error messages, including with YYERROR_VERBOSE.
24962
24963 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
24964 associative).
24965 Use it to check the computations.
24966 Use it to check `nonassoc' is honored.
24967 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
24968 `--yyerror-verbose'.
24969 (_AT_CHECK_CALC): Adjust to this option.
24970 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
24971
5a35a6cb
AD
249722000-10-02 Akim Demaille <akim@epita.fr>
24973
24974 Test also `--verbose', `--defines' and `--name-prefix'. Testing
24975 the latter demonstrates a flaw in the handling of non debugging
24976 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
24977 was used in order to simplify:
24978
24979 #if YYDEBUG
24980 if (yydebug)
24981 {
24982 ...
24983 }
24984 #endif
24985
24986 into
24987
24988 if (yydebug)
24989 {
24990 ...
24991 }
24992
24993 unfortunately this leads to a CPP conflict when
24994 `--name-prefix=foo' is used since it produces `#define yydebug
24995 foodebug'.
24996
24997 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
24998 (YYDPRINTF): New macro.
24999 Spread its use.
25000 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
25001 the bison options.
25002 Also test `--verbose', `--defines' and `--name-prefix'.
25003
71da9eea
AD
250042000-10-02 Akim Demaille <akim@epita.fr>
25005
25006 Improve the readability of the produced parsers.
25007
25008 * src/bison.s1: Formatting changes.
25009 Improve the comment related to the `$' mark.
25010 (yydefault): Don't fall through to `yyresume': `goto' there.
25011 * src/output.c (output_parser): When the `$' is met, skip the end
25012 of its line.
25013 New variable, `number_of_dollar_signs', to check there's exactly
25014 one `$' in the parser skeleton.
25015
95e36146
AD
250162000-10-02 Akim Demaille <akim@epita.fr>
25017
25018 * lib/xstrdup.c: New file, from the fileutils.
25019 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
25020 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
25021 instead of strlen + xmalloc + strcpy.
25022 * src/symtab.c (copys): Remove, use xstrdup instead.
25023
d7020c20
AD
250242000-10-02 Akim Demaille <akim@epita.fr>
25025
25026 * src/gram.h (associativity): New enum type which replaces the
25027 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
25028 `right_assoc', `left_assoc' and `non_assoc'.
25029 Adjust all dependencies.
25030 * src/reader.c: Formatting changes.
25031 (LTYPESTR): Don't define it, use it as a literal in
25032 `reader_output_yylsp'.
25033 * src/symtab.h (symbol_class): New enum type which replaces the
25034 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
25035 `sunknown', `stoken and `snterm'.
25036
1916f98e
AD
250372000-10-02 Akim Demaille <akim@epita.fr>
25038
25039 * src/getargs.c (fixed_outfiles): Rename as...
25040 (yaccflag): for consistency and accuracy.
25041 Adjust dependencies.
25042
d7913476
AD
250432000-10-02 Akim Demaille <akim@epita.fr>
25044
25045 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
25046 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
25047 difficult and introduced a lot of core dump. It turns out that
25048 Bison used an implementation of `xmalloc' based on `calloc', and
25049 at various places it does depend upon the initialization to 0. I
25050 have not tried to isolate the pertinent places, and all the former
25051 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
25052 someone should address this issue.
25053
25054 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
25055 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
25056 files.
25057 Adjust dependencies.
25058 * src/warshall.h: New file.
25059 Propagate.
25060
340ef489
AD
250612000-10-02 Akim Demaille <akim@epita.fr>
25062
25063 Various anti-`extern in *.c' changes.
25064
25065 * src/system.h: Include `assert.h'.
25066
b2ca4022
AD
250672000-10-02 Akim Demaille <akim@epita.fr>
25068
25069 * src/state.h (nstates, final_state, first_state, first_shift)
25070 (first_reduction): Move their exportation from here...
25071 * src/LR0.h: to here.
25072 Adjust dependencies.
25073 * src/getargs.c (statisticsflag): New variable.
25074 Add support for `--statistics'.
25075 Adjust dependencies.
25076
25077 Remove a lot of now useless `extern' statements in most files.
25078
403b315b
AD
250792000-10-02 Akim Demaille <akim@epita.fr>
25080
25081 * src/LR0.h: New file.
25082 Propagate its use.
25083
07a58c13
AD
250842000-10-02 Akim Demaille <akim@epita.fr>
25085
25086 * src/print.h: New file.
25087 Propagate its use.
25088 * src/print.c: Formatting and ordering changes.
25089 (verbose, terse): Replace with...
25090 (print_results): this new function.
25091 Adjust dependencies.
25092
0619caf0
AD
250932000-10-02 Akim Demaille <akim@epita.fr>
25094
25095 * src/conflicts.c (conflict_report): New function.
25096 (conflict_log, verbose_conflict_log): Replace with...
25097 (print_conflicts): this function.
25098 Adjust dependencies.
25099 * src/conflicts.h: New file.
25100 Propagate its inclusion.
25101
3519ec76
AD
251022000-10-02 Akim Demaille <akim@epita.fr>
25103
25104 * src/nullable.h: New file.
25105 Propagate its inclusion.
25106 * src/nullable.c: Formatting changes.
25107
015acc48
AD
251082000-10-02 Akim Demaille <akim@epita.fr>
25109
25110 * src/reduce.h: New file.
25111 Propagate its inclusion.
25112 * src/reduce.c: Topological sort and other formatting changes.
25113 (bool, TRUE, FALSE): Move their definition to...
25114 * src/system.h: here.
25115
8963a27b
AD
251162000-10-02 Akim Demaille <akim@epita.fr>
25117
25118 * src/files.c: Formatting changes.
25119 (tryopen, tryclose, openfiles): Rename as...
25120 (xfopen, xfclose, open_files): this.
25121 (stringappend): static.
25122 * src/files.h: Complete the list of exported symbols.
25123 Propagate its use.
25124
a70083a3
AD
251252000-10-02 Akim Demaille <akim@epita.fr>
25126
25127 * src/reader.h: New file.
25128 Propagate its use instead of tedious list of `extern' and
25129 prototypes.
25130 * src/reader.c: Formatting changes, topological sort,
25131 s/register//.
25132
abadc117
AD
251332000-10-02 Akim Demaille <akim@epita.fr>
25134
25135 * src/lex.h: Prototype `lex.c' exported functions.
25136 * src/reader.c: Adjust.
25137 * src/lex.c: Formatting changes.
25138 (safegetc): Rename as...
25139 (xgetc): this.
25140
720d742f
AD
251412000-10-02 Akim Demaille <akim@epita.fr>
25142
25143 * src/lalr.h: New file.
25144 Propagate its inclusion instead of prototypes and `extern'.
25145 * src/lalr.c: Formatting changes, topological sorting etc.
25146
f2acea59
AD
251472000-10-02 Akim Demaille <akim@epita.fr>
25148
25149 * src/output.c (token_actions): Introduce a temporary array,
25150 YYDEFACT, that makes it possible for this function to use
25151 output_short_table.
25152
d019d655
AD
251532000-10-02 Akim Demaille <akim@epita.fr>
25154
25155 `user_toknums' is output as a `short[]' in `output.c', while it is
25156 defined as a `int[]' in `reader.c'. For consistency with the
25157 other output tables, `user_toknums' is now defined as a table of
25158 shorts.
25159
25160 * src/reader.c (user_toknums): Be a short table instead of an int
25161 table.
25162 Adjust dependencies.
25163
25164 Factor the short table outputs.
25165
25166 * src/output.c (output_short_table): New function.
25167 * src/output.c (output_gram, output_stos, output_rule_data)
25168 (output_base, output_table, output_check): Use it.
25169
6c89f1c1
AD
251702000-10-02 Akim Demaille <akim@epita.fr>
25171
25172 * src/output.c (output): Topological sort of the functions, in
25173 order to get rid of the `static' prototypes.
25174 No longer use `register'.
25175 * src/output.h: New file.
25176 Propagate its inclusion in files explicitly prototyping functions
25177 from output.c.
25178
d9efd181
AD
251792000-09-21 Akim Demaille <akim@epita.fr>
25180
25181 * src/atgeneral.m4: Update from Autoconf.
25182
c29240e7 251832000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
25184
25185 * src/closure.h: New file.
25186 * src/closure.c: Formatting changes, topological sort over the
25187 functions, use of closure.h.
25188 (initialize_closure, finalize_closure): Rename as...
25189 (new_closure, free_closure): these. Adjust dependencies.
25190 * src/LR0.c: Formatting changes, topological sort, use of
25191 cloture.h.
25192 (initialize_states): Rename as...
25193 (new_states): this.
25194 * src/Makefile.am (noinst_HEADERS): Adjust.
25195
499daa50
AD
251962000-09-20 Akim Demaille <akim@epita.fr>
25197
25198 * src/acconfig.h: Don't protect config.h against multiple
25199 inclusion.
25200 Don't define PARAMS.
25201 * src/system.h: Define PARAMS.
25202 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
25203 purpose of config.h. system.h must not try to fix wrong
25204 definitions in config.h.
25205
cc84fd5d
AD
252062000-09-20 Akim Demaille <akim@epita.fr>
25207
25208 * src/derives.h: New file.
25209 * src/main.c, src/derives.h: Use it.
25210 Formatting changes.
25211 * src/Makefile.am (noinst_HEADERS): Adjust.
25212
db5b3a89
AD
252132000-09-20 Akim Demaille <akim@epita.fr>
25214
25215 * tests/atgeneral.m4: Update from Autoconf.
25216 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
25217 (AT_CHECK_CALC): New macros.
25218 Use these macros to test bison with options `', `--raw',
25219 `--debug', `--yacc', `--yacc --debug'.
25220
ceed8467
AD
252212000-09-19 Akim Demaille <akim@epita.fr>
25222
25223 * src/output.c: Formatting changes.
25224 * src/machine.h: Remove, leaving its contents in...
25225 * src/system.h: here.
25226 Include stdio.h.
25227 Adjust all dependencies on stdio.h and machine.h.
25228 * src/getargs.h: New file.
25229 Let all `extern' declarations about getargs.c be replaced with
25230 inclusion of `getargs.h'.
25231 * src/Makefile.am (noinst_HEADERS): Adjust.
25232
25233 * tests/calc.m4 (yyin): Be initialized in main, not on the global
25234 scope.
25235 (yyerror): Returns void, not int.
25236 * doc/bison.texinfo: Formatting changes.
25237
05a1d24b
AD
252382000-09-19 Akim Demaille <akim@epita.fr>
25239
25240 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
25241 portable.
25242
cbd25751
AD
252432000-09-18 Akim Demaille <akim@epita.fr>
25244
25245 * configure.in: Append WARNING_CFLAGS to CFLAGS.
25246 * src/Makefile.am (INCLUDES): Don't.
25247 Be ready to fetch headers in lib/.
25248
13863333
AD
252492000-09-18 Akim Demaille <akim@epita.fr>
25250
25251 * doc/bison.texinfo: Update the copyright.
25252 ANSIfy and GNUify the examples.
25253 Remove the old menu.
25254
0d533154
AD
252552000-09-18 Akim Demaille <akim@epita.fr>
25256
25257 First set of tests: use the `calc' example from the documentation.
25258
25259 * src/bison.s1 (yyparse): Condition the code using `yytname' which
25260 is defined only when YYDEBUG is.
25261 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
25262 * src/files.c (tryopen, tryclose): Formatting changes.
25263 Move to the top and be static.
25264 * src/reader.c (read_signed_integer): Likewise.
25265 * tests/calc.m4: New file.
25266 * Makefile.am, suite.m4: Adjust.
25267 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
25268
e79137ac
AD
252692000-09-18 Akim Demaille <akim@epita.fr>
25270
25271 Add support for an Autotest test suite for Bison.
25272
25273 * m4/m4.m4, m4/atconfig.m4: New files.
25274 * m4/Makefile.am (EXTRA_DIST): Adjust.
25275 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
25276 files.
25277 * src/getargs.c: Display a more standard --version message.
25278 * src/reader.c (reader): Formatting changes.
25279 No longer depend upon VERSION_STRING.
25280 * configure.in: No longer use `dnl'.
25281 Set up the test suite and the new directory `tests/.
25282 (VERSION_STRING): Remove.
25283
27821bff
AD
252842000-04-14 Akim Demaille <akim@epita.fr>
25285
25286 * src/reader.c (copy_comment2): New function, same as former
25287 `copy_comment', but outputs into two FILE *.
25288 (copy_comment): Use it.
25289 (parse_union_decl): Use it.
25290 (get_type, parse_start_decl): Use the same `invalid' message.
25291 (parse_start_decl, parse_union_decl): Use the same `multiple'
25292 message.
25293 (parse_union_decl, copy_guard, copy_action): Use the same
25294 `unmatched' message.
25295 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
25296
cfe5fbc0
AD
252972000-03-31 Akim Demaille <akim@epita.fr>
25298
25299 * src/files.c (tryopen, tryclose): Move to the top.
25300 Be static.
25301
cb7db13e
AD
253022000-03-31 Akim Demaille <akim@epita.fr>
25303
25304 * src/main.c (main): Don't call `done', exit does it.
25305
a0f6b076
AD
253062000-03-31 Akim Demaille <akim@epita.fr>
25307
36281465
AD
25308 * allocate.c: s/return (foo)/return foo/.
25309 * lalr.c: Likewise.
25310 * LR0.c: Likewise.
25311 * output.c: Likewise.
25312 * reader.c: Likewise.
25313 * symtab.c: Likewise.
25314 * vmsgetargs.c: Likewise.
25315
253162000-03-31 Akim Demaille <akim@epita.fr>
25317
25318 Clean up the error reporting functions.
a0f6b076
AD
25319
25320 * src/report.c: New file.
25321 * src/report.h: Likewise.
25322 * src/Makefile.am: Adjust.
25323 * m4/error.m4: New file.
25324 * m4/Makefile.am: Adjust.
25325 * configure.in (jm_PREREQ_ERROR): Call it.
25326 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
25327 Remove.
25328 (fatal, fatals): Remove. All callers use complain.c::fatal.
25329 (warn, warni, warns, warnss, warnss): Remove. All callers use
25330 complain.c::complain.
25331 (toomany): Remove, use fatal instead.
25332 * src/files.c (done): No argument, use complain_message_count.
25333 * src/main.c (main): Register `done' to `atexit'.
25334
25335 * src/getargs.c (usage): More `fputs', less `fprintf'.
25336
18539825
AD
253372000-03-28 Akim Demaille <akim@epita.fr>
25338
25339 * lib/: New directory.
25340 * Makefile.am (SUBDIRS): Adjust.
25341 * configure.in: Adjust.
25342 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
25343 useless.
25344 * src/alloca.c: Moved to lib/.
25345 * src/getopt.c: Likewise.
25346 * src/getopt1.c: Likewise.
25347 * src/getopt.h: Likewise.
25348 * src/ansi2knr.c: Likewise.
25349 * src/ansi2knr.1: Likewise.
25350 * src/Makefile.am: Adjust.
25351 * lib/Makefile.am: New file.
25352
9f306f2a
AD
253532000-03-28 Akim Demaille <akim@epita.fr>
25354
25355 * src/getargs.c (usage): Refresh the help message.
25356
0ba347b6
AD
253572000-03-17 Akim Demaille <akim@epita.fr>
25358
25359 * src/getopt1.c: Updated from textutils 2.0e
25360 * src/getopt.c: Likewise.
25361 * src/getopt.h: Likewise.
25362
dbe7f271
AD
253632000-03-17 Akim Demaille <akim@epita.fr>
25364
25365 * src/Makefile.am (bison.simple): Fix the awk program: quote only
25366 the file name, not the whole `#line LINE FILE'.
25367
75bbe78d
AD
253682000-03-17 Akim Demaille <akim@epita.fr>
25369
25370 On syntax errors, report the token on which we choked.
25371
aa5fd0ee
AD
25372 * src/bison.s1 (yyparse): In the label yyerrlab, when
25373 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 25374
7b306f52
AD
253752000-03-17 Akim Demaille <akim@epita.fr>
25376
aa5fd0ee 25377 * src/reader.c (copy_at): New function.
7b306f52
AD
25378 (copy_guard): Use it.
25379 (copy_action): Use it.
25380
e87b5700
AD
253812000-03-17 Akim Demaille <akim@epita.fr>
25382
25383 Be kind to translators, save some useless translations.
25384
aa5fd0ee 25385 * src/main.c (banner): New function.
e87b5700
AD
25386 (fatal_banner): Use it.
25387 (warn_banner): Use it.
25388
ae3c3164
AD
253892000-03-17 Akim Demaille <akim@epita.fr>
25390
aa5fd0ee
AD
25391 * src/reader.c (copy_definition): Use copy_string and
25392 copy_comment. Removed now unused `match', `ended',
25393 `cplus_comment'.
ae3c3164
AD
25394 (copy_comment, copy_string): Moved, to be visible from
25395 copy_definition.
25396
4dc58e7c
AD
253972000-03-17 Akim Demaille <akim@epita.fr>
25398
aa5fd0ee
AD
25399 * src/reader.c (copy_string): Declare `static inline'. No
25400 problems with inline, since it is checked by configure.
4dc58e7c
AD
25401 (copy_comment): Likewise.
25402
0a6384c4
AD
254032000-03-17 Akim Demaille <akim@epita.fr>
25404
aa5fd0ee 25405 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 25406
3cef001a
AD
254072000-03-17 Akim Demaille <akim@epita.fr>
25408
aa5fd0ee 25409 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
25410 (copy_action): Use it. Removed now unused `match', `ended',
25411 `cplus_comment'.
25412 (copy_guard): Likewise.
25413
ca36d2ef
AD
254142000-03-17 Akim Demaille <akim@epita.fr>
25415
aa5fd0ee 25416 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
25417 (copy_action): Use it.
25418 (copy_guard): Likewise.
25419
6666f98f
AD
254202000-03-17 Akim Demaille <akim@epita.fr>
25421
25422 Change the handling of @s so that they behave exactly like $s.
25423 There is now a pseudo variable @$ (readble and writable), location
25424 of the lhs of the rule (by default ranging from the location of
25425 the first symbol of the rhs, to the location of the last symbol,
25426 or, if the rhs is empty, YYLLOC).
25427
25428 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
25429 yyval.
25430 (yyparse): When providing a default semantic action, provide a
25431 default location action.
25432 (after the $): No longer change `*YYLSP', just stack YYLOC the
25433 same way you stack YYVAL.
25434 * src/reader.c (read_declarations): Use warns.
25435 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
25436 (copy_action, case '@'): Likewise.
25437 Use a standard error message, to save useless work from
25438 translators.
25439
41aca2e0
AD
254402000-03-17 Akim Demaille <akim@epita.fr>
25441
aa5fd0ee
AD
25442 * src/bison.s1: Formatting and cosmetics changes.
25443 * src/reader.c: Likewise.
41aca2e0
AD
25444 Update the Copyright notice.
25445
dc08c1d5
AD
254462000-03-17 Akim Demaille <akim@epita.fr>
25447
aa5fd0ee
AD
25448 * src/bison.s1 (#line): All set to `#line' only, since the
25449 Makefile now handles them.
dc08c1d5 25450
9ee3c97b
AD
254512000-03-16 Akim Demaille <akim@epita.fr>
25452
25453 * src/output.c (output_rule_data): Output the documentation of
25454 some of the tables.
25455 (Copyright notice): Update.
25456 Formatting changes.
25457
0de741ca
AD
254582000-03-16 Akim Demaille <akim@epita.fr>
25459
25460 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
25461 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
25462 One `#if YYDEBUG' remains, since it uses variables which are
25463 defined only if `YYDEBUG != 0'.
25464
bb10be54
AD
254652000-03-16 Akim Demaille <akim@epita.fr>
25466
25467 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
25468 and related variables so that the similarities are highlighted.
25469
b07b484a
AD
254702000-03-16 Akim Demaille <akim@epita.fr>
25471
25472 * src/bison.s1: Properly indent CPP directives.
25473
361f60b3
AD
254742000-03-16 Akim Demaille <akim@epita.fr>
25475
25476 * src/bison.s1: Properly indent the `alloca' CPP section.
25477
8c44d3ec
AD
254782000-03-16 Akim Demaille <akim@epita.fr>
25479
25480 Do not hard code values of directories in `configure.in'.
25481 Update the `configure' tool chain.
25482
25483 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
25484 src/makefile.am.
25485 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
25486 (AC_OUTPUT): Add m4/Makefile.
25487 Bump to bison 1.28a, 1.29 has never been released.
25488 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
25489 handled via src/Makefile.am.
25490 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
25491 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
25492 autoheader.
25493 * Makefile.am (SUBDIRS): Add m4.
25494 (ACLOCAL_AM_FLAGS): New variable.
25495 (AUTOMAKE_OPTIONS): Add check-news.
25496 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
25497 the proper line number and file name.
25498 (DEFS): Propagate the location of bison library files and of the
25499 locale files.
25500 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
25501 builddir.
25502 * acinclude.m4: Remove, replaced by the directory m4.
25503 * m4/Makefile.am (EXTRA_DIST): New variable.
25504 * m4/gettext.m4: New file, from the fileutils.
25505 * m4/lcmessage.m4: Likewise
25506 * m4/progtest.m4: Likewise.
25507 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
25508
f95997e7
AD
255092000-03-10 Akim Demaille <akim@epita.fr>
25510
25511 * src/closure.c:
25512 Formatting changes of various comments.
25513 Respect the GNU coding standards at various places.
25514 Don't use `_()' when no translation is needed.
25515
255161999-12-13 Jesse Thilo <jthilo@gnu.org>
25517
25518 * src/files.c:
25519 OS/2 honors TMPDIR environment variable.
25520
255211999-12-13 Jesse Thilo <jthilo@gnu.org>
25522
25523 * doc/bison.texinfo: Tweaked spelling and grammar.
25524 Updated ISBN.
25525 Removed reference to price of printed copy.
25526 Mention BISON_SIMPLE and BISON_HAIRY.
25527
255281999-12-13 Jesse Thilo <jthilo@gnu.org>
25529
25530 * configure.in, NEWS:
25531 Bison 1.29 released.
25532
255331999-10-27 Jesse Thilo <jthilo@gnu.org>
25534
25535 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
25536 Added reference card.
25537
255381999-07-26 Jesse Thilo <jthilo@gnu.org>
25539
25540 * po/ru.po: Added Russian translation.
25541
255421999-07-26 Jesse Thilo <jthilo@gnu.org>
25543
25544 * configure.in: Added Russian translation.
25545
255461999-07-06 Jesse Thilo <jthilo@gnu.org>
25547
25548 * configure.in, NEWS, README:
25549 Released version 1.28.
25550
255511999-06-14 Jesse Thilo <jthilo@gnu.org>
25552
25553 * src/system.h:
25554 Squashed redefinition warning on some systems.
25555
25556 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
25557 Have configure build version string instead of relying on ANSI string
25558 concatentation.
25559
255601999-06-14 Jesse Thilo <jthilo@gnu.org>
25561
25562 * po/POTFILES.in: Got rid of version.c.
25563
255641999-06-14 Jesse Thilo <jthilo@gnu.org>
25565
25566 * acconfig.h, configure.in:
25567 Have configure build version string instead of relying on ANSI string
25568 concatentation.
25569
255701999-06-08 Jesse Thilo <jthilo@gnu.org>
25571
25572 * doc/bison.1:
25573 Dropped mention of `+' for long-named options.
25574
255751999-05-30 Jesse Thilo <jthilo@gnu.org>
25576
25577 * src/files.c: Added <unistd.h> for unlink().
25578
25579 * src/Makefile.am, src/system.h:
25580 I18n fixes.
25581
255821999-05-30 Jesse Thilo <jthilo@gnu.org>
25583
25584 * README: Added a FAQ list.
25585
25586 * configure.in, acconfig.h:
25587 I18n fixes.
25588
255891999-05-30 Jesse Thilo <jthilo@gnu.org>
25590
25591 * doc/FAQ, doc/Makefile.am:
25592 Added a FAQ list.
25593
255941999-05-19 Jesse Thilo <jthilo@gnu.org>
25595
25596 * src/alloc.h, src/symtab.h, src/version.c:
25597 Protected inclusion of "config.h" with HAVE_CONFIG_H.
25598
255991999-04-18 Jesse Thilo <jthilo@gnu.org>
25600
25601 * src/.cvsignore, src/Makefile.am:
25602 Reorganized: sources in `src', documentation in `doc'.
25603
25604 * src/lex.c (literalchar):
25605 fixed the code for escaping double quotes (thanks
25606 Jonathan Czisny.)
25607
256081999-04-18 Jesse Thilo <jthilo@gnu.org>
25609
25610 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
25611 Adjusted paths to reflect directory reorganization.
25612
256131999-04-18 Jesse Thilo <jthilo@gnu.org>
25614
25615 * doc/.cvsignore, doc/Makefile.am:
25616 Reorganized: sources in `src', documentation in `doc'.
25617
256181999-04-18 Jesse Thilo <jthilo@gnu.org>
25619
25620 * configure.in:
25621 Updated AC_INIT file to reflect directory reorganization.
25622
25623 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
25624 Reorganized: sources in `src', documentation in `doc'.
25625
256261999-04-13 Jesse Thilo <jthilo@gnu.org>
25627
25628 * src/allocate.c:
25629 Don't declare calloc() and realloc() if not necessary.
25630
256311999-04-13 Jesse Thilo <jthilo@gnu.org>
25632
25633 * configure.in, acconfig.h, acinclude.m4:
25634 Don't declare calloc() and realloc() if not necessary.
25635
256361999-03-23 Jesse Thilo <jthilo@gnu.org>
25637
25638 * po/.cvsignore: Added i18n support.
25639
256401999-03-23 Jesse Thilo <jthilo@gnu.org>
25641
25642 * acconfig.h, configure.in, Makefile.am:
25643 Added i18n support.
25644
256451999-03-22 Jesse Thilo <jthilo@gnu.org>
25646
25647 * src/bison.s1: Fixed #line numbers.
25648
256491999-03-15 Jesse Thilo <jthilo@gnu.org>
25650
25651 * po/es.po, po/fr.po, po/nl.po, po/de.po:
25652 Added PO files from Translation Project.
25653
256541999-03-03 Jesse Thilo <jthilo@gnu.org>
25655
25656 * Makefile.am:
25657 Added support for non-ANSI compilers (ansi2knr).
25658
256591999-02-16 Jesse Thilo <jthilo@gnu.org>
25660
25661 * configure.in: Bumped version number to 1.27.
25662
25663 * Makefile.am:
25664 Added `bison.simple' to list of files removed by `make distclean'.
25665
256661999-02-12 Jesse Thilo <jthilo@gnu.org>
25667
25668 * src/files.c, src/files.h:
25669 Defined locations of parser files in config.h instead of Makefile.
25670
256711999-02-12 Jesse Thilo <jthilo@gnu.org>
25672
25673 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
25674 Defined locations of parser files in config.h instead of Makefile.
25675
256761999-02-09 Jesse Thilo <jthilo@gnu.org>
25677
25678 * Makefile.am:
25679 Removed inappropriate use of $< macro.
25680
256811999-02-05 Jesse Thilo <jthilo@gnu.org>
25682
25683 * po/Makefile.in.in, po/POTFILES.in:
25684 Add `po' directory skeleton.
25685
256861999-01-27 Jesse Thilo <jthilo@gnu.org>
25687
25688 * README: Document help-bison list.
25689
25690 * configure.in: Add check for mkstemp().
25691
256921999-01-20 Jesse Thilo <jthilo@gnu.org>
25693
25694 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
25695 Hush a few compiler warnings.
25696
25697 * src/files.c:
25698 Add tryclose(), which verifies that fclose was successful.
25699 Hush a couple of compiler warnings.
25700
257011999-01-20 Jesse Thilo <jthilo@gnu.org>
25702
25703 * Makefile.am, OChangeLog:
25704 ChangeLog is now automatically generated. Include the old version as
25705 OChangeLog.
25706
257071999-01-14 Jesse Thilo <jthilo@gnu.org>
25708
25709 * 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:
25710 Update FSF address.
25711
257121999-01-14 Jesse Thilo <jthilo@gnu.org>
25713
25714 * doc/bison.texinfo: Fix formatting glitch.
25715
25716 * doc/bison.texinfo: Update FSF address.
25717
257181999-01-14 Jesse Thilo <jthilo@gnu.org>
25719
25720 * acconfig.h: Update FSF address.
25721
257221999-01-08 Jesse Thilo <jthilo@gnu.org>
25723
25724 * src/system.h:
25725 Don't define PACKAGE here, since config.h defines it.
25726
257271998-12-30 Jesse Thilo <jthilo@gnu.org>
25728
25729 * src/reader.c: Update copyright date.
25730
25731 * src/main.c:
25732 Ditch sprintf to statically-sized buffers in fatal/warn functions in
25733 favor of output directly to stderr (avoids buffer overruns).
25734
25735 * src/reader.c: Some checks for premature EOF.
25736
25737 * 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:
25738 Use prototypes if the compiler understands them.
25739
25740 * src/files.c: Honor TMPDIR on Unix hosts.
25741 Use prototypes if the compiler understands them.
25742
25743 * src/reader.c:
25744 Fix a couple of buffer overrun bugs.
25745 Use prototypes if the compiler understands them.
25746
25747 * src/system.h: Include unistd.h and ctype.h.
25748 Use #ifdef instead of #if for NLS symbols.
25749
257501998-12-30 Jesse Thilo <jthilo@gnu.org>
25751
25752 * doc/bison.texinfo:
25753 Delete comment "consider using @set for edition number, etc..." since
25754 we now are doing so.
25755
257561998-12-30 Jesse Thilo <jthilo@gnu.org>
25757
25758 * configure.in:
25759 Use prototypes if the compiler understands them.
25760
25761 * NEWS: Document 1.26 highlights.
25762
25763 * Makefile.am: Require Automake 1.3 or later.
25764
25765 * acconfig.h:
25766 Use prototypes if the compiler understands them.
25767
257681998-12-29 Jesse Thilo <jthilo@gnu.org>
25769
25770 * src/version.c:
25771 Use VERSION symbol from automake for version number.
25772
257731998-12-29 Jesse Thilo <jthilo@gnu.org>
25774
25775 * acconfig.h, configure.in, version.cin:
25776 Use VERSION symbol from automake for version number.
25777
257781998-11-28 Jesse Thilo <jthilo@gnu.org>
25779
25780 * Makefile.am:
25781 Distribute original version of simple parser (bison.s1), not built
25782 version (bison.simple).
25783
257841998-11-28 Jesse Thilo <jthilo@gnu.org>
25785
25786 * doc/bison.texinfo: Add info dir entry.
25787
25788 * doc/bison.texinfo:
25789 Let automake put version number into documentation.
25790
257911998-11-26 Jesse Thilo <jthilo@gnu.org>
25792
25793 * src/bison.cld, src/build.com, src/vmshlp.mar:
25794 Add non-RCS files from /gd/gnu/bison.
25795
257961998-11-26 Jesse Thilo <jthilo@gnu.org>
25797
25798 * doc/bison.1:
25799 Document the BISON_HAIRY and BISON_SIMPLE variables.
25800
258011998-11-25 Jesse Thilo <jthilo@gnu.org>
25802
25803 * src/version.c: Build version.c automatically.
25804
25805 * src/reader.c:
25806 Fix token numbering (used to start at 258, not 257).
25807
25808 * src/system.h: Include config.h.
25809
25810 * src/getargs.c: Update bug report address.
25811
25812 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
25813 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
25814
258151998-11-25 Jesse Thilo <jthilo@gnu.org>
25816
25817 * Makefile.am:
25818 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
25819
25820 * configure.in, version.cin:
25821 Build version.c automatically.
25822
25823 * AUTHORS: Add AUTHORS file.
25824
25825 * README: Update bug report address.
25826
25827 * bison.simple:
25828 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
25829
25830 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
25831 Add automake stuff.
25832
258331998-11-25 Jesse Thilo <jthilo@gnu.org>
25834
25835 * doc/bison.texinfo: Clean up some formatting.
25836
258371998-05-05 Richard Stallman <rms@gnu.org>
25838
25839 * doc/bison.texinfo:
25840 Explain better why to make a pure parser.
25841
258421998-01-05 Richard Stallman <rms@gnu.org>
25843
25844 * src/files.c (openfiles):
25845 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
25846 find a temporary directory, if possible. Do not unlink files while
25847 they are open.
25848
258491997-08-25 Richard Stallman <rms@gnu.org>
25850
25851 * src/reader.c (stack_offset;):
25852 Change some warni to warns.
25853
25854 * src/lex.c (literalchar): Use warns, not warni.
25855
258561997-06-28 Richard Stallman <rms@gnu.org>
25857
25858 * src/bison.s1: Add a Bison version comment.
25859
25860 * src/main.c (fatal, warn, berror):
25861 Use program_name.
25862
258631997-06-28 Richard Stallman <rms@gnu.org>
25864
25865 * Makefile.in (bison_version): New variable.
25866 (dist): Use that variable.
25867 (bison.s1): Substitute the Bison version into bison.simple.
25868
25869 * bison.simple: Add a Bison version comment.
25870
258711997-06-18 Richard Stallman <rms@gnu.org>
25872
25873 * src/main.c (fatal, warn, berror):
25874 Make error messages standard.
25875 (toomany): Improve error message text.
25876
25877 * 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:
25878 new.h renamed to alloc.h.
25879
258801997-06-18 Richard Stallman <rms@gnu.org>
25881
25882 * Makefile.in: new.h renamed to alloc.h.
25883
258841997-05-24 Richard Stallman <rms@gnu.org>
25885
25886 * src/lex.c (literalchar):
25887 Fix the code for escaping \, " and '.
25888
25889 (lex): Avoid trouble when there are many chars
25890 to discard in a char literal with just several chars in it.
25891
258921997-05-17 Richard Stallman <rms@gnu.org>
25893
25894 * src/bison.s1:
25895 Use malloc, if using alloca is troublesome.
25896 (YYSTACK_USE_ALLOCA): New flag macro.
25897 Define it for some systems and compilers.
25898 (YYSTACK_ALLOC): New macro.
25899 (yyparse): Use YYSTACK_ALLOC to allocate stack.
25900 If it was malloc'd, free it.
25901
259021997-05-17 Richard Stallman <rms@gnu.org>
25903
25904 * bison.simple:
25905 Use malloc, if using alloca is troublesome.
25906 (YYSTACK_USE_ALLOCA): New flag macro.
25907 Define it for some systems and compilers.
25908 (YYSTACK_ALLOC): New macro.
25909 (yyparse): Use YYSTACK_ALLOC to allocate stack.
25910 If it was malloc'd, free it.
25911
259121997-04-23 Richard Stallman <rms@gnu.org>
25913
25914 * src/bison.s1:
25915 (alloca) [__hpux]: Always define as __builtin_alloca.
25916
259171997-04-23 Richard Stallman <rms@gnu.org>
25918
25919 * bison.simple:
25920 (alloca) [__hpux]: Always define as __builtin_alloca.
25921
259221997-04-22 Richard Stallman <rms@gnu.org>
25923
25924 * src/bison.s1:
25925 [__hpux]: Include alloca.h (right for HPUX 10)
25926 instead of declaring alloca (right for HPUX 9).
25927
25928 * src/bison.s1 (__yy_memcpy):
25929 Declare arg `count' as unsigned int.
25930 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
25931
259321997-04-22 Richard Stallman <rms@gnu.org>
25933
25934 * bison.simple:
25935 [__hpux]: Include alloca.h (right for HPUX 10)
25936 instead of declaring alloca (right for HPUX 9).
25937
25938 * bison.simple (__yy_memcpy):
25939 Declare arg `count' as unsigned int.
25940 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
25941
259421997-01-03 Richard Stallman <rms@gnu.org>
25943
25944 * src/allocate.c: [__STDC__ or _MSC_VER]:
25945 Declare calloc and realloc to return void *.
25946
259471997-01-02 Richard Stallman <rms@gnu.org>
25948
25949 * src/system.h:
25950 [_MSC_VER]: Include stdlib.h and process.h.
25951 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
25952
25953 * src/main.c (main): Return FAILURE as a value.
25954 (printable_version): Declare arg as int, not char.
25955
259561997-01-02 Richard Stallman <rms@gnu.org>
25957
25958 * Makefile.in (dist):
25959 Explicitly check for symlinks, and copy them.
25960
259611996-12-19 Richard Stallman <rms@gnu.org>
25962
25963 * src/files.c:
25964 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
25965
259661996-12-18 Paul Eggert <eggert@gnu.org>
25967
25968 * src/bison.s1 (yyparse):
25969 If __GNUC__ and YYPARSE_PARAM are both defined,
25970 declare yyparse to have a void * argument.
25971
259721996-12-18 Paul Eggert <eggert@gnu.org>
25973
25974 * bison.simple (yyparse):
25975 If __GNUC__ and YYPARSE_PARAM are both defined,
25976 declare yyparse to have a void * argument.
25977
259781996-12-17 Richard Stallman <rms@gnu.org>
25979
25980 * src/reduce.c (nbits): Add some casts.
25981
259821996-08-12 Richard Stallman <rms@gnu.org>
25983
25984 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
25985
259861996-08-12 Richard Stallman <rms@gnu.org>
25987
25988 * bison.simple: Test _MSDOS as well as _MSDOS_.
25989
259901996-07-31 Richard Stallman <rms@gnu.org>
25991
25992 * src/bison.s1:
25993 [__sun && __i386]: Include alloca.h.
25994
259951996-07-31 Richard Stallman <rms@gnu.org>
25996
25997 * bison.simple:
25998 [__sun && __i386]: Include alloca.h.
25999
260001996-07-30 Richard Stallman <rms@gnu.org>
26001
26002 * src/bison.s1: Comment change.
26003
26004 * src/bison.s1: Test _MSDOS_, not MSDOS.
26005
260061996-07-30 Richard Stallman <rms@gnu.org>
26007
26008 * bison.simple: Comment change.
26009
26010 * bison.simple: Test _MSDOS_, not MSDOS.
26011
260121996-06-01 Richard Stallman <rms@gnu.org>
26013
26014 * 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:
26015 Insert `_' macro around many string constants.
26016
26017 * src/main.c:
26018 Insert `_' macro around many string constants.
26019
26020 (main): Call setlocale, bindtextdomain and textdomain.
26021
26022 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
26023 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
26024 [ENABLE_NLS]: Include libintl.h.
26025 [ENABLE_NLS] (gettext): Define.
26026 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
26027 (N_, PACKAGE, LOCALEDIR): New macros.
26028
260291996-06-01 Richard Stallman <rms@gnu.org>
26030
26031 * POTFILES.in: New file.
26032
26033 * Makefile.in (allocate.o):
26034 Define target explicitly.
26035
26036 * Makefile.in (CFLAGS): Set to @CFLAGS@.
26037 (LDFLAGS): Set to @LDFLAGS@.
26038 (configure): Run autoconf only if preceding `cd' succeeds.
26039 (bison.s1): Redirect output to temporary file then move the
26040 temporary to the target, rather than redirecting directly to bison.s1.
26041 (clean): Remove config.status and config.log.
26042 (distclean): Don't remove config.status here.
26043
260441996-05-12 Richard Stallman <rms@gnu.org>
26045
26046 * src/bison.s1:
26047 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
26048
260491996-05-12 Richard Stallman <rms@gnu.org>
26050
26051 * bison.simple:
26052 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
26053
260541996-05-11 Richard Stallman <rms@gnu.org>
26055
26056 * src/bison.s1 (__yy_memcpy):
26057 Really reorder the args, as was supposedly done on Feb 14 1995.
26058 (yyparse): Calls changed accordingly.
26059
260601996-05-11 Richard Stallman <rms@gnu.org>
26061
26062 * Makefile.in (dist): Don't use $(srcdir).
26063
26064 * bison.simple (__yy_memcpy):
26065 Really reorder the args, as was supposedly done on Feb 14 1995.
26066 (yyparse): Calls changed accordingly.
26067
260681996-01-27 Richard Stallman <rms@gnu.org>
26069
26070 * src/output.c (output_rule_data):
26071 Test YYERROR_VERBOSE in the conditional
26072 around the definition of ttyname.
26073
260741995-12-29 Richard Stallman <rms@gnu.org>
26075
26076 * src/bison.s1:
26077 Fix line numbers in #line commands.
26078
260791995-12-29 Richard Stallman <rms@gnu.org>
26080
26081 * bison.simple:
26082 Fix line numbers in #line commands.
26083
260841995-12-27 Richard Stallman <rms@gnu.org>
26085
26086 * src/bison.s1 (YYPARSE_PARAM_DECL):
26087 In C++, make it always null.
26088 (YYPARSE_PARAM_ARG): New macro.
26089 (yyparse): Use YYPARSE_PARAM_ARG.
26090
260911995-12-27 Richard Stallman <rms@gnu.org>
26092
26093 * bison.simple (YYPARSE_PARAM_DECL):
26094 In C++, make it always null.
26095 (YYPARSE_PARAM_ARG): New macro.
26096 (yyparse): Use YYPARSE_PARAM_ARG.
26097
260981995-11-29 Richard Stallman <rms@gnu.org>
26099
26100 * doc/bison.texinfo:
26101 Describe literal string tokens, %raw, %no_lines, %token_table.
26102
261031995-11-29 Daniel Hagerty <hag@gnu.org>
26104
26105 * doc/bison.texinfo: Fixed update date
26106
261071995-10-16 Richard Stallman <rms@gnu.org>
26108
26109 * src/version.c: Version 1.25.
26110
261111995-10-16 Richard Stallman <rms@gnu.org>
26112
26113 * NEWS: *** empty log message ***
26114
261151995-10-16 Richard Stallman <rms@gnu.org>
26116
26117 * doc/bison.1, doc/bison.rnh:
26118 Add new options.
26119
261201995-10-15 Richard Stallman <rms@gnu.org>
26121
26122 * src/vmsgetargs.c, src/getargs.c:
26123 Added -n, -k, and -raw switches.
26124 (noparserflag, toknumflag, rawtoknumflag): New variables.
26125
26126 * src/symtab.h (SALIAS):
26127 New #define for adding aliases to %token.
26128 (struct bucket): Added `alias' field.
26129
26130 * src/reduce.c (reduce_grammar):
26131 Revise error message.
26132 (print_notices): Remove final `.' from error message.
26133
26134 * src/reader.c (reader_output_yylsp):
26135 New function.
26136 (readgram): Use `#if 0' around code that accepted %command
26137 inside grammar rules: The documentation doesn't allow it,
26138 and it will fail since the %command processors scan for the next %.
26139 (parse_token_decl): Extended the %token
26140 declaration to allow a multi-character symbol as an alias.
26141 (parse_thong_decl): New function.
26142 (read_declarations): Added %thong declarations.
26143 (read_declarations): Handle NOOP to deal with allowing
26144 % declarations as another means to specify the flags.
26145 (readgram): Allow %prec prior to semantics embedded in a rule.
26146 (skip_to_char, read_declarations, copy_definition)
26147 (parse_token_decl, parse_start_decl, parse_type_decl)
26148 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
26149 (get_type_name, copy_guard, copy_action, readgram)
26150 (get_type, packsymbols): Revised most error messages.
26151 Changed `fatal' to `warnxxx' to avoid aborting for error.
26152 Revised and use multiple warnxxx functions to avoid using VARARGS1.
26153 (read_declarations): Improve the error message for
26154 an invalid character. Do not abort.
26155 (read_declarations, copy_guard, copy_action): Use
26156 printable_version to avoid unprintable characters in printed output.
26157 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
26158 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
26159 Allow the type of a non-terminal can be given
26160 more than once, as long as all specifications give the same type.
26161
26162 * src/output.c:
26163 (output_headers, output_trailers, output, output_gram)
26164 (output_rule_data): Implement noparserflag variable.
26165 Implement toknumflag variable.
26166 (output): Call reader_output_yylsp to output LTYPESTR.
26167
26168 * src/main.c (main):
26169 If reader sees an error, don't process the grammar.
26170 (fatals): Updated to not use VARARGS1.
26171 (printable_version, int_to_string, warn, warni, warns, warnss)
26172 (warnsss): New error reporting functions. Avoid abort for error.
26173
26174 * src/lex.h:
26175 Added THONG and NOOP for alias processing.
26176 Added SETOPT for the new code that allows setting options with %flags.
26177
26178 * src/lex.c:
26179 Include getopt.h. Add some extern decls.
26180 (safegetc): New function to deal with EOF gracefully.
26181 (literalchar); new function to deal with reading \ escapes.
26182 (lex): Use literalchar.
26183 (lex): Implemented "..." tokens.
26184 (literalchar, lex, parse_percent_token): Made tokenbuffer
26185 always contain the token. This includes growing the token
26186 buffer while reading an integer.
26187 (parse_percent_token): Replaced if-else statement with percent_table.
26188 (parse_percent_token): Added % declarations as another
26189 way to specify the flags -n, -l, and -r. Also added hooks for
26190 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
26191 major changes to files.c.
26192 (lex) Retain in the incoming stream a character following
26193 an incorrect '/'.
26194 (skip_white_space, lex): Revised most error messages
26195 and changed fatal to warn to avoid aborting.
26196 (percent_table): Added %thong declarations.
26197
26198 * src/gram.h: Comment changes.
26199
26200 * src/files.c (openfiles, open_extra_files, done):
26201 Add faction flag
26202 and actfile file. Handle noparserflag. Both for -n switch.
26203
26204 * src/conflicts.c (resolve_sr_conflict):
26205 Remove use of alloca.
26206
262071995-06-01 Jim Meyering <meyering@gnu.org>
26208
26209 * doc/bison.texinfo: *** empty log message ***
26210
262111995-05-06 Richard Stallman <rms@gnu.org>
26212
26213 * src/bison.s1: Comment change.
26214
262151995-05-06 Richard Stallman <rms@gnu.org>
26216
26217 * bison.simple: Comment change.
26218
262191995-05-03 Richard Stallman <rms@gnu.org>
26220
26221 * src/version.c: Version now 1.24.
26222
26223 * src/bison.s1: Change distribution terms.
26224
26225 * src/version.c: Version now 1.23.
26226
262271995-05-03 Richard Stallman <rms@gnu.org>
26228
26229 * doc/bison.texinfo:
26230 Rewrite "Conditions for Using Bison".
26231 Update version to 1.24.
26232
262331995-05-03 Richard Stallman <rms@gnu.org>
26234
26235 * bison.simple: Change distribution terms.
26236
262371995-02-23 Richard Stallman <rms@gnu.org>
26238
26239 * src/files.c: Test __VMS_POSIX as well as VMS.
26240
262411995-02-14 Jim Meyering <meyering@gnu.org>
26242
26243 * src/bison.s1 (__yy_memcpy):
26244 Renamed from __yy_bcopy to avoid
26245 confusion. Reverse FROM and TO arguments to be consistent with
26246 those of memcpy.
26247
262481995-02-14 Jim Meyering <meyering@gnu.org>
26249
26250 * bison.simple (__yy_memcpy):
26251 Renamed from __yy_bcopy to avoid
26252 confusion. Reverse FROM and TO arguments to be consistent with
26253 those of memcpy.
26254
262551994-11-10 David J. MacKenzie <djm@gnu.org>
26256
26257 * NEWS: reformat
26258
26259 * NEWS: New file.
26260
26261 * Makefile.in (DISTFILES): Include NEWS.
26262
26263 * Makefile.in (DISTFILES):
26264 Include install-sh, not install.sh.
26265
26266 * configure.in: Update to Autoconf v2 macro names.
26267
262681994-10-05 David J. MacKenzie <djm@gnu.org>
26269
26270 * Makefile.in: fix typo
26271
26272 * Makefile.in (prefix, exec_prefix):
26273 Let configure set them.
26274
262751994-09-28 David J. MacKenzie <djm@gnu.org>
26276
26277 * Makefile.in: Set datadir to $(prefix)/share.
26278
262791994-09-15 Richard Stallman <rms@gnu.org>
26280
26281 * src/bison.s1:
26282 Update copyright notice and GPL version.
26283
262841994-09-15 Richard Stallman <rms@gnu.org>
26285
26286 * bison.simple:
26287 Update copyright notice and GPL version.
26288
262891994-07-12 Richard Stallman <rms@gnu.org>
26290
26291 * src/reduce.c, src/reader.c:
26292 entered into RCS
26293
262941994-05-05 David J. MacKenzie <djm@gnu.org>
26295
26296 * Makefile.in: entered into RCS
26297
262981994-03-26 Richard Stallman <rms@gnu.org>
26299
26300 * src/bison.s1: entered into RCS
26301
263021994-03-26 Richard Stallman <rms@gnu.org>
26303
26304 * bison.simple: entered into RCS
26305
263061994-03-25 Richard Stallman <rms@gnu.org>
26307
26308 * src/main.c: entered into RCS
26309
263101994-03-24 Richard Stallman <rms@gnu.org>
26311
26312 * src/conflicts.c: entered into RCS
26313
263141994-01-02 Richard Stallman <rms@gnu.org>
26315
26316 * Makefile.in: *** empty log message ***
26317
263181993-11-21 Richard Stallman <rms@gnu.org>
26319
26320 * src/bison.s1: *** empty log message ***
26321
263221993-11-21 Richard Stallman <rms@gnu.org>
26323
26324 * doc/bison.texinfo: entered into RCS
26325
26326 * doc/bison.texinfo: *** empty log message ***
26327
263281993-11-21 Richard Stallman <rms@gnu.org>
26329
26330 * bison.simple: *** empty log message ***
26331
263321993-10-25 David J. MacKenzie <djm@gnu.org>
26333
26334 * doc/bison.texinfo: *** empty log message ***
26335
263361993-10-19 Richard Stallman <rms@gnu.org>
26337
26338 * src/bison.s1: *** empty log message ***
26339
263401993-10-19 Richard Stallman <rms@gnu.org>
26341
26342 * bison.simple: *** empty log message ***
26343
263441993-10-14 Richard Stallman <rms@gnu.org>
26345
26346 * src/bison.s1: *** empty log message ***
26347
263481993-10-14 Richard Stallman <rms@gnu.org>
26349
26350 * bison.simple: *** empty log message ***
26351
263521993-09-14 David J. MacKenzie <djm@gnu.org>
26353
26354 * doc/bison.texinfo: *** empty log message ***
26355
263561993-09-13 Noah Friedman <friedman@gnu.org>
26357
26358 * Makefile.in: *** empty log message ***
26359
263601993-09-10 Richard Stallman <rms@gnu.org>
26361
26362 * src/conflicts.c: *** empty log message ***
26363
26364 * src/system.h: entered into RCS
26365
263661993-09-10 Richard Stallman <rms@gnu.org>
26367
26368 * doc/bison.1: entered into RCS
26369
263701993-09-06 Noah Friedman <friedman@gnu.org>
26371
26372 * src/version.c: entered into RCS
26373
263741993-09-06 Noah Friedman <friedman@gnu.org>
26375
26376 * Makefile.in: *** empty log message ***
26377
263781993-07-30 David J. MacKenzie <djm@gnu.org>
26379
26380 * Makefile.in: *** empty log message ***
26381
263821993-07-24 Richard Stallman <rms@gnu.org>
26383
26384 * src/bison.s1: *** empty log message ***
26385
263861993-07-24 Richard Stallman <rms@gnu.org>
26387
26388 * bison.simple: *** empty log message ***
26389
263901993-07-08 David J. MacKenzie <djm@gnu.org>
26391
26392 * Makefile.in: *** empty log message ***
26393
263941993-07-04 Richard Stallman <rms@gnu.org>
26395
26396 * src/bison.s1: *** empty log message ***
26397
263981993-07-04 Richard Stallman <rms@gnu.org>
26399
26400 * bison.simple: *** empty log message ***
26401
264021993-06-26 David J. MacKenzie <djm@gnu.org>
26403
26404 * src/getargs.c: entered into RCS
26405
264061993-06-26 David J. MacKenzie <djm@gnu.org>
26407
26408 * doc/bison.texinfo: *** empty log message ***
26409
26410 * doc/bison.1: New file.
26411
264121993-06-25 Richard Stallman <rms@gnu.org>
26413
26414 * src/getargs.c: New file.
26415
264161993-06-16 Richard Stallman <rms@gnu.org>
26417
26418 * src/bison.s1: *** empty log message ***
26419
264201993-06-16 Richard Stallman <rms@gnu.org>
26421
26422 * bison.simple: *** empty log message ***
26423
264241993-06-03 Richard Stallman <rms@gnu.org>
26425
26426 * src/bison.s1: New file.
26427
264281993-06-03 Richard Stallman <rms@gnu.org>
26429
26430 * doc/bison.texinfo: *** empty log message ***
26431
264321993-06-03 Richard Stallman <rms@gnu.org>
26433
26434 * bison.simple: New file.
26435
264361993-05-19 Richard Stallman <rms@gnu.org>
26437
26438 * doc/bison.texinfo: New file.
26439
264401993-05-07 Noah Friedman <friedman@gnu.org>
26441
26442 * Makefile.in: *** empty log message ***
26443
264441993-04-28 Noah Friedman <friedman@gnu.org>
26445
26446 * src/reader.c: *** empty log message ***
26447
264481993-04-23 Noah Friedman <friedman@gnu.org>
26449
26450 * src/alloc.h: entered into RCS
26451
264521993-04-20 David J. MacKenzie <djm@gnu.org>
26453
26454 * src/version.c: *** empty log message ***
26455
26456 * src/files.c, src/allocate.c:
26457 entered into RCS
26458
26459 * src/reader.c: *** empty log message ***
26460
26461 * src/lex.c: entered into RCS
26462
26463 * src/conflicts.c: New file.
26464
26465 * src/symtab.c: entered into RCS
26466
26467 * src/alloc.h: New file.
26468
26469 * src/LR0.c: entered into RCS
26470
264711993-04-18 Noah Friedman <friedman@gnu.org>
26472
26473 * src/reader.c: New file.
26474
26475 * src/version.c: *** empty log message ***
26476
264771993-04-18 Noah Friedman <friedman@gnu.org>
26478
26479 * Makefile.in: *** empty log message ***
26480
264811993-04-17 Noah Friedman <friedman@gnu.org>
26482
26483 * Makefile.in: *** empty log message ***
26484
264851993-04-15 Richard Stallman <rms@gnu.org>
26486
26487 * src/main.c, src/files.c:
26488 New file.
26489
264901993-04-15 Noah Friedman <friedman@gnu.org>
26491
26492 * configure.in: entered into RCS
26493
26494 * configure.in: *** empty log message ***
26495
26496 * configure.in: New file.
26497
264981993-04-14 Richard Stallman <rms@gnu.org>
26499
26500 * Makefile.in: New file.
26501
265021993-04-13 Richard Stallman <rms@gnu.org>
26503
26504 * src/version.c: New file.
26505
265061993-03-25 Richard Stallman <rms@gnu.org>
26507
26508 * src/output.c: entered into RCS
26509
265101992-09-25 Richard Stallman <rms@gnu.org>
26511
26512 * configure.bat: entered into RCS
26513
265141992-06-22 Richard Stallman <rms@gnu.org>
26515
26516 * src/vmsgetargs.c: entered into RCS
26517
265181992-06-22 Richard Stallman <rms@gnu.org>
26519
26520 * doc/bison.rnh: entered into RCS
26521
265221992-04-20 David J. MacKenzie <djm@gnu.org>
26523
26524 * README: entered into RCS
26525
265261992-01-22 Richard Stallman <rms@gnu.org>
26527
26528 * src/machine.h: entered into RCS
26529
265301991-12-21 Richard Stallman <rms@gnu.org>
26531
26532 * src/lalr.c, src/closure.c:
26533 entered into RCS
26534
265351991-12-20 Richard Stallman <rms@gnu.org>
26536
26537 * src/state.h: entered into RCS
26538
265391991-12-18 Richard Stallman <rms@gnu.org>
26540
26541 * src/print.c, src/nullable.c, src/derives.c:
26542 entered into RCS
26543
265441991-11-03 David J. MacKenzie <djm@gnu.org>
26545
26546 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
26547 entered into RCS
26548
265491988-09-09 Richard Stallman <rms@gnu.org>
26550
26551 * src/bison.hairy: entered into RCS
26552
265531987-12-16 Richard Stallman <rms@gnu.org>
26554
26555 * REFERENCES: entered into RCS
dc546b0f 26556
f294a2c2 26557
04098407 26558 -----
f294a2c2 26559
575619af
JD
26560 Copyright (C) 1987-1988, 1991-2011 Free Software Foundation,
26561 Inc.
f294a2c2 26562
04098407
PE
26563 Copying and distribution of this file, with or without
26564 modification, are permitted provided the copyright notice and this
26565 notice are preserved.