]> git.saurik.com Git - bison.git/blob - ChangeLog
java: test and document previous bug fix.
[bison.git] / ChangeLog
1 2011-02-19 Joel E. Denny <joeldenny@joeldenny.org>
2
3 java: test and document previous bug fix.
4 * NEWS (2.5): Document it.
5 * tests/java.at (_AT_DATA_JAVA_CALC_Y): To one of the yyerror
6 invocations, pass a location that spans multiple tokens. Change
7 yyerror to report all of a location rather than just the begin
8 position. Extend yylex and Position to count tokens on a line.
9 Remove getHashCode as it's unused. Update all expected output.
10
11 2011-02-19 Bernd Kiefer <kiefer@dfki.de> (tiny change)
12
13 java: fix location handling bug.
14 Reported at
15 <http://lists.gnu.org/archive/html/bison-patches/2011-02/msg00005.html>.
16 * data/lalr1.java (YYParser::yylloc): For non-empty RHS, fix
17 reversed access to location stack.
18 * THANKS (Bernd Kiefer): Add.
19
20 2011-02-13 Joel E. Denny <joeldenny@joeldenny.org>
21
22 doc: fix some minor inconsistencies.
23 * doc/bison.texinfo (%define Summary): Fix mislabeled entry for
24 lex_symbol.
25 (%code Summary): For consistency with the variable list in the
26 %define Summary, enclose the list of %code qualifiers in a table
27 instead of an itemize.
28
29 2011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
30
31 doc: clean up new subsections in manual.
32 * doc/bison.texinfo (%define Summary): Reword so it reads well as
33 a separate section. For example, add an intro, and move most of
34 the text outside of the @deffn so it is not indented so far.
35 (%code Summary): Likewise.
36 (Table of Symbols): Reword %code entry to match the %code entry in
37 Decl Summary.
38
39 2011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
40
41 doc: finish splitting apart the manual's Decl Summary section.
42 Suggested by Akim Demaille at
43 <http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00013.html>.
44 * doc/bison.texinfo (Decl Summary): Extract most of the %define
45 entry into...
46 (%define Summary): ... this new subsection, and update all
47 cross-references. For readability of the patches, rewriting of
48 the text so it makes sense as a separate subsection will come in a
49 later patch. Moreover, the majority of the text describing the
50 various new LR features should likely move to another new section
51 somewhere.
52
53 2011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
54
55 doc: begin to split apart the manual's Decl Summary section.
56 Discussed in thread starting at
57 <http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00013.html>.
58 * doc/bison.texinfo (Decl Summary): Extract most of the %code
59 entry into...
60 (%code Summary): ... this new subsection, and update all
61 cross-references. For readability of the patches, rewriting of
62 the text so it makes sense as a separate subsection will come in a
63 later patch.
64
65 2011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
66
67 doc: clean up naming of various Bison files.
68 The Bison manual's names for various files associated with a Bison
69 parser has devolved into inconsistency. This patch makes the
70 naming consistent for the most important files. First, it chooses
71 "grammar file" over "input file". The former appears to be more
72 traditional in the Bison manual, and Bison has other input
73 files (skeletons). Second, it chooses "parser implementation
74 file" over names like "parser file", "parser source file", "parser
75 source code file", and "parser output file". The new name makes
76 it clearer where Bison generates the main parser implementation,
77 and it is easily distinguishable from "parser header file".
78 * doc/bison.texinfo: Implement throughout.
79
80 2011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
81
82 doc: give credit to more of Bison's developers.
83 * doc/bison.texinfo (Introduction): Don't imply that only Robert
84 Corbett, Richard Stallman, and Wilfred Hansen have contributed to
85 Bison. However, I don't have time to write a full history, so
86 just point readers to THANKS and ChangeLog.
87
88 2011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
89
90 doc: document experimental features better.
91 * doc/bison.texinfo (Introduction): Say that IELR(1) and canonical
92 LR(1) are experimental. Mention Java. Normally experimental
93 features probably shouldn't be mentioned in the introduction.
94 However, if Bison's limitations to LALR(1), C, and C++ are so
95 important that they should be mentioned here, then it's important
96 to point out that Bison is beginning to escape those limitations.
97 Moreover, these particular experimental features have very little
98 chance of being removed.
99 * src/getargs.c (usage): Say that IELR(1) and canonical LR(1) are
100 experimental.
101
102 2011-01-29 Joel E. Denny <joeldenny@joeldenny.org>
103
104 Do not allow identifiers that start with a dash.
105 This cleans up our previous fixes for a bug whereby Bison
106 discarded `.field' in `$-1.field'. The previous fixes were less
107 restrictive about where a dash could appear in an identifier, but
108 the restrictions were hard to explain. That bug was reported and
109 this final fix was originally suggested by Paul Hilfinger. This
110 also fixes a remaining bug reported by Paul Eggert whereby Bison
111 parses `%token ID -123' as `%token ID - 123' and handles `-' as an
112 identifier. Now, `-' cannot be an identifier. Discussed in
113 threads beginning at
114 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00000.html>,
115 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00004.html>.
116 * NEWS (2.5): Update entry describing the dash extension to
117 grammar symbol names. Also, move that entry before the named
118 references entry because the latter mentions the former.
119 * doc/bison.texinfo (Symbol): Update documentation for symbol
120 names. As suggested by Paul Eggert, mention the effect of periods
121 and dashes on named references.
122 (Decl Summary): Update documentation for unquoted %define values,
123 which, as a side effect, can no longer start with dashes either.
124 * src/scan-code.l (id): Implement.
125 * src/scan-gram.l (id): Implement.
126 * tests/actions.at (Exotic Dollars): Extend test group to exercise
127 bug reported by Paul Hilfinger.
128 * tests/input.at (Symbols): Update test group, and extend to
129 exercise bug reported by Paul Eggert.
130 * tests/named-refs.at (Stray symbols in brackets): Update test
131 group.
132 ($ or @ followed by . or -): Likewise.
133 * tests/regression.at (Invalid inputs): Likewise.
134
135 2011-01-24 Joel E. Denny <joeldenny@joeldenny.org>
136
137 * data/yacc.c: Fix last apostrophe warning from xgettext.
138
139 2011-01-09 Paul Eggert <eggert@cs.ucla.edu>
140
141 Fix minor problems encountered by a fresh bootstrap.
142 * data/glr.c, data/yacc.c: Do not use apostrophes in '#' comments,
143 as they confuse xgettext, which tries to parse them as C character
144 constants in a preprocessor directive.
145 * data/yacc.c (yy_lac): Don't use printf %d format on *yyesp, as
146 that expression might not promote to int on some platforms.
147 * src/parse-gram.c, src/parse-gram.h: Regenerate.
148
149 2011-01-09 Joel E. Denny <joeldenny@joeldenny.org>
150
151 Improve error messages for `$' or `@' followed by `.' or `-'.
152 Previously, for this special case of an invalid reference, the
153 usual "symbol not found in production:" was printed. However,
154 because the symbol name was parsed as the empty string, that
155 message was followed immediately by a newline instead of a symbol
156 name. In reality, this is a syntax error, so the reference is
157 invalid regardless of the symbols actually appearing in the
158 production. Discussed at
159 <http://lists.gnu.org/archive/html/bison-patches/2011-01/msg00012.html>.
160 * src/scan-code.l (parse_ref): Report the above case as a syntax
161 error. Other than that, continue to handle this case like any
162 other invalid reference that Bison manages to parse because
163 "possibly meant" messages can still be helpful to the user.
164 * tests/named-refs.at ($ or @ followed by . or -): New test group.
165
166 2011-01-08 Joel E. Denny <joeldenny@joeldenny.org>
167
168 doc: don't use @acronym.
169 Lately, many GNU packages are dropping it. See
170 <http://lists.gnu.org/archive/html/bison-patches/2011-01/msg00003.html>.
171 * doc/bison.texinfo: Remove all uses.
172
173 2011-01-05 Alex Rozenman <rozenman@gmail.com>
174
175 Do not allow identifiers that start with a negative number.
176 Reported by Paul Hilfinger as a side effect of named references
177 support at
178 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00000.html>.
179 Suggested by Paul Eggert.
180 * src/scan-code.l ({letter}, {id}): Adjust lexical definitions.
181 * src/scan-gram.l ({letter}, {id}): Likewise.
182
183 2011-01-03 Joel E. Denny <joeldenny@joeldenny.org>
184
185 * ChangeLog (2011-01-02): improve description.
186
187 2011-01-03 Joel E. Denny <joeldenny@joeldenny.org>
188
189 maint: don't update copyright years in bootstrap.
190 * .x-update-copyright: Add entry for bootstrap.
191 * bootstrap: Remove 2011 from copyright years. The bootstrap
192 version we're currently using comes from an older version of
193 gnulib.
194 * bootstrap.conf (bootstrap_sync): Add comments explaining this
195 issue.
196
197 2011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
198
199 maint: run "make update-copyright".
200
201 2011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
202
203 maint: prepare to use year ranges in copyright notices.
204 * README (Copyright statements): New section explaining the range
205 notation. The GNU maintainers document requires this explanation:
206 <http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices>.
207 I copied our explanation from coreutils.
208 * build-aux/update-b4-copyright: Revert 2010-06-17 changes that
209 disabled Bison's automated use of ranges.
210 * cfg.mk (update-copyright-env): Likewise.
211
212 2011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
213
214 Correct my email address.
215 * ChangeLog: In all recent entries.
216 * THANKS (Joel E. Denny): Here.
217
218 2010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
219
220 doc: cleanup.
221 * NEWS (2.5): Try to sort entries according to how interesting
222 users might find them.
223
224 2010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
225
226 doc: cleanup.
227 * NEWS (2.5): Make some minor improvements to wording, and format
228 entries more consistently.
229 * doc/bison.texinfo (Language and Grammar): Point out that IELR
230 and canonical LR are experimental features.
231 (Decl Summary): In list of %define variables, make wording more
232 consistent. Improve discussion of using LALR for GLR.
233
234 2010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
235
236 parse.lac: document.
237 * NEWS (2.5): Add entry for LAC, and mention LAC in entry for
238 other corrections to verbose syntax error messages.
239 * doc/bison.texinfo (Decl Summary): Rewrite entries for
240 lr.default-reductions and lr.type to be clearer, to mention
241 %nonassoc's effect on canonical LR, and to mention LAC. Add entry
242 for parse.lac.
243 (Glossary): Add entry for LAC.
244
245 2010-12-11 Joel E. Denny <joeldenny@joeldenny.org>
246
247 parse.lac: implement exploratory stack reallocations.
248 * data/yacc.c: Rename %define variable parse.lac.es-capacity to
249 parse.lac.es-capacity-initial. Accept parse.lac.memory-trace
250 with values of "failures" (default) or "full".
251 (b4_declare_parser_state_variables): Add yyesa, yyes, and
252 yyes_capacity variables.
253 (YYSTACK_USE_ALLOCA): Ignore it if LAC requested.
254 (YYSTACK_ALLOC, YYSTACK_FREE, YYSTACK_ALLOC_MAXIMUM): Define if
255 LAC requested.
256 (YYCOPY_NEEDED): New cpp macro.
257 (YYCOPY): Define if LAC requested.
258 (yy_lac_stack_realloc): New function implementing stack
259 reallocations. Use YYMAXDEPTH for maximum stack size given that
260 the stack should never need to grow larger than the main state
261 stack needs to grow without LAC.
262 (YY_LAC_ESTABLISH): Update yy_lac invocation.
263 (yy_lac): Add arguments for exploratory stack memory data
264 recorded in the main parser. Invoke yy_lac_stack_realloc when
265 reallocation is necessary.
266 (yysyntax_error): Add the same new arguments and pass them to
267 yy_lac.
268 (yypstate_delete): Free yyes if necessary.
269 (yyesa, yyes, yyes_capacity): #define these to yypstate members
270 in the case of push parsing.
271 (yyparse, yypush_parse): Initialize yyes and yyes_capacity.
272 Update yysyntax_error invocations. At yyreturn, free yyes if
273 necessary.
274 * src/parse-gram.y: %define parse.lac full.
275 * tests/input.at (LAC: errors for %define): Extend for
276 parse.lac-memory-trace.
277 * tests/regression.at (LAC: Exploratory stack): Extend to check
278 that stack reallocs happen when expected.
279 (LAC: Memory exhaustion): Update to use YYMAXDEPTH and
280 parse.lac.es-capacity-initial.
281
282 2010-12-11 Joel E. Denny <joeldenny@joeldenny.org>
283
284 parse.lac: implement as %define variable.
285 LAC = lookahead correction. See discussion at
286 <http://lists.gnu.org/archive/html/bison-patches/2009-09/msg00034.html>.
287 However, one point there must be corrected: because of %nonassoc,
288 LAC is *not* always redundant for lr.type=canonical-lr.
289 * data/yacc.c: Accept values of "none" (default) or "full" for
290 parse.lac. Accept %define parse.lac.es-capacity to specify
291 capacity of LAC's temporary exploratory stack. It defaults to 20
292 and, for now, will not grow dynamically.
293 (b4_lac_flag, b4_lac_if): New m4 macros. Evaluate as true for
294 parse.lac!=none.
295 (YYBACKUP): Invoke YY_LAC_DISCARD.
296 (YY_LAC_ESTABLISH, YY_LAC_DISCARD): New cpp macros that invoke
297 yy_lac and track when it needs to be invoked
298 (yy_lac): New function that, given the current stack, determines
299 whether a token can eventually be shifted. Return status mimics
300 yyparse return status.
301 (yysyntax_error): Change yystate argument to yyssp so stack top
302 can be passed to yy_lac. If LAC is requested, build expected
303 token list by invoking yy_lac for every token instead of just
304 checking the current state for lookaheads. Return 2 if yy_lac
305 exhausts memory.
306 (yyparse, yypush_parse): Use local variable yy_lac_established and
307 cpp macros YY_LAC_ESTABLISH and YY_LAC_DISCARD to implement LAC.
308 Update yysyntax_error invocation. Add yyexhaustedlab code if LAC
309 is requested.
310 * tests/conflicts.at (%nonassoc and eof): Extend to check the
311 effect of each of -Dlr.type=canonical-lr and -Dparse.lac=full.
312 (parse.error=verbose and consistent errors): Likewise.
313 (LAC: %nonassoc requires splitting canonical LR states): New test
314 group demonstrating how LAC can fix canonical LR.
315 * tests/input.at (LAC: Errors for %define): New test group.
316 * tests/regression.at (LAC: Exploratory stack): New test group.
317 (LAC: Memory exhaustion): New test group.
318
319 2010-11-21 Joel E. Denny <joeldenny@joeldenny.org>
320
321 build: use gnulib's new bootstrap_sync option.
322 Now, whenever we update bison's copy of gnulib, bootstrap will
323 update itself the next time it's run.
324 * bootstrap: Copy from latest gnulib for bootstrap_sync support.
325 * bootstrap.conf (bootstrap_sync): Set to true.
326 * gnulib: Update to latest so bootstrap is in sync now.
327
328 2010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
329
330 yysyntax_error: fix for consistent error with lookahead.
331 * NEWS (2.5): Document.
332 * data/yacc.c (yysyntax_error): In a verbose syntax error
333 message while in a consistent state with a default action (which
334 must be an error action given that yysyntax_error is being
335 invoked), continue to drop the expected token list, but don't
336 drop the unexpected token unless there actually is no lookahead.
337 Moreover, handle that internally instead of returning 1 to tell
338 the caller to do it. With that meaning of 1 gone, renumber
339 return codes more usefully.
340 (yyparse, yypush_parse): Update yysyntax_error usage. Most
341 importantly, set yytoken to YYEMPTY when there's no lookahead.
342 * data/glr.c (yyreportSyntaxError): As in yacc.c, don't drop the
343 unexpected token unless there actually is no lookahead.
344 * data/lalr1.cc (yy::parser::parse): If there's no lookahead,
345 pass yyempty_ not yyla.type to yysyntax_error_.
346 (yy::parser::yysyntax_error_): Again, don't drop the unexpected
347 token unless there actually is no lookahead.
348 * data/lalr1.java (YYParser::parse): If there's no lookahead,
349 set yytoken to yyempty_ before invoking yysyntax_error.
350 (YYParser::yysyntax_error): Again, don't drop the unexpected
351 token unless there actually is no lookahead.
352 * tests/conflicts.at (parse.error=verbose and consistent
353 errors): Extend test group to further reveal how the previous
354 use of the simple "syntax error" message was too general. Test
355 yacc.c, glr.c, lalr1.cc, and lalr1.java. No longer an expected
356 failure.
357 * tests/java.at (AT_JAVA_COMPILE, AT_JAVA_PARSER_CHECK): Move
358 to...
359 * tests/local.at: ... here.
360 (_AT_BISON_OPTION_PUSHDEFS): Push AT_SKEL_JAVA_IF definition.
361 (AT_BISON_OPTION_POPDEFS): Pop it.
362 (AT_FULL_COMPILE): Extend to handle Java.
363
364 2010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
365
366 yysyntax_error: more preparation for readability of next patch.
367 There are no behavioral changes here.
368 * data/glr.c (yyreportSyntaxError): Reorganize.
369 * data/lalr1.cc (yy::parser::yysyntax_error_): Reorganize.
370 * tests/conflicts.at (parse.error=verbose and consistent errors):
371 Reorganize.
372
373 2010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
374
375 yysyntax_error: prepare for readability of next patches.
376 These are purely whitespace changes that result in ugly code
377 but that make the next couple of patches much easier to read.
378 * data/glr.c (yyreportSyntaxError): Reindent.
379 * data/lalr1.cc (yy::parser::yysyntax_error_): Reindent.
380 * data/lalr1.java (YYParser::yysyntax_error): Reindent.
381 * data/yacc.c (yysyntax_error): Reindent.
382
383 2010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
384
385 Fix memory leak.
386 * src/output.c (prepare_rules): Free temporary array.
387
388 2010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
389
390 yysyntax_error: improve invocation readability.
391 * data/yacc.c (yyparse, yypush_parse): For yysyntax_error
392 invocation, get rid of the while loop, which is misleading
393 because there are really at most two iterations.
394
395 2010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
396
397 * ChangeLog: Correct some errors in previous entries.
398
399 2010-10-17 Joel E. Denny <joeldenny@joeldenny.org>
400
401 maint: re-anchor all .gitignore entries.
402 * bootstrap: Copy from gnulib's latest for the fix to
403 automatically anchor entries it constructs.
404 * gnulib: Update to latest just so it has the same bootstrap.
405 * .gitignore, build-aux/.gitignore, doc/.gitignore:
406 * lib/.gitignore, m4/.gitignore, po/.gitignore:
407 * runtime-po/.gitignore: Re-anchor all entries.
408
409 2010-10-08 Paul Eggert <eggert@cs.ucla.edu>
410
411 Fix portability problem on OpenBSD 4.7.
412
413 Jim Meyering reported this in
414 <http://lists.gnu.org/archive/html/bug-bison/2010-10/msg00007.html>.
415 * data/yacc.c: Use EXIT_SUCCESS as a witness for stdlib.h,
416 not _STDLIB_H. EXIT_SUCCESS has been defined by the standard
417 for quite some time.
418 * src/parse-gram.c, src/parse-gram.h: Regenerate.
419 * tests/regression.at: Tamper with the renamed witness.
420
421 Adjust to recent changes to gnulib bootstrap.
422
423 * .cvsignore, build-aux/.cvsignore, doc/.cvsignore, etc/.cvsignore:
424 * examples/calc++/.cvsignore, lib/.cvsignore, m4/.cvsignore:
425 * po/.cvsignore, runtime-po/.cvsignore, src/.cvsignore:
426 * tests/.cvsignore: Remove; I don't use CVS to maintain Bison
427 anymore and don't know of anybody else who does. If someone needs
428 these files, they can resurrect them.
429 * .gitignore, build-aux/.gitignore, doc/.gitignore, lib/.gitignore:
430 * m4/.gitignore, po/.gitignore, runtime-po/.gitignore:
431 Omit leading '/', since bootstrap omits it.
432 Adjust file names to match current contents better.
433 * bootstrap: Sync from gnulib: this contains the new gnulib_mk_hook
434 installed just for us.
435 * bootstrap.conf (excluded_files): Don't exclude codeset.m4,
436 glibc21.m4, inttypes_h.m4, size_max.m4, xsize.m4, as they are now
437 needed somehow. Don't have time to look into why.
438 (gnulib_modules): Change malloc to malloc-gnu. Do we really assume
439 the GNU malloc behavior, where malloc (0) != NULL unless we're
440 out of storage? If not, we can omit malloc-gnu; but for now I left
441 it in to be safe.
442 (vc_ignore): Remove.
443 (gnulib_mk_hook): New function.
444 * README-hacking: Renamed from HACKING, since gnulib bootstrap now
445 uses that convention.
446
447 2010-09-09 Paul Hilfinger <hilfinger@cs.berkeley.edu>
448
449 * data/glr.c (yySymbol): Define as int to avoid compiler warnings about
450 possible change of value.
451
452 2010-09-08 Paul Hilfinger <hilfinger@cs.berkeley.edu>
453
454 * data/glr.c (yy_reduce_print): Change yyrhsVals to yyvsp to remove
455 compiler errors when using %debug.
456 Add declaration of yylow when locations in use to avoid compilation
457 error.
458 (yyglrReduce): Conditionalize message "Parse ... rejected by rule..."
459 on whether we are in split mode, for consistency with behavior of
460 non-GLR parsing.
461
462 2010-09-01 Akim Demaille <demaille@gostai.com>
463
464 Address GCC warnings about shadowed local variables (yyflag).
465 * data/glr.c (YYCHK): Rename yyflag as yychk_flag.
466 (yyprocessOneStack): Reduce the scope of yyaction, yyconflicts,
467 yyrule, and yyflag.
468
469 2010-08-05 Joel E. Denny <joeldenny@joeldenny.org>
470
471 Version 2.4.3.
472 * NEWS (2.4.3): Set date.
473
474 2010-08-04 Joel E. Denny <joeldenny@joeldenny.org>
475
476 maint: add gettext version to release announcements.
477 Suggested by Paul Hilfinger at
478 <http://lists.gnu.org/archive/html/bison-patches/2010-07/msg00019.html>
479 <http://lists.gnu.org/archive/html/bison-patches/2010-08/msg00002.html>.
480 * cfg.mk (bootstrap-tools): Add gettext.
481
482 2010-08-04 Joel E. Denny <joeldenny@joeldenny.org>
483
484 doc: fix -W and %expect documentation some.
485 * NEWS (2.4.3): Mention that there are documentation fixes.
486 * doc/bison.texinfo (Expect Decl): Make it clear that %expect
487 turns conflicts into errors not warnings.
488 (Shift/Reduce): Likewise.
489 (Bison Options): Don't mention -Wsyntax. It doesn't exist.
490
491 2010-08-01 Joel E. Denny <joeldenny@joeldenny.org>
492
493 -Werror: fix for rules useless in parser after conflicts.
494 * NEWS (2.4.3): Document fix.
495 * src/complain.c (error_message): Extend to handle incomplete
496 error messages so warn and warn_at can be used in more cases.
497 * src/gram.c (grammar_rules_useless_report): Use warn_at so that
498 -Werror is always obeyed.
499 * src/reduce.c (reduce_print): Use warn so that the "warnings
500 being treated as errors" message is printed consistently before
501 the first warning message. This makes testing easier.
502 * tests/local.at (AT_BISON_WERROR_MSG): New macro.
503 (AT_BISON_CHECK_NO_XML): Extend to check -Werror and
504 --warnings=error when warnings appear in bison's stderr.
505
506 2010-07-29 Joel E. Denny <joeldenny@joeldenny.org>
507
508 maint: enable gnits only at stable releases.
509 * configure.ac (AM_INIT_AUTOMAKE): Underscore or dash in a
510 version string should disable gnits. Explain in comments.
511
512 2010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
513
514 i18n: update.
515 * po/POTFILES.in: Add src/graphviz.c.
516
517 2010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
518
519 i18n: fix for gnulib.
520 * po/POTFILES.in: Add remaining gnulib files that have
521 translatable strings.
522
523 2010-07-25 Joel E. Denny <joeldenny@joeldenny.org>
524
525 build: fix our adjustments for gnulib files in lib.
526 * configure.ac: For prepending lib/ to the values of config
527 variables, fix detection of empty values. Also, due to recent
528 gnulib changes, add LIBUNISTRING_UNITYPES_H and
529 LIBUNISTRING_UNIWIDTH_H to the list of those variables.
530
531 2010-07-25 Joel E. Denny <joeldenny@joeldenny.org>
532
533 maint: use announce-gen's new --mail-headers.
534 * HACKING (Announce): Update instructions.
535 * cfg.mk (announcement_Cc_): Define.
536 * configure.ac (AM_GNU_GETTEXT_VERSION): Update to 0.18 as
537 required by latest gnulib.
538 * gnulib: Update to latest.
539
540 2010-07-24 Joel E. Denny <joeldenny@joeldenny.org>
541
542 tests: handle Valgrind that complains about >&-.
543 * tests/output.at (AT_CHECK_OUTPUT): Extend to accept pre-tests.
544 (Output files: -dv >&-): Skip test group if running
545 maintainer-check-valgrind.
546
547 2010-07-23 Paul Hilfinger <hilfingr@EECS.Berkeley.EDU>
548
549 * NEWS: Describe new semantic-predicate feature.
550 * data/c.m4 (b4_predicate_case): New definition.
551 * data/java.m4 (b4_predicate_case): New definition.
552 * data/glr.c (yyimmediate): Add definition.
553 (yydoAction): Remove comment, now obsolete.
554 Do YY_REDUCE_PRINT here.
555 (yyglrReduce): Alter comment to indicate that semantic values
556 need not be deferred.
557 Remove YY_REDUCE_PRINT from here; done in yydoAction.
558 (yyprocessOneStack): Pass immediate flag.
559 Delete stacks rejected by predicates in newly split-off parsers.
560 Change handling of yyerr so that only current stack gets deleted
561 when semantic predicate fails.
562 (yyfillin): Don't crash if a semantic value is unresolved (as may
563 happen in predicate rules).
564 Copy lr state as well in debugging mode.
565 Update comment on setting of yysval to include yyloc as well.
566 (yy_reduce_print): Add yynormal argument. Perform fillin properly.
567 Report unresolved RHS values.
568 (yyimmediate): New table.
569 * src/gram.h (struct rule): Add is_predicate field.
570 * src/output.c (user_actions_output): Use b4_predicate_case for
571 predicates.
572 (prepare_symbols): Output yyimmediate.
573 * src/scan-gram.l: Add %? token, SC_PREDICATE state.
574 * src/scan-code.l (code_props_rule_action_init): Add is_predicate
575 argument.
576 * src/scan-code.h (struct code_props): Add is_predicate field.
577 (code_props_rule_action_init): New interface.
578 * src/parse-gram.y (%?{...}): New token.
579 (rhs): Add %?{...} rule.
580 * src/parse-gram.c: Regenerate.
581 * src/parse-gram.h: Regenerate.
582 * src/reader.c (grammar_current_rule_action_append): Add
583 immediate argument.
584 (grammar_midrule_action): Use new interface for
585 code_props_rule_action_init.
586 (grammar_current_rule_action_append): Ditto.
587 (packgram): Transfer is_predicate value.
588 * src/reader.h (grammar_current_rule_action_append): New interface.
589 * doc/bison.texinfo: Document semantic predicates (%?).
590
591 * data/glr.c (yylhsNonterm, yyisDefaultedState,yyDefaultAction)
592 (yygetLRActions,yynewGLRStackItem,yyaddDeferredAction,yyinitStateSet)
593 (yyinitGLRStack,yyexpandGLRStack,yyupdateSplit,yymarkStackDeleted)
594 (yyundeleteLastStack,yyglrShift,yyglrShiftDefer,yydoAction,yyglrReduce)
595 (yyidenticalOptions,yymergeOptionSets,yyresolveStates,yyresolveAction)
596 (yyresolveLocations,yyresolveValue,yyreducePrint): Update parameter
597 names in comments and mention all parameters.
598 (struct yyGLRState): Fix description of yyposn field.
599 (yyresolveLocations): Correct comment so as not to imply action when
600 yyn1==0.
601
602 2010-06-17 Paul Eggert <eggert@cs.ucla.edu>
603
604 Update from GFDL GFDL 1.2 to 1.3.
605 * doc/bison.texinfo: Update GFDL version number.
606 * doc/fdl.texi: Update to version 1.3, taken from:
607 http://www.gnu.org/licenses/fdl.texi
608
609 Do not use date ranges in copyright notices.
610 See http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices
611
612 * HACKING, Makefile.am, NEWS, PACKAGING, README, README-alpha:
613 * TODO, bootstrap, bootstrap.conf:
614 * build-aux/update-b4-copyright, cfg.mk, configure.ac:
615 * data/README, data/bison.m4, data/c++-skel.m4, data/c++.m4:
616 * data/c-skel.m4, data/c.m4, data/glr.c, data/glr.cc:
617 * data/java-skel.m4, data/java.m4, data/lalr1.cc:
618 * data/lalr1.java, data/local.mk, data/location.cc:
619 * data/stack.hh, data/variant.hh, data/xslt/bison.xsl:
620 * data/xslt/xml2dot.xsl, data/xslt/xml2text.xsl:
621 * data/xslt/xml2xhtml.xsl, data/yacc.c, djgpp/Makefile.maint:
622 * djgpp/README.in, djgpp/config.bat, djgpp/config.sed:
623 * djgpp/config.site, djgpp/config_h.sed, djgpp/djunpack.bat:
624 * djgpp/local.mk, djgpp/subpipe.c, djgpp/subpipe.h:
625 * djgpp/testsuite.sed, doc/bison.texinfo, doc/local.mk:
626 * doc/refcard.tex, etc/README, etc/bench.pl.in, etc/local.mk:
627 * examples/calc++/Makefile.am, examples/extexi:
628 * examples/local.mk, lib/abitset.c, lib/abitset.h:
629 * lib/bbitset.h, lib/bitset.c, lib/bitset.h:
630 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
631 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
632 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
633 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
634 * lib/libiberty.h, lib/local.mk, lib/main.c, lib/timevar.c:
635 * lib/timevar.def, lib/timevar.h, lib/vbitset.c:
636 * lib/vbitset.h, lib/yyerror.c, m4/bison-i18n.m4:
637 * m4/c-working.m4, m4/cxx.m4, m4/subpipe.m4, m4/timevar.m4:
638 * src/AnnotationList.c, src/AnnotationList.h:
639 * src/InadequacyList.c, src/InadequacyList.h, src/LR0.c:
640 * src/LR0.h, src/Sbitset.c, src/Sbitset.h, src/assoc.c:
641 * src/assoc.h, src/closure.c, src/closure.h, src/complain.c:
642 * src/complain.h, src/conflicts.c, src/conflicts.h:
643 * src/derives.c, src/derives.h, src/files.c, src/files.h:
644 * src/flex-scanner.h, src/getargs.c, src/getargs.h:
645 * src/gram.c, src/gram.h, src/graphviz.c, src/ielr.c:
646 * src/ielr.h, src/lalr.c, src/lalr.h, src/local.mk:
647 * src/location.c, src/location.h, src/main.c:
648 * src/muscle-tab.c, src/muscle-tab.h, src/named-ref.c:
649 * src/named-ref.h, src/nullable.c, src/nullable.h:
650 * src/output.c, src/output.h, src/parse-gram.y:
651 * src/print-xml.c, src/print-xml.h, src/print.c, src/print.h:
652 * src/print_graph.c, src/print_graph.h, src/reader.c:
653 * src/reader.h, src/reduce.c, src/reduce.h, src/relation.c:
654 * src/relation.h, src/scan-code.h, src/scan-code.l:
655 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
656 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
657 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
658 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
659 * tests/actions.at, tests/atlocal.in, tests/c++.at:
660 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
661 * tests/existing.at, tests/glr-regression.at:
662 * tests/headers.at, tests/input.at, tests/java.at:
663 * tests/local.at, tests/local.mk, tests/named-refs.at:
664 * tests/output.at, tests/push.at, tests/reduce.at:
665 * tests/regression.at, tests/sets.at, tests/skeletons.at:
666 * tests/synclines.at, tests/testsuite.at, tests/torture.at:
667 Don't use date ranges in copyright notices.
668
669 2010-05-11 Akim Demaille <demaille@gostai.com>
670
671 lalrl1.cc: give a chance to user defined YYLLOC_DEFAULT.
672 * data/lalr1.cc (YYLLOC_DEFAULT): Move its definition from the
673 header file to the implementation file, after the user %code
674 sections.
675 * NEWS (2.5): Document this.
676
677 2010-05-11 Akim Demaille <demaille@gostai.com>
678
679 doc: please Emacs.
680 * doc/bison.texinfo (Local Variables): Move this after the
681 LocalWords, since the latter are looked for in the whole document,
682 while the former are looked for only at its end.
683 Require american spell checking.
684
685 2010-05-10 Akim Demaille <demaille@gostai.com>
686
687 doc: fix lalr1.cc documentation.
688 * doc/bison.texinfo (C++ Scanner Interface): Fix yylex signature.
689 (C++ Bison Interface): Fix lalr1.cc skeleton name.
690 (C++ Parser Interface): Fix semantic_type and location_type names.
691 Document yy::parser::token.
692 Reported by Jerry Quinn.
693
694 2010-05-10 Akim Demaille <demaille@gostai.com>
695
696 c++: use YYRHSLOC.
697 * data/lalr1.cc (YYRHSLOC): New.
698 (YYLLOC_DEFAULT): Use it.
699 * data/glr.cc: If location_type was user defined, do not include
700 location.hh, and do not produce location.hh and position.hh.
701 * tests/calc.at (YYLLOC_DEFAULT): Use YYRHSLOC.
702 Check that glr.cc supports user defined location_type.
703 * NEWS: Document this.
704
705 2010-05-07 Akim Demaille <demaille@gostai.com>
706
707 doc: fix typo.
708 * tests/synclines.at: here.
709
710 2010-05-04 Akim Demaille <demaille@gostai.com>
711
712 tests: enhance AT_SYNCLINES_COMPILE.
713 * tests/synclines.at (AT_SYNCLINES_COMPILE): More distcc patterns.
714 (AT_TEST_SYNCLINE): Remove GCC 4.5 protection which is already
715 taken care of in AT_SYNCLINES_COMPILE.
716
717 2010-05-04 Akim Demaille <demaille@gostai.com>
718
719 lalr1.cc: don't generate location.hh when location_type is defined
720 * data/bison.m4 (b4_percent_define_get): Accept a default value.
721 * data/c++.m4: Do not provide a default value for the %define
722 variable location_type, rather, use b4_percent_define_get with a
723 default argument where its value is needed.
724 * data/lalr1.cc: Do not load location.cc (which outputs both
725 location.hh and position.hh) if the user defined location_type.
726 Do not include location.hh either.
727
728 2010-05-04 Akim Demaille <demaille@gostai.com>
729
730 lalr1.cc: minor refactoring.
731 * data/lalr1.cc: Don't issue empty namespaces.
732
733 2010-05-04 Akim Demaille <demaille@gostai.com>
734
735 tests: fix %printer.
736 Currently, there is no check that %printer ... <foo> (nor
737 %destructor) is about an existing <foo> type. This C++ test had
738 it wrong (<::std::string> vs. <std::string>).
739
740 * tests/c++.at (AT_CHECK_VARIANTS): In list.yy, redefine the
741 pretty-printing of lists into something better for parser traces.
742 Update the expected output.
743 Fix correspondance between %type/%token and %printer.
744
745 2010-05-04 Akim Demaille <demaille@gostai.com>
746
747 lalr1.cc: location_type: make sure we don't depend on loc.(begin|end).
748 * tests/calc.at (Span): Instead of begin/end, as in the built-in
749 location class, use first and last.
750 Define YYLLOC_DEFAULT to adjust to these changes.
751 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Adjust to the
752 location_type changes.
753
754 2010-05-01 Joel E. Denny <joeldenny@joeldenny.org>
755
756 tests: fix maintainer-xml-check.
757 * data/xslt/xml2dot.xsl (xsl:template match="bison-xml-report"):
758 Update output to include comments now produced by --graph.
759 (xsl:template match="automaton"): As for --graph, name the
760 digraph after the grammar file.
761 * src/print-xml.c (escape_bufs): Enlarge array.
762 (print_xml): Add bug-report and url attributes to
763 bison-xml-report element.
764
765 2010-05-01 Joel E. Denny <joeldenny@joeldenny.org>
766
767 In DOT output, convert from "/*" comments to "//" comments.
768 This handles the possibility that a "*/" might appear in
769 variable portions of those comments at some point in the future.
770 * src/graphviz.c (start_graph): Implement.
771
772 2010-04-30 Joel E. Denny <joeldenny@joeldenny.org>
773
774 Document that undefined %prec identifier warnings will remain.
775 * NEWS (2.4.3): Here.
776 (2.4.2): Here.
777
778 2010-04-30 Joel E. Denny <joeldenny@joeldenny.org>
779
780 Revert 2009-12-30 change for undefined %prec token complaints.
781 That is, keep them as warnings because that should be sufficient
782 to satisfy POSIX without creating backward compatibility issues.
783 Suggested by Richard Stallman at
784 <http://lists.gnu.org/archive/html/bison-patches/2010-03/msg00033.html>.
785 * NEWS (2.5): Remove mention of complaint.
786 * src/reader.c (grammar_rule_check): Convert complaint back to
787 warning.
788 * tests/input.at (%prec's token must be defined): Update.
789
790 2010-04-25 Joel E. Denny <joeldenny@joeldenny.org>
791
792 build: don't require src/bison during bootstrap.
793 Suggested by Eric Blake at
794 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00003.html>.
795 * bootstrap.conf (bootstrap_epilogue): New function to make sure
796 src/parse-gram.[ch] are stamped later than src/parse-gram.y.
797
798 2010-04-25 Joel E. Denny <joeldenny@joeldenny.org>
799
800 i18n: fix untranslatable string.
801 Reported by Goran Uddeborg at
802 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00000.html>.
803 * src/muscle-tab.c (muscle_percent_define_insert): Here.
804
805 2010-04-13 Akim Demaille <demaille@gostai.com>
806
807 tests: calc: minor refactoring.
808 * tests/calc.at (_AT_DATA_CALC_Y): Simplify yylex.
809
810 2010-04-13 Akim Demaille <demaille@gostai.com>
811
812 tests: calc: simplify location management.
813 * tests/local.at (AT_LOC_PUSHDEF, AT_LOC_POPDEF): New.
814 (_AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS): Use them to
815 define the appropriate AT_LOC accessors.
816 * tests/calc.at: Use AT_LOC accessors.
817
818 2010-04-13 Akim Demaille <demaille@gostai.com>
819
820 test location_type.
821 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS):
822 Define AT_LOCATION_TYPE_IF.
823 (_AT_BISON_OPTION_POPDEFS): Undefine AT_LOCATION_TYPE_IF.
824 * tests/calc.at (_AT_DATA_CALC_Y): When %define location_type is
825 used, provide a user location type and use it.
826 (Simple LALR1 C++ Calculator): Add a test case for location_type.
827
828 2010-04-13 Akim Demaille <demaille@gostai.com>
829
830 tests: check fclose's return value.
831 * tests/calc.at (_AT_DATA_CALC_Y): Check fclose's return status.
832
833 2010-04-13 Akim Demaille <demaille@gostai.com>
834
835 tests: don't depend on the actual location type.
836 * tests/calc.at: Use yy::parser::location_type rather than
837 yy::location, since the former is always right, and might point to
838 another type than the latter.
839
840 2010-04-13 Akim Demaille <demaille@gostai.com>
841
842 formatting changes.
843 * tests/calc.at: Formatting changes.
844
845 2010-04-13 Akim Demaille <demaille@gostai.com>
846
847 lalr1.cc: remove useless forward declaration.
848 * data/lalr1.cc: Include location.hh before stack.hh.
849 Remove the useless forward declarations of position and location.
850 Reported by Chris Morley.
851 * data/glr.cc: Likewise.
852
853 2010-04-11 Joel E. Denny <joeldenny@joeldenny.org>
854
855 * NEWS (2.4.3): Mention fix for Sun Studio C++.
856
857 2010-04-10 Joel E. Denny <joeldenny@joeldenny.org>
858
859 tests: fix for newer Sun Studio C++.
860 Reported by Dagobert Michelsen at
861 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00023.html>.
862 * THANKS (Dagobert Michelsen): Add.
863 * configure.ac (AC_PREREQ): Set to 2.64 so we get the latest
864 Autoconf macro for handling the restrict keyword.
865 * gnulib: Update to latest, which no longer overrides that macro
866 from Autoconf.
867
868 2010-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
869
870 portability: fix pointer arithmetic to conform to C standard.
871 Reported by Tys Lefering at
872 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00035.html>.
873 This fix is already implemented in glr.c and does not apply to
874 lalr1.java.
875 * data/lalr1.cc (yy::parser::parse): Increase size of
876 yyerror_range and adjust subscripting so you don't have to
877 subtract one from the beginning of the array.
878 * data/yacc.c (b4_declare_parser_state_variables,
879 yyparse, yypush_parse): Likewise.
880
881 2010-04-05 Akim Demaille <demaille@gostai.com>
882
883 remove useless include.
884 * src/graphviz.h: Don't include stdbool.h.
885
886 2010-04-05 Akim Demaille <demaille@gostai.com>
887
888 graph: sign the output file.
889 * src/graphviz.c (start_graph): Issue comments about Bison.
890 Suggested by Tys Lefering.
891
892 2010-03-31 Joel E. Denny <jdenny@ces.clemson.edu>
893
894 portability: fix test suite for GCC 4.5's new #error message.
895 Reported by Tys Lefering at
896 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00030.html>.
897 * NEWS (2.4.3): Mention.
898 * tests/synclines.at (AT_TEST_SYNCLINE): Implement.
899
900 2010-03-30 Akim Demaille <demaille@gostai.com>
901
902 fix comments.
903 * src/graphviz.h: Add missing license notice.
904 Document.
905
906 2010-03-25 Akim Demaille <demaille@gostai.com>
907
908 tests: fix 250: parse.error=verbose overflow.
909 * tests/regression.at (parse.error=verbose overflow): Avoid the
910 double inclusion of stdlib.h as it triggers hard errors.
911
912 2010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
913
914 portability: fix for BSD make.
915 Reported by Johan van Selst at
916 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00016.html>.
917 * tests/local.mk ($(TESTSUITE)): Qualify package.m4 in
918 this dependency list as in package.m4's target rule.
919
920 2010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
921
922 portability: fix spawning on at least FreeBSD 8 and FreeBSD 9.
923 Reported by Johan van Selst at
924 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00014.html>.
925 * NEWS (2.4.3): New.
926 * THANKS (Johan van Selst): Add.
927 * etc/prefix-gnulib-mk (prefix): Adjust regex for makefile
928 targets so that gnulib's new c++defs.h is matched.
929 * gnulib: Update to latest.
930
931 2010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
932
933 maint: update for changes to gnulib's announce-gen.
934 * HACKING (Announce): RELEASE_TYPE=major must now be written
935 RELEASE_TYPE=stable.
936
937 2010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
938
939 Version 2.4.2.
940 * NEWS (2.4.2): Set version and date. For the recent test suite
941 portability fixes, don't be so optimistic about their success
942 given the lack of feedback on the affected platforms.
943
944 2010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
945
946 tests: fix maintainer-xml-check for recent changes.
947 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Use
948 AT_BISON_CHECK_NO_XML rather than AT_BISON_CHECK because an
949 output file whose name conflicts with a previous output file
950 is now never generated.
951
952 2010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
953
954 portability: fix several issues with M4 subprocess.
955
956 M4's output pipe was not being drained upon fatal errors during
957 scan_skel. As a result, broken-pipe messages from M4 were seen
958 on at least AIX, HP-UX, Solaris, and RHEL4, and this caused a
959 failure in the test suite. The problem was that, on platforms
960 where the default disposition for SIGPIPE is ignore instead of
961 terminate, M4 sometimes saw fwrite fail with errno=EPIPE and
962 then reported it. However, there's some sort of race condition,
963 because the new test group occasionally succeeded.
964 Reported by Albert Chin at
965 <http://lists.gnu.org/archive/html/bug-bison/2010-02/msg00004.html>.
966
967 There were also problems with the test suite livelocking on
968 Tru64 5.1b. Reported by Didier Godefroy at
969 <http://lists.gnu.org/archive/html/bug-bison/2009-05/msg00005.html>.
970 Switching to create_pipe_bidi suggested by Akim Demaille.
971
972 To attempt to solve both of these problems, switch to gnulib's
973 create_pipe_bidi and register M4 process as a slave. Along the
974 way, clean up file name conflict handling, which was affected by
975 the broken-pipe problem before the switch.
976 * NEWS (2.4.2): Document.
977 * THANKS (Didier Godefroy): Add.
978 * bootstrap.conf (gnulib_modules): Add pipe.
979 * gnulib: Update to latest to make sure we have all the latest
980 fixes.
981 * lib/local.mk (lib_libbison_a_SOURCES): Remove subpipe.h and
982 subpipe.c.
983 * po/POTFILES.in (lib/subpipe.c): Remove.
984 * src/files.c (compute_output_file_names): Update invocations
985 of output_file_name_check.
986 (output_file_name_check): In the case that the grammar file
987 would be overwritten, use complain instead of fatal, but replace
988 the output file name with /dev/null. Use the /dev/null solution
989 for the case of two conflicting output files as well because it
990 seems safer in case Bison one day tries to open both files at
991 the same time.
992 * src/files.h (output_file_name_check): Update prototype.
993 * src/output.c (output_skeleton): Use create_pipe_bidi and
994 wait_subprocess. Assert that scan_skel completely drains the
995 pipe.
996 * src/scan-skel.l (at_directive_perform): Update
997 output_file_name_check invocation.
998 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Check that the
999 grammar file actually isn't overwritten.
1000 (Conflicting output files: -o foo.y): Update expected output.
1001 * tests/skeletons.at (Fatal errors but M4 continues producing
1002 output): New test group.
1003
1004 2010-02-04 Joel E. Denny <jdenny@ces.clemson.edu>
1005
1006 Update POTFILES.
1007 * HACKING (Release Procedure): Add reminder about keeping
1008 POTFILES files up-to-date.
1009 * po/POTFILES.in (src/muscle-tab.c, src/scan-skel.l): Add.
1010
1011 2010-02-01 Joel E. Denny <jdenny@clemson.edu>
1012
1013 Code cleanup.
1014 * tests/atlocal.in (abs_top_srcdir): Remove shell variable,
1015 which is already defined in atconfig.
1016
1017 2010-01-22 Joel E. Denny <jdenny@clemson.edu>
1018
1019 tests: fix missing include caught by g++ 4.4.1.
1020 Reported by Tys Lefering.
1021 * HACKING (Release checks): Add note about trying a recent GCC.
1022 * tests/regression.at (_AT_DATA_DANCER_Y): For C++, include
1023 cstdlib for abort.
1024 (_AT_DATA_EXPECT2_Y): Likewise.
1025
1026 2010-01-21 Joel E. Denny <jdenny@clemson.edu>
1027
1028 * cfg.mk (gnulib_dir): Assume gnulib is a subdirectory.
1029
1030 2010-01-21 Joel E. Denny <jdenny@clemson.edu>
1031
1032 maint: automate PACKAGE_COPYRIGHT_YEAR update, and update it.
1033 * HACKING (Release Procedure): Update notes on copyright years.
1034 * Makefile.am (update-package-copyright-year): New target rule.
1035 * build-aux/update-package-copyright-year: New file.
1036 * cfg.mk (update-copyright): Add update-package-copyright-year
1037 as a dependency.
1038
1039 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
1040
1041 * bootstrap: Import improvements from latest gnulib.
1042
1043 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
1044
1045 build: require Automake 1.11.1 to avoid a security flaw.
1046 * HACKING (Release Procedure): Don't document Automake security
1047 flaw here.
1048 * configure.ac (AM_INIT_AUTOMAKE): Require 1.11.1, and explain
1049 why here.
1050
1051 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
1052
1053 gnulib: update to latest.
1054
1055 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
1056
1057 ChangeLog (2006-09-15): add Odd Arild Olsen's role for push.c.
1058
1059 2010-01-15 Joel E. Denny <jdenny@clemson.edu>
1060
1061 Thank the developer of the initial push parser implementation.
1062 This unfortunate oversight is several years old.
1063 * THANKS (Odd Arild Olsen): Add.
1064
1065 2010-01-04 Joel E. Denny <jdenny@clemson.edu>
1066
1067 Fix some comments concerning LR(0) versus LALR(1).
1068
1069 Stop equating LR(0) with nondeterminism and LALR(1) with
1070 determinism. That is, if all states are consistent, then LR(0)
1071 tables are deterministic. On the other hand, LALR(1) tables
1072 might be nondeterministic before conflict resolution, and GLR
1073 permits LALR(1) tables to remain nondeterministic.
1074 * src/LR0.c, src/LR0.h: Here.
1075 * src/lalr.c, src/lalr.h: Here.
1076 * src/main.c (main): Here.
1077 * src/state.c, src/state.h: Here.
1078
1079 * src/ielr.h (ielr): In preconditions, expect LR(0) not LALR(1)
1080 parser tables.
1081
1082 2010-01-04 Joel E. Denny <jdenny@clemson.edu>
1083
1084 maint: run "make update-copyright"
1085
1086 2009-12-30 Joel E. Denny <jdenny@clemson.edu>
1087
1088 POSIX: complain if %prec's token was not defined.
1089 * NEWS (2.5): Document.
1090 * src/reader.c (grammar_rule_check): Convert warning to
1091 complaint.
1092 * tests/input.at (%prec's token must be defined): Update.
1093
1094 2009-12-30 Joel E. Denny <jdenny@clemson.edu>
1095
1096 POSIX: warn if %prec's token was not defined.
1097 Reported by Florian Krohm at
1098 <http://lists.gnu.org/archive/html/bug-bison/2009-12/msg00005.html>.
1099 * NEWS (2.4.2): Document.
1100 * src/reader.c (grammar_rule_check): Implement.
1101 (grammar_current_rule_prec_set): Add comments explaining that we
1102 here assume a %prec identifier is a token, but we still manage
1103 to support POSIX.
1104 * tests/input.at (%prec's token must be defined): New test
1105 group.
1106
1107 2009-12-31 Joel E. Denny <jdenny@clemson.edu>
1108
1109 * HACKING (Release Procedure): Recommend a secure automake.
1110
1111 2009-12-29 Joel E. Denny <jdenny@clemson.edu>
1112
1113 portability: `<' and `>' are not always defined on addresses.
1114 Specifically, don't sort objects by their memory addresses when
1115 they're not allocated in the same array or other object. Though
1116 I haven't found a test case where that fails on my platform, C
1117 says the behavior is undefined.
1118 * src/AnnotationList.c (AnnotationList__insertInto): Remove
1119 FIXME. Use new id field of InadequacyList nodes rather than
1120 their memory addresses when sorting.
1121 (AnnotationList__compute_from_inadequacies): Add
1122 inadequacy_list_node_count argument to pass to
1123 InadequacyList__new_conflict.
1124 * src/AnnotationList.h
1125 (AnnotationList__compute_from_inadequacies): Update prototype
1126 and documentation for new argument.
1127 * src/InadequacyList.c (InadequacyList__new_conflict): Add
1128 node_count argument and use it to assign a unique ID.
1129 * src/InadequacyList.h (InadequacyListNodeCount): New typedef.
1130 (InadequacyList): Add id field.
1131 (InadequacyList__new_conflict): Update prototype and
1132 documentation for new argument.
1133 * src/ielr.c (ielr_compute_annotation_lists): Update
1134 AnnotationList__compute_from_inadequacies invocation.
1135
1136 2009-12-20 Joel E. Denny <jdenny@clemson.edu>
1137
1138 Fix handling of yychar manipulation in user semantic actions.
1139 The problem was that yacc.c didn't always update the yychar
1140 translation afterwards. However, other skeletons appear to be
1141 fine. glr.c appears to already translate yychar before every
1142 use. lalr1.cc does not define yychar and does not document its
1143 replacement, yyla, for users. It does provide yyclearin, but
1144 that does not manipulate yyla and thus requires no translation
1145 update. In lalr1.java, yychar is out of scope during semantic
1146 actions.
1147 * NEWS (2.5): Document.
1148 * data/yacc.c (YYBACKUP): Don't bother translating yychar into
1149 yytoken here.
1150 (yyparse, yypush_parse): Instead, translate before every use of
1151 yytoken, and add comments explaining this approach.
1152 * tests/actions.at (Destroying lookahead assigned by semantic
1153 action): New test group checking that translation happens before
1154 lookahead destructor calls at parser return. Previously,
1155 incorrect destructors were called.
1156 * tests/conflicts.at (parse.error=verbose and consistent
1157 errors): New test group checking that translation happens at
1158 syntax error detection before the associated verbose error
1159 message and the associated lookahead destructor calls. While
1160 the destructor call is fixed by this patch, the verbose error
1161 message is currently incorrect due to another bug (see
1162 comments in test group), so this is an expected failure for now.
1163
1164 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
1165
1166 YYFAIL: warn about uses and remove from lalr1.java.
1167 * NEWS (2.5): Document.
1168 * data/lalr1.java (YYParser::YYFAIL): Rename to YYERRLAB,
1169 and make it private. Update all uses.
1170 * src/scan-code.l (SC_RULE_ACTION): Implement warning.
1171
1172 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
1173
1174 YYFAIL: deprecate.
1175 * NEWS (2.4.2): Document deprecation and the phase-out plan.
1176 * data/lalr1.java (YYParser::YYFAIL): Add comment about
1177 deprecation.
1178 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
1179 YYFAIL from GCC cpp's -Wunused-macros.
1180 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
1181 documentation.
1182 (LocalWords): Remove YYFAIL.
1183
1184 2009-12-20 Joel E. Denny <jdenny@clemson.edu>
1185
1186 tests: cleanup.
1187 * tests/c++.at (Syntax error discarding no lookahead): Don't
1188 ignore stderr. Instead, eliminate remaining warnings.
1189
1190 2009-12-18 Joel E. Denny <jdenny@clemson.edu>
1191
1192 lalr1.cc: don't discard non-existent lookahead on syntax error.
1193 * data/lalr1.cc (yy::parser::parse): Check yyempty first.
1194 * tests/c++.at (Syntax error discarding no lookahead): New test
1195 group.
1196
1197 2009-12-17 Joel E. Denny <jdenny@clemson.edu>
1198
1199 Code cleanup.
1200 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
1201 function, which is no longer used.
1202
1203 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
1204
1205 Add gcc's -Wundef to test suite and fix another warning from it.
1206 * NEWS (2.4.2): Update description of -Wundef fix.
1207 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
1208 (WARN_CFLAGS_TEST): New substitution.
1209 * data/glr.c: Avoid warning about __STRICT_ANSI__.
1210 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
1211 WARN_CFLAGS.
1212 (NO_WERROR_CFLAGS): Likewise.
1213 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
1214
1215 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
1216
1217 * data/yacc.c: Reformat m4 a little.
1218
1219 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
1220
1221 Document gcc -Wundef fix.
1222 * NEWS (2.4.2): Here.
1223 * THANKS (Jonathan Nieder): Add.
1224
1225 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
1226
1227 Simplify y.tab.c when location tracking is disabled.
1228 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
1229 tracking is not enabled. Instead, unconditionally define
1230 YY_LOCATION_PRINT as a no-op for backward compatibility.
1231
1232 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
1233
1234 Avoid warnings from gcc -Wundef y.tab.c.
1235 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
1236 defined before using them.
1237 * data/lalr1.cc: Likewise.
1238 * data/yacc.c: Likewise.
1239
1240 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
1241
1242 autoconf: update to latest for fix of M4 detection.
1243 Reported by Eric Blake.
1244 * submodules/autoconf: Update.
1245
1246 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
1247
1248 portability: use -DGNULIB_POSIXCHECK.
1249 Reported by Eric Blake. See discussions at
1250 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
1251 and
1252 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
1253 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
1254 * bootstrap.conf (gnulib_modules): Add all the printf modules
1255 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
1256 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
1257 (excluded_files): Remove m4/printf-posix.m4.
1258 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
1259 lib/libbison.a so gnulib libraries can be linked.
1260
1261 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
1262
1263 gnulib: update for fix of fprintf-posix, which we'll use soon.
1264 * etc/prefix-gnulib-mk (prefix): Adjust regex for make file
1265 targets so that gnulib's new arg-nonnull.h and link-warning.h
1266 are matched.
1267 * gnulib: Update.
1268
1269 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
1270
1271 Enable assertion output and --disable-assert for configure.
1272 * bootstrap.conf (gnulib_modules): Add assert module.
1273 * src/system.h (aver): Define as assert, and summarize the
1274 discussion on this issue.
1275
1276 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
1277
1278 Expand GLR acronym in summary of Bison.
1279 Based on discussion with Akim Demaille starting at
1280 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
1281 * doc/bison.texinfo (Introduction): Here.
1282 * src/getargs.c (usage): Here.
1283
1284 2009-10-03 Alex Rozenman <rozenman@gmail.com>
1285
1286 Document named references.
1287 * doc/bison.texinfo (Actions): Add new example and xref to
1288 Using Named References node.
1289 (Using Named References): New node.
1290
1291 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
1292
1293 cleanup.
1294 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
1295 of char*.
1296 (Sbitset__isEmpty): Use Sbitset instead of char*.
1297 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
1298 instead of char. This helps to avoid casting errors.
1299 (Sbitset__or): Use Sbitset instead of char*.
1300
1301 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
1302
1303 portability: don't assume 8-bit bytes.
1304 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
1305 * src/Sbitset.h (Sbitset__nbytes): Here.
1306 (Sbitset__byteAddress): Here.
1307 (Sbitset__bit_mask): Here.
1308 (Sbitset__last_byte_mask): Here.
1309 (Sbitset__ones): Here.
1310 (SBITSET__FOR_EACH): Here.
1311
1312 2009-10-11 Joel E. Denny <jdenny@clemson.edu>
1313
1314 portability: use va_start and va_end in the same function.
1315 * src/complain.c (error_message): Move va_end from here...
1316 (ERROR_MESSAGE): ... to here.
1317
1318 2009-10-08 Joel E. Denny <jdenny@clemson.edu>
1319
1320 * data/bison.m4: Update comments for rename to muscle-tab.h.
1321
1322 2009-10-07 Joel E. Denny <jdenny@clemson.edu>
1323
1324 Minor code cleanup.
1325 * src/muscle-tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
1326 replace all uses with UNIQSTR_CONCAT.
1327 * src/uniqstr.c (uniqstr_vsprintf): New function.
1328 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
1329 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
1330 macros.
1331
1332 2009-10-06 Joel E. Denny <jdenny@clemson.edu>
1333
1334 * TODO (Complaint submessage indentation): New.
1335
1336 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
1337
1338 Minor code cleanup.
1339 * src/parse-gram.y: Clean up sorting of declarations.
1340 Use types to simplify %printer declarations where possible.
1341 Provide %printer for BRACKETED_ID and symbol.prec.
1342 * src/symtab.c: Whitespace change.
1343
1344 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
1345
1346 tests: skip tests of file names that platform does not support.
1347 Reported by Michael Raskin at
1348 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
1349 * THANKS (Michael Raskin): Add.
1350 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
1351 to fail at least for file names containing ":" or "\".
1352
1353 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
1354
1355 yysyntax_error: avoid duplicate lookahead collection.
1356 Except when memory reallocation is required, this change
1357 eliminates the need to invoke yysyntax_error twice and thus to
1358 repeat the collection of lookaheads. It also prepares for
1359 future extensions that will make those repetitions more
1360 expensive and that will require additional memory management in
1361 yysyntax_error. Finally, it fixes an obscure bug already
1362 exercised in the test suite.
1363 * data/yacc.c (yysyntax_error): Add arguments for message
1364 buffer variables stored in the parser. Instead of size, return
1365 status similar to yyparse status but indicating success of
1366 message creation. Other than the actual reallocation of the
1367 message buffer, import and clean up memory management code
1368 from...
1369 (yyparse, yypush_parse): ... here.
1370 * tests/regression.at (parse.error=verbose overflow): No longer
1371 an expected failure.
1372
1373 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
1374
1375 yysyntax_error: test memory management more.
1376 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
1377 * tests/regression.at (parse.error=verbose and
1378 YYSTACK_USE_ALLOCA): New test group.
1379 (parse.error=verbose overflow): New test group that reveals an
1380 obscure bug. Expected fail for now.
1381
1382 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
1383
1384 benchmarks: use %debug consistently among grammars.
1385 * etc/bench.pl.in (generate_grammar_triangular): Do not activate
1386 %debug by default. It can affect the timings even if yydebug=0.
1387 (generate_grammar_calc): For consistency with other grammars,
1388 use YYDEBUG environment variable to set yydebug.
1389
1390 2009-10-03 Joel E. Denny <jdenny@clemson.edu>
1391
1392 Remove dead code.
1393 * src/symtab.c (symbol_pack): Here because every symbol's number
1394 is always defined by this time.
1395
1396 2009-10-03 Alex Rozenman <rozenman@gmail.com>
1397
1398 Add additional space after periods in NEWS.
1399 * NEWS (2.5): here.
1400
1401 2009-09-29 Joel E. Denny <jdenny@clemson.edu>
1402
1403 Use the correct conversion specifier for size_t.
1404 Reported by Jim Meyering.
1405 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
1406 because Sbitset__Index is size_t.
1407 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
1408
1409 2009-09-27 Joel E. Denny <jdenny@clemson.edu>
1410
1411 tests: don't abuse AT_BISON_CHECK.
1412 * tests/regression.at (parse-gram.y: LALR = IELR): Move
1413 additional shell commands outside of AT_BISON_CHECK.
1414
1415 2009-09-26 Joel E. Denny <jdenny@clemson.edu>
1416
1417 tests: check that parse-gram.y's IELR and LALR are identical.
1418 * tests/atlocal.in (abs_top_srcdir): New shell variable.
1419 * tests/regression.at (parse-gram.y: LALR = IELR): New test
1420 group.
1421
1422 2009-09-19 Alex Rozenman <rozenman@gmail.com>
1423
1424 Keep sub-messages aligned. Fix strings for translation.
1425 * src/location.h (location_print): Add return value.
1426 * src/location.c (location_print): Return number of printed
1427 characters.
1428 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
1429 new functions.
1430 * src/complain.cpp (indent_ptr): New static variable.
1431 (error_message, complain_at_indent, warn_at_indent): Implement
1432 the alignment mechanism.
1433 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
1434 for translations. Use new alignment mechanism.
1435 * tests/named-ref.at: Adjust test-cases.
1436 * NEWS (2.5): Add an announcement about named references.
1437
1438 2009-09-17 Akim Demaille <demaille@gostai.com>
1439
1440 doc: fixes.
1441 * doc/bison.texinfo: here.
1442 Reported by Alex Rozenman.
1443
1444 2009-09-16 Akim Demaille <demaille@gostai.com>
1445
1446 doc: lalr1.cc and variants.
1447 * doc/bison.texinfo (Decl Summary): Document the "lex_symbol" and
1448 "variant" %define variables.
1449 (C++ Semantic Values): Split into...
1450 (C++ Unions, C++ Variants): these.
1451 The latter is new.
1452 (C++ Parser Interface): Fix type names.
1453 Document parser::syntax_error.
1454 Document the fact that locations are not mandatory.
1455 (C++ Scanner Interface): Split into...
1456 (Split Symbols, Complete Symbols): these.
1457 The later is new.
1458 (Calc++ Parsing Driver): Use variants.
1459 Add more comments.
1460 Adjust style.
1461 (Calc++ Parser): Declare all the tokens, no
1462 longer accept raw characters.
1463 Remove %union.
1464 Adjust types and printers.
1465 Remove destructors.
1466 (Calc++ Scanner): Use make_<SYMBOL> functions.
1467 Use strerror in error message.
1468
1469 2009-09-16 Akim Demaille <demaille@gostai.com>
1470
1471 doc: spell checking.
1472 * doc/bison.texinfo: here.
1473
1474 2009-09-16 Akim Demaille <demaille@gostai.com>
1475
1476 doc: comment changes.
1477 * doc/bison.texinfo: Comment changes.
1478
1479 2009-09-16 Akim Demaille <demaille@gostai.com>
1480
1481 lalr1.cc: factor the yytranslate_ invocation in make_SYMBOLS.
1482 * data/c++.m4, data/lalr1.cc (parser::symbol_type): Change the
1483 constructor to take a token_type instead of the (internal) symbol
1484 number.
1485 Call yytranslate_.
1486 * data/variant.hh (b4_symbol_constructor_define_): Therefore,
1487 don't call yytranslate_ here.
1488
1489 2009-09-16 Akim Demaille <demaille@gostai.com>
1490
1491 TODO: statistics.
1492 * TODO (Figures): New.
1493
1494 2009-09-13 Joel E. Denny <jdenny@clemson.edu>
1495
1496 tests: clean up push.at test group titles.
1497 * tests/push.at: Remove "Push Parsing: " from test group titles
1498 because these are already under the banner "Push Parsing Tests".
1499
1500 2009-09-12 Alex Rozenman <rozenman@gmail.com>
1501
1502 Provide an additional sub-message for clarity.
1503 Add "symbol not found in production" error message when
1504 an "invalid reference" is detected in named references
1505 resolution.
1506 * src/scan-code.l: Update "invalid reference" case.
1507 * tests/named-ref.at: Adjust test-cases.
1508
1509 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
1510
1511 Clean up yacc.c a little.
1512 * data/yacc.c: Clean up M4 for readability, and make output
1513 whitespace more consistent. For the main parse function
1514 comment, instead of saying "yyparse or yypush_parse", say either
1515 "yyparse" or "yypush_parse" depending on which it actually is.
1516
1517 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
1518
1519 Fix --enable-gcc-warnings.
1520 * src/parse-gram.y (%printer <param>): Handle param_none.
1521
1522 2009-09-09 Akim Demaille <demaille@gostai.com>
1523
1524 lalr1.cc: syntax_error as exceptions.
1525 It is common to use sort of factories in the user actions. These
1526 factories may check some "syntactic" constraints that are not
1527 enforced by the grammar itself. This is possible using YYERROR
1528 within the action itself. Provide the user with a means to throw
1529 a syntax_error exception.
1530
1531 * data/c++.m4 (b4_public_types_declare, b4_public_types_define):
1532 Declare and define yy::parser::syntax_error.
1533 * data/lalr1.cc: Include stdexcept.
1534 (yy::parser::parse): Wrap the user action within a try/catch.
1535 * data/glr.cc: Include stdexcept.
1536
1537 2009-09-09 Akim Demaille <demaille@gostai.com>
1538
1539 lalr1.cc: add missing "inline".
1540 * data/c++.m4 (b4_public_types_define): Add missing inline to
1541 implementations provided in headers.
1542
1543 2009-09-09 Akim Demaille <demaille@gostai.com>
1544
1545 %param: documentation.
1546 * NEWS (2.6): Document %param, %lex-param, and %parse-param
1547 changes.
1548 * doc/bison.texinfo: Document that %lex-param and %parse-param
1549 are n-ary.
1550 Changes some examples to demonstrate it.
1551 (Calc++ Parser): Use %param.
1552
1553 2009-09-09 Akim Demaille <demaille@gostai.com>
1554
1555 Regen.
1556
1557 2009-09-09 Akim Demaille <demaille@gostai.com>
1558
1559 style changes.
1560 * src/parse-gram.y (add_param): Scope changes.
1561
1562 2009-09-09 Akim Demaille <demaille@gostai.com>
1563
1564 %parse: support several arguments.
1565 * src/parse-gram.y (current_param): New.
1566 (param_type): Add param_none.
1567 (params): New nonterminal.
1568 Use it.
1569
1570 2009-09-09 Akim Demaille <demaille@gostai.com>
1571
1572 Regen.
1573
1574 2009-09-09 Akim Demaille <demaille@gostai.com>
1575
1576 %param.
1577 Provide a means to factor lex-param and parse-param common
1578 declarations.
1579
1580 * src/parse-gram.y (param_type): New.
1581 Define a %printer for it.
1582 (add_param): Use it.
1583 (%parse-param, %lex-param): Merge into...
1584 (%parse): this new token.
1585 Adjust the grammar to use it.
1586 * src/scan-gram.l (RETURN_VALUE): New.
1587 (RETURN_PERCENT_FLAG): Use it.
1588 (RETURN_PERCENT_PARAM): New.
1589 Use it to support %parse-param, %lex-param and %param.
1590
1591 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
1592
1593 Use aver not assert.
1594 * src/output.c: Don't include assert.h.
1595 (output_skeleton): Use aver not assert.
1596 * src/system.h (aver): In documentation of why, add links to
1597 Paul Eggert's explanations in the mailing lists.
1598
1599 2009-09-05 Alex Rozenman <rozenman@gmail.com>
1600
1601 Use "Unresolved reference" error message when no symbols were found
1602 in a symbolic reference resolution. Remove .expr and -expr from
1603 the shown reference when the reference is unresolved.
1604 * src/scan-code.l: Change the error message, adjust location columns,
1605 rename variable "exact_mode" to "explicit_bracketing".
1606 * tests/named-ref.at: Adjust existing tests and add a new one.
1607
1608 2009-09-04 Akim Demaille <demaille@gostai.com>
1609
1610 Adjust synclines in src/parse-gram.[ch].
1611 * tests/bison.in: Do some magic (including working around issues
1612 with ylwrap) when this wrapper is used to compile
1613 src/parse-gram.y.
1614
1615 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
1616
1617 Complain about unused %define variables and %code qualifiers.
1618 * NEWS (2.5): Document.
1619 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
1620 * doc/bison.texinfo (Decl Summary): Document complaint, and
1621 improve %define documentation a little otherwise.
1622 * tests/input.at (Reject unused %code qualifiers): Update.
1623 (%define errors): Update.
1624 (%define, --define, --force-define): Update.
1625 (%define backward compatibility): Update.
1626 (Unused %define api.pure): Update.
1627 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
1628
1629 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
1630
1631 Don't suppress warnings about unused parse.error.
1632 * data/bison.m4 (b4_error_verbose_flag): Don't examine value of
1633 %define variable parse.error unless b4_error_verbose_flag is
1634 actually expanded in a skeleton.
1635
1636 2009-09-03 Akim Demaille <demaille@gostai.com>
1637
1638 * NEWS (2.4.2): Add "Internationalization" item.
1639
1640 2009-09-03 Akim Demaille <demaille@gostai.com>
1641
1642 bootstrap: fix/improve find_tool.
1643 * bootstrap (find_tool): Improve error messages.
1644 Fix typo about find_tool_names.
1645
1646 2009-08-29 Joel E. Denny <jdenny@clemson.edu>
1647
1648 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
1649 See
1650 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
1651 * src/scan-code.h (code_props_rule_action_init): Rename
1652 named_ref arg to name so it doesn't shadow named_ref type. This
1653 makes it consistent with the function definition in scan-code.l
1654 anyway.
1655
1656 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
1657
1658 %define: accept unquoted values.
1659 * NEWS (2.5): Group all %define changes together, and document
1660 this one. Remove quotes in IELR and canonical LR entry.
1661 * doc/bison.texinfo: Remove quotes in most examples throughout.
1662 (Decl Summary): Update %define documentation.
1663 (Table of Symbols): Likewise.
1664 * src/ielr.c (LrType): Update documentation.
1665 * src/parse-gram.y (content.opt): Add production for ID.
1666 * tests/actions.at: Remove quotes in most tests.
1667 * tests/calc.at: Likewise.
1668 * tests/existing.at: Likewise.
1669 * tests/input.at: Likewise.
1670 * tests/local.at: Likewise.
1671 * tests/push.at: Likewise.
1672 * tests/reduce.at: Likewise.
1673 * tests/torture.at: Likewise.
1674
1675 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
1676
1677 %define lr.type: make values lowercase IDs.
1678 That is, "LALR" => "lalr", "IELR" => "ielr", and
1679 "canonical LR" => "canonical-lr".
1680 * NEWS (2.5): Update documentation.
1681 * doc/bison.texinfo (Decl Summary): Likewise.
1682 * src/ielr.c (ielr): Use new values.
1683 * src/ielr.h (ielr): Update documentation.
1684 * src/reader.c (prepare_percent_define_front_end_variables): Use
1685 and validate new values.
1686 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
1687 grammars.
1688 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
1689
1690 2009-08-27 Eric Blake <ebb9@byu.net>
1691
1692 scan-gram: avoid portability trap with ctype usage.
1693 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
1694 Avoid compiler warning.
1695
1696 2009-08-27 Joel E. Denny <jdenny@clemson.edu>
1697
1698 tests: use perl for printing special sequences to files.
1699 And skip tests if perl is not available. This is better than
1700 playing tricks with shell portability. Suggested by Akim
1701 Demaille.
1702 * tests/input.at (Bad character literals): Use it here for
1703 omitting final newlines.
1704 (Bad escapes in literals): Use it here for special characters.
1705
1706 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
1707
1708 tests: show a use of %define lr.default-reductions "consistent"
1709 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
1710 prevents the omission of expected tokens for %error-verbose.
1711
1712 2009-08-26 Akim Demaille <demaille@gostai.com>
1713
1714 tests: portability fix.
1715 * tests/input.at (Bad escapes in literals): Don't expect "echo
1716 '\0'" to output \ then 0.
1717
1718 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
1719
1720 Actually handle the yytable zero value correctly this time.
1721 * data/bison.m4 (b4_integral_parser_tables_map): Don't mention
1722 zero values in the YYTABLE comments.
1723 * data/glr.c (yytable_value_is_error): Don't check for zero
1724 value.
1725 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
1726 * data/yacc.c (yytable_value_is_error): Likewise.
1727 * data/lalr1.java (yy_table_value_is_error_): Likewise.
1728 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
1729 * src/tables.h: In header comments, explain why it's useless to
1730 check for a zero value in yytable.
1731
1732 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
1733
1734 More fixes related to last two patches.
1735 * data/bison.m4 (b4_integral_parser_tables_map): Fix YYTABLE
1736 comments: zero indicates syntax error not default action.
1737 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
1738 defined.
1739 * data/glr.c (yyis_pact_ninf): Rename to...
1740 (yypact_value_is_default): ... this.
1741 (yyisDefaultedState): Update for rename.
1742 (yyis_table_ninf): Rename to...
1743 (yytable_value_is_error): ... this, and check for value zero
1744 besides just YYTABLE_NINF.
1745 (yygetLRActions): Check for default value from yypact. It
1746 appears that this check is always performed before this function
1747 is invoked, and so adding the check here is probably redundant.
1748 However, the code may evolve after this subtlety is forgotten.
1749 Also, update for rename to yytable_value_is_error. Because that
1750 macro now checks for zero, a different but equivalent branch of
1751 the if-then-else here is evaluated.
1752 (yyreportSyntaxError): Update for rename to
1753 yytable_value_is_error. The zero condition was mishandled
1754 before.
1755 (yyrecoverSyntaxError): Update for renames. No behavioral
1756 changes.
1757 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
1758 New function.
1759 (yy_table_value_is_error_): New function.
1760 (parse): Use new functions where possible. No behavioral
1761 changes.
1762 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
1763 The zero condition was mishandled before.
1764 * data/yacc.c (yyis_pact_ninf): Rename to...
1765 (yypact_value_is_default): ... this.
1766 (yyis_table_ninf): Rename to...
1767 (yytable_value_is_error): ... this, and check for value zero
1768 besides just YYTABLE_NINF.
1769 (yysyntax_error): Update for rename to yytable_value_is_error.
1770 The zero condition was mishandled before.
1771 (yyparse): Update for renames. No behavioral changes.
1772 * src/tables.h: Improve comments about yypact, yytable, etc.
1773 more. Most importantly, say yytable value of zero means syntax
1774 error not default action.
1775
1776 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
1777
1778 Fix %error-verbose for conflicts resolved by %nonassoc.
1779 * NEWS (2.5): Document.
1780 * data/glr.c (yyreportSyntaxError): Fix this by checking
1781 yyis_table_ninf.
1782 * data/yacc.c (yysyntax_error): Likewise.
1783 * data/lalr1.cc (yysyntax_error_): Fix this by checking
1784 yytable_ninf_.
1785 * data/lalr1.java (yysyntax_error): Likewise.
1786 * tests/conflicts.at (%nonassoc and eof): Update expected output
1787 and remove FIXME.
1788
1789 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
1790
1791 Some code and documentation improvements.
1792 * data/c.m4 (b4_table_value_equals): New macro to capture
1793 some repeated code.
1794 * data/glr.c (yyis_pact_ninf): Use it here.
1795 (yyis_table_ninf): Likewise.
1796 (yyreportSyntaxError): Improve internal comments.
1797 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
1798 Use it everywhere possible.
1799 (yyis_table_ninf): Likewise.
1800 (yysyntax_error): Improve internal comments.
1801 * data/lalr1.cc (yysyntax_error_): Likewise.
1802 * data/lalr1.java (yysyntax_error): Likewise.
1803 * src/tables.h: Improve comments about yypact, yytable, etc.
1804
1805 2009-08-21 Joel E. Denny <jdenny@clemson.edu>
1806
1807 Use locale when quoting.
1808 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
1809 quote rather than implementing quoting here.
1810
1811 2009-08-20 Eric Blake <ebb9@byu.net>
1812
1813 Make previous patch more robust.
1814 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
1815 argmatch.h.
1816 (output_skeleton): Use it.
1817 Suggested by Akim Demaille.
1818
1819 Import latest m4/m4.m4.
1820 * submodules/autoconf: Update to autoconf 2.64.
1821 * configure.ac (M4_GNU_OPTION): New define.
1822 * src/output.c (output_skeleton): Use it to resolve FIXME.
1823 * NEWS: Mention this.
1824
1825 2009-08-19 Joel E. Denny <jdenny@clemson.edu>
1826
1827 Fix complaints about escape sequences.
1828 Discussed starting at
1829 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
1830 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
1831 For a \0 and similar escape sequences meaning the null
1832 character, report an invalid escape sequence instead of an
1833 invalid null character because the latter does not actually
1834 appear in the user's input.
1835 In all escape sequence complaints, don't escape the initial
1836 backslash, and don't quote when the sequence appears at the end
1837 of the complaint line unless there's whitespace that quotearg
1838 won't escape.
1839 Consistently say "invalid" not "unrecognized".
1840 Consistently prefer "empty character literal" over "extra
1841 characters in character literal" warning for invalid escape
1842 sequences; that is, consistently discard those sequences.
1843 * tests/input.at (Bad escapes in literals): New.
1844
1845 2009-08-19 Akim Demaille <demaille@gostai.com>
1846
1847 doc: fixes.
1848 * doc/bison.texinfo: Fix minor Texinfo errors.
1849
1850 2009-08-19 Akim Demaille <demaille@gostai.com>
1851
1852 tests: distcc compliance.
1853 * tests/synclines.at (AT_SYNCLINES_COMPILE): Discard distcc's
1854 error messages from the output.
1855
1856 2009-08-19 Akim Demaille <demaille@gostai.com>
1857
1858 variables: simplify the upgrade of namespace into api.namespace.
1859
1860 This patch simplifies "variables: rename namespace as
1861 api.namespace", commit 67501061076ba46355cfd9f9361c7eed861b389c.
1862 Suggested by Joel E. Denny in
1863 http://lists.gnu.org/archive/html/bison-patches/2009-07/msg00006.html
1864
1865 * src/muscle-tab.c (muscle_percent_variable_update): New.
1866 (muscle_percent_define_insert): Use it in replacement of the
1867 previous tr invocation.
1868 Remove variable_tr, no longer needed.
1869 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
1870 Remove.
1871 * data/c++.m4: No longer handle namespace -> api.namespace.
1872 * tests/input.at (%define backward compatibility): Check that
1873 namespace is treated as api.namespace.
1874
1875 2009-08-19 Akim Demaille <demaille@gostai.com>
1876
1877 doc: %initial-action to initialize yylloc.
1878 Reported by Bill Allombert.
1879 * doc/bison.texinfo: Set fill-column to 76.
1880 (Location Type): Document the use of %initial-action to initialize
1881 yylloc.
1882
1883 2009-08-19 Akim Demaille <demaille@gostai.com>
1884
1885 lalr1.cc: use state_type.
1886 * data/lalr1.cc (yysyntax_error_): Use state_type.
1887 Move argument names into yy*.
1888
1889 2009-08-19 Akim Demaille <demaille@gostai.com>
1890
1891 lalr1.cc: get rid of yyparse's yystate.
1892 yystate and yystack_[0].state are equal, keep only the latter.
1893 The former was also used as a temporary variable to compute the
1894 post-reduction state. Move this computation into an auxiliary
1895 function.
1896
1897 * data/glr.c (yyLRgotoState): Fuse variable definition and first
1898 assignment.
1899 * data/lalr1.cc (yy_lr_goto_state_): New.
1900 (yyparse): Use it.
1901 Replace remaining uses of yystate by yystate_[0].state.
1902 Remove the former.
1903
1904 2009-08-19 Akim Demaille <demaille@gostai.com>
1905
1906 lalr1.cc: destroy $$ when YYERROR is called.
1907 * data/lalr1.cc (yyreduce): Compute the resulting state before
1908 running the user action so that yylhs is a valid symbol.
1909 (yyerrorlab): Since yylhs is complete (it knows its type), we can
1910 simply call yy_destroy_ to destroy $$ on YYERROR invocations.
1911 * tests/c++.at (AT_CHECK_VARIANTS): Test YYERROR with variants.
1912
1913 2009-08-18 Joel E. Denny <jdenny@clemson.edu>
1914
1915 maint: update for gnulib's recent update-copyright changes
1916 * gnulib: Update.
1917 * .x-update-copyright (COPYING): Add as it's no longer implied
1918 when .x-update-copyright is present.
1919 * cfg.mk (update-copyright-local): Remove, now ignored.
1920 (update-copyright): Declare update-b4-copyright as a dependency.
1921
1922 2009-08-17 Akim Demaille <demaille@gostai.com>
1923
1924 build: require gettext 0.17.
1925
1926 Suggested by Bruno Haible.
1927 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
1928 * configure.ac: require gettext 0.17 to ensure compatibility with
1929 gnulib.
1930
1931 2009-08-17 Akim Demaille <demaille@gostai.com>
1932
1933 build: lower gettext requirements.
1934
1935 Bison was uselessly requiring the formatstring macros from
1936 gettext, which resulted in mo files not being installed on systems
1937 that perfectly supported Bison mo files. Lower the requirement.
1938 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
1939
1940 * configure.ac: Require need-ngettext instead of
1941 need-formatstring-macros.
1942 Reported by Martin Jabocs.
1943 Suggested by Bruno Haible.
1944 * INSTALL: Restructure.
1945 (Internationalization): New.
1946
1947 2009-08-14 Joel E. Denny <jdenny@clemson.edu>
1948
1949 maint: fix use of copyright year intervals.
1950 * gnulib: Update.
1951 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
1952 as now recommended in gnulib/NEWS.
1953 * build-aux/update-b4-copyright: Fix.
1954 * cfg.mk (update-copyright-env): Configure update-copyright.
1955
1956 2009-08-13 Joel E. Denny <jdenny@clemson.edu>
1957
1958 Make it easier to write deterministic tests.
1959 Continues Akim's work from his 2009-06-10 commits.
1960 * src/reader.c (check_and_convert_grammar): Don't add any
1961 symbols after the first symbols_do invocation.
1962 * src/symtab.c (symbols_sorted): New static global.
1963 (user_token_number_redeclaration): Update comments.
1964 (symbol_from_uniqstr): If a new symbol is being created, assert
1965 that symbols_sorted hasn't been allocated yet.
1966 (symbols_free): Free symbols_sorted.
1967 (symbols_cmp, symbols_cmp_qsort): New functions.
1968 (symbols_do): Sort symbol_table into symbols_sorted on first
1969 invocation.
1970 * tests/input.at (Numbered tokens): Recombine tests now that the
1971 output should be deterministic across multiple numbers.
1972
1973 2009-08-12 Akim Demaille <demaille@gostai.com>
1974
1975 tests: GCC 4.5 compliance.
1976 * tests/synclines.at (AT_SYNCLINES_COMPILE): Adjust to GCC 4.5's
1977 messages about #error.
1978
1979 2009-08-12 Akim Demaille <demaille@gostai.com>
1980
1981 build: fix the generation of the documentation.
1982 Some of our targets use "bison --help", but they can't depend on
1983 "bison" itself (to avoid additional requirements on the user), so
1984 they used to call "make src/bison" in the commands. Then
1985 concurrent builds may fail: one make might be aiming one of its
1986 jobs at compiling src/bison, and another job at generating the man
1987 page. If the latter is faster than the former, then we have two
1988 makes that concurrently try to compile src/bison.
1989
1990 This might also be a more convincing explanation for the failure
1991 described in the patch "build: fix paths".
1992
1993 * Makefile.am (SUFFIXES): Initialize.
1994 * build-aux/move-if-change: New, symlink to gnulib's.
1995 * build-aux/local.mk: Ship it.
1996 * doc/common.x: Remove, merged into...
1997 * doc/bison.x: here.
1998 * doc/local.mk (doc/bison.help): New.
1999 ($(CROSS_OPTIONS_TEXI)): Depend on it.
2000 Use src/bison.
2001 (.x.1): Replace with...
2002 (doc/bison.1): this explicit, simpler, target.
2003 (common_dep): Remove, inlined where appropriate.
2004 (SUFFIXES, PREPATH): Remove, unused.
2005
2006 2009-08-12 Akim Demaille <demaille@gostai.com>
2007
2008 gnulib: improve prefixing.
2009 * configure.ac (gl_PREFIXED_LIBOBJS): Don't rename it, rather,
2010 change the value of...
2011 (gl_LIBOBJS): this.
2012 Adjust more variables.
2013 * etc/prefix-gnulib-mk (prefix_assignment): Don't rename
2014 gl_LIBOBJS.
2015 (prefix): Also transform rules whose targets have slashes.
2016 Use $prefix liberally.
2017 Map @MKDIR_P@ to $(MKDIR_P).
2018 Prefix directories that are mkdir'd.
2019
2020 2009-08-12 Akim Demaille <demaille@gostai.com>
2021
2022 build: fix paths.
2023 When using $(top_builddir) inconsistently, Make (including GNU
2024 Make) is sometimes confused. As a result it may want to build
2025 lib/libbison.la and $(top_builddir)/lib/libbison.la (the same
2026 file, different names) concurrently, which, amusingly enough,
2027 might end with:
2028
2029 ranlib lib/libbison.a
2030 ranlib lib/libbison.a
2031 make[2]: *** [lib/libbison.a] Segmentation fault
2032
2033 on OS X.
2034
2035 * doc/local.mk, src/local.mk: Do not use $(top_builddir) when not
2036 needed.
2037
2038 2009-08-12 Akim Demaille <demaille@gostai.com>
2039
2040 distcheck: fix.
2041
2042 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
2043
2044 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
2045
2046 * tests/local.mk (TESTSUITE_AT): Add named-refs.at.
2047
2048 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
2049
2050 Miscellaneous code readability improvements.
2051
2052 * src/reader.c (reader): Move %define front-end variable
2053 defaults and checking into...
2054 (prepare_percent_define_front_end_variables): ... this new
2055 function.
2056
2057 * src/scan-gram.l (INITIAL): For consistency with string
2058 literals, don't store open quote on character literal. It's
2059 discarded before returning anyway.
2060 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
2061 Make length test more readable, and make the character stored
2062 for an empty literal more obvious while consistent with the
2063 previous behavior.
2064
2065 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
2066 USER_NUMBER_HAS_STRING_ALIAS throughout.
2067 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
2068 that is repeated in symtab.h. Improve argument names to make it
2069 clear which side of the symbol-string alias pair is which.
2070 (symbol_check_alias_consistency): Improve local variable names
2071 for the same purpose.
2072 * src/symtab.h (struct symbol): Make comments about aliases
2073 clearer.
2074 (symbol_make_alias): Improve comments and argument name.
2075 * src/output.c (token_definitions_output): Update for rename to
2076 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
2077
2078 2009-08-08 Alex Rozenman <rozenman@gmail.com>
2079
2080 Convert "misleading reference" messages to warnings.
2081 * src/scan-code.l: New function 'show_sub_messages', more
2082 factoring.
2083 * tests/named-ref.at: Adjust tests.
2084
2085 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
2086
2087 maint: run "make update-copyright"
2088
2089 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
2090
2091 maint: make update-b4-copyright easier to use
2092 * build-aux/update-b4-copyright: In warnings, report line
2093 numbers rather than character positions.
2094 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
2095 that update-copyright runs it.
2096 * gnulib: Update.
2097
2098 2009-08-05 Joel E. Denny <jdenny@clemson.edu>
2099
2100 maint: clean up update-b4-copyright code
2101 * build-aux/update-b4-copyright: Do not accept 2-digit
2102 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
2103 Don't accept a `[' in a b4_copyright argument.
2104 Format code more consistently.
2105 Don't assume b4*copyright never occurs.
2106
2107 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
2108
2109 maint: automate b4_copyright updates.
2110 * Makefile.am (update-b4-copyright): New target rule.
2111 * build-aux/local.mk (EXTRA_DIST): Add update-b4-copyright.
2112 * build-aux/update-b4-copyright: New.
2113 * data/yacc.c: Remove stray characters around b4_copyright
2114 invocations.
2115
2116 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
2117
2118 maint: automate annual package-wide copyright-year update.
2119 * .x-update-copyright: New.
2120 * Makefile.am (EXTRA_DIST): Remove maint.mk.
2121 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
2122 update-copyright. Remove gnumakefile, which is implied by
2123 maintainer-makefile.
2124 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
2125 * gnulib: Update.
2126 * maint.mk: Remove, now copied from gnulib.
2127 * examples/extexi: Add missing "(C)" in copyright statement so
2128 update-copyright can recognize it.
2129 * src/LR0.h: Likewise.
2130 * src/print.h: Likewise.
2131 * src/print_graph.h: Likewise.
2132 * src/gram.c: Add missing comma in copyright statement.
2133 * src/gram.h: Likewise.
2134
2135 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
2136
2137 Fix "make distcheck".
2138 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
2139 of just calc.stamp.
2140
2141 2009-08-01 Joel E. Denny <jdenny@clemson.edu>
2142
2143 Pacify "gcc -Wunused" for the input function from Flex.
2144 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
2145 and later.
2146 * src/scan-code.l: Add "%option noinput", which I cannot find in
2147 the Flex manual, but which Flex has supported since at least as
2148 far back as 2.5.4. However, if any of our developers still use
2149 Flex 2.5.4, they'll need to stop configuring with
2150 --enable-gcc-warnings because "%option noinput" didn't work
2151 correctly until Flex 2.5.6.
2152 * src/scan-gram.l: Likewise.
2153 * src/scan-skel.l: Likewise.
2154
2155 2009-07-31 Alex Rozenman <rozenman@gmail.com>
2156
2157 Fix --enable-gcc-warnings problems.
2158 * src/reader.c: Adjust variable names.
2159 * src/scan-code.l: Fix prototypes and adjust names.
2160 * src/named-ref.c: Remove redundant "if".
2161
2162 2009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
2163
2164 Fix a --enable-gcc-warnings problem.
2165 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
2166 variable.
2167
2168 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
2169
2170 Warn about character literals not of length one.
2171 * NEWS (2.5): Document.
2172 * src/scan-gram.l (INITIAL): Remove comment that we don't check
2173 the length.
2174 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
2175 * tests/input.at (Bad character literals): New test group.
2176
2177 2009-07-24 Alex Rozenman <rozenman@gmail.com>
2178
2179 Fix some memory leaks.
2180 * src/named-ref.c: Add a pointer check (named_ref_free).
2181 * src/scan-code.l: New function (variant_table_free). Called in
2182 code_scanner_free.
2183 * src/symlist.c: Call to named_ref_free (symbol_list_free).
2184
2185 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
2186
2187 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
2188
2189 2009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
2190
2191 Some M4 cleanup in the testsuite.
2192 Suggested by Eric Blake at
2193 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
2194 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
2195 complicate the code by distinguishing between a missing value
2196 and an empty string value for an optional argument. This fix is
2197 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
2198 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
2199 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
2200 arguments are not needed because of the following changes.
2201 Fix stale comments.
2202 Bison developers should use GNU M4 and should not use
2203 POSIXLY_CORRECT when building the test suite, so do not
2204 complicate the code by avoiding $10 and above.
2205 Do not quote an empty string value for an optional argument, and
2206 do not distinguish between a missing value and an empty string
2207 value.
2208
2209 2009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
2210
2211 Revert unnecessary column realignment in --help output.
2212 Reported by Akim Demaille at
2213 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
2214 * src/getargs.c (usage): Here.
2215
2216 2009-07-04 Alex Rozenman <rozenman@gmail.com>
2217
2218 Alphabetical order in src/local.mk.
2219 * src/local.mk: Adjust.
2220
2221 2009-07-04 Alex Rozenman <rozenman@gmail.com>
2222
2223 Style changes and factoring.
2224 * src/named-ref.h: Add comments.
2225 * src/parse-gram.y: Readability and style changes.
2226 * src/reader.c: Factoring: assign_named_ref function.
2227 * src/scan-code.l: Factoring and style changes. Rename
2228 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
2229 Use "unsigned" type for variant index. Improve readablity.
2230 * src/scan-gram.l: Change error messages and add comments.
2231 * src/symlist.h: symbol_list_null: New function decl.
2232 * src/symlist.c: symbol_list_null: Implement here.
2233 * tests/named-refs.at: Adjust for new error messages.
2234
2235 2009-06-29 Eric Blake <ebb9@byu.net>
2236
2237 scan-code: avoid compiler warnings
2238 * src/scan-code.l (parse_named_ref): Use correct specifiers.
2239
2240 2009-06-29 Akim Demaille <demaille@gostai.com>
2241
2242 build: avoid concurrent extraction of calc++.
2243 * examples/calc++/Makefile.am (calc.stamp): New.
2244 Depend on it to create the sources of calc++ so that concurrent
2245 builds don't launch several "extexi" in parallel.
2246 Not only this is inefficient, this also builds incorrect sources
2247 with several extractions mixed together.
2248
2249 2009-06-29 Akim Demaille <demaille@gostai.com>
2250
2251 parse.error: fix.
2252 * data/bison.m4: Move code related to specific variables after the
2253 definition of the variable-maintaining macros so that we don't
2254 "invoke" b4_percent_define_check_values before it is defined.
2255
2256 2009-06-29 Akim Demaille <demaille@gostai.com>
2257
2258 variables: parse.error
2259
2260 Implement, document, and test the replacement of %error-verbose
2261 by %define parse.error "verbose".
2262 * data/bison.m4 (b4_error_verbose_if): Reimplement to track the
2263 values of the parse.error variable.
2264 Make "simple" its default value.
2265 Check the valid values.
2266 * src/parse-gram.y: Use %define parse.error.
2267 (PERCENT_ERROR_VERBOSE): New token.
2268 Support it.
2269 * src/scan-gram.l: Support %error-verbose.
2270
2271 * doc/bison.texinfo (Decl Summary): Replace the documentation of
2272 %define error-verbose by that of %define parse.error.
2273 * NEWS: Document it.
2274
2275 * tests/actions.at, tests/calc.at: Use parse.error instead of
2276 %error-verbose.
2277
2278 2009-06-27 Alex Rozenman <rozenman@gmail.com>
2279
2280 Implement support for named symbol references.
2281 * src/parse-gram.y: Add new syntax (named_ref.opt).
2282 * src/reader.c: Store named refs in symbol lists.
2283 * src/reader.h: New argument for symbol_append and
2284 action_append functions.
2285 * src/scan-code.h: Add new field (named_ref) into
2286 code_props data structure. Keeps named ref of midrule
2287 actions.
2288 * src/scan-code.l: Support for named refs in semantic
2289 action code. New function 'parse_named_ref'.
2290 * src/scan-gram.l: Support bracketed id.
2291 * src/symlist.c: Store named refs in symbol lists.
2292 * src/symlist.h: New field in symbol list: named_ref.
2293 * src/named-ref.h: New file, a struct for named_ref.
2294 * src/named-ref.cp: New file, named_ref_new function.
2295 * src/local.mk: Add two new files.
2296 * tests/testsuite.at: Include new test group:
2297 * tests/named-refs.at: this new file.
2298
2299 2009-06-25 Akim Demaille <demaille@gostai.com>
2300
2301 hash: check insertion for memory exhaustion.
2302 * src/uniqstr.c (uniqstr_new): New.
2303
2304 2009-06-24 Akim Demaille <demaille@gostai.com>
2305
2306 variables: rename namespace as api.namespace.
2307 Discussed in
2308 http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00033.html
2309
2310 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
2311 New.
2312 (b4_percent_define_use): New.
2313 Use it where applicable.
2314 * data/c++.m4: Replace uses of the variable "namespace" by
2315 "api.namespace".
2316 Default the latter to the former.
2317 * doc/bison.texinfo (Decl Summary): Document "namespace" as
2318 obsolete.
2319 Document api.namespace.
2320 Use @samp to document %define uses, keep @code for identifiers.
2321 * NEWS: Likewise.
2322 * tests/c++.at, tests/input.at: Test api.namespace instead of
2323 namespace. (The tests passed with namespace.)
2324
2325 2009-06-11 Akim Demaille <demaille@gostai.com>
2326
2327 style changes.
2328 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
2329 * src/print-xml.c: Style changes.
2330 * tests/conflicts.at: Comment changes.
2331
2332 2009-06-11 Akim Demaille <demaille@gostai.com>
2333
2334 xml: beware of user strings used to give a %prec to rules.
2335 * tests/conflicts.at (%prec with user strings): New.
2336 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
2337 XML output.
2338
2339 2009-06-11 Akim Demaille <demaille@gostai.com>
2340
2341 hash: check insertion for memory exhaustion.
2342 * src/muscle-tab.c (muscle_insert, muscle_grow)
2343 * src/state.c (state_hash_insert): Check the return value of
2344 hash_insert.
2345
2346 2009-06-11 Akim Demaille <demaille@gostai.com>
2347
2348 tests: honor TESTSUITEFLAGS in every check target.
2349 * tests/local.mk (RUN_TESTSUITE): New.
2350 (check-local, installcheck-local, maintainer-check-g++)
2351 (maintainer-check-posix, maintainer-check-valgrind): Use it.
2352
2353 2009-06-10 Akim Demaille <demaille@gostai.com>
2354
2355 deterministic test suite.
2356 Some consistency checks on symbols are performed after all the
2357 symbols were read, by an iteration over the symbol table. This
2358 traversal is nondeterministic, which can be a problem for test
2359 cases.
2360 Avoid this.
2361 Addresses another form of nondeterminism reported by Joel E. Denny.
2362 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
2363
2364 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
2365 test in two.
2366 Use different file names for the three tests to make the
2367 maintenance easier.
2368
2369 2009-06-10 Akim Demaille <demaille@gostai.com>
2370
2371 gnulib: update.
2372 * gnulib: Update to latest.
2373 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
2374 * m4/.gitignore: Regen.
2375 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
2376 Call xalloc_die on hash_insert failures.
2377 Requested by the new __warn_unused_result__ attribute of
2378 hash_insert.
2379
2380 2009-06-10 Akim Demaille <demaille@gostai.com>
2381
2382 deterministic user-token-number redeclaration errors.
2383 Address nondeterminism reported by Joel E. Denny.
2384 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
2385
2386 * src/uniqstr.h: Comment changes.
2387 * src/location.h (boundary_cmp, location_cmp): New.
2388 * src/symtab.c (user_token_number_redeclaration): New.
2389 (symbol_translation): Use it.
2390 * tests/input.at (Numbered tokens): Adjust the expected output.
2391
2392 2009-05-25 Akim Demaille <demaille@gostai.com>
2393
2394 build: avoid ignored errors.
2395 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Don't generate ignored
2396 errors, they pollute the output.
2397
2398 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2399
2400 Convert multiple variable definition warnings to complaints.
2401 * NEWS (2.5): Add a new entry for that change.
2402 * doc/bison.texinfo (Decl Summary): Update %define entry.
2403 (Bison Options): Update -D/--define/-F/--force-define entry.
2404 * src/muscle-tab.c (muscle_percent_define_insert): Implement.
2405 * src/muscle-tab.h (muscle_percent_define_insert): Update
2406 comments.
2407 * tests/input.at (`%define errors'): Update.
2408 (`%define, --define, --force-define'): Update.
2409
2410 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2411
2412 -F/--force-define and relative %define/-D/--define priorities.
2413 * NEWS (2.5): Add documentation to -D/--define entry.
2414 * build-aux/cross-options.pl: Hard-code association of
2415 --force-define with %define.
2416 * doc/bison.texinfo (Decl Summary): In %define entry,
2417 cross-reference command-line options.
2418 (Bison Options): Add documentation to -D/--define entry.
2419 (Option Cross Key): Widen column for --force-define row.
2420 * src/getargs.c (usage): Document -F/--force-define. Realign
2421 options in output.
2422 (short_options, long_options, getargs): Parse -F/--force-define,
2423 and update muscle_percent_define_insert invocations.
2424 * src/muscle-tab.h (muscle_percent_define_how): New enum type.
2425 (muscle_percent_define_insert): Add argument with that type.
2426 * src/muscle-tab.c (muscle_percent_define_insert): Implement
2427 -F/--force-define behavior and priorities.
2428 (muscle_percent_define_ensure): Update
2429 muscle_percent_define_insert invocation.
2430 * src/parse-gram.y (prologue_declaration): Update
2431 muscle_percent_define_insert invocations.
2432 * tests/input.at (`%define, --define'): Rename to...
2433 (`%define, --define, --force-define'): ... this and extend.
2434
2435 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2436
2437 Update some comments to make sense for -D.
2438 * data/bison.m4 (b4_check_user_names): In header comments, say
2439 "user occurrence" instead of "grammar occurrence".
2440 * src/muscle-tab.h (muscle_percent_define_insert): Likewise.
2441 (muscle_percent_code_grow): Likewise just for consistency.
2442
2443 2009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
2444
2445 * data/c++.m4 (b4_namespace_close): Simplify slightly.
2446
2447 2009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
2448
2449 Handle a trailing `:' in a user-supplied C++ namespace better.
2450 * data/c++.m4 (b4_namespace_close): Don't let it be printed
2451 among the closing braces here. This fix might make the
2452 generated code easier to debug, but otherwise it should be
2453 insignificant because a trailing `:' is a C++ error already.
2454
2455 2009-05-19 Akim Demaille <demaille@gostai.com>
2456
2457 remove useless variable.
2458 * src/getargs.c (skeleton_arg): Remove now useless variable.
2459 Should help the compiler see that this printf-like call is sane.
2460
2461 2009-05-15 Akim Demaille <demaille@gostai.com>
2462
2463 Rename token.prefix as api.tokens.prefix.
2464 Discussed here.
2465 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00024.html.
2466
2467 * NEWS, data/bison.m4, data/c.m4, data/java.m4, doc/bison.texinfo,
2468 * tests/c++.at, tests/calc.at, tests/java.at, tests/local.at
2469 (token.prefix): Rename as...
2470 (api.tokens.prefix): this.
2471
2472 2009-05-11 Akim Demaille <demaille@gostai.com>
2473
2474 doc: use C++ headers.
2475 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
2476 headers.
2477
2478 2009-05-11 Akim Demaille <demaille@gostai.com>
2479
2480 doc: token.prefix
2481 * doc/bison.simple (Decl Summary): Document token.prefix.
2482 (Calc++ Parser): Various fixes.
2483 Formatting changes.
2484 Use token.prefix.
2485 Introduce a macro TOKEN to shorten the code and make it more
2486 readable.
2487 (Calc++ Scanner): Adjust.
2488 * NEWS (Variable token.prefix): New.
2489
2490 2009-05-04 Akim Demaille <demaille@gostai.com>
2491
2492 bison: catch bad symbol names.
2493 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
2494 * tests/input.at: Adjust.
2495
2496 2009-05-04 Akim Demaille <demaille@gostai.com>
2497
2498 identifiers: dashes are letters.
2499 Dashes can now start identifiers (symbols and directives).
2500
2501 * src/scan-gram.l ({letter}): Add dash.
2502 ({id}): Remove it.
2503 * tests/input.at (Symbols): Adjust.
2504 Remove stray comment.
2505 * tests/regression.at (Invalid inputs): Adjust error message.
2506 * doc/bison.texinfo (Symbols): Update.
2507
2508 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
2509
2510 Declare %code to be a permanent feature.
2511 * NEWS (2.4.2): Here.
2512 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
2513 experimental.
2514 (Decl Summary): Likewise.
2515
2516 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
2517
2518 Convert underscores to dashes in some %define variable names.
2519 For now, just api.push-pull and lr.keep-unreachable-states.
2520 Maintain old names for backward compatibility.
2521 * NEWS (2.5): Document.
2522 * data/c.m4 (b4_identification): Update comment.
2523 * data/yacc.c: Update access.
2524 * doc/bison.texinfo: Update.
2525 * etc/bench.pl.in (bench_push_parser): Update use.
2526 * src/files.c (tr): Move to...
2527 * src/getargs.c, src/getargs.h (tr): ... here because I can't
2528 think of a better place to expose it. My logic is that, for all
2529 uses of tr so far, command-line arguments can be involved, and
2530 getargs.h is already included.
2531 * src/main.c (main): Update access.
2532 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
2533 variable names to new variable names before assigning value.
2534 * src/reader.c (reader): Update setting default.
2535 * tests/calc.at: Update uses.
2536 * tests/conflicts.at (Unreachable States After Conflict
2537 Resolution): Update use.
2538 * tests/input.at (%define enum variables): Update use.
2539 (%define backward compatibility): New test group.
2540 * tests/push.at: Update uses.
2541 * tests/reduce.at: Update uses.
2542 * tests/torture.at: Update uses.
2543
2544 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
2545
2546 Set all front-end %define defaults in one place.
2547 * src/main.c (main): Move lr.keep_unreachable_states default...
2548 * src/reader.c (reader): ... to here.
2549
2550 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2551
2552 Rename lr.default_reductions to lr.default-reductions.
2553 * NEWS (2.5): Here.
2554 * doc/bison.texinfo: Here.
2555 * src/lalr.c (initialize_LA): Here.
2556 * src/print.c (print_reductions): Here.
2557 * src/reader.c (reader): Here.
2558 * src/tables.c (action_row): Here.
2559 * tests/input.at (%define enum variables): Here.
2560 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
2561
2562 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2563
2564 Pacify ./configure --enable-gcc-warnings.
2565 * tests/input.at (Symbols): Prototype yyerror and yylex.
2566
2567 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2568
2569 Document how `%define "var" "value"' is not M4-friendly.
2570 * src/parse-gram.y (variable): In comments here.
2571
2572 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
2573
2574 Clean up recent patches a little.
2575 Reported by Akim Demaille.
2576 * doc/bison.texinfo (Understanding): Fix typos.
2577 * src/print.c (print_reductions): Don't use negated variable.
2578
2579 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
2580
2581 List accepted values for a %define enum variable with an invalid value.
2582 Suggested by Akim Demaille at
2583 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
2584 * data/bison.m4 (_b4_percent_define_check_values): Implement.
2585 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
2586 * tests/input.at (%define lr.default_reductions invalid values): Merge
2587 into...
2588 (%define enum variables): ... here, and update output.
2589
2590 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
2591
2592 Rename "default rule" to "default reduction".
2593 This includes changing variable names in code, changing
2594 comments, and renaming %define lr.default_rules to %define
2595 lr.default_reductions.
2596 * NEWS (2.5): Update IELR documentation.
2597 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
2598 documentation.
2599 * data/glr.c, data/lalr1.java: Sync copyright dates.
2600 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
2601 and lr.type documentation. Make some other wording
2602 improvements.
2603 (Glossary): Adjust cross-references and Default Reduction
2604 definition.
2605 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
2606 Remove a confusing comment pointed out by Akim Demaille.
2607 (initialize_LA): Adjust code.
2608 * src/print-xml.c (print_reductions): Adjust code.
2609 * src/print.c (print_reductions): Adjust code.
2610 * src/reader.c (reader): Adjust code.
2611 * src/tables.c (action_row): Adjust code.
2612 (token_actions): Adjust code.
2613 * src/tables.h: Adjust YYDEFACT documentation.
2614 * tests/input.at (%define lr.default_rules invalid values):
2615 Rename test group to...
2616 (%define lr.default_reductions invalid values): ... this, and
2617 update grammar file and expected output.
2618 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
2619 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
2620
2621 2009-04-21 Akim Demaille <demaille@gostai.com>
2622
2623 tests: check the use of dashes and periods in symbols.
2624 * tests/input.at (Symbol): New test group.
2625
2626 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2627
2628 Document %define lr.type and lr.default_rules.
2629 * NEWS (2.5): Add an entry.
2630 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
2631 besides just LALR(1) and GLR(1).
2632 * doc/bison.texinfo (Introduction): Likewise.
2633 (Language and Grammar): Bison is no longer limited to LALR(1)
2634 restrictions.
2635 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
2636 when trying to distinguish from GLR. Talk about LR(1) grammars
2637 rather than LALR(1) grammars.
2638 (Decl Summary): In %define api.push_pull entry, say it applies
2639 to deterministic parsers in C rather than LALR(1) parsers in C.
2640 Add lr.default_rules entry.
2641 Add lr.type entry.
2642 (Mystery Conflicts): Bison is no longer limited to LALR(1)
2643 restrictions.
2644 (Generalized LR Parsing): Same changes as for the previous GLR
2645 section.
2646 (Memory Management): Say deterministic rather than LALR(1).
2647 (Understanding): Correct some bison output.
2648 Index discussion of "accepting state".
2649 Say deterministic rather than LALR(1).
2650 (Bison Options): In --yacc entry, say deterministic rather than
2651 LALR(1).
2652 In --report, --graph, and --xml entries, just don't mention
2653 LALR(1).
2654 (C++ Parsers): Say deterministic rather than LALR(1).
2655 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
2656 (Glossary): Add Accepting State, Consistent State, Default Rule,
2657 and IELR(1) definitions.
2658 In Generalized LR (GLR) definition, make same changes as in
2659 previous GLR sections.
2660 In LALR(1) definition, say Bison uses LALR(1) by default rather
2661 than implying Bison is limited to LALR(1).
2662 (LocalWords): Add IELR.
2663
2664 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2665
2666 Finish implementing %define lr.type.
2667 Its value can be "LALR", "IELR", or "canonical LR".
2668 * lib/timevar.def (TV_IELR_PHASE1): New var.
2669 (TV_IELR_PHASE2): New var.
2670 (TV_IELR_PHASE3): New var.
2671 (TV_IELR_PHASE4): New var.
2672 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
2673 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
2674 Sbitset.h, ielr.h, and ielr.c.
2675 * src/getargs.h, src/getargs.c (enum trace, trace_args,
2676 trace_types): Add trace_ielr.
2677 * src/lalr.h, src/lalr.c (ngotos): Export it.
2678 (F): Rename to...
2679 (goto_follows): ... this, update all uses, and export it.
2680 (set_goto_map): Export it.
2681 (map_goto): Export it.
2682 (compute_lookahead_tokens): Don't free goto_follows yet. Now
2683 handled in ielr.
2684 (initialize_LA): Export it. Move lookback allocation to...
2685 (lalr): ... here because, for canonical LR, initialize_LA must
2686 be invoked but lookback and much of the rest of LALR isn't
2687 needed.
2688 * main.c (main): Instead of lalr, invoke ielr, which invokes
2689 lalr.
2690 * src/reader.c (reader): Default lr.type to "LALR".
2691 Default lr.default_rules to "accepting" if lr.type is "canonical
2692 LR". Leave the default as "all" otherwise.
2693 Check for a valid lr.type value.
2694 * src/state.h, src/state.c (struct state_list): Add state_list
2695 member.
2696 (state_new): Initialize state_list member to NULL.
2697 (state_new_isocore): New function, exported.
2698 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
2699 exercises all values of lr.type.
2700 (GNU AWK Grammar): Rename test group to...
2701 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
2702 AT_TEST_EXISTING_GRAMMAR.
2703 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
2704 (GNU pic Grammar): Rename test group to...
2705 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
2706 AT_TEST_EXISTING_GRAMMAR.
2707 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
2708 all values of lr.type.
2709 (Single State Split): New test groups using AT_TEST_LR_TYPE.
2710 (Lane Split): Likewise.
2711 (Complex Lane Split): Likewise.
2712 (Split During Added Lookahead Propagation): Likewise.
2713
2714 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2715
2716 Add new files for IELR and canonical LR implementation.
2717 * src/AnnotationList.c: New.
2718 * src/AnnotationList.h: New.
2719 * src/InadequacyList.c: New.
2720 * src/InadequacyList.h: New.
2721 * src/Sbitset.c: New.
2722 * src/Sbitset.h: New.
2723 * src/ielr.c: New.
2724 * src/ielr.h: New.
2725
2726 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
2727
2728 Implement %define lr.default_rules.
2729 Its value describes the states that are permitted to contain
2730 default rules: "all", "consistent", or "accepting".
2731 * src/reader.c (reader): Default lr.default_rules to "all".
2732 Check for a valid lr.default_rules value.
2733 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
2734 is "accepting", then only mark the accepting state as
2735 consistent.
2736 (initialize_LA): Tell state_lookahead_tokens_count whether
2737 lr.default_rules is "accepting".
2738 * src/tables.c (action_row): If lr.default_rules is not "all",
2739 then disable default rules in inconsistent states.
2740 * src/print.c (print_reductions): Use this opportunity to
2741 perform some assertions about whether lr.default_rules was
2742 obeyed correctly.
2743 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
2744 helps with checking the parser tables for a grammar.
2745 * tests/input.at (%define lr.default_rules invalid values): New
2746 test group.
2747 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
2748 AT_TEST_TABLES_AND_PARSE.
2749 (`no %define lr.default_rules'): New test group generated by
2750 AT_TEST_LR_DEFAULT_RULES.
2751 (`%define lr.default_rules "all"'): Likewise.
2752 (`%define lr.default_rules "consistent"'): Likewise.
2753 (`%define lr.default_rules "accepting"'): Likewise.
2754
2755 2009-04-20 Akim Demaille <demaille@gostai.com>
2756
2757 Formatting change.
2758
2759 2009-04-20 Akim Demaille <demaille@gostai.com>
2760
2761 bison: factoring.
2762 * src/output.c (token_definitions_output): Use symbol_id_get
2763 instead of duplicating its logic.
2764 * TODO (YYERRCODE): Extend.
2765
2766 2009-04-20 Akim Demaille <demaille@gostai.com>
2767
2768 variables: prefer error-verbose to error_verbose.
2769 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
2770 instead of error_verbose.
2771 * src/scan-gram.l (%error-verbose): Map to the error-verbose
2772 variable.
2773 * doc/bison.texinfo: Promote %define error-verbose instead of
2774 %error-verbose.
2775 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
2776
2777 2009-04-15 Akim Demaille <demaille@gostai.com>
2778
2779 variables: accept dashes.
2780 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
2781 underscores.
2782 * src/scan-gram.l ({id}): Also accept dashes after the initial
2783 letter.
2784 ({directive}): Use {id}.
2785 * src/parse-gram.y: Comment and formatting changes.
2786 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
2787 symbols.
2788 * src/complain.h, src/complain.c (yacc_at): New.
2789 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
2790 symbol names.
2791 * src/output.c (token_definitions_output): Do not #define token
2792 names with dashes.
2793
2794 2009-04-20 Akim Demaille <demaille@gostai.com>
2795
2796 Consistently refer to Yacc, not YACC.
2797 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
2798
2799 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
2800
2801 Pacify make maintainer-check-posix.
2802 * tests/input.at (%define, --define): Move bison command-line
2803 options before grammar file name.
2804
2805 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2806
2807 Document semicolon warnings.
2808 * NEWS (2.5): Here.
2809
2810 2009-04-14 Akim Demaille <demaille@gostai.com>
2811
2812 variables: use `parse.assert' instead of `assert'.
2813 * TODO (assert): Remove.
2814 * data/bison.m4 (b4_assert_if): Replace with...
2815 (b4_parse_assert_if): this.
2816 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
2817 * doc/bison.texinfo (Decl Summary): Document parse.assert.
2818
2819 2009-04-14 Akim Demaille <demaille@gostai.com>
2820
2821 variables: use `parse.trace' instead of `debug'.
2822 * src/getargs.c (getargs): Map -t to %define trace.parse.
2823 * src/scan-gram.l (%debug): Map to %define trace.parse.
2824 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
2825 names to `_' in macro names.
2826 (b4_debug_if): Replace with...
2827 (b4_parse_trace_if): this.
2828 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
2829 * data/yacc.c: Adjust.
2830 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
2831 Use @code to label the variable list.
2832 Document the variable parse.trace.
2833 (Tracing): Promote the parse.trace variable.
2834 * TODO: %printer is not documented.
2835
2836 2009-04-14 Akim Demaille <demaille@gostai.com>
2837
2838 doc: minor fixes.
2839 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
2840 (Table of Symbols): Remove duplicate entry for %debug.
2841
2842 2009-04-10 Eric Blake <ebb9@byu.net>
2843
2844 submodules: update to latest
2845 * submodules/autoconf: Use latest upstream Autoconf.
2846
2847 2009-04-06 Eric Blake <ebb9@byu.net>
2848
2849 Work around autoconf 2.63b bug in testsuite.
2850 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
2851 autoconf bug related to # in test.
2852
2853 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2854
2855 * NEWS (2.5): New section. Describe new -D/--define feature.
2856
2857 2009-04-06 Akim Demaille <demaille@gostai.com>
2858
2859 Regen.
2860 * src/parse-gram.h, src/parse-gram.c: Regen.
2861
2862 2009-04-06 Akim Demaille <demaille@gostai.com>
2863
2864 rename muscle_tab.* as muscle-tab.* for consistency.
2865 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
2866 * src/muscle-tab.h, src/muscle-tab.c: these.
2867 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
2868 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
2869
2870 2009-04-06 Akim Demaille <demaille@gostai.com>
2871
2872 Makefile: introduce $(BISON).
2873 * src/local.mk (BISON): New.
2874 (YACC): Use it.
2875
2876 2009-04-06 Akim Demaille <demaille@gostai.com>
2877
2878 parser: handle %locations as %define locations.
2879 * src/getargs.h, src/getargs.c (locations_flag): Remove.
2880 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
2881 to set "locations" to true.
2882 * src/output.c (prepare): Don't output "locations".
2883 * src/scan-gram.l (%locations): Handle it as a %<flag>.
2884 * src/parse-gram.y: It's no longer a token.
2885 Don't handle it.
2886 * data/bison.m4 (b4_locations_if): Define it with
2887 b4_percent_define_if_define.
2888 * data/c.m4, data/glr.cc: Adjust.
2889
2890 2009-04-06 Akim Demaille <demaille@gostai.com>
2891
2892 Regen.
2893 * src/parse-gram.c: Regen.
2894
2895 2009-04-06 Akim Demaille <demaille@gostai.com>
2896
2897 muscle: factor the handling of obsolete of obsolete directives.
2898 Suggested by Joel E. Denny.
2899
2900 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
2901 New, extracted from...
2902 * src/parse-gram.y (prologue_declaration: pure-parser): here.
2903 Remove it.
2904 (prologue_declaration: "%<flag>"): Use
2905 muscle_percent_define_ensure.
2906 (%error-verbose, %pure-parser): No longer tokens.
2907 * src/scan-gram.l (pure-parser): Return as a %<flag>.
2908
2909 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2910
2911 Fix options documentation.
2912 * build-aux/cross-options.pl: As in --help output, write optional
2913 arguments as [=ARG] not =[ARG].
2914 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
2915
2916 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2917
2918 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
2919 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
2920 requirements for a correct m4 are stricter.
2921 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
2922 * configure.ac: Update to use AC_PROG_GNU_M4.
2923 Reported by Eric Blake.
2924
2925 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2926
2927 Help with updating web manual.
2928 * HACKING: Incorporate instructions from gnulib/doc/README.
2929 * bootstrap.conf (gnulib_modules): Add gendocs.
2930
2931 2009-04-03 Akim Demaille <demaille@gostai.com>
2932
2933 Regen.
2934 * src/parse-gram.h, src/parse-gram.c: Regen.
2935
2936 2009-04-03 Akim Demaille <demaille@gostai.com>
2937
2938 Factor %FLAG at scan level.
2939 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
2940 definitions and associated rules, replaced by....
2941 (PERCENT_FLAG): this new token type, and rule.
2942 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
2943 Use it for %debug and %error-verbose.
2944
2945 2009-04-03 Akim Demaille <demaille@gostai.com>
2946
2947 Regen.
2948 * src/parse-gram.h, src/parse-gram.c: Regen.
2949
2950 2009-04-03 Akim Demaille <demaille@gostai.com>
2951
2952 Treat %debug as %define debug.
2953 * data/bison.m4 (b4_debug_if): New.
2954 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
2955 * data/lalr1.java: Use it instead of b4_debug_flag.
2956 * src/getargs.h, src/getargs.c (debug_flag): Remove.
2957 * src/output.c (prepare): Don't output it.
2958 * src/parse-gram.y: Treat %debug as %define debug.
2959
2960 2009-04-03 Akim Demaille <demaille@gostai.com>
2961
2962 Treat %error-verbose as %define error_verbose.
2963 This allows to pass -Derror_verbose on the command line. Better
2964 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
2965 ERROR_VERBOSE being defined as false or true.
2966 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
2967 on b4_percent_define_ifdef, for does not check the defined value,
2968 but only whether the symbol is defined, rely on
2969 b4_percent_define_flag_if, so that a value of "false" is processed
2970 as a false.
2971 If not defined, define the flag to "false".
2972 (b4_error_verbose_if): New.
2973 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
2974 b4_error_verbose_flag.
2975 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
2976 * src/output.c (prepare): Don't output it.
2977 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
2978
2979 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2980
2981 Fix strange %define locations for default values.
2982 Reported by Akim Demaille at
2983 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
2984 and discussed again starting at
2985 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
2986 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
2987 because location information is bogus.
2988 Use angle brackets to delimit fake file name because square brackets
2989 look like underexpanded m4. Choose a better fake file name.
2990 Use negative line numbers.
2991 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
2992 * src/location.c (location_print): If line for a boundary is negative,
2993 only print that boundary's file name.
2994 * src/location.h: Document that.
2995 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2996 defaults): Update output.
2997
2998 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2999
3000 Pacify ./configure --enable-gcc-warnings.
3001 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
3002 in lib won't compile with it.
3003 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
3004
3005 2009-03-31 Akim Demaille <demaille@gostai.com>
3006
3007 bootstrap: --help to stdout.
3008 * bootstrap (usage): Don't send --help to stderr.
3009 Use a here doc instead of a long string.
3010
3011 2009-03-31 Akim Demaille <demaille@gostai.com>
3012
3013 bootstrap: README-hacking no longer exists
3014 * bootstrap (checkout_only_file): Set to HACKING.
3015
3016 2009-03-26 Akim Demaille <demaille@gostai.com>
3017
3018 doc: merge HACKING and README-hacking.
3019 Two files is confusing.
3020 Reported by Alexandre Duret-Lutz.
3021
3022 * README-hacking: Merge into...
3023 * HACKING (Working from the repository): here.
3024
3025 2009-03-26 Akim Demaille <demaille@gostai.com>
3026
3027 doc: update README-hacking.
3028 * README-hacking: We now use git and git submodules.
3029 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
3030
3031 2009-03-26 Akim Demaille <demaille@gostai.com>
3032
3033 lalr1.cc: avoid GCC 4.3 warnings.
3034 GCC 4.3 now warns about "a || b && c" and asks for explicit
3035 parentheses.
3036 Reported by Alexandre Duret-Lutz.
3037 * data/location.cc: Update copyright years.
3038 (Position::operator==): Use parens to make precedence explicit.
3039 Compare lines and columns first, as they are more likely to be
3040 different, and they are faster to compare.
3041
3042 2009-03-26 Akim Demaille <demaille@gostai.com>
3043
3044 gnulib: update.
3045 * gnulib: Update to latest.
3046 * src/local.mk (AM_CFLAGS): Move to...
3047 * Makefile.am: here.
3048 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
3049 AM_CFLAGS.
3050
3051 2009-03-02 Akim Demaille <demaille@gostai.com>
3052
3053 Comment changes.
3054
3055 2009-03-02 Akim Demaille <demaille@gostai.com>
3056
3057 Share b4_yytranslate_define.
3058 * data/lalr1.cc (b4_yytranslate_define): Move to...
3059 * data/c++.m4: here.
3060
3061 2009-03-02 Akim Demaille <demaille@gostai.com>
3062
3063 Use locations in the variant example.
3064 Yes, this obfuscates the point of this example, variants only.
3065 But glr.cc cannot work (yet?) without locations. This change
3066 makes it easier to use this example with glr.cc.
3067
3068 * examples/variant.yy (assert): %define it.
3069 (locations): Request them.
3070 (yylex): Bind the location to the stage.
3071
3072 2009-03-02 Akim Demaille <demaille@gostai.com>
3073
3074 Dub make_TOKEN as a public type interface.
3075 * data/c++.m4 (b4_symbol_constructor_declare)
3076 (b4_symbol_constructor_define): New empty stubs.
3077 (b4_public_types_declare, b4_public_types_define): Use them.
3078 * data/lalr1.cc (b4_symbol_constructor_declare)
3079 (b4_symbol_constructor_declare_)
3080 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
3081 Move to...
3082 * data/variant.hh: here.
3083 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
3084 needed.
3085 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
3086 b4_symbol_constructor_declare, as it is now done by
3087 b4_public_types_define and b4_public_types_declare.
3088
3089 2009-03-02 Akim Demaille <demaille@gostai.com>
3090
3091 Coding style changes.
3092 * data/lalr1.cc (b4_symbol_constructor_declaration_)
3093 (b4_symbol_constructor_declarations)
3094 (b4_symbol_constructor_definition_)
3095 (b4_symbol_constructor_definitions)
3096 (b4_yytranslate_definition): Rename as...
3097 (b4_symbol_constructor_declare_)
3098 (b4_symbol_constructor_declare)
3099 (b4_symbol_constructor_define_)
3100 (b4_symbol_constructor_define)
3101 (b4_yytranslate_define): these.
3102 * data/variant.hh (b4_variant_definition): Rename as...
3103 (b4_variant_define): this.
3104
3105 2009-03-02 Akim Demaille <demaille@gostai.com>
3106
3107 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
3108 * data/bison.m4 (b4_percent_define_if_define): New.
3109 * data/c++.m4 (b4_variant_if): Move to...
3110 * data/bison.m4: Here, using b4_percent_define_if_define.
3111 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
3112 * data/bison.m4: Here, using b4_percent_define_if_define.
3113
3114 2009-03-02 Akim Demaille <demaille@gostai.com>
3115
3116 Dub symbol_type_base as a public type.
3117 * data/c++.m4 (b4_public_types_declare): Now define
3118 symbol_type_base and symbol_type.
3119 (b4_public_types_define): New.
3120 In both cases, the definitions are taken verbatim from lalr1.cc.
3121 * data/lalr1.cc: Adjust.
3122
3123 2009-03-02 Akim Demaille <demaille@gostai.com>
3124
3125 b4_public_types_declare.
3126 * data/c++.m4 (b4_public_types_declare): New.
3127 * data/glr.cc, data/lalr1.cc: Use it.
3128
3129 2009-03-02 Akim Demaille <demaille@gostai.com>
3130
3131 b4_semantic_type_declare.
3132 * data/c++.m4 (b4_semantic_type_declare): New.
3133 Factors and generalizes what was in glr.cc and lalr1.cc.
3134 * data/variant.hh (b4_semantic_type_declare): Redefine it for
3135 variants.
3136 * data/lalr1.cc, data/glr.cc: Use it.
3137
3138 2009-02-26 Akim Demaille <demaille@gostai.com>
3139
3140 Upgrade gnulib.
3141 * gnulib: Upgrade from master.
3142 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
3143 Regen.
3144
3145 2009-02-25 Akim Demaille <demaille@gostai.com>
3146
3147 Remove useless arguments.
3148 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
3149 relevant.
3150
3151 2009-02-25 Akim Demaille <demaille@gostai.com>
3152
3153 Comment changes.
3154 * data/lalr1.cc: here.
3155
3156 2009-02-25 Akim Demaille <demaille@gostai.com>
3157
3158 Fix glr.cc's debug level handling.
3159 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
3160 glr.c which is used.
3161 (debug_level, set_debug_level): Adjust.
3162
3163 2009-02-25 Akim Demaille <demaille@gostai.com>
3164
3165 Copyright years.
3166 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
3167
3168 2009-02-25 Akim Demaille <demaille@gostai.com>
3169
3170 Style changes.
3171 * etc/bench.pl.in (generate_grammar_list): Consitently use
3172 location_type, not yy::location.
3173
3174 2009-02-25 Akim Demaille <demaille@gostai.com>
3175
3176 Comment change.
3177 * data/lalr1.cc: here.
3178
3179 2009-02-19 Akim Demaille <demaille@gostai.com>
3180
3181 Make yyparser::error public.
3182 * data/lalr1.cc: here.
3183 There is no good reason to keep it private (and it is convenient
3184 to use it from the scanner for instance). It is already public in
3185 glr.cc.
3186
3187 2009-02-19 Akim Demaille <demaille@gostai.com>
3188
3189 Comment changes.
3190 * data/glr.cc: here.
3191
3192 2009-02-19 Akim Demaille <demaille@gostai.com>
3193
3194 Remove trailing blanks.
3195 The epilogue has its own ending \n, no need to add another.
3196
3197 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
3198 epilogue.
3199 * data/glr.cc: dnl when extending the epilogue.
3200 Remove stray "private:".
3201
3202 2009-02-19 Akim Demaille <demaille@gostai.com>
3203
3204 Use b4_c_modern.
3205 * data/c.m4 (b4_c_function_decl): Here.
3206
3207 2009-02-19 Akim Demaille <demaille@gostai.com>
3208
3209 Comment changes.
3210 * data/lalr1.cc: here.
3211
3212 2009-02-19 Akim Demaille <demaille@gostai.com>
3213
3214 Extract variant.hh
3215 * data/variant.hh: New, extracted from...
3216 * data/lalr1.cc: here.
3217 Adjust.
3218 * data/local.mk: Adjust.
3219
3220 2009-02-19 Akim Demaille <demaille@gostai.com>
3221
3222 Extract stack.hh from lalr1.cc.
3223 * data/stack.hh: New.
3224 * data/lalr1.cc: Extract from here.
3225 * data/local.mk: Adjust.
3226
3227 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
3228
3229 Add reminder about uploading public key to keys.gnupg.net.
3230 * HACKING (Release Procedure): Here.
3231
3232 2009-01-28 Akim Demaille <demaille@gostai.com>
3233
3234 * NEWS: Update information about 2.4.1 and 2.4.2.
3235
3236 2008-11-04 Akim Demaille <demaille@gostai.com>
3237
3238 Reformat NEWS.
3239 * NEWS: Use more outline-mode markup.
3240 Suggested by Jim Meyering.
3241
3242 2009-01-08 Akim Demaille <demaille@gostai.com>
3243
3244 Fix grep portability issues.
3245 Grep on Solaris does not support -q.
3246 Reported by Summum Bonum.
3247
3248 * NEWS: Add a stub for 2.4.2.
3249 * THANKS: Add Summum Bonum.
3250 * tests/atlocal.in (EGREP): New.
3251 (CC, CXX, XSLTPROC): Make it possible to override them via
3252 envvars.
3253 * tests/java.at: Use $EGREP instead of egrep.
3254 Use AT_CHECK's ignore instead of grep's -q.
3255
3256 2008-12-11 Akim Demaille <demaille@gostai.com>
3257
3258 Pass the token type to yysyntax_error.
3259 * data/yacc.c (yysyntax_error): Take the transated token instead
3260 of the raw number.
3261 Adjust callers.
3262 * TODO: Update.
3263
3264 2008-12-11 Akim Demaille <demaille@gostai.com>
3265
3266 Formatting changes.
3267 * data/glr.c: Formatting changes.
3268
3269 2008-12-11 Akim Demaille <demaille@gostai.com>
3270
3271 Propagate i18n changes into glr.c.
3272 * TODO: Update.
3273 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
3274 building the error message format dynamically.
3275 * data/lalr1.java: Formatting changes.
3276
3277 2008-12-11 Akim Demaille <demaille@gostai.com>
3278
3279 Use testsuite -C.
3280 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
3281 Solves problems when top_srcdir is an absolute path.
3282 Suggested by Eric Blake.
3283 * configure.ac: Require Autoconf 2.62.
3284
3285 2008-12-11 Akim Demaille <demaille@gostai.com>
3286
3287 Simplify the i18n of the error messages.
3288 * data/lalr1.cc: Comment changes.
3289 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
3290 lalr1.cc instead of building dynamically the format string.
3291
3292 2008-12-08 Akim Demaille <demaille@gostai.com>
3293
3294 Fix portability issue in the test suite.
3295 * tests/local.at (AT_MATCHES_CHECK): New.
3296 Based on Perl instead of Sed. Sed has too many portability
3297 pitfalls, not ever Sed is GNU Sed.
3298 * tests/actions.at (Fix user actions without a trailing semicolon):
3299 Use it.
3300
3301 2008-12-08 Akim Demaille <demaille@gostai.com>
3302
3303 Update data/README.
3304 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
3305
3306 2008-12-08 Akim Demaille <demaille@gostai.com>
3307
3308 Install autoconf as a submodule to get m4sugar.
3309 * .gitmodules: Add submodules/autoconf.
3310 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
3311 submodules/autoconf.
3312
3313 2008-12-08 Akim Demaille <demaille@gostai.com>
3314
3315 Test token.prefix in all the skeletons.
3316 * data/java.m4 (b4_token_enum): Use the token.prefix.
3317 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
3318 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
3319 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
3320 * tests/java.at: Comment changes.
3321 (AT_CHECK_JAVA_MINIMAL): Define the END token.
3322 (Java parser class and package names): Add token.prefix check.
3323
3324 2008-12-08 Akim Demaille <demaille@gostai.com>
3325
3326 Fix regeneration of atconfig.
3327 * tests/local.mk (tests/atconfig): The rule was incorrect, but
3328 remove it: now that there is no tests/Makefile.am, the top-level
3329 Makefile properly updates atconfig when needed.
3330
3331 2008-12-07 Di-an Jan <dianj@freeshell.org>
3332
3333 Implement the FIXME that ends an user action with a semicolon
3334 if it seems necessary.
3335 * src/scan-code.l (flex rules section): Flag cpp directive from
3336 any `#' to the first unescaped end-of-line. Semicolon is not
3337 needed after `;', `{', '}', or cpp directives and is needed after
3338 any other token (whitespaces and comments have no effect).
3339 * tests/actions.at (Fix user actions without a trailing semicolon):
3340 New test.
3341 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
3342 to make user actions complete statements.
3343 Adjust column numbers in error messages.
3344 * tests/regression.at (Fix user actions without a trailing semicolon):
3345 Remove. Covered by new test.
3346
3347 2008-12-07 Akim Demaille <demaille@gostai.com>
3348
3349 Update gnulib.
3350 * gnulib: Update from master.
3351
3352 2008-12-05 Eric Blake <ebb9@byu.net>
3353
3354 Avoid compiler warning.
3355 * src/output.c (muscle_insert_item_number_table): Delete unused
3356 function.
3357
3358 2008-12-02 Eric Blake <ebb9@byu.net>
3359
3360 Build testsuite with newer autoconf.
3361 * tests/output.at (m4_expand): Don't override in newer autoconf,
3362 where the underlying implementation changed.
3363 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
3364 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
3365 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
3366 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
3367 since some of them contain unbalanced ')'.
3368
3369 2008-12-01 Akim Demaille <demaille@gostai.com>
3370
3371 Use b4_symbol for printers and destructors everywhere.
3372 * data/bison.m4 (b4_symbol_action_location): New.
3373 * data/c.m4 (b4_symbol_actions): Remove.
3374 Adjust all callers to use by b4_symbol_foreach and the corresponding
3375 b4_symbol_printer/destructor macro.
3376 * data/glr.cc: Adjust.
3377 * data/lalr1.java: Adjust the %destructor sanity check.
3378 * src/output.c (symbol_code_props_output): Remove, we no longer
3379 need the b4_symbol_printers/destructors tables.
3380
3381 2008-12-01 Akim Demaille <demaille@gostai.com>
3382
3383 Use b4_symbol_case_.
3384 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
3385 b4_symbol_case_.
3386
3387 2008-12-01 Akim Demaille <demaille@gostai.com>
3388
3389 Move b4_symbol based macro to bison.m4.
3390 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
3391 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
3392 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
3393 (b4_type_foreach): Move to...
3394 * data/bison.m4: Here.
3395 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
3396 b4_symbol_value_template instead of b4_symbol_value.
3397
3398 2008-12-01 Akim Demaille <demaille@gostai.com>
3399
3400 b4_symbol/type_foreach.
3401 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
3402 Use them.
3403
3404 2008-12-01 Akim Demaille <demaille@gostai.com>
3405
3406 Use the symbol properties to output the printer/destructor for lalr1.cc.
3407 Instead of defining complex list of tuples to define various
3408 properties of the symbols, we now prefer to define symbols as
3409 "structs" in m4: using the symbol key (its number), and the
3410 property name, b4_symbol gives it value. Use this to handle
3411 destructors and printers.
3412
3413 * src/output.c (CODE_PROP): New.
3414 (prepare_symbol_definitions): Use it to define the printer and
3415 destructor related attributes of the symbols.
3416 * data/lalr1.cc (b4_symbol_actions): Rename as...
3417 (b4_symbol_action): this.
3418 Use b4_symbol instead of 6 arguments.
3419 (b4_symbol_printer, b4_symbol_destructor): New.
3420 Use them instead of b4_symbol_actions.
3421
3422 2008-12-01 Akim Demaille <demaille@gostai.com>
3423
3424 Avoid capturing variables too easily.
3425 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
3426 v__ and p__ instead of v and p.
3427
3428 2008-12-01 Akim Demaille <demaille@gostai.com>
3429
3430 Remove spurious empty line before syncline.
3431 * data/bison.m4 (b4_syncline): Don't output an empty line before
3432 the output.
3433
3434 2008-11-26 Akim Demaille <demaille@gostai.com>
3435
3436 Convert lib/Makefile.am into lib/local.mk.
3437 The real problem is rather gnulib.mk, which itself is extracted
3438 from a Makefile.am that gnulib expects to the "recursive". The
3439 tool prefix-gnulib-mk converts such a gnulib.mk to be
3440 non-recursive. Also, some AC_SUBST variables need to be adjusted.
3441
3442 * etc/prefix-gnulib-mk: New.
3443 * bootstrap (slurp): Use it to convert further gnulib.mk.
3444 No longer try to avoid re-creation of lib/gnulib.mk as the changes
3445 are deeper.
3446 * lib/Makefile.am: Rename as...
3447 * lib/local.mk: this.
3448 Adjust to be prefixed.
3449 * Makefile.am, configure.ac: Adjust.
3450 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
3451
3452 2008-11-26 Akim Demaille <demaille@gostai.com>
3453
3454 s/_FLAGS/FLAGS/.
3455 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
3456 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
3457 Reported by Eric Blake.
3458
3459 2008-11-26 Akim Demaille <demaille@gostai.com>
3460
3461 Use b4_parser_tables_define in glr.cc.
3462 * data/glr.c: Use b4_parser_tables_define instead of defining the
3463 (deterministic integral) tables by hand.
3464
3465 2008-11-26 Akim Demaille <demaille@gostai.com>
3466
3467 Use b4_parser_tables_define in Java.
3468 * data/java.m4 (b4_typed_parser_table): Rename as...
3469 (b4_typed_parser_table_define): this, for consistency.
3470 Accept a comment as $4.
3471 Move $2 into yy*_.
3472 (b4_integral_parser_table): Rename as...
3473 (b4_integral_parser_table_define): this.
3474 * data/lalr1.java: Adjust all uses.
3475 Use b4_parser_tables_define instead of generation by hand.
3476
3477 2008-11-26 Akim Demaille <demaille@gostai.com>
3478
3479 Prepare the convergence bw C style and Java table generation.
3480 * data/bison.m4 (b4_tables_map, b4_tables_declare)
3481 (b4_tables_define): Rename as...
3482 (b4_integral_parser_tables_map, b4_parser_tables_declare)
3483 (b4_parser_tables_define): these.
3484 * data/c.m4 (b4_table_define): Rename as...
3485 (b4_integral_parser_table_define): this.
3486 * data/lalr1.cc: Adjust.
3487 (b4_table_define, b4_table_declare): Rename as...
3488 (b4_integral_parser_table_define)
3489 (b4_integral_parser_table_declare): these.
3490 (yyrline_): Move the comment where it is actually used.
3491 * data/yacc.c: Adjust.
3492 (yyrline): Use b4_integral_parser_table_define.
3493
3494 2008-11-26 Akim Demaille <demaille@gostai.com>
3495
3496 Regen.
3497 * src/parse-gram.h, src/parse-gram.c: Regen.
3498
3499 2008-11-26 Akim Demaille <demaille@gostai.com>
3500
3501 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
3502 * data/lalr1.cc (b4_tables_map): Move to...
3503 * data/bison.m4: here.
3504 Update the comment for yytable during the flight.
3505 (b4_tables_declare, b4_tables_define): New.
3506 * data/lalr1.cc: Use them.
3507 * data/c.m4 (b4_table_define): New.
3508 * data/yacc.c: Use b4_tables_define instead of output the tables
3509 by hand.
3510 * tests/regression.at (Web2c Actions): Adjust the expected output,
3511 the order of the tables changed.
3512
3513 2008-11-26 Akim Demaille <demaille@gostai.com>
3514
3515 Get rid of (yy)rhs and (yy)prhs.
3516 These tables are no longer needed in the parsers, and they don't seem to
3517 be useful. They are not documented either.
3518
3519 * src/output.c (prepare_rules): Get rid of rhs and prhs.
3520 Adjust the computation of (yy)r2.
3521
3522 2008-11-26 Akim Demaille <demaille@gostai.com>
3523
3524 Rule length is unsigned.
3525 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
3526
3527 2008-11-26 Akim Demaille <demaille@gostai.com>
3528
3529 Get rid of lalr1-split.cc.
3530 It was no longer maintainer.
3531
3532 * data/lalr1-split.cc: Remove.
3533 * etc/bench.pl.in (bench_fusion_parser): Remove.
3534 Adjust.
3535
3536 2008-11-26 Akim Demaille <demaille@gostai.com>
3537
3538 Use yy* consistently.
3539 * data/glr.c: Now that yyrhs no longer exists as a global
3540 variable, rename local "rhs" variables into "yyrhs" for
3541 consistency.
3542
3543 2008-11-25 Akim Demaille <demaille@gostai.com>
3544
3545 Get rid of yyrhs and yyprhs in glr.c.
3546 * data/glr.c (yyrhs, yyprhs): Remove.
3547 Instead, use the state stack and yystos.
3548
3549 2008-11-25 Akim Demaille <demaille@gostai.com>
3550
3551 Flag glr tests.
3552 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
3553 as an Autotest keyword.
3554
3555 2008-11-25 Akim Demaille <demaille@gostai.com>
3556
3557 Prefer TESTSUITE_FLAGS.
3558 TESTSUITEFLAGS is barely readable.
3559
3560 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
3561 for backward compatibility.
3562 Use the former instead of the latter.
3563
3564 2008-11-25 Akim Demaille <demaille@gostai.com>
3565
3566 Get rid of yyrhs and yyprhs in larl1.java.
3567 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
3568 (yy_reduce_print): Rather, use yystos_ and the state stack.
3569
3570 2008-11-25 Akim Demaille <demaille@gostai.com>
3571
3572 Formatting changes.
3573
3574 2008-11-25 Akim Demaille <demaille@gostai.com>
3575
3576 Get rid of yyrhs and yyprhs in yacc.c.
3577 They were used to get the symbol types, given a rule number, when
3578 displaying the top of the stack before a reduction. But the
3579 symbol type is available from the state stack. This has two be
3580 benefits: two tables less in the parser (making it smaller), and a
3581 more consistent use of the three stacks which will help to fuse
3582 them.
3583
3584 * data/yacc.c (yyprhs, yyrhs): Remove.
3585 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
3586 (yy_reduce_print): Take yyssp as argument.
3587 Use it, together with yystos, to get the symbol type.
3588 * tests/regression.at (Web2c Report): Remove these tables from the
3589 expected output.
3590
3591 2008-11-25 Akim Demaille <demaille@gostai.com>
3592
3593 b4_tables_map.
3594 The point is to factor the generation of the tables across skeletons.
3595 This is language dependant.
3596
3597 * data/c.m4 (b4_comment_): New.
3598 Should be usable to define how to generate tables independently of
3599 the language.
3600 (b4_c_comment): New.
3601 (b4_comment): Bounce to b4_c_comment.
3602 Now support $2 = [PREFIX] for indentation.
3603 * data/lalr1.cc (b4_table_declare): Don't output a comment if
3604 there is no comment.
3605 Indent it properly when there is one.
3606 Output the ending semicolon.
3607 (b4_table_define): Space changes.
3608 Output the ending semicolon.
3609 (b4_tables_map): New.
3610 Use it twice instead of declaring and defining the (integral)
3611 tables by hand.
3612
3613 2008-11-25 Akim Demaille <demaille@gostai.com>
3614
3615 b4_table_declare.
3616 * data/lalr1.cc (b4_table_declare): New.
3617 Use it to declare the tables defined with b4_table_define.
3618 (b4_table_define): Declare a third arg to match b4_table_declare
3619 signature.
3620 Move all the comments around invocations of b4_table_define into
3621 the invocations itselves.
3622 Move things around to have the order for declarations and
3623 definitions.
3624
3625 2008-11-25 Akim Demaille <demaille@gostai.com>
3626
3627 Formatting changes.
3628 * data/lalr1.java: here.
3629
3630 2008-11-25 Akim Demaille <demaille@gostai.com>
3631
3632 b4_args is more general than only C++.
3633 * data/lalr1.cc (b4_args, _b4_args): Move to...
3634 * data/bison.m4: here.
3635
3636 2008-11-21 Di-an Jan <dianj@freeshell.org>
3637
3638 Implement no-XXX arguments for --warnings, --report, --trace.
3639 * src/getargs.c (flags_argmatch): Handles no-XXX.
3640 Fix typo in doxygen comment.
3641
3642 2008-11-21 Akim Demaille <demaille@gostai.com>
3643
3644 Display the changes in cross-options.texi.
3645 * build-aux/cross-options.pl ($sep): New, to separate items.
3646 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
3647 changes.
3648
3649 2008-11-20 Di-an Jan <dianj@freeshell.org>
3650
3651 Improves options in the manual.
3652 * doc/bison.texinfo (-g, -x): Add space before argument.
3653 (Option Cross Key): Implement FIXME: listing directives also.
3654 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
3655 (Short Option): Special case -d. Put arguments inside @option.
3656 (Bison Directive): Add column, automatically extracted from
3657 src/scan-gram.l (actual name passed as the first argument)
3658 with special case for %define.
3659 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
3660 to build-aux/cross-options.pl.
3661 * src/getargs.c (usage): Document limitations of cross-options.pl.
3662 * src/scan-gram.l: Likewise.
3663
3664 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
3665
3666 Fix unexpanded macros in GLR defines file.
3667 Reported by Csaba Raduly at
3668 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
3669 * THANKS (Csaba Raduly): Add.
3670 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
3671 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
3672 lexer in a separate module that includes the defines file.
3673 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
3674 source.
3675 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
3676 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
3677 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
3678 (AT_DATA_SOURCE_PROLOGUE): New.
3679 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
3680 (AT_DATA_SOURCE): New.
3681 (AT_FULL_COMPILE): Extend to support an additional source file.
3682
3683 2008-11-18 Akim Demaille <demaille@gostai.com>
3684
3685 More TODO.
3686 * TODO: More short term issues.
3687
3688 2008-11-18 Akim Demaille <demaille@gostai.com>
3689
3690 Regen.
3691 * src/parse-gram.h, src/parse-gram.c: Regen.
3692
3693 2008-11-18 Akim Demaille <demaille@gostai.com>
3694
3695 Use b4_subtract where possible.
3696 * data/lalr1.cc (b4_subtract): Move to...
3697 * data/bison.m4: here.
3698 * data/glr.c (b4_rhs_data): Use it.
3699 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
3700
3701 2008-11-18 Akim Demaille <demaille@gostai.com>
3702
3703 Remove incorrect mode specification.
3704 * data/glr.cc: Don't pretend it's C code.
3705
3706 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
3707
3708 Simplify last patch slightly.
3709 * src/getargs.c (getargs): Here.
3710
3711 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
3712
3713 Fix last warning from --enable-gcc-warnings.
3714 * src/getargs.c (getargs): Don't assign const address to non-const
3715 pointer.
3716
3717 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
3718
3719 Don't let maintainer-*-check targets force a version update.
3720 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
3721 handled.
3722
3723 2008-11-17 Di-an Jan <dianj@freeshell.org>
3724
3725 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
3726 Align menus. Adjust word wrapping. Use node names for menu names.
3727 (Examples): Don't abbreviate node names.
3728 (LocalWords): Remove abbreviations.
3729 (Copying): Make description a sentence.
3730 (Java Action Features): Remove period to match the rest of menu.
3731
3732 2008-11-17 Di-an Jan <dianj@freeshell.org>
3733
3734 Handles several --enable-gcc-warnings.
3735 * src/getargs.c (command_line_location): Set parameters to void.
3736 * src/output.c (symbol_type_name_cmp): Make static.
3737 (symbols_by_type_name): Set parameters to void.
3738 (symbol_definitions_output): Remove unused parameter. Rename as...
3739 (prepare_symbol_definitions): this.
3740 (muscles_output): Move symbol_definitions_output to...
3741 (output): here as prepare_symbol_definitions.
3742 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
3743 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
3744
3745 2008-11-17 Di-an Jan <dianj@freeshell.org>
3746
3747 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
3748 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
3749
3750 2008-11-16 Akim Demaille <demaille@gostai.com>
3751
3752 Add missing $(EXEEXT).
3753 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
3754 "src/bison$(EXEEXT)".
3755 Reported by Di-an Jan.
3756
3757 2008-11-15 Akim Demaille <demaille@gostai.com>
3758
3759 * TODO: Update.
3760
3761 2008-11-15 Akim Demaille <demaille@gostai.com>
3762
3763 Formatting changes.
3764 * tests/input.at: here.
3765
3766 2008-11-15 Akim Demaille <demaille@gostai.com>
3767
3768 Remove duplicate header inclusion.
3769 * src/LR0.c: here.
3770
3771 2008-11-15 Akim Demaille <demaille@gostai.com>
3772
3773 * src/parse-gram.h, src/parse-gram.c: Regen.
3774
3775 2008-11-15 Akim Demaille <demaille@gostai.com>
3776
3777 Support parametric types.
3778
3779 There are two issues to handle: first scanning nested angle
3780 bracket pairs to support types such as std::pair< std::string,
3781 std::list<std::string> > >.
3782
3783 Another issue is to address idiosyncracies of C++: do not glue two
3784 closing angle brackets together (otherwise it's operator>>), and
3785 avoid sticking blindly a TYPE to the opening <, as it can result
3786 in '<:' which is a digraph for '['.
3787
3788 * src/scan-gram.l (brace_level): Rename as...
3789 (nesting): this.
3790 (SC_TAG): New.
3791 Implement support for complex tags.
3792 (tag): Accept
3793 , but not <.
3794 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
3795 (b4_symbol_variant): Leave space around types as parameters.
3796 * examples/variant.yy: Use nested template types and leading ::.
3797 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
3798 Rename as...
3799 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
3800 * tests/c++.at: Test parametric types.
3801
3802 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
3803
3804 Test token.prefix.
3805 This is not sufficient, but we test at least that the make_SYMBOL
3806 interface is not affected by token.prefix. A more general test
3807 will be implemented when the support of token.prefix is generalized
3808 to more skeletons.
3809
3810 * tests/c++.at: One more variant test, using token.prefix.
3811
3812 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
3813
3814 Test the make_TOKEN interface.
3815 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
3816 Factor the common code in yylex.
3817 Use it to test "%define lex_symbol".
3818
3819 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
3820
3821 Formatting change.
3822
3823 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
3824
3825 Simplify code for variants bench marks.
3826 * etc/bench.pl.in (&generate_grammar_list): Define and use
3827 location_type.
3828 Factor the common code in yylex.
3829
3830 2008-11-15 Akim Demaille <demaille@gostai.com>
3831
3832 Better error message.
3833 * bootstrap (find_tool): Fix the error message.
3834
3835 2008-11-15 Akim Demaille <demaille@gostai.com>
3836
3837 Update variant.yy to newest interface.
3838 * examples/variant.yy: Define lex_symbol.
3839 Adjust.
3840
3841 2008-11-15 Akim Demaille <demaille@gostai.com>
3842
3843 Don't use locations in variant.yy.
3844 * examples/variant.yy: Adjust to not using locations.
3845
3846 2008-11-15 Akim Demaille <demaille@gostai.com>
3847
3848 Comment changes.
3849 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
3850 comments for the license.
3851
3852 2008-11-15 Akim Demaille <demaille@gostai.com>
3853
3854 Remove tests/Makefile.am.
3855 * tests/Makefile.am: Rename as...
3856 * tests/local.mk: this.
3857 * Makefile.am, configure.ac: Adjust.
3858 * Makefile.am (DISTCLEANFILES): Define.
3859 (maintainer-check, maintainer-xml-check, maintainer-push-check):
3860 Remove, we no longer need to bounce to the real targets.
3861
3862 2008-11-15 Akim Demaille <demaille@gostai.com>
3863
3864 Comment changes.
3865
3866 2008-11-15 Akim Demaille <demaille@gostai.com>
3867
3868 djgpp/local.mk.
3869 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
3870 * djgpp/local.mk: this new file.
3871
3872 2008-11-15 Akim Demaille <demaille@gostai.com>
3873
3874 Remove doc/Makefile.am.
3875 * doc/Makefile.am: Rename as...
3876 * doc/local.mk: this.
3877 Adjust paths
3878 * Makefile.am, configure.ac: Adjust.
3879 * Makefile.am (MOSTLYCLEANFILES): New.
3880 * src/local.mk: Adjust.
3881
3882 2008-11-15 Akim Demaille <demaille@gostai.com>
3883
3884 Move sc_tight_scope into maint.mk.
3885 It does not work, and I don't know how it was supposed to work: it
3886 seems to be looking for sources in the build tree. I just moved
3887 it at a better place, fixing it is still required.
3888
3889 * src/local.mk (echo): Remove.
3890 (sc_tight_scope): Move to...
3891 * maint.mk: here.
3892
3893 2008-11-15 Akim Demaille <demaille@gostai.com>
3894
3895 Regen.
3896 * src/parse-gram.h, src/parse-gram.h: Regen.
3897
3898 2008-11-15 Akim Demaille <demaille@gostai.com>
3899
3900 Remove src/Makefile.am.
3901 * src/Makefile.am: Rename as...
3902 * src/local.mk: this.
3903 Prefix all the paths with src/.
3904 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
3905 (AM_CPPFLAGS): Find find in builddir/src.
3906 (YACC): Move the flags into...
3907 (AM_YFLAGS): here.
3908 * maint.mk (sc_tight_scope): Disable.
3909 It used to bounce to the version in src/Makefile.am which is now
3910 part of this very Makefile.
3911 * Makefile.am, configure.ac: Adjust.
3912 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
3913 include "..." to find files "here": we are no longer in src/, so
3914 qualify the includes with src/.
3915 * doc/Makefile.am (PREPATH): No longer include the top_builddir
3916 prefix.
3917 (.x.1): Adjust to be able to create src/foo from the top level
3918 Makefile, instead of going bounce to src/Makefile the creation of
3919 foo.
3920
3921 2008-11-15 Akim Demaille <demaille@gostai.com>
3922
3923 Remove useless variable.
3924 * doc/Makefile.am (srcsrcdir): Remove.
3925
3926 2008-11-15 Akim Demaille <demaille@gostai.com>
3927
3928 Remove data/Makefile.am.
3929 * data/Makefile.am: Rename as...
3930 * data/local.mk: this.
3931 Adjust paths.
3932 * Makefile.am, configure.ac: Adjust.
3933
3934 2008-11-15 Akim Demaille <demaille@gostai.com>
3935
3936 Remove etc/Makefile.am.
3937 * etc/Makefile.am: Rename as...
3938 * etc/local.mk: this.
3939 Adjust.
3940 * Makefile.am, configure.ac: Adjust.
3941
3942 2008-11-15 Akim Demaille <demaille@gostai.com>
3943
3944 Remove examples/local.mk.
3945 examples/calc++/Makefile.am might be interesting to keep as is, since
3946 it is an example in itself.
3947
3948 * examples/Makefile.am: Rename as...
3949 * examples/local.mk: this.
3950 Adjust.
3951 * Makefile.am, configure.ac: Adjust.
3952
3953 2008-11-15 Akim Demaille <demaille@gostai.com>
3954
3955 Remove build-aux/Makefile.am.
3956 Recursive Makefiles are really way too slow, let's get rid of some of
3957 them.
3958
3959 * build-aux/Makefile.am: Rename as...
3960 * build-aux/local.mk: this.
3961 Adjust paths.
3962 * Makefile.am, configure.ac: Adjust.
3963
3964 2008-11-15 Akim Demaille <demaille@gostai.com>
3965
3966 Provide convenience constructors for locations and positions.
3967 * data/location.cc (position::position): Accept file, line and
3968 column as arguments with default values.
3969 Always qualify initial line and column literals as unsigned.
3970 (location::location): Provide convenience constructors.
3971
3972 2008-11-15 Akim Demaille <demaille@gostai.com>
3973
3974 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
3975 token type.
3976 Using template buys us nothing, and makes it uselessly complex to
3977 construct a symbol. Besides, it could not be generalized to other
3978 languages, while make_FOO would work in C/Java etc.
3979
3980 * data/lalr1.cc (b4_symbol_): New.
3981 (b4_symbol): Use it.
3982 (b4_symbol_constructor_declaration_)
3983 (b4_symbol_constructor_definition_): Instead of generating
3984 specializations of an overloaded template function, just generate
3985 several functions whose names are forged from the token names
3986 without the token.prefix.
3987 (b4_symbol_constructor_declarations): Generate them for all the
3988 symbols, not just by class of symbol type, now that instead of
3989 specializing a function template by the token, we generate a
3990 function named after the token.
3991 (b4_symbol_constructor_specialization_)
3992 (b4_symbol_constructor_specializations): Remove.
3993 * etc/bench.pl.in: Adjust to this new API.
3994
3995 2008-11-13 Akim Demaille <demaille@gostai.com>
3996
3997 %define token.prefix.
3998 Provide a means to add a prefix to the name of the tokens as
3999 output in the generated files. Because of name clashes, it is
4000 good to have such a prefix such as TOK_ that protects from names
4001 such as EOF, FILE etc. But it clutters the grammar itself.
4002
4003 * data/bison.m4 (token.prefix): Empty by default.
4004 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
4005 * data/lalr1.cc (b4_symbol): Ditto.
4006
4007 2008-11-13 Akim Demaille <demaille@gostai.com>
4008
4009 Compute at M4 time some of the subtractions.
4010 * data/lalr1.cc (b4_subtract): New.
4011 (b4_rhs_data): Use it.
4012
4013 2008-11-13 Akim Demaille <demaille@gostai.com>
4014
4015 symbol::token.
4016 This allows the user to get the type of a token returned by yylex.
4017
4018 * data/lalr1.cc (symbol::token): New.
4019 (yytoknum_): Define when %define lex_symbol, independently of
4020 %debug.
4021 (yytoken_number_): Move into...
4022 (symbol::token): here, since that's the only use.
4023 The other one is YYPRINT which was not officially supported
4024 by lalr1.cc, and anyway it did not work since YYPRINT uses this
4025 array under a different name (yytoknum).
4026
4027 2008-11-13 Akim Demaille <demaille@gostai.com>
4028
4029 YYERRCODE.
4030 * TODO (YYERRCODE): Mention the case of $undef.
4031
4032 2008-11-13 Akim Demaille <demaille@gostai.com>
4033
4034 TODO: YYPRINT.
4035 * TODO (YYPRINT): New.
4036
4037 2008-11-13 Akim Demaille <demaille@gostai.com>
4038
4039 Comment changes.
4040 * data/lalr1.cc, data/yacc.c: Fix the description of the
4041 yytranslate and yytoknum tables.
4042
4043 2008-11-13 Akim Demaille <demaille@gostai.com>
4044
4045 Define make_symbol in the header.
4046 To reach good performances these functions should be inlined (yet
4047 this is to measure precisely). To this end they must be available
4048 to the caller.
4049
4050 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
4051 location_type with the class name.
4052 Since will now be output in the header, declare "inline".
4053 No longer use b4_symbol_constructor_specializations, but
4054 b4_symbol_constructor_definitions in the header.
4055 Don't call it in the *.cc file.
4056
4057 2008-11-13 Akim Demaille <demaille@gostai.com>
4058
4059 Define yytranslate in the header for lex_symbol.
4060 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
4061 into the header file when using %define lex_symbol.
4062 (yytranslate_): Declare inline.
4063
4064 2008-11-13 Akim Demaille <demaille@gostai.com>
4065
4066 Define the constructors of symbol_type in
4067 b4_symbol_constructor_definitions.
4068 The constructors are called by the make_symbol functions, which a
4069 forthcoming patch will move elsewhere. Hence the interest of
4070 putting them together.
4071
4072 The stack_symbol_type does not need to be moved, it is used only
4073 by the parser.
4074
4075 * data/lalr1.cc: Move symbol_type and symbol_base_type
4076 constructors into...
4077 (b4_symbol_constructor_definitions): here.
4078 Adjust.
4079
4080 2008-11-13 Akim Demaille <demaille@gostai.com>
4081
4082 Make it easier to move the definition of yytranslate_.
4083 Forthcoming changes will make it possible to use yytranslate_
4084 from outside the parser implementation file.
4085
4086 * data/lalr1.cc (b4_yytranslate_definition): New.
4087 Use it.
4088
4089 2008-11-13 Akim Demaille <demaille@gostai.com>
4090
4091 Remove useless class specification.
4092 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
4093 to refer to the class name to use a type defined by the class for
4094 arguments of member functions.
4095
4096 2008-11-13 Akim Demaille <demaille@gostai.com>
4097
4098 Finer input type for yytranslate.
4099 This patch is debatable: the tradition expects yylex to return an int
4100 which happens to correspond to token_number (which is an enum). This
4101 allows for instance to return characters (such as '*' etc.). But this
4102 goes against the stronger typing I am trying to have with the new
4103 lex interface which return a symbol_type. So in this case, feed
4104 yytranslate_ with a token_type.
4105
4106 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
4107 expect a token_type.
4108
4109 2008-11-13 Akim Demaille <demaille@gostai.com>
4110
4111 Honor lex-params in %define lex_symbol mode.
4112 * data/lalr1.cc: Use b4_lex_param.
4113
4114 2008-11-13 Akim Demaille <demaille@gostai.com>
4115
4116 Simplify names.
4117 * src/output.c (symbol_definitions_output): Rename symbol
4118 attributes type_name and has_type_name as type and has_type.
4119 * data/lalr1.cc: Adjust uses.
4120
4121 2008-11-13 Akim Demaille <demaille@gostai.com>
4122
4123 Use b4_type_names for the union type.
4124 The union used to compute the size of the variant used to iterate
4125 over the type of all the symbols, with a lot of redundancy. Now
4126 iterate over the lists of symbols having the same type-name.
4127
4128 * data/lalr1.cc (b4_char_sizeof_): New.
4129 (b4_char_sizeof): Use it.
4130 Adjust to be called with a list of numbers instead of a single
4131 number.
4132 Adjust its caller for new-line issues.
4133
4134 2008-11-13 Akim Demaille <demaille@gostai.com>
4135
4136 Define the "identifier" of a symbol.
4137 Symbols may have several string representations, for instance if
4138 they have an alias. What I call its "id" is a string that can be
4139 used as an identifier. May not exist.
4140
4141 Currently the symbols which have the "tag_is_id" flag set are
4142 those that don't have an alias. Look harder for the id.
4143
4144 * src/output.c (is_identifier): Move to...
4145 * src/symtab.c (is_identifier): here.
4146 * src/symtab.h, src/symtab.c (symbol_id_get): New.
4147 * src/output.c (symbol_definitions_output): Use it to define "id"
4148 and "has_id".
4149 Remove the definition of "tag_is_id".
4150 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
4151 "tag_is_id" were used to produce code.
4152 We still use "tag" for documentation.
4153
4154 2008-11-11 Akim Demaille <demaille@gostai.com>
4155
4156 Locations are no longer required by lalr1.cc.
4157 * data/lalr1.cc (_b4_args, b4_args): New.
4158 Adjust all uses of locations to make them optional.
4159 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
4160 (AT_CHECK_NAMESPACE): Check the use of locations.
4161 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
4162 without locations with lalr1.cc.
4163 Test these cases.
4164 * tests/output.at: Check lalr1.cc with and without location
4165 support.
4166 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
4167 Don't use locations.
4168
4169 2008-11-11 Akim Demaille <demaille@gostai.com>
4170
4171 AT_FULL_COMPILE.
4172 * tests/local.at (AT_FULL_COMPILE): New.
4173 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
4174
4175 2008-11-11 Akim Demaille <demaille@gostai.com>
4176
4177 Support parens in calc++.
4178 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
4179 * examples/calc++/test (run): Check the expected output.
4180 Adjust callers.
4181 Check parens too.
4182
4183 2008-11-11 Akim Demaille <demaille@gostai.com>
4184
4185 Simplify lalr1.cc since %defines is mandatory.
4186 * data/lalr1.cc: Remove useless calls to b4_defines_if.
4187
4188 2008-11-11 Akim Demaille <demaille@gostai.com>
4189
4190 TODO: yyfmt.
4191 * TODO (yysyntax_error): New item.
4192
4193 2008-11-11 Akim Demaille <demaille@gostai.com>
4194
4195 Prefer M4 to CPP.
4196 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
4197 YYERROR_VERBOSE.
4198
4199 2008-11-11 Akim Demaille <demaille@gostai.com>
4200
4201 Support i18n of the parse error messages.
4202 * TODO (lalr1.cc/I18n): Remove.
4203 * data/lalr1.cc (yysyntax_error_): Support the translation of the
4204 error messages, as done in yacc.c.
4205 Stay within the yy* pseudo namespace.
4206
4207 2008-11-11 Akim Demaille <demaille@gostai.com>
4208
4209 More TODO.
4210 * TODO (single stack, yysyntax_error): New.
4211
4212 2008-11-11 Akim Demaille <demaille@gostai.com>
4213
4214 Make it possible to return a symbol_type from yylex.
4215 * data/lalr1.cc (b4_lex_symbol_if): New.
4216 (parse): When lex_symbol is defined, expected yylex to return the
4217 complete lookahead.
4218 * etc/bench.pl.in (generate_grammar_list): Extend to support this
4219 yylex interface.
4220 (bench_variant_parser): Exercise it.
4221
4222 2008-11-11 Akim Demaille <demaille@gostai.com>
4223
4224 Remove useless bench case.
4225 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
4226 no longer used.
4227
4228 2008-11-11 Akim Demaille <demaille@gostai.com>
4229
4230 Improve display of directives.
4231 * etc/bench.pl.in (parse_term): Don't add useless eol.
4232
4233 2008-11-11 Akim Demaille <demaille@gostai.com>
4234
4235 Use string_cast in the bench.
4236 * etc/bench.pl.in (generate_grammar_list): Define and use
4237 string_cast.
4238
4239 2008-11-11 Akim Demaille <demaille@gostai.com>
4240
4241 Replace yychar with a Boolean.
4242 * data/lalr1.cc (parse::yychar): Replace by...
4243 (parse::yyempty): this.
4244
4245 2008-11-11 Akim Demaille <demaille@gostai.com>
4246
4247 Factor the tables.
4248 * TODO: New item.
4249
4250 2008-11-11 Akim Demaille <demaille@gostai.com>
4251
4252 Let yytranslate handle the eof case.
4253 * data/lalr1.cc (yytranslate_): Handle the EOF case.
4254 Adjust callers.
4255 No longer expect yychar to be equal to yyeof_, rather, test the
4256 lookahead's (translated) kind.
4257
4258 2008-11-11 Akim Demaille <demaille@gostai.com>
4259
4260 yychar cannot be empty in yyerrlab.
4261 * TODO (yychar == yyempty_): New.
4262 * data/lalr1.cc: Remove the handling of this case.
4263 This eases forthcoming changes related to yychar and yytranslate.
4264
4265 2008-11-11 Akim Demaille <demaille@gostai.com>
4266
4267 Bench: syntactic sugar for %define/#define.
4268 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
4269 (&bench_push_parser, bench_variant_parser): Use this feature.
4270 (&eat): New.
4271 Use it.
4272
4273 2008-11-11 Akim Demaille <demaille@gostai.com>
4274
4275 Less memory pressure on the "list" bench.
4276 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
4277 the values, to limit memory pressure.
4278
4279 2008-11-11 Akim Demaille <demaille@gostai.com>
4280
4281 Introduce make_symbol.
4282 make_symbol provides a means to construct a full symbol (kind,
4283 value, location) in a single shot. It is meant to be a Symbol
4284 constructor, parameterized by the symbol kind so that overloading
4285 would prevent incorrect kind/value pairs. Unfortunately
4286 parameterized constructors do not work well in C++ (unless the
4287 parameter also appears as an argument, which is not acceptable),
4288 hence the use of a function instead of a constructor.
4289
4290 * data/lalr1.cc (b4_symbol_constructor_declaration_)
4291 (b4_symbol_constructor_declarations)
4292 (b4_symbol_constructor_specialization_)
4293 (b4_symbol_constructor_specializations)
4294 (b4_symbol_constructor_definition_)
4295 (b4_symbol_constructor_definitions): New.
4296 Use them where appropriate to generate declaration, declaration of
4297 the specializations, and implementations of the templated
4298 overloaded function "make_symbol".
4299 (variant::variant): Always define a default ctor.
4300 Also provide a copy ctor.
4301 (symbol_base_type, symbol_type): New ctor overloads for value-less
4302 symbols.
4303 (symbol_type): Now public, so that functions such as yylex can use
4304 it.
4305
4306 2008-11-11 Akim Demaille <demaille@gostai.com>
4307
4308 Inform m4 whether a tag is a valid id.
4309 * src/output.c (is_identifier): New.
4310 (symbol_definitions_output): Use it to define tag_is_id.
4311 But maybe this should be done at m4 level?
4312
4313 2008-11-11 Akim Demaille <demaille@gostai.com>
4314
4315 Test 214 was failing: it greps with a pattern containing [ ]*
4316 which obviously meant to catch spaces and tabs, but contained only
4317 spaces. Tabulations in sources are a nuisance, so to simplify the
4318 matter, get rid of all the tabulations in the Java sources. The
4319 other skeletons will be treated equally later.
4320
4321 * data/java.m4, data/lalr1.java: Untabify.
4322 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
4323 tabulations are no longer generated.
4324
4325 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
4326
4327 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
4328 * configure.ac: Adjust usage.
4329 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
4330 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
4331 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
4332
4333 2008-11-10 Di-an Jan <dianj@freeshell.org>
4334
4335 Workaround Java's ``code too large'' problem for parser tables
4336 in most cases, by using one function per initialization.
4337 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
4338 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
4339 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
4340 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
4341 (yytname_): Use b4_typed_parser_table.
4342 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
4343 ``code too large'' error.
4344
4345 2008-11-10 Di-an Jan <dianj@freeshell.org>
4346
4347 * NEWS: Document them.
4348
4349 General Java skeleton improvements.
4350 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
4351 using gcj < 4.3 in the testsuite, according to comments in
4352 gnulib/m4/javacomp.m4.
4353 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
4354 location_type, position_type): Remove extraneous brackets from
4355 b4_percent_define_default.
4356 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
4357 m4_define and m4_define_default.
4358 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
4359 which marks the end of user code with appropriate syncline, like all
4360 the other skeletons.
4361 (b4_user_post_prologue): Add. Don't silently drop.
4362 (yylex): Remove.
4363 (parse): Inline yylex.
4364 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
4365 (%{...%}): Fix typo of %code imports.
4366 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
4367
4368 Support annotations on parser class with %define annotations.
4369 * data/lalr1.java (annotations): Add to parser class modifier.
4370 * doc/bison.texinfo (Java Parser Interface): Document
4371 %define annotations.
4372 (Java Declarations Summary): Document %define annotations.
4373 * tests/java.at (Java parser class modifiers): Test annotations.
4374
4375 Do not generate code for %error-verbose unless requested.
4376 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
4377 Make private. Make conditional on %error-verbose.
4378 (getErrorVerbose, setErrorVerbose): New.
4379 (yytnamerr_): Make conditional on %error-verbose.
4380 (yysyntax_error): Make some code conditional on %error-verbose.
4381 * doc/bison.texinfo (Java Bison Interface): Remove the parts
4382 about %error-verbose having no effect.
4383 (getErrorVerbose, setErrorVerbose): Document.
4384
4385 Move constants for token names to Lexer interface.
4386 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
4387 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
4388 (parse): Qualify EOF to Lexer.EOF.
4389 * doc/bison.texinfo (Java Parser Interface): Move documentation of
4390 EOF and token names to Java Lexer Interface.
4391 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
4392
4393 Make yyerror public.
4394 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
4395 (yyerror): Change to public. Add Javadoc comments. Use longer
4396 parameter names. Make the body rather than the declarator
4397 conditional on %locations.
4398 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
4399
4400 Allow user to add code to the constructor with %code init.
4401 * data/java.m4 (b4_init_throws): New, for %define init_throws.
4402 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
4403 Add %code init to the front of the constructor body.
4404 * doc/bison.texinfo (YYParser.YYParser): Document %code init
4405 and %define init_throws.
4406 (Java Declarations Summary): Document %code init and
4407 %define init_throws.
4408 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
4409 (Java constructor init and init_throws): Add tests.
4410
4411 2008-11-10 Akim Demaille <demaille@gostai.com>
4412
4413 Update TODO.
4414 * TODO (-D): is implemented.
4415 (associativity): Same precedence must have the same associativity.
4416 For instance, how can a * b / c be parsed if * is %left and / is
4417 %right?
4418 (YYERRORCODE, YYFAIL, YYBACKUP): New.
4419
4420 2008-11-10 Akim Demaille <demaille@gostai.com>
4421
4422 Formatting changes.
4423
4424 2008-11-10 Akim Demaille <demaille@gostai.com>
4425
4426 More information about the symbols.
4427 * src/output.c (type_names_output): Document all the symbols,
4428 including those that don't have a type-name.
4429 (symbol_definitions_output): Define "is_token" and
4430 "has_type_name".
4431 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
4432 type-name, now that they are defined too in b4_type_names.
4433
4434 2008-11-10 Akim Demaille <demaille@gostai.com>
4435
4436 Regen.
4437
4438 2008-11-10 Akim Demaille <demaille@gostai.com>
4439
4440 Make parser::yytranslate static.
4441 Small speedup (1%) on the list grammar. And makes yytranslate_
4442 available in non member functions.
4443
4444 * data/lalr1.cc (yytranslate_): Does not need to be a instance
4445 function.
4446
4447 2008-11-10 Akim Demaille <demaille@gostai.com>
4448
4449 Avoid trailing spaces.
4450 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
4451 * data/lalr1.cc: Don't indent before rule and symbol actions, as
4452 they can be empty, and anyway this incorrectly indents the first
4453 action.
4454
4455 2008-11-10 Akim Demaille <demaille@gostai.com>
4456
4457 Comment changes.
4458
4459 2008-11-10 Akim Demaille <demaille@gostai.com>
4460
4461 Use "enum" for integral constants.
4462 This is just nicer to read, I observed no speedup.
4463
4464 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
4465 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
4466 (yyuser_token_number_max_, yyundef_token_): Move into...
4467 (yytranslate_): here.
4468
4469 2008-11-10 Akim Demaille <demaille@gostai.com>
4470
4471 Shortcuts in bench directives.
4472 * etc/bench.pl.in (parse_dirs): New.
4473 Use it.
4474 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
4475 Create the benches in "benches/".
4476
4477 2008-11-10 Akim Demaille <demaille@gostai.com>
4478
4479 Formatting changes.
4480 * data/lalr1.cc: here.
4481
4482 2008-11-10 Akim Demaille <demaille@gostai.com>
4483
4484 Adjust verbose message to using emacs.
4485 * etc/bench.pl.in: Inform compilation-mode when we change the
4486 directory.
4487 (generate_grammar_list): Recognize %define "variant" in addition
4488 to %define variant.
4489
4490 2008-11-10 Akim Demaille <demaille@gostai.com>
4491
4492 Classify symbols by type-name.
4493 * src/uniqstr.h (UNIQSTR_CMP): New.
4494 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
4495 (type_names_output): New.
4496 (muscles_output): Use it.
4497 * data/lalr1.cc (b4_symbol_action_): Remove.
4498 (b4_symbol_case_, b4_type_action_): New.
4499 Adjust uses of b4_symbol_action_ to use b4_type_action_.
4500
4501 2008-11-10 Akim Demaille <demaille@gostai.com>
4502
4503 Change the handling of the symbols in the skeletons.
4504 Before we were using tables which lines were the symbols and which
4505 columns were things like number, tag, type-name etc. It is was
4506 difficult to extend: each time a column was added, all the numbers had
4507 to be updated (you asked for colon $2, not for "tag"). Also, it was
4508 hard to filter these tables when only a subset of the symbols (say the
4509 tokens, or the nterms, or the tokens that have and external number
4510 *and* a type-name) was of interest.
4511
4512 Now instead of monolithic tables, we define one macro per cell. For
4513 instance "b4_symbol(0, tag)" is a macro name which contents is
4514 self-decriptive. The macro "b4_symbol" provides easier access to
4515 these cells.
4516
4517 * src/output.c (type_names_output): Remove.
4518 (symbol_numbers_output, symbol_definitions_output): New.
4519 (muscles_output): Call them.
4520 (prepare_symbols): Define b4_symbols_number.
4521
4522 2008-11-10 Akim Demaille <demaille@gostai.com>
4523
4524 --trace=muscles
4525 * src/getargs.h, src/getargs.c (trace_muscle): New.
4526 (trace_types, trace_args): Support it.
4527 * src/output.c (output_skeleton): Use it.
4528
4529 2008-11-10 Akim Demaille <demaille@gostai.com>
4530
4531 muscles_output.
4532 * src/output.c (muscles_output): New, extracted from...
4533 (output_skeleton): here.
4534 Adjust.
4535
4536 2008-11-10 Akim Demaille <demaille@gostai.com>
4537
4538 Formatting changes.
4539
4540 2008-11-10 Akim Demaille <demaille@gostai.com>
4541
4542 Update the variant example.
4543 * examples/variant.yy: Formatting changes.
4544 One stage build.
4545
4546 2008-11-10 Akim Demaille <demaille@gostai.com>
4547
4548 Support constructor with an argument.
4549 This improves the "list" bench by 2%.
4550
4551 * data/lalr1.cc (variant::build): Add an overloaded version with
4552 an argument.
4553 * tests/c++.at (AT_CHECK_VARIANT): Check it.
4554
4555 2008-11-10 Akim Demaille <demaille@gostai.com>
4556
4557 Test variants.
4558 * tests/c++.at (AT_CHECK_VARIANTS): New.
4559 Use it with and without %define assert.
4560
4561 2008-11-10 Akim Demaille <demaille@gostai.com>
4562
4563 Add %precedence support.
4564 Unfortunately it is not possible to reuse the %prec directive. This
4565 is because to please POSIX, we do not require to end the rules with a
4566 semicolon. As a result,
4567
4568 foo: bar %prec baz
4569
4570 is ambiguous: either a rule which precedence is that of baz, or a rule,
4571 and then a declaration of the precedence of the token baz.
4572
4573 * doc/bison.texinfo: Document %precedence.
4574 (Precedence Only): New.
4575 * src/assoc.h, src/assoc.c (precedence_assoc): New.
4576 * src/conflicts.c (resolve_sr_conflict): Support it.
4577 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
4578 Parse it.
4579 * tests/calc.at: Use %precedence for NEG.
4580 * tests/conflicts.at (%precedence does not suffice)
4581 (%precedence suffices): New tests.
4582
4583 2008-11-09 Akim Demaille <demaille@gostai.com>
4584
4585 Make benches in a sub dirs.
4586 * etc/bench.pl.in ($dir): New.
4587 Use it.
4588 Check the use of constructors with an argument.
4589 (bench_variant_parser): Fix.
4590
4591 2008-11-09 Akim Demaille <demaille@gostai.com>
4592
4593 fix eof condition
4594
4595 2008-11-09 Akim Demaille <demaille@gostai.com>
4596
4597 Fix --help.
4598
4599 2008-11-09 Akim Demaille <demaille@gostai.com>
4600
4601 Require the generation of parse-gram.output.
4602 * src/Makefile.am (YACC): Pass --report=all.
4603
4604 2008-11-09 Akim Demaille <demaille@gostai.com>
4605
4606 Formatting changes.
4607
4608 2008-11-09 Akim Demaille <demaille@gostai.com>
4609
4610 Update TODO.
4611 * TODO: Remove obsolete items.
4612 Update others.
4613
4614 2008-11-09 Akim Demaille <demaille@gostai.com>
4615
4616 Enhance bench.pl.
4617 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
4618 (@token, $grammar, $bench): New.
4619 (generate_grammar_variant): Rename as...
4620 (generate_grammar_list): this.
4621 (generate_grammar): Adjust.
4622 (bench_grammar): Rename as...
4623 (bench): this.
4624 Use it in the various bench-marking routines.
4625 (-b, -g): New options.
4626
4627 2008-11-09 Akim Demaille <demaille@gostai.com>
4628
4629 Use a static hierarchy for symbols in the C++ parser.
4630 * data/lalr1.cc (symbol_base_type, symbol_type)
4631 (stack_symbol_type): Make it a static hierarchy.
4632 Adjust dependencies.
4633
4634 2008-11-09 Akim Demaille <demaille@gostai.com>
4635
4636 bench.pl -d, --directive.
4637 * etc/bench.pl.in (@directive): New.
4638 (&bench_grammar): Use it.
4639 (&bench_list_grammar): New, to provide access to the "variant"
4640 grammar.
4641 Use it.
4642 (getopts): Support -d, --directive.
4643
4644 2008-11-09 Akim Demaille <demaille@gostai.com>
4645
4646 Use inline for small operations.
4647 * data/lalr1.cc (symbol_base_type, symbol_type)
4648 (stack_symbol_type): Declare constructor and other operations as
4649 inline.
4650 (yy_destroy_): Inline.
4651
4652 2008-11-09 Akim Demaille <demaille@gostai.com>
4653
4654 Introduce a hierarchy for symbols.
4655 * data/lalr1.cc (symbol_base_type, symbol_type): New.
4656 (data_type): Rename as...
4657 (stack_symbol_type): this.
4658 Derive from symbol_base_type.
4659 (yy_symbol_value_print_): Merge into...
4660 (yy_symbol_print_): this.
4661 Rename as...
4662 (yy_print_): this.
4663 (yydestruct_): Rename as...
4664 (yy_destroy_): this.
4665 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
4666 (parser::parse): yyla is now of symbol_type.
4667 Use its type member instead of yytoken.
4668
4669 2008-11-09 Akim Demaille <demaille@gostai.com>
4670
4671 Rename data_type and stack_symbol_type.
4672 * data/lalr1.cc (data_type): Rename as...
4673 (stack_symbol_type): this.
4674
4675 2008-11-09 Akim Demaille <demaille@gostai.com>
4676
4677 Handle semantic value and location together.
4678 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
4679 yydata.value and yydata.location.
4680 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
4681 (YY_SYMBOL_PRINT): Now take semantic value and location as a
4682 single arg.
4683 Adjust all callers.
4684 (yydestruct_): New overload for a stack symbol.
4685
4686 2008-11-09 Akim Demaille <demaille@gostai.com>
4687
4688 Push a complete symbol, not connected parts.
4689 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
4690 state, value and location.
4691 Adjust callers.
4692
4693 2008-11-09 Akim Demaille <demaille@gostai.com>
4694
4695 Agregate yylval and yylloc.
4696 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
4697 (parser::yyla): this.
4698
4699 2008-11-09 Akim Demaille <demaille@gostai.com>
4700
4701 Rely on the state stack to display reduction traces.
4702 To display rhs symbols before a reduction, we used information
4703 about the rule reduced, which required the tables yyrhs and
4704 yyprhs. Now use rely only on the state stack to get the same
4705 information.
4706
4707 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
4708 Use them.
4709 (parser::yyrhs_, parser::yyprhs_): Remove.
4710 (parser::yy_reduce_print_): Use the state stack.
4711
4712 2008-11-09 Akim Demaille <demaille@gostai.com>
4713
4714 Fuse yyval and yyloc into yylhs.
4715 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
4716 yylhs.
4717 (parse): Replace yyval and yyloc with yylhs.value and
4718 yylhs.location.
4719 After a user action, compute yylhs.state earlier.
4720 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
4721 fresh error_token.
4722
4723 2008-11-09 Di-an Jan <dianj@freeshell.org>
4724
4725 Remove unused variable.
4726 * src/output.c (type_names_output): Remove unused variable sep.
4727
4728 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
4729
4730 Change tests/output.at quoting.
4731 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
4732 expanding arguments.
4733
4734 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
4735
4736 Don't add a semicolon to actions for %skeleton or %language.
4737 It breaks Java test cases as reported by Akim Demaille.
4738 * src/scan-code.l: Implement.
4739
4740 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
4741
4742 Clean up %skeleton and %language priority implementation.
4743 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
4744 remove static qualifier because others will soon need to see it.
4745 (language_prio): Likewise.
4746 (getargs): Use command_line_prio rather than 0.
4747 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
4748 enum fields.
4749 (skeleton_prio): Extern it.
4750 (language_prio): Extern it.
4751 * src/parse-gram.y: Use grammar_prio rather than 1.
4752
4753 2008-11-07 Akim Demaille <demaille@gostai.com>
4754
4755 Moving push traces into yypush_.
4756 * data/lalr1.cc (yypush_): Now takes a optional trace message.
4757 Adjust all uses.
4758
4759 2008-11-07 Akim Demaille <demaille@gostai.com>
4760
4761 The single-stack C++ parser is now the standard one.
4762 * data/lalr1.cc: Rename as...
4763 * data/lalr1-split.cc: this.
4764 * data/lalr1-fusion.cc: Rename as...
4765 * data/lalr1.cc: this.
4766 * etc/bench.pl.in: Adjust.
4767
4768 2008-11-07 Akim Demaille <demaille@gostai.com>
4769
4770 Avoid empty-if warnings.
4771 Reported by Quentin Hocquet.
4772
4773 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
4774 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
4775
4776 2008-11-07 Akim Demaille <demaille@gostai.com>
4777
4778 Pass command line location to skeleton_arg and language_argmatch.
4779 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
4780 The location argument is now mandatory.
4781 Adjust all dependencies.
4782 (getargs): Use command_line_location.
4783
4784 2008-11-07 Akim Demaille <demaille@gostai.com>
4785
4786 -D, --define.
4787 * src/getargs.c (usage): Document -D.
4788 Fix help string for --locations.
4789 (command_line_location): New.
4790 (short_options, long_options, getargs): Support -D, --define.
4791 (getargs): Move -d support at the right place.
4792 * doc/bison.texinfo (Bison Options): Update.
4793 * tests/input.at (%define, --define): New.
4794
4795 2008-11-07 Akim Demaille <demaille@gostai.com>
4796
4797 Initialize the muscle table before parsing the command line.
4798 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
4799 (getargs): Define file_name.
4800 * src/main.c (main): Initialize muscle_tab before calling
4801 getargs.
4802 * src/muscle_tab.c (muscle_init): No longer define file_name, as
4803 its value is not available yet.
4804
4805 2008-11-07 Akim Demaille <demaille@gostai.com>
4806
4807 Locations without columns for command line arguments.
4808 * src/location.c (location_print): Don't display negative columns.
4809 * src/location.h: Document this.
4810
4811 2008-11-07 Akim Demaille <demaille@gostai.com>
4812
4813 Fix --help.
4814 * src/getargs.c (usage): Fix help string for -W.
4815
4816 2008-11-07 Akim Demaille <demaille@gostai.com>
4817
4818 Handle more general types of option arguments.
4819 * build-aux/cross-options.pl: The argument ends at the first
4820 space, not the first non-symbol character.
4821 Use @var for each word appearing the argument description.
4822
4823 2008-11-07 Akim Demaille <demaille@gostai.com>
4824
4825 Destroy the variants that remain on the stack in case of error.
4826 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
4827 destructor.
4828 Display the value only if yymsg is nonnull.
4829 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
4830
4831 2008-11-07 Akim Demaille <demaille@gostai.com>
4832
4833 Add "%define assert" to variants.
4834 This is used to help the user catch cases where some value gets
4835 ovewritten by a new one. This should not happen, as this will
4836 probably leak.
4837
4838 Unfortunately this uncovered a bug in the C++ parser itself: the
4839 lookahead value was not destroyed between two calls to yylex. For
4840 instance if the previous lookahead was a std::string, and then an int,
4841 then the value of the std::string was correctly taken (i.e., the
4842 lookahead was now an empty string), but std::string structure itself
4843 was not reclaimed.
4844
4845 This is now done in variant::build(other&) (which is used to take the
4846 value of the lookahead): other is not only stolen from its value, it
4847 is also destroyed. This incurs a new performance penalty of a few
4848 percent, and union becomes faster again.
4849
4850 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
4851 (b4_variant_if): New.
4852 (variant::built): New.
4853 Use it whereever the status of the variant changes.
4854 * etc/bench.pl.in: Check the penalty of %define assert.
4855
4856 2008-11-07 Akim Demaille <demaille@gostai.com>
4857
4858 Use "%define variant" in bench.pl.
4859 * etc/bench.pl.in: No longer use the pseudo directive %variants,
4860 just use %define variants.
4861
4862 2008-11-07 Akim Demaille <demaille@gostai.com>
4863
4864 Regen.
4865 * src/parse-gram.h, src/parse-gram.c: Regen.
4866
4867 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
4868
4869 Fix user actions without a trailing semicolon.
4870 Reported by Sergei Steshenko at
4871 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
4872 * THANKS (Sergei Steshenko): Add.
4873 * src/scan-code.l (SC_RULE_ACTION): Fix it.
4874 * tests/regression.at (Fix user actions without a trailing semicolon):
4875 New test case.
4876
4877 2008-11-04 Akim Demaille <demaille@gostai.com>
4878
4879 Use b4_copyright_years.
4880 * data/yacc.c (b4_copyright_years): New.
4881 Fix its value according to the comments in the file.
4882 Use it and undefine it.
4883
4884 2008-11-04 Akim Demaille <demaille@gostai.com>
4885
4886 Formatting changes.
4887 * data/lalr1-fusion.cc, src/parse-gram.y: here.
4888
4889 2008-11-04 Akim Demaille <demaille@gostai.com>
4890
4891 Formatting changes.
4892 * data/lalr1-fusion.cc: here.
4893
4894 2008-11-04 Akim Demaille <demaille@gostai.com>
4895
4896 Use strict on bench.pl.
4897 * etc/bench.pl.in (&run, &generate_grammar): New.
4898 Rename the grammar generating functions for consistency.
4899 Change the interface so that the list of benches to run is passed
4900 as (optionless) arguments.
4901 (&compile): Use &run.
4902
4903 2008-11-04 Akim Demaille <demaille@gostai.com>
4904
4905 Remove spurious initial empty lines.
4906 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
4907 * data/yacc.c: End the @output lines with an @.
4908
4909 2008-11-04 Akim Demaille <demaille@gostai.com>
4910
4911 Improve the display of sizes.
4912 * etc/bench.p.in: Higher precision.
4913 Sort by decreasing size.
4914
4915 2008-11-04 Akim Demaille <demaille@gostai.com>
4916
4917 Don't memcpy C++ structures.
4918 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
4919 arguments.
4920 (variant::build): New overload for
4921 copy-construction-that-destroys.
4922 (variant::swap): New.
4923 (parser::yypush_): Use it in variant mode.
4924
4925 2008-11-04 Akim Demaille <demaille@gostai.com>
4926
4927 Better defaults for bench.pl.
4928 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
4929 default values.
4930 Adjust &verbose uses.
4931 (-q, --quiet): New.
4932
4933 2008-11-04 Akim Demaille <demaille@gostai.com>
4934
4935 Make variant.yy more complex.
4936 std::list cannot be copied via memcpy, they are more demanding than
4937 std::string. Use one std::list to strengthen the test.
4938
4939 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
4940 Adjust.
4941 Create a list of strings, instead of a single large string.
4942
4943 2008-11-04 Akim Demaille <demaille@gostai.com>
4944
4945 bench.pl --bench.
4946 * etc/bench.pl.in (--bench, $bench): New.
4947
4948 2008-11-04 Akim Demaille <demaille@gostai.com>
4949
4950 Sort methods.
4951 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
4952 Define it after as().
4953
4954 2008-11-04 Akim Demaille <demaille@gostai.com>
4955
4956 Useless parens.
4957 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
4958
4959 2008-11-04 Akim Demaille <demaille@gostai.com>
4960
4961 Issue missing synclines after user actions.
4962 * data/c.m4 (b4_case): Issue synclines on the output file.
4963
4964 2008-11-04 Akim Demaille <demaille@gostai.com>
4965
4966 Remove trailing empty line.
4967 * data/lalr1-fusion.cc: Don't add an empty line after the user's
4968 epilogue.
4969
4970 2008-11-04 Akim Demaille <demaille@gostai.com>
4971
4972 Fix output of copyright years.
4973 * data/bison.m4 (b4_copyright): Fix the indentation of the
4974 copyright year paragraph.
4975 Use b4_copyright_years when no years are given.
4976 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
4977 (b4_copyright_years): New.
4978 Use it.
4979
4980 2008-11-04 Akim Demaille <demaille@gostai.com>
4981
4982 Avoid the spurious initial empty line.
4983 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
4984 the end of @output request to suppress the empty line that
4985 results.
4986
4987 2008-11-04 Akim Demaille <demaille@gostai.com>
4988
4989 Remove parser::rhs_number_type.
4990 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
4991 (yyrhs_): Use b4_table_define.
4992
4993 2008-11-04 Akim Demaille <demaille@gostai.com>
4994
4995 Fix iteration type.
4996 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
4997
4998 2008-11-04 Akim Demaille <demaille@gostai.com>
4999
5000 Factor the declaration of the integer tables.
5001 * data/lalr1-fusion.cc (b4_table_define): New.
5002 Use it.
5003
5004 2008-11-03 Akim Demaille <demaille@gostai.com>
5005
5006 Fix indentation of tables in lalr1.cc
5007 * data/lalr1-fusion.cc: Fix the indentation.
5008
5009 2008-11-03 Akim Demaille <demaille@gostai.com>
5010
5011 Destroy the lhs symbols after reduction.
5012 * data/lalr1-fusion.cc (parse): After the user action, when in
5013 variant mode, destroy the lhs symbols.
5014
5015 2008-11-03 Akim Demaille <demaille@gostai.com>
5016
5017 Simplify yysyntax_error_ use.
5018 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
5019 type, but make it unnamed in the declaration when it is not used.
5020
5021 2008-11-03 Akim Demaille <demaille@gostai.com>
5022
5023 Let yy::variant::build return an lvalue.
5024 * data/lalr1-fusion.cc (variant::build): Return a reference to the
5025 object.
5026
5027 2008-11-03 Akim Demaille <demaille@gostai.com>
5028
5029 Define yy::variant only when needed.
5030 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
5031 used.
5032
5033 2008-11-03 Akim Demaille <demaille@gostai.com>
5034
5035 Bench the three-stack lalr1.cc.
5036 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
5037 one-stack one.
5038
5039 2008-11-03 Akim Demaille <demaille@gostai.com>
5040
5041 Fail on parse error in calc++.
5042 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
5043 status.
5044 * examples/calc++/test ($me, $number, $exit, run): New.
5045 Use them to propagate errors to the exit status.
5046
5047 2008-11-03 Akim Demaille <demaille@gostai.com>
5048
5049 Don't specify the skeleton twice in the example.
5050 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
5051 file does what is needed.
5052
5053 2008-11-03 Akim Demaille <demaille@gostai.com>
5054
5055 bench: Improve output.
5056 * etc/bench.pl.in (bench_grammar): Tune the printf format.
5057
5058 2008-11-03 Akim Demaille <demaille@gostai.com>
5059
5060 bench: check impact of %debug on variants.
5061 * etc/bench.pl.in (variant_grammar): Fix the computation of
5062 $variant.
5063 Generate a grammar file that can work with or without %debug.
5064 Do use the @directive.
5065 (bench_variant_parser): Check impact of %debug.
5066 (@directives): Rename all the occurrences to...
5067 (@directive): this, for consistency.
5068
5069 2008-11-03 Akim Demaille <demaille@gostai.com>
5070
5071 bench: report the size too.
5072 * etc/bench.pl.in ($iterations): Defaults to -3.
5073 (&bench_grammar): Require hireswallclock.
5074 Compute and display the size of the result.
5075 More comments.
5076
5077 2008-11-03 Akim Demaille <demaille@gostai.com>
5078
5079 bench: More use of the verbosity level.
5080 * etc/bench.pl.in ($verbose, &verbose): New.
5081 Use them.
5082 More POD documentation.
5083
5084 2008-11-03 Akim Demaille <demaille@gostai.com>
5085
5086 bench.pl: a command line interface
5087 * etc/bench.pl.in: More doc.
5088 Some fixes in the documentation.
5089 ($cflags, $iterations, &help, &getopt): New.
5090 Use them.
5091 (&variant_grammar): Let the number of stages be 10 times what is
5092 specified.
5093
5094 2008-11-03 Akim Demaille <demaille@gostai.com>
5095
5096 Bench the use of Boost.Variants.
5097 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
5098 New.
5099 (&compile): Be ready to compile C++ parsers.
5100 (&bench_push_parser): Move debug information to the outermost
5101 level.
5102 * THANKS: Add Michiel De Wilde.
5103
5104 2008-11-03 Akim Demaille <demaille@gostai.com>
5105
5106 bench.pl: Pass directives as a list instead of as a string.
5107 * etc/bench.pl.in (&directives): New.
5108 (&triangular_grammar, &calc_grammar): Use it to format the Bison
5109 directives.
5110 (&triangular_grammar): Do use the directives (were ignored).
5111 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
5112 directives.
5113
5114 2008-11-03 Akim Demaille <demaille@gostai.com>
5115
5116 Improve genericity of bench.pl.
5117 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
5118 argument.
5119 (&bench_push_parser): New.
5120 Call it.
5121
5122 2008-11-03 Akim Demaille <demaille@gostai.com>
5123
5124 Add documentation to bench.pl.
5125 * etc/bench.pl.in: Comment changes.
5126
5127 2008-11-03 Akim Demaille <demaille@gostai.com>
5128
5129 Fuse the three stacks into a single one.
5130
5131 In order to make it easy to perform benchmarks to ensure that
5132 there are no performance loss, lalr1.cc is forked into
5133 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
5134 lalr1.cc.
5135
5136 Meanwhile, to make sure that lalr1-fusion.cc is correctly
5137 exercized by the test suite, the user must install a symbolic link
5138 from lalr1.cc to it.
5139
5140 Instead of having three stacks (state, value, location), use a
5141 stack of triples. This considerably simplifies the code (and it
5142 will be easier not to require locations as currently does the C++
5143 parser), and also gives a 10% speedup according to
5144 etc/bench (probably mainly since memory allocation is done once
5145 instead of three times).
5146
5147 Another motivation is to make it easier to destruct properly
5148 semantic values: now that they are bound to their state (hence
5149 symbol type) it will be easier to call the appropriate destructor.
5150
5151 These changes should probably benefit the C parser too.
5152
5153 * data/lalr1.cc: Copy as...
5154 * data/lalr1-fusion.cc: this new file.
5155 (b4_rhs_value, b4_rhs_location): New definitions overriding those
5156 from c++.m4.
5157 (state_stack_type, semantic_stack_type, location_stack_type)
5158 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
5159 (data_type, stack_type, yystack_): New.
5160 (YYLLOC_DEFAULT, yypush_): Adjust.
5161 (yyerror_range): Now based on data_type, not location_type.
5162
5163 2008-11-03 Akim Demaille <demaille@gostai.com>
5164
5165 Push the state, value, and location at the same time.
5166 This is needed to prepare a forthcoming patch that fuses the three
5167 stacks into one.
5168
5169 * data/lalr1.cc (parser::yypush_): New.
5170 (parser::yynewstate): Change the semantics: instead of arriving to
5171 this label when value and location have been pushed, but yystate
5172 is to be pushed on the state stack, now the three of them must
5173 have been pushed before. yystate still must be the new state.
5174 This allows to use yypush_ everywhere instead of individual
5175 handling of the stacks.
5176
5177 2008-11-03 Akim Demaille <demaille@gostai.com>
5178
5179 Prefer references to pointers.
5180 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
5181 definition to use references instead of pointers.
5182 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
5183 Take the value and location as references.
5184 Adjust callers.
5185
5186 2008-11-03 Akim Demaille <demaille@gostai.com>
5187
5188 stack::size instead of stack::height.
5189 * data/lalr1.cc (stack::height): Rename as...
5190 (stack::size): this.
5191 Fix the output type.
5192 Comment changes.
5193
5194 2008-11-03 Akim Demaille <demaille@gostai.com>
5195
5196 Use variants to support objects as semantic values.
5197 This patch was inspired by work by Michiel De Wilde. But he used
5198 Boost variants which (i) requires Boost on the user side, (ii) is
5199 slow, and (iii) has useless overhead (the parser knows the type of
5200 the semantic value there is no reason to duplicate this
5201 information as Boost.Variants do).
5202
5203 This implementation reserves a buffer large enough to store the
5204 largest objects. yy::variant implements this buffer. It was
5205 implemented with Quentin Hocquet.
5206
5207 * src/output.c (type_names_output): New.
5208 (output_skeleton): Invoke it.
5209 * data/c++.m4 (b4_variant_if): New.
5210 (b4_symbol_value): If needed, provide a definition for variants.
5211 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
5212 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
5213 (b4_char_sizeof, yy::variant): New.
5214 (parser::parse): If variants are requested, define
5215 parser::union_type, parser::variant, change the definition of
5216 semantic_type, construct $$ before running the user action instead
5217 of performing a default $$ = $1.
5218 * examples/variant.yy: New.
5219 Based on an example by Michiel De Wilde.
5220
5221 2008-11-03 Akim Demaille <demaille@gostai.com>
5222
5223 Parameterize the extraction of semantic values.
5224 To make future changes easier, no longer rely on ".TYPE" being the
5225 way to get a semantic value.
5226
5227 * data/c.m4 (b4_symbol_value): New.
5228 Use it.
5229 * data/c++.m4, data/yacc.c: Use it.
5230 * data/glr.c: Use b4_symbol_value.
5231 (b4_rhs_data): New.
5232 Use it.
5233
5234 2008-11-03 Akim Demaille <demaille@gostai.com>
5235
5236 Prepare easier M4 changes.
5237 * data/lalr1.cc: Use escaped [] instead of literals to prepare
5238 future changes.
5239
5240 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
5241
5242 Initiate further development.
5243 * NEWS: Create an empty section for new entries.
5244 * gnulib: Update submodule to HEAD.
5245
5246 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
5247
5248 * NEWS: Version 2.4.
5249
5250 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
5251
5252 Prepare for next release.
5253 * NEWS: Briefly mention changes since 2.3b.
5254 * README: Say GNU m4 1.4.6, which we've been requiring in release
5255 announcements already, not 1.4.3, which breaks the build.
5256
5257 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
5258
5259 Say %language is experimental.
5260 We're thinking of extending it's effect on output file naming. See the
5261 thread at
5262 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
5263 * NEWS: Say it's experimental.
5264 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
5265 recommend it over %skeleton for now.
5266 (Bison Options): Likewise.
5267 (C++ Bison Interface): Use %skeleton not %language.
5268 (Calc++ Parser): Use %skeleton not %language.
5269 * src/getargs.c (usage): Say it's experimental.
5270
5271 2008-11-01 Di-an Jan <dianj@freeshell.org>
5272 Paolo Bonzini <bonzini@gnu.org>
5273
5274 Support all Java parser class modifiers.
5275 * data/java.m4 (b4_percent_define_get3): New.
5276 (b4_final_if, b4_strictfp_if): New.
5277 * data/lalr1.java (final, strictfp, extends, implements): Support.
5278 * doc/bison.texinfo (final, strictfp, extends, implements): Add
5279 documentation.
5280 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
5281 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
5282 (AT_CHECK_JAVA_GREP): New.
5283 (Java parser class modifiers): New test.
5284 (Java parser class extends and implements): New test.
5285
5286 Model exception propagation better with throws and lex_throws.
5287 * data/java.m4 (b4_list2): New.
5288 (throws): Change default.
5289 * data/lalr1.java (yyaction): Add throws.
5290 (parse): Add lex_throws in addition to throws.
5291 * doc/bison.texinfo (throws, lex_throws): Add documentation.
5292 * tests/java.at (Java throws specifications): New test.
5293
5294 Improve documentation for Java parsers.
5295 * doc/bison.texinfo (Java Parsers): Add subsections.
5296 Don't quote first argument of %define.
5297 (Java Bison Interface): Document output files. Move documentation
5298 of parser class and merge into Java Parser Interface. Document
5299 features that error out. Document directives with no effect.
5300 Move note about Javadoc higher.
5301 (Java Semantic Values): Explicitly mention stype.
5302 Document that generic types cannot be used.
5303 (Java Location Values): Use @deftypeivar. Document constructors.
5304 Correct return value for toString.
5305 (Java Parser Interface): List undocumented constants/fields.
5306 Move documentation of fields added by %parse-param closer to list
5307 of members. Document that token names are added as fields.
5308 Document constructors accurately. Remove error method.
5309 (Java Scanner Interface): Move note on %pure-parser to Java Bison
5310 Interface. Describe %code lexer and yylex accutately.
5311 Remove documentation that does not match the code.
5312 (Java Action Features): New.
5313 (Java Differences): Add reference. Add item on semantic values.
5314 Add note about @{ ... @}. Clarify %% epilogue placement.
5315 (Java Declarations Summary): New.
5316
5317 Fix Java skeleton.
5318 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
5319 (b4_remove_comma): Quote test argument.
5320 (b4_identification): Remove "bison" field.
5321 * tests/java.at (Java parser class and package names): New test.
5322 (Java %parse-param and %lex-param): New test.
5323 (Java stype, position_class and location_class): New test.
5324
5325 2008-10-31 Di-an Jan <dianj@freeshell.org>
5326
5327 * data/lalr1.jave: Update copyright years.
5328 (YYParser): Correct name of "generated from" file in Javadoc:
5329 use b4_file_name instead of @ofile@.
5330 (Location constructor): Correct Javadoc parameter name.
5331 (yylloc): Add missing opening m4 quote after b4_location_if.
5332 This removes a stray [ in the Javadoc of Lexer.getStartPos.
5333 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
5334 (YYParser constructor): Correct Javadoc parameter name.
5335
5336 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
5337
5338 Always put auxiliary code files in the same dir as other output files.
5339 * src/files.c (compute_file_name_parts): When the user specifies
5340 --output but not --file-prefix, extract the directory prefix from the
5341 file prefix not from the grammar file name. This affects the location
5342 of files like location.hh generated by the C++ skeleton. The includes
5343 in the other output files require this fix.
5344 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
5345 for expected output files.
5346 (Output files): Add a test for the above.
5347
5348 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
5349
5350 * gnulib: Update submodule to HEAD.
5351
5352 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5353
5354 Update copyright year.
5355 * src/files.c: Here.
5356
5357 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
5358
5359 Don't overwrite the input file.
5360 * src/files.c (output_file_name_check): Fatal error if using input file
5361 for output.
5362 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
5363 argument.
5364 (Conflicting output files): Add test.
5365
5366 2008-10-28 Akim Demaille <demaille@gostai.com>
5367
5368 Space changes.
5369 * data/lalr1.cc: Formatting changes.
5370
5371 2008-10-28 Akim Demaille <demaille@gostai.com>
5372
5373 Don't define debugging functions when !YYDEBUG.
5374 * data/lalr1.cc (debug_stream, set_debug_stream)
5375 (debug_level_type, debug_level, set_debug_level): Don't
5376 declare them when YYDEBUG is not defined.
5377 The implementation are already YYDEBUG-aware.
5378
5379 2008-10-28 Akim Demaille <demaille@gostai.com>
5380
5381 Prefer "continue" for empty loop bodies.
5382 * etc/bench.pl.in: Use "continue" instead of {}.
5383
5384 2008-10-28 Akim Demaille <demaille@gostai.com>
5385
5386 Space and comments changes.
5387 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
5388 * data/c.m4, data/lalr1.cc: Space changes.
5389
5390 2008-10-28 Akim Demaille <demaille@gostai.com>
5391
5392 Make gnulib a submodule.
5393 * gnulib: New.
5394 * .gitmodules (gnulib): New.
5395
5396 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
5397
5398 Fix yyerror_range for user-defined location type in C++. Reported by
5399 Georg Sauthoff at
5400 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
5401 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
5402 * THANKS (Georg Sauthoff): Add.
5403
5404 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
5405
5406 Update several administrative files mainly to facilitate releasing.
5407 * HACKING (Administrivia): Make the git-merge-changelog notes more
5408 helpful.
5409 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
5410 (Release Procedure): Update for git and add numerous details that were
5411 previously missing.
5412 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
5413 * maint.mk (announcement): Don't list bison as a bootstrap tool so
5414 that announcements don't claim we bootstrapped with whatever bison
5415 happened to be in PATH. Add flex as a bootstrap tool.
5416 * Makefile.maint: Remove, previously replaced by maint.mk.
5417 * Makefile.cfg: Remove, and migrate settings to...
5418 * cfg.mk: ... here for the sake of `make announcement'.
5419 * bootstrap.conf (gnulib_modules): Add announce-gen.
5420 * README: Say GNU Bison instead of just Bison. Suggested by Karl
5421 Berry.
5422
5423 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
5424
5425 Small but important bugfixes for the Java skeleton.
5426 * data/lalr1.java (yyerror): Change Location to b4_location_type.
5427 (yy_symbol_print): Call toString on yyvaluep.
5428
5429 2008-08-29 Akim Demaille <demaille@gostai.com>
5430
5431 Clarify UPDATED use.
5432 * doc/bison.texinfo: It refers to the last edition of this file,
5433 not to the release date of Bison.
5434 Reported by Joel E. Denny.
5435
5436 2008-08-29 Akim Demaille <demaille@gostai.com>
5437
5438 * README: Update FAQ pointer.
5439 Reported by Joel E. Denny.
5440
5441 2008-08-27 Eric Blake <ebb9@byu.net>
5442
5443 Resync m4sugar from autoconf.
5444 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
5445 (m4_init): Adjust to latest m4.git changes.
5446 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
5447 effects.
5448 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
5449 (_m4_list_cmp): Reduce side effects.
5450
5451 2008-08-27 Akim Demaille <demaille@gostai.com>
5452
5453 Check yyerrok in calc.at.
5454 * tests/calc.at (calc.y): Use yyerrok on "( error )".
5455 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
5456 expected.
5457
5458 2008-08-27 Akim Demaille <demaille@gostai.com>
5459
5460 Support yyerrok in lalr1.cc.
5461 YYBACKUP is still to import back into lalr1.cc.
5462 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
5463
5464 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
5465
5466 For maintainer-check*, don't recompile for a $(VERSION) update.
5467 * cfg.mk: New file.
5468 (_is-dist-target): Override the one in GNUmakefile.
5469 * Makefile.am (EXTRA_DIST): Add cfg.mk.
5470
5471 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
5472
5473 Update for recent change to gnulib.
5474 * src/parse-gram.y: Don't include strverscmp.h. It comes from
5475 string.h now.
5476
5477 2008-08-15 Eric Blake <ebb9@byu.net>
5478
5479 Remaining m4sugar merge from autoconf.
5480 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
5481 * data/m4sugar/foreach.m4: New file, copied from autoconf.
5482 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
5483 * src/output.c (output_skeleton): Tell m4 how to find it.
5484
5485 Partial m4sugar merge from autoconf: m4_map.
5486 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
5487 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
5488 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
5489 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
5490 for empty list.
5491 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
5492 Likewise.
5493 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
5494 declares it.
5495
5496 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
5497
5498 Keep .version and PACKAGE_VERSION in sync.
5499 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
5500 dependency, and add comments justifying this in more detail. Discussed
5501 starting at
5502 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
5503
5504 2008-08-06 Eric Blake <ebb9@byu.net>
5505
5506 Partial m4sugar merge from autoconf: m4_shiftn.
5507 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
5508 (m4_shift2, m4_shift3): New macros.
5509 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
5510 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
5511 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
5512 * data/java.m4 (b4_remove_comma): Likewise.
5513
5514 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
5515 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
5516 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
5517 (m4_init): Consolidate wrapped text into single m4_wrap.
5518 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
5519 in wrapped text.
5520
5521 2008-08-05 Eric Blake <ebb9@byu.net>
5522
5523 Partial m4sugar merge from autoconf: builtins, version.m4.
5524 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
5525 (m4_prepend): Remove, as it is unused and inherently quadratic,
5526 whereas m4_append is linear in newer m4.
5527 (m4_mkstemp): New builtin.
5528 (m4_symbols): Make rename conditional.
5529 (m4_version_prereq): Ensure fatal error if used in bison, which
5530 intentionally lacks version.m4.
5531
5532 Fix comments in m4sugar.
5533 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
5534
5535 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
5536
5537 Update for recent .gitignore fix in Gnulib.
5538 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
5539 anchored .gitignore entries.
5540
5541 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
5542
5543 Set gnu or gnits strictness.
5544 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
5545 development and gnits strictness for releases. Based on Eric Blake's
5546 suggestion at
5547 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
5548
5549 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
5550
5551 * NEWS: Clarify documentation of %language.
5552
5553 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
5554
5555 Support usage of git-merge-changelog.
5556 * .gitattributes: New.
5557 * HACKING: Document usage of git-merge-changelog.
5558 * bootstrap: Install git-merge-changelog entries in .git/config
5559 if appropriate.
5560
5561 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5562
5563 Remove remaining dependence on CVS Id keyword.
5564 * ChangeLog: For the sake of people still using CVS, don't use dollars
5565 when mentioning Id.
5566 * data/xslt/bison.xsl: Remove Id from header comments, where it was
5567 unusual anyway.
5568 * data/xslt/xml2dot.xsl: Likewise.
5569 * data/xslt/xml2text.xsl: Likewise.
5570 * data/xslt/xml2xhtml.xsl: Likewise.
5571 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
5572 * doc/Makefile.am (neutralize): Remove, no longer needed.
5573 (.x.1): Don't use neutralize.
5574 (edit): Don't substitute for ID.
5575 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
5576
5577 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5578
5579 Fix dependence on computed configure variables.
5580 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
5581 $(top_srcdir)/configure.ac so that changes to computed variables, such
5582 as PACKAGE_VERSION, are seen.
5583 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
5584
5585 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
5586
5587 Update copyright dates for recent changes.
5588 * Makefile.am: Here.
5589 * src/Makefile.am: Here.
5590 * src/reduce.c: Here.
5591 * tests/reduce.at: Here.
5592
5593 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
5594
5595 Use git-version-gen for version names between releases.
5596 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
5597 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
5598 * .prev-version: New.
5599 * .version.in: Remove.
5600 * ChangeLog: Remove the Id previously used for capturing the CVS
5601 revision.
5602 * GNUmakefile: Remove, now copied from Gnulib.
5603 * Makefile.am: Add code suggested by comments in
5604 build-aux/git-version-gen.
5605 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
5606 .prev-version, and .version.
5607 * NEWS (2.3b+): Rename to...
5608 (?.?): ... this because we're dropping the "+" version naming scheme,
5609 but, in general, we still can't be sure of our next release name.
5610 * bootstrap: Add a quick hack to remove from .gitignore the
5611 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
5612 entry. This should really be fixed in gnulib instead.
5613 * bootstrap.conf (gnulib_modules): Add gnumakefile.
5614 * configure.ac (AC_INIT): Set version name by invoking
5615 build-aux/git-version-gen.
5616 (AC_CONFIG_FILES): Remove .version, now generated by
5617 build-aux/git-version-gen.
5618 * maint.mk: New, copied from coreutils.
5619 * doc/.cvsignore (bison.1): Add.
5620 * doc/.gitignore (/bison.1): Add.
5621 * doc/bison.1: Remove, generated.
5622 * src/.cvsignore (revision.c): Remove.
5623 * src/.gitignore (/revision.c): Remove.
5624 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
5625 (BUILT_SOURCES): Remove revision.c.
5626 (revision.c): Remove.
5627 * src/getargs.c (version): Don't print revision after the VERSION.
5628 * src/revision.h: Remove.
5629
5630 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
5631
5632 Fix untranslatable composition of sentences. Reported by Goran
5633 Uddeborg at
5634 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
5635 * THANKS (Goran Uddeborg): Add.
5636 * src/reduce.c (reduce_print): Report the number of nonterminals and
5637 rules useless in the grammar in separate sentences.
5638 * tests/reduce.at (Useless Rules): Update output.
5639 (Reduced Automaton): Likewise.
5640 (Underivable Rules): Likewise.
5641 (Empty Language): Likewise.
5642
5643 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
5644
5645 Fix some .gitignore and .cvsignore problems.
5646 * bootstrap (insert_sorted_if_absent): Replace all uses with...
5647 (insert_vc_ignore): ... this new function, which prepends `/' to all
5648 .gitignore entries before passing them to insert_sorted_if_absent.
5649 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
5650 .cvsignore files are maintained even though Bison developers run
5651 bootstrap while using Git.
5652 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
5653 unneeded by Bison.
5654 (gnulib): Add.
5655 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
5656 unneeded. Reported by Eric Blake.
5657 * lib/.gitignore (/*~): Add.
5658 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
5659 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
5660 Blake.
5661 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
5662
5663 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
5664
5665 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
5666 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
5667 * bootstrap.conf (gnulib_modules): Add unsetenv.
5668 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
5669 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
5670 (/setenv.m4): Add.
5671 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
5672 the first argument because it may become position-dependent, and unset
5673 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
5674 Add comments explaining these issues in more detail.
5675
5676 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
5677
5678 Add .gitignore everywhere based on .cvsignore.
5679 * .gitignore: New.
5680 * build-aux/.gitignore: New.
5681 * data/.gitignore: New.
5682 * doc/.gitignore: New.
5683 * etc/.gitignore: New.
5684 * examples/.gitignore: New.
5685 * examples/calc++/.gitignore: New.
5686 * lib/.gitignore: New.
5687 * m4/.gitignore: New.
5688 * po/.gitignore: New.
5689 * runtime-po/.gitignore: New.
5690 * src/.gitignore: New.
5691 * tests/.gitignore: New.
5692
5693 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
5694
5695 * NEWS (2.3b+): New section, empty for now.
5696 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
5697
5698 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
5699
5700 * NEWS (2.3b): Update release date since there has been a delay in
5701 getting the announcements and tarballs out.
5702
5703 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
5704
5705 * NEWS: Version 2.3b.
5706 * configure.ac (AC_INIT): Likewise.
5707 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
5708
5709 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
5710
5711 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
5712 been doing it for years.
5713 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
5714 (Release Procedure): Add FIXME about make alpha being unmaintained.
5715
5716 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
5717
5718 * data/yacc.c: Reformat m4 a little for readability.
5719 * src/lalr.c (build_relations): Correct comment.
5720
5721 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5722
5723 DJGPP specific issue.
5724 * djgpp/config.sed: Fixes required to run configure scripts generated
5725 by autoconf 2.62.
5726
5727 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
5728
5729 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
5730 coordinator@translationproject.org.
5731
5732 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
5733
5734 * THANKS: Add Eric Blake.
5735
5736 2008-04-23 Eric Blake <ebb9@byu.net>
5737
5738 Revert prior patch, by working around autoconf regression.
5739 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
5740 ("Output file name: ("): Uncomment test.
5741 ("Output file name: )"): Likewise.
5742 Based on an idea from Noah Misch.
5743
5744 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
5745
5746 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
5747 2.61. Reported by Juan Manuel Guerrero at
5748 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
5749 * tests/output.at ("Output file name: ("): Comment out test case for
5750 now.
5751 ("Output file name: )"): Likewise.
5752
5753 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
5754
5755 * GNUmakefile: Update git-version-gen invocation so make dist
5756 succeeds.
5757
5758 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
5759
5760 Update to the current gnulib CVS repository, and fix trigraph handling
5761 in Bison.
5762 * bootstrap: Update gnulib CVS repository URL.
5763 (symlink_to_dir): Encapsulate the code that guarantees the destination
5764 directory exists into...
5765 (check_dst_dir): ... this new function, and...
5766 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
5767 fail when copying files into lib/uniwidth/.
5768 * src/output.c (prepare_symbols): When writing yytname muscles, where
5769 symbol names will be encoded in C-string literals, tell quotearg to
5770 escape trigraphs. This used to be the default in gnulib.
5771 * tests/regression.at (Token definitions): Because of the change in
5772 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
5773 escapes trigraphs in symbol names. Thus, yytname no longer has
5774 trigraphs unnecessarily doubly escaped. Update test case output.
5775 Extend test case to be sure Bison's own error messages will no longer
5776 have trigraphs in symbol names unnecessarily escaped once.
5777
5778 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
5779
5780 Fix make dist infinite loop reported by Juan Manuel Guerrero at
5781 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
5782 * .cvsignore: Add .version.
5783 * .version.in: New.
5784 * bootstrap.conf (gnulib_modules): Add git-version-gen.
5785 * configure.ac (AC_CONFIG_FILES): Add .version.
5786 * build-aux/.cvsignore: Add git-version-gen.
5787
5788 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
5789
5790 * NEWS (2.3a+): Mention that -g now takes an argument.
5791 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
5792 consistency. Update the -g and -x entries now that they take
5793 arguments. Use brackets to indicate optional arguments.
5794 * src/getargs.c (usage): Explain the relationship between arguments of
5795 long and short options more completely. Document --defines and -d
5796 separately since the former takes an argument but, for POSIX Yacc, the
5797 latter does not.
5798 (short_options): Let -W take an optional argument like --warnings.
5799 (getargs): Sort cases.
5800
5801 2008-02-28 Akim Demaille <demaille@gostai.com>
5802
5803 * doc/bison.texinfo: Fix a few typos.
5804
5805 2008-02-28 Akim Demaille <akim@epita.fr>
5806
5807 * doc/bison.texinfo (Bison Options): Document -W.
5808 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
5809
5810 2008-02-28 Akim Demaille <akim@epita.fr>
5811
5812 * src/getargs.c (short_options): Split and sort for readability.
5813 -g and -x take optional arguments, just like their long options.
5814 * build-aux/cross-options.pl: Use /x to make the regexp easier to
5815 understand.
5816 Fix the handling of $opt which resulted in all the argument to be
5817 considered as optional.
5818
5819 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
5820
5821 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
5822 say its interface is experimental.
5823 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
5824 Java.
5825 (Bison Options): In the -L and --language entry, mention Java.
5826 (Java Bison Interface): Say the interface is experimental.
5827 * src/getargs.c (usage): Mention -L and --language.
5828
5829 * NEWS (2.3a+): Say the push parsing interface is experimental.
5830 * doc/bison.texinfo (Push Decl): Likewise.
5831 (Decl Summary): Likewise in the "%define api.push_pull" entry.
5832 (Push Parser Function): Likewise.
5833 (Pull Parser Function): Likewise.
5834 (Parser Create Function): Likewise.
5835 (Parser Delete Function): Likewise.
5836 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
5837 yypull_parse, and yypush_parse entries.
5838
5839 * NEWS (2.3a+): Mention XML support, and say the schema is
5840 experimental.
5841 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
5842 * src/getargs.c (usage): Say the XML schema is experimental.
5843
5844 * NEWS (2.3a+): Say option instead of flag.
5845
5846 2008-02-21 Wojciech Polak <polak@gnu.org>
5847
5848 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
5849 text.
5850
5851 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
5852
5853 Fix impure push parser compile error reported by Bob Rossi at
5854 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
5855 * data/yacc.c: Clean up whitespace in the output a little.
5856 (yypstate_allocated): Define for impure push parsers regardless of
5857 whether the pull interface is also requested.
5858 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
5859 check impure push parsers without the pull interface.
5860
5861 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
5862 yyerror takes arguments specified by %parse-param while yypstate_new
5863 does not.
5864 * doc/bison.texinfo (Parser Create Function): Document that
5865 yypstate_new returns 0 for multiple impure parser instances.
5866 * tests/push.at (Push Parsing: Multiple impure instances): Update
5867 expected stderr output.
5868
5869 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
5870
5871 * runtime-po/POTFILES.in (push.c): Remove.
5872
5873 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
5874
5875 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
5876 * data/push.c: Rename to...
5877 * data/yacc.c: ... this, overwriting it.
5878 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
5879 `%push-pull-parser' -> `%define api.push_pull "both"'.
5880 Remove old yacc.c tests, and update push.c tests to yacc.c.
5881
5882 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
5883
5884 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
5885 `"%code top" blocks' instead of `%code "top" blocks'.
5886 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
5887 Clean up whitespace in the output a little.
5888
5889 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
5890
5891 Fix documentation problems reported by Tim Josling at
5892 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
5893 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
5894 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
5895 integers. Explain the effect of literal string aliases on error
5896 messages. Copy token 0 documentation from the C++ skeleton
5897 documentation.
5898
5899 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
5900
5901 Accept a token number in a %left, %right, or %nonassoc for POSIX
5902 conformance. Reported by Tim Josling at
5903 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
5904 * NEWS (2.3a+): Mention.
5905 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
5906 and code numbers are treated by precedence declarations.
5907 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
5908 of symbols.1.
5909 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
5910 of symbol.
5911 (symbol.prec): New, just like symbol but allows INT.
5912 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
5913 longer holds.
5914 * tests/regression.at (Token number in precedence declaration): New
5915 test case.
5916
5917 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5918
5919 DJGPP specific issues.
5920 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
5921 be changed. Copyright timestamp adjusted.
5922 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
5923 be changed. Copyright timestamp adjusted.
5924 * djgpp/config.site: Copyright timestamp adjusted.
5925 * djgpp/config_h.sed: Copyright timestamp adjusted.
5926 * djgpp/djunpack.bat: Copyright timestamp adjusted.
5927 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
5928 filename translation list.
5929 * djgpp/subpipe.c (init_subpipe): Check the environment variables
5930 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
5931 files shall be created. Before trying to use the temp dir where the
5932 environment variable points to check that the dir really exists. If
5933 not default to the cwd as temp dir. Copyright timestamp adjusted.
5934 * djgpp/subpipe.h: Copyright timestamp adjusted.
5935 * djgpp/testsuite.sed: Copyright timestamp adjusted.
5936
5937 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
5938
5939 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
5940
5941 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
5942
5943 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
5944 Problem reported by Claudio Saavedra in
5945 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
5946
5947 2008-01-05 Wojciech Polak <polak@gnu.org>
5948
5949 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
5950 document's title with the input grammar file name.
5951
5952 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
5953
5954 Automate regression testing of the XML/XSLT implementation. Discussed
5955 starting at
5956 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
5957 * configure.ac (XSLTPROC): New substitution.
5958 * Makefile.am (maintainer-xml-check): New phony target invoking...
5959 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
5960 invoking make maintainer-check with BISON_TEST_XML=1.
5961 * tests/atlocal.in (XSLTPROC): New.
5962 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
5963 not to report reachable memory when Bison is expected to have a
5964 non-zero exit status and (2) to compare XML/XSLT output with --graph
5965 and --report=all output for every working grammar when
5966 BISON_TEST_XML=1.
5967 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
5968 (AT_BISON_CHECK_XML): New.
5969 (AT_QUELL_VALGRIND): New.
5970 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
5971 (AT_CHECK): ... don't redefine this since this was the old way to
5972 quell Valgrind.
5973 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
5974 AT_BISON_CHECK invocations.
5975 * tests/c++.at: Likewise.
5976 * tests/calc.at: Likewise.
5977 * tests/conflicts.at: Likewise.
5978 * tests/cxx-type.at: Likewise.
5979 * tests/existing.at: Likewise.
5980 * tests/glr-regression.at: Likewise.
5981 * tests/headers.at: Likewise.
5982 * tests/input.at: Likewise.
5983 * tests/java.at: Likewise.
5984 * tests/output.at: Likewise.
5985 * tests/push.at: Likewise.
5986 * tests/reduce.at: Likewise.
5987 * tests/regression.at: Likewise.
5988 * tests/sets.at: Likewise.
5989 * tests/skeletons.at: Likewise.
5990 * tests/synclines.at: Likewise.
5991 * tests/torture.at: Likewise.
5992 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
5993 tends to hang xsltproc.
5994 (Big horizontal): Likewise.
5995
5996 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
5997
5998 In XML output, remove redundant class attribute on symbol element.
5999 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
6000 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
6001 look up a symbol to determine whether it's a nonterminal or terminal.
6002 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
6003 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
6004
6005 Add prec/assoc information to XML output.
6006 * src/gram.c (grammar_rules_print_xml): For each rule that has a
6007 %prec, add a percent_prec attribute.
6008 * src/print-xml.c (print_grammar): For each terminal that has a
6009 precedence or associativity, add a prec or assoc attribute.
6010 (xml_indent): New.
6011 (xml_puts): Use xml_indent.
6012 (xml_printf): Use xml_indent.
6013 * src/print-xml.h (xml_indent): Prototype.
6014
6015 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
6016 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
6017
6018 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
6019
6020 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
6021 (bison:ruleByNumber): ... this for clarity.
6022 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
6023 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
6024 (xsl:template match="reduction"): Update.
6025 (xsl:template match="item"): Update.
6026 (xsl:template match="reduction"): Update.
6027
6028 In the XML output, don't print the list of rules where symbols appear.
6029 Compute it in XSLT instead. Discussed at
6030 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
6031 * data/xslt/bison.xsl (bison:ruleByLhs): New.
6032 (bison:ruleByRhs): New.
6033 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
6034 bison:ruleByRhs.
6035 (xsl:template match="terminal/rule"): Remove.
6036 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
6037 bison:ruleByRhs.
6038 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
6039 Remove.
6040 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
6041 bison:ruleByRhs and mode="number-link" for rule template.
6042 (xsl:template match="terminal/rule"): Remove.
6043 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
6044 bison:ruleByRhs and mode="number-link" for rule template.
6045 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
6046 Rewrite as...
6047 (xsl:template match="rule" mode="number-link"): ... this.
6048 * src/print-xml.c (print_grammar): Don't print the list of rules.
6049
6050 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
6051
6052 Don't let --report affect XML output; always print all information.
6053 Discussed at
6054 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
6055 * src/conflicts.c (log_resolution): Implement.
6056 * src/print-xml.c (print_core): Implement.
6057 (print_state): Implement.
6058 (print_xml): Implement.
6059
6060 * NEWS (2.3a+): Fix quotes.
6061 * src/parse-gram.y (prologue_declaration): For consistency with -v,
6062 don't let %verbose clear the list specified by --report.
6063
6064 2007-11-26 Akim Demaille <akim@epita.fr>
6065
6066 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
6067
6068 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
6069
6070 In the XML output, list useless and unused symbols and rules with the
6071 useful ones and add a "usefulness" attribute. Discussed starting at
6072 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
6073 * src/gram.c (grammar_rules_partial_print_xml): Remove.
6074 (grammar_rules_print_xml): Print all rules instead of just those
6075 useful in the grammar, and add a "usefulness" attribute.
6076 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
6077 * src/print-xml.c (print_rules_useless_in_parser): Remove.
6078 (print_grammar): Print all nonterminals instead of just useful ones,
6079 and add a "usefulness" attribute to nonterminals and terminals.
6080 (print_xml): Don't print a separate "reductions" or
6081 "rules-useless-in-parser" element.
6082 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
6083 (reduce_xml): Remove.
6084 (reduce_token_unused_in_grammar): New.
6085 (reduce_nonterminal_useless_in_grammar): New.
6086 * src/reduce.h (reduce_xml): Remove prototype.
6087 (reduce_token_unused_in_grammar): Add prototype.
6088 (reduce_nonterminal_useless_in_grammar): Add prototype.
6089 * data/xslt/xml2text.xsl: Update for XML changes.
6090 * data/xslt/xml2xhtml.xsl: Update for XML changes.
6091 * tests/reduce.at (Useless Terminals): Update output.
6092 (Useless Rules): Update output.
6093 (Reduced Automaton): Update output.
6094
6095 Say "Terminals unused in grammar" instead of "Unused terminals".
6096 * NEWS (2.3a+): Update.
6097 * doc/bison.texinfo (Understanding): Update example output.
6098 * src/reduce.c (reduce_output): Implement.
6099 * data/xslt/xml2text.xsl: Implement.
6100 * data/xslt/xml2xhtml.xsl: Implement.
6101
6102 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
6103
6104 Accept --report-file=FILE to override the default `.output' filename.
6105 * NEWS (2.3a+): Mention.
6106 * doc/bison.texinfo (Bison Options): Add an entry.
6107 * src/files.c (compute_output_file_names): Don't override
6108 spec_verbose_file if already set.
6109 * src/getargs.c (usage): Document --report-file.
6110 (REPORT_FILE_OPTION): New anonymous enum member.
6111 (long_options): Add entry for it.
6112 (getargs): Add case for it setting spec_verbose_file.
6113
6114 * build-aux/cross-options.pl: Don't record a short option just because
6115 there's an arg.
6116 * doc/.cvsignore: Add yacc.1.
6117
6118 2007-11-14 Akim Demaille <akim@epita.fr>
6119
6120 * doc/yacc.1.in: New.
6121 * configure.ac, doc/Makefile.am: Adjust.
6122 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
6123 config.h symbol.
6124 Use AC_SUBST for assignments too.
6125 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
6126
6127 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
6128
6129 * src/gram.c: Remove comments that duplicate comments in gram.h.
6130
6131 When reporting useless rules and nonterminals, say "useless in grammar"
6132 instead of "useless", and say "useless in parser" instead of "never
6133 reduced". Discussed starting at
6134 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
6135 * NEWS (2.3a+): Mention this change.
6136 * data/xslt/xml2text.xsl: Update output text and expected input XML
6137 element names to match changes below.
6138 * data/xslt/xml2xhtml.xsl: Likewise.
6139 (xsl:template match="bison-xml-report"): Add missing entry in Table of
6140 Contents: "Rules useless in parser due to conflicts".
6141 * doc/bison.texinfo (Decl Summary): Reword a little.
6142 (Understanding): Update example output for changes below.
6143 * src/gram.c: (rule_useful_p): Rename to...
6144 (rule_useful_in_grammar_p): ... this.
6145 (rule_useless_p): Rename to...
6146 (rule_useless_in_grammar_p): ... this.
6147 (rule_never_reduced_p): Rename to...
6148 (rule_useless_in_parser_p): ... this.
6149 (grammar_rules_print): Update for renames.
6150 (grammar_rules_print_xml): Update for renames.
6151 (grammar_rules_never_reduced_report): Rename to...
6152 (grammar_rules_useless_report): ... this since it is used for either
6153 kind of useless rule.
6154 * src/gram.h: Reword comments and update function names in prototypes.
6155 * src/main.c (main): Say "rule useless in parser due to conflicts".
6156 * src/print-xml.c (print_rules_never_reduced): Rename to...
6157 (print_rules_useless_in_parser): ... this, and rename output XML
6158 element "rules-never-reduced" to "rules-useless-in-parser".
6159 (print_xml): Update for rename.
6160 * src/print.c (print_results): Say "Rules useless in parser due to
6161 conflicts".
6162 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
6163 (nonterminals_reduce): Say "nonterminal useless in grammar".
6164 (reduce_output): Say "Nonterminals useless in grammar".
6165 Say "Rules useless in grammar".
6166 (reduce_xml): Rename output XML element "useless" to
6167 "useless-in-grammar".
6168 (reduce_print): Don't report the count of grammatically useless rules
6169 as "rules never reduced" just because %yacc is specified.
6170 In the correct report of this count, say nonterminal(s) and rule(s)
6171 "useless in grammar".
6172 * tests/conflicts.at (S/R in initial): Update expected output.
6173 (Defaulted Conflicted Reduction): Likewise.
6174 (Unreachable States After Conflict Resolution): Likewise.
6175 * tests/existing.at (GNU pic Grammar): Likewise.
6176 * tests/reduce.at (Useless Nonterminals): Likewise.
6177 (Useless Rules): Likewise.
6178 (Reduced Automaton): Likewise.
6179 (Underivable Rules): Likewise.
6180 (Empty Language): Likewise.
6181
6182 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
6183
6184 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
6185 here document and before the EOF so that BSD's implementation of Bourne
6186 shell doesn't parse the delimiter as part of the here document.
6187 * doc/.cvsignore: Add cross-options.texi.
6188 * src/getargs.c (usage): Add a blank line after the warning categories.
6189
6190 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
6191
6192 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
6193
6194 2007-11-05 Akim Demaille <akim@epita.fr>
6195
6196 Remove Id: from bison.1.
6197 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
6198 (perl -0777 -pi -e 's/\.PP\nId): New.
6199 (.x.1): Use it to ignore the version control revision.
6200
6201 2007-11-05 Akim Demaille <demaille@gostai.com>
6202
6203 * build-aux/Makefile.am: Ship cross-options.pl.
6204 * doc/Makefile.am: Always refer to cross-options.texi with
6205 $(srcdir).
6206 (MAINTAINERCLEANFILES): Add it.
6207
6208 2007-11-04 Akim Demaille <demaille@gostai.com>
6209
6210 Generate the long/short option cross-table.
6211 * build-aux/cross-options.pl: New.
6212 * doc/Makefile.am (cross-options.texi): New.
6213 * doc/bison.texinfo: Use it.
6214
6215 2007-11-04 Akim Demaille <demaille@gostai.com>
6216
6217 Generate bison.1 using help2man.
6218 * doc/common.x, doc/bison.x: New.
6219 * doc/Makefile.am (bison.1, .x.1): New.
6220 The code is taken from autoconf-2.61/man/Makefile.am.
6221 * configure.ac: Look for help2man.
6222
6223 2007-11-04 Akim Demaille <demaille@gostai.com>
6224
6225 Complete --help.
6226 * src/getargs.c (usage): Document -W, make it clear that -d,
6227 -g and -x have optional arguments.
6228
6229 2007-11-04 Akim Demaille <demaille@gostai.com>
6230
6231 Find sha1sum when named gsha1sum.
6232 * bootstrap (find_tool): New.
6233 ($SHA1SUM): New.
6234
6235 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
6236
6237 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
6238 at
6239 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
6240 * NEWS (2.3a+): Mention.
6241 * data/bison.m4 (b4_pure_if): Don't define it here.
6242 * data/c.m4 (b4_identification): Depend on individual skeletons to
6243 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
6244 values of the %define variables api.pure or api.push_pull. Define
6245 YYPURE, YYPUSH, and YYPULL accordingly.
6246 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
6247 glr.cc has already defined b4_pure_flag.
6248 * data/push.c: Define b4_pure_if based on `%define api.pure'.
6249 Remove YYPUSH and YYPULL since they're back in b4_identification again.
6250 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
6251 * doc/bison.texinfo (Pure Decl): Update.
6252 (Push Decl): Update.
6253 (Decl Summary): Add api.pure to %define entry.
6254 In %pure-parser entry, say it's deprecated and reference %define.
6255 (Pure Calling): Update.
6256 (Error Reporting): Update.
6257 (C++ Scanner Interface): Update.
6258 (How Can I Reset the Parser): Update.
6259 (Table of Symbols): In %pure-parser entry, say it's deprecated and
6260 reference %define.
6261 * src/getargs.c (pure_parser): Remove global variable.
6262 * src/getargs.h (pure_parser): Remove extern.
6263 * src/output.c (prepare): Don't define pure_flag muscle.
6264 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
6265 wrapper around `%define api.pure'.
6266 * tests/calc.at (Simple LALR Calculator): Update.
6267 (Simple GLR Calculator): Update.
6268 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
6269 Update.
6270 (GLR: Resolve ambiguity, pure, locations): Update.
6271 (GLR: Merge conflicting parses, pure, no locations): Update.
6272 (GLR: Merge conflicting parses, pure, locations): Update.
6273 * tests/glr-regression.at (Uninitialized location when reporting
6274 ambiguity): Update
6275 * tests/input.at (Unused %define api.pure): New test case.
6276 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
6277 AT_PURE_IF and AT_PURE_AND_LOC_IF.
6278 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
6279
6280 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
6281
6282 %define push_pull -> %define api.push_pull. Discussed starting at
6283 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
6284 * data/push.c: Expect the new name.
6285 * data/yacc.c: Likewise.
6286 * doc/bison.texinfo (Push Decl): Update.
6287 (Decl Summary): Update %define entry.
6288 (Push Parser Function): Update.
6289 (Pull Parser Function): Update.
6290 (Parser Create Function): Update.
6291 (Parser Delete Function): Update.
6292 * tests/calc.at (Simple LALR Calculator): Update.
6293 * tests/input.at (%define enum variables): Update.
6294 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
6295 (Push Parsing: Multiple impure instances): Update.
6296 (Push Parsing: Unsupported Skeletons): Update.
6297 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
6298 (Exploding the Stack Size with Malloc): Update.
6299
6300 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
6301 other entries some.
6302
6303 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
6304
6305 For the XML output's terminal element, rename @number to @token-number,
6306 and add @symbol-number. In the nonterminal element, rename @number to
6307 @symbol-number. Discussed starting at
6308 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
6309 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
6310 renames.
6311 (xsl:template match="nonterminal"): Likewise.
6312 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
6313 (xsl:template match="nonterminal"): Likewise.
6314 * src/print-xml.c (print_grammar): Implement.
6315
6316 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6317
6318 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
6319 2007-10-11 change, the child elements here are items not rules.
6320 (xsl:template match="item"): New.
6321 (xsl:template match="rule"): Update for new reduced itemset.
6322 (xsl:template match="point"): Remove.
6323 (xsl:template match="empty"): For consistency with --graph, don't
6324 output "/* empty */".
6325 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
6326 line-wrap, don't pass a negative value as first-line-length since this
6327 won't work with the following changes.
6328 (xsl:template name="line-wrap"): Simplify slightly.
6329 (xsl:template name="ws-search"): Eliminate recursion.
6330 * src/print_graph.c (print_core): Don't print a reduction's lookahead
6331 set next to an item whose dot is not at the end of the RHS even if it
6332 happens to be associated with the same rule.
6333
6334 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
6335
6336 Add %define lr.keep_unreachable_states.
6337 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
6338 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
6339 * src/main.c (main): Implement it.
6340 * tests/conflicts.at (Unreachable States After Conflict Resolution):
6341 Extend to test it, and fix a typo.
6342
6343 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
6344
6345 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
6346 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
6347 the example .output text.
6348 * tests/regression.at (Extra lookahead sets in report): Improve wording
6349 of comments.
6350
6351 2007-10-17 Wojciech Polak <polak@gnu.org>
6352
6353 * src/print-xml.c (print_grammar): Renamed
6354 <terminal> and <nonterminal> attributes:
6355 "type" to "number" and "symbol" to "name".
6356 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
6357 Use new attribute names.
6358 (xsl:template match="nonterminal"): Likewise.
6359 * data/xslt/xml2xhtml.xsl: Likewise.
6360
6361 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
6362
6363 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
6364 (Option Cross Key): Likewise.
6365
6366 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
6367 next to an item whose dot is not at the end of the RHS even if it
6368 happens to be associated with the same rule.
6369 * src/print.c (print_core): Likewise.
6370 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
6371 (Resolved SR Conflicts): Update output.
6372 * tests/regression.at (Extra lookahead sets in report): New test case.
6373
6374 2007-10-11 Wojciech Polak <polak@gnu.org>
6375
6376 * src/print-xml.c (print_core): Remove item set
6377 redundancy.
6378 * data/xslt/bison.xsl (bison:ruleNumber): New key.
6379 Improve processing time. Suggested by Joel E. Denny.
6380 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
6381 Write xsl:param "required" attribute as comment.
6382 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
6383 (xsl:template match="rule"): Support new reduced itemset.
6384 (xsl:template match="point"): Remove.
6385 * data/xslt/xml2xhtml.xsl: Likewise.
6386
6387 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
6388
6389 * src/getargs.c (version): Update copyright year.
6390
6391 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
6392
6393 Make xml2dot.xsl and --graph produce the same output.
6394 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
6395 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
6396 escaped later.
6397 (xsl:template name="output-node"): Use the new escape template instead
6398 of the string-replace template directly.
6399 (xsl:template name="output-edge"): Likewise.
6400 (xsl:template name="escape"): New, escapes backslashes and newlines in
6401 addition to quotation marks.
6402 * src/graphviz.c (start_graph, output_node, output_edge): Add
6403 whitespace to output for legibility.
6404
6405 Make xml2text.xsl and --report produce the same output, and remove the
6406 XML "conflicts" element since a conflict summary is easily extracted
6407 from the automaton.
6408 * data/xslt/bison.xsl: New.
6409 (xsl:template match="state" mode="bison:count-conflicts): New.
6410 * data/xslt/xml2text.xsl: Import bison.xsl.
6411 (xsl:template match="bison-xml-report"): Instead of styling the
6412 "conflicts" element, style the "automaton" element with mode
6413 "conflicts". Unlike the former, the latter lists S/R and R/R
6414 conflicts for a state on the same line.
6415 (xsl:template match="conflicts"): Remove.
6416 (xsl:template match="conflict"): Remove.
6417 (xsl:template match="terminal"): Line-wrap the list of rules in which
6418 the terminal is used.
6419 (xsl:template match="nonterminal"): Likewise for nonterminals.
6420 (xsl:template match="automaton" mode="conflicts"): New.
6421 (xsl:template match="state" mode="conflicts"): New.
6422 (xsl:template name="line-wrap"): New.
6423 (xsl:template name="ws-search"): New.
6424 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
6425 (xsl:template match="bison-xml-report"): Instead of styling the
6426 "conflicts" element, style the "automaton" element with mode
6427 "conflicts."
6428 (xsl:template match="conflicts"): Remove.
6429 (xsl:template match="conflict"): Remove.
6430 (xsl:template match="automaton" mode="conflicts"): New.
6431 (xsl:template match="state" mode="conflicts): New.
6432 * src/conflicts.c (conflicts_output_xml): Remove.
6433 * src/conflicts.h (conflicts_output_xml): Remove prototype.
6434 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
6435 * src/print.c (print_grammar): Consistently wrap at the 66th column so
6436 the corresponding XSLT is easier. Also, never wrap between a word and
6437 the comma that follows it.
6438
6439 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
6440
6441 Improve C++ namespace support. Discussed starting at
6442 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
6443 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
6444 b4_namespace_close): New macros that interpret the %define variable
6445 "namespace" so its value can contain "::" to indicate nested
6446 namespaces.
6447 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
6448 the above macros.
6449 * data/lalr1.cc (b4_namespace): Likewise.
6450 * data/location.cc (b4_namespace): Likewise.
6451 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
6452 inside a new table in the general %define entry. Document `%define
6453 namespace' there as well. Point the %name-prefix entry to it since it
6454 explains it more completely in the case of C++.
6455 (C++ Bison Interface): Mention `%define namespace' instead of
6456 %name-prefix.
6457 (Table of Symbols): Remove the `%define push_pull' entry. The %define
6458 entry suffices.
6459 * tests/c++.at (Relative namespace references): New test case.
6460 (Absolute namespace references): New test case.
6461 (Syntactically invalid namespace references): New test case.
6462 * tests/input.at (C++ namespace reference errors): New test case.
6463
6464 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
6465
6466 Add syncline support and location accessor to internal %define
6467 interfaces.
6468 * data/bison.m4 (b4_percent_define_get_loc): New.
6469 (b4_percent_define_get_syncline): New.
6470 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
6471 (b4_percent_define_default): Record defining location as line 1 rather
6472 than 0 for the sake of synchronizing #line's, and define
6473 b4_percent_define_syncline(VARIABLE).
6474 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
6475 * src/muscle_tab.c (muscle_syncline_grow): New.
6476 (muscle_code_grow): Use muscle_syncline_grow.
6477 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
6478 define b4_percent_define_syncline(VARIABLE).
6479 (muscle_percent_define_get_loc): New.
6480 (muscle_percent_define_get_syncline): New.
6481 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
6482 remove some unused variables.
6483 (muscle_percent_define_default): Record defining location as line 1
6484 rather than 0 for the sake of synchronizing #line's, and define
6485 b4_percent_define_syncline(VARIABLE).
6486 (muscle_percent_define_check_values): Use
6487 muscle_percent_define_get_loc.
6488 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
6489 (muscle_percent_define_get_syncline): Prototype.
6490 * tests/skeletons.at (%define Boolean variables: invalid skeleton
6491 defaults): Update output for location change.
6492 (Complaining during macro argument expansion): Extend to test
6493 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
6494
6495 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
6496
6497 Fix some error-reporting macro bugs.
6498 * data/bison.m4 (b4_cat): New.
6499 (b4_error, b4_error_at): Use b4_cat to send error directives directly
6500 to stdout so they don't become arguments to other macros. Update
6501 comments and add examples.
6502 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
6503 add examples.
6504 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
6505 after printing the error directive so that M4 doesn't report subsequent
6506 problems that are induced by this problem.
6507 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
6508 instead of just in them. Recognize @\n in both places. Both expand to
6509 the empty string. Needed by b4_cat.
6510 * tests/skeletons.at (Complaining during macro argument expansion):
6511 New test case.
6512 (Fatal errors make M4 exit immediately): New test case.
6513
6514 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
6515
6516 Implement --print-datadir.
6517 * src/getargs.c (usage): Mention.
6518 (PRINT_DATADIR_OPTION): New anonymous enum member.
6519 (long_options): Add entry for it.
6520 (getargs): Add case for it calling compute_pkgdatadir.
6521 * src/output.c (output_skeleton): Encapsulate data directory
6522 computation from here...
6523 (prepare): ... and from here...
6524 (compute_pkgdatadir): ... into this new function.
6525 * src/output.h (compute_pkgdatadir): Prototype.
6526
6527 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
6528
6529 * src/print-xml.c (escape_bufs): New static global variable
6530 replacing...
6531 (xml_escape_n): ... the static local variable buf here.
6532 (print_xml): Free memory for escape_bufs.
6533 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
6534
6535 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
6536
6537 Replace `%push-parser' and `%push-pull-parser' with
6538 `%define push_pull "push"' and `%define push_pull "both"'.
6539 `%define push_pull "pull"' is the default.
6540 * doc/bison.texinfo (Push Decl, Push Parser Function,
6541 Pull Parser Function, Parser Create Function, Parser Delete Function):
6542 Update declarations.
6543 (Decl Summary, Table of Symbols): Replace %push-parser and
6544 %push-pull-parser entries with a %define push_pull entry.
6545 * data/bison.m4 (b4_percent_define_check_values): New macro.
6546 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
6547 definitions...
6548 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
6549 definitions...
6550 * data/push.c: ... to here and compute them from the value of the
6551 %define variable push_pull.
6552 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
6553 parsing requests here...
6554 * data/yacc.c: ... hack this to switch to push.c any time
6555 b4_use_push_pull_flag or the %define variable push_pull is set. This
6556 will go away when we mv push.c yacc.c.
6557 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
6558 push parsing is not supported since unused %define variables are
6559 reported anyway.
6560 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
6561 * src/muscle_tab.h (muscle_percent_define_check_values): Update
6562 comments for consistency with b4_percent_define_check_values.
6563 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
6564 muscles.
6565 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
6566 Remove.
6567 (prologue_declaration): Remove %push-parser and %push-pull-parser
6568 rules.
6569 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
6570 * tests/calc.at: Update declarations.
6571 * tests/input.at (%define enum variables): New test case.
6572 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
6573 declaration.
6574 (Push Parsing: Multiple impure instances): Update declaration.
6575 (Push Parsing: Unsupported Skeletons): New test case.
6576 * tests/torture.at (Exploding the Stack Size with Alloca): Update
6577 declaration.
6578 (Exploding the Stack Size with Malloc): Update declaration.
6579
6580 2007-09-24 Wojciech Polak <polak@gnu.org>
6581
6582 Add XSLT transformations.
6583
6584 * data/xslt/xml2dot.xsl: Transform XML into DOT.
6585 * data/xslt/xml2text.xsl: Transform XML into plain text.
6586 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
6587 * data/Makefile.am (xsltdir): New variable.
6588 (dist_xslt_DATA): Add xslt/*.xsl files.
6589
6590 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
6591
6592 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
6593 Problem reported by Wojciech Polak.
6594 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
6595 (xml_printf): Undo change I made on 21 September; that is,
6596 indent 2 spaces, not 1.
6597
6598 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
6599
6600 Pacify ./configure --enable-gcc-warnings.
6601 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
6602 `char const *' instead of `char *'.
6603 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
6604 local variable `sep'.
6605
6606 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
6607
6608 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
6609 elsewhere.
6610 * src/print-xml.c: Prefer "const" after types; that's more consistent.
6611 (xml_printf): Indent just 1 space for level.
6612 (e_char, xlate_char): Remove.
6613 (xml_escape_string): Rewrite to avoid undefined behavior (used
6614 storage that was freed from the stack).
6615 (xml_escape_n): Don't bother checking for subscript error.
6616
6617 2007-09-21 Wojciech Polak <polak@gnu.org>
6618
6619 Add Bison XML Automaton Report.
6620
6621 Add support for an -x option to generate an XML report.
6622 It is not documented yet.
6623 * src/print-xml.c: New file.
6624 * src/print-xml.h: Likewise.
6625 * lib/timevar.def (TV_XML): New var.
6626 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
6627 * src/conflicts.c: Include print-xml.h.
6628 (solved_conflicts_xml_obstack): New var.
6629 (log_resolution, conflicts_solve, conflicts_free):
6630 Add support for XML report.
6631 (conflicts_output_val): New function.
6632 * src/conflicts.h (conflicts_output_val): New decl.
6633 * src/files.c (spec_xml_file): New var.
6634 (compute_output_file_names, output_file_names_free): Add XML support.
6635 * src/files.h (spec_xml_file): New decl.
6636 * src/getargs.c (xml_flag): New var.
6637 (usage, short_options, long_options, getargs): Add XML support.
6638 * src/getargs.h (xml_flag): New decl.
6639 * src/gram.c: Include print-xml.h.
6640 (rule_lhs_print_xml, rule_rhs_print_xml):
6641 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
6642 New functions.
6643 * src/gram.h: Declare external ones.
6644 * src/main.c: Include print-xml.h.
6645 (main): Add XML support.
6646 * src/reduce.c: Include print-xml.h.
6647 (reduce_xml): New function.
6648 * src/reduce.h: Declare it.
6649 * src/state.c: Include print-xml.h.
6650 (state_new): Add XML support.
6651 (state_rule_lookahead_tokens_print_xml): New function.
6652 * src/state.h: Declare it.
6653 (struct state): New member solved_conflicts_xml.
6654 * src/symtab.c (symbol_class_get_string): New function.
6655 * src/symtab.h: Declare it.
6656
6657 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
6658
6659 * GNUmakefile: Switch to coreutils's version.
6660 * bootstrap: Likewise.
6661 * Makefile.cfg: Adjust to new GNUmakefile.
6662 * README-hacking: Likewise.
6663
6664 Import from gnulib:
6665
6666 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
6667 Bruno Haible <bruno@clisp.org>
6668
6669 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
6670 and is a script that invokes bison. Tighten the code. Add comments.
6671
6672 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
6673
6674 Spell "boolean" as "Boolean". Reported by Akim Demaille.
6675 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
6676 * doc/bison.texinfo (Decl Summary): Fix.
6677 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
6678 * tests/input.at (Boolean %define variables): Update output.
6679 * tests/skeletons.at (%define boolean variables: invalid skeleton
6680 defaults): Rename to...
6681 (%define Boolean variables: invalid skeleton defaults): ... this and
6682 update output.
6683
6684 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
6685
6686 In impure push mode, don't allow more than one yypstate to be allocated
6687 since multiple impure parsers would corrupt yynerrs.
6688 * data/push.c (yypstate_allocated): New static global variable
6689 initialized to 0.
6690 (yypull_parse): If yypstate_new returns 0, don't report it as memory
6691 exhaustion if yypstate_allocated is 1, but still return 2.
6692 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
6693 already 1. Otherwise, set it to 1.
6694 (yypstate_delete): Set it to 0.
6695 * tests/push.at (Push Parsing: Multiple impure instances): New test
6696 case.
6697
6698 2007-08-17 Bob Rossi <bob@brasko.net>
6699
6700 * doc/bison.texinfo (Push Decl): Document the push parser.
6701 (Table of Symbols): Ditto.
6702 (Pure Decl): Ditto.
6703 (Decl Summary): Ditto.
6704 (Multiple Parsers, Push Parser Function, Pull Parser Function,
6705 Parser Create Function, Parser Delete Function):
6706 Add new push parser symbols.
6707 (Table of Symbols): Document push-parser, push-pull-parser,
6708 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
6709
6710 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
6711
6712 Update to GPLv3.
6713 * doc/gpl-3.0.texi: New file.
6714 * doc/gpl.texi: Remove.
6715 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
6716 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
6717 * README-hacking, TODO, bootstrap, bootstrap.conf:
6718 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
6719 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
6720 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
6721 * data/lalr1.cc, data/lalr1.java, data/location.cc:
6722 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
6723 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
6724 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
6725 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
6726 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
6727 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
6728 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
6729 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
6730 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
6731 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
6732 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
6733 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
6734 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
6735 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
6736 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
6737 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
6738 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
6739 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
6740 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
6741 * src/complain.c, src/complain.h, src/conflicts.c:
6742 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
6743 * src/files.h, src/flex-scanner.h, src/getargs.c:
6744 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
6745 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
6746 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
6747 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
6748 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
6749 * src/print.c, src/print.h, src/print_graph.c:
6750 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
6751 * src/reduce.h, src/relation.c, src/relation.h:
6752 * src/revision.h, src/scan-code.h, src/scan-code.l:
6753 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
6754 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
6755 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
6756 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
6757 * tests/Makefile.am, tests/actions.at, tests/c++.at:
6758 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
6759 * tests/existing.at, tests/glr-regression.at:
6760 * tests/headers.at, tests/input.at, tests/java.at:
6761 * tests/local.at, tests/output.at, tests/push.at:
6762 * tests/reduce.at, tests/regression.at, tests/sets.at:
6763 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
6764 * tests/torture.at:
6765 Update to GPLv3.
6766
6767 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
6768
6769 Get rid of broken %no-parser, -n, and --no-parser implementation and
6770 documentation.
6771 * TODO: Don't mention them.
6772 * doc/bison.1: Likewise.
6773 * doc/bison.texinfo (Decl Summary): Likewise.
6774 (Bison Options): Likewise.
6775 (Option Cross Key): Likewise.
6776 * src/getargs.c (no_parser_flag): Remove global variable.
6777 (usage): Don't print description of -n and --no-parser.
6778 (long_options): Remove --no-parser entry here.
6779 (getargs): Remove -n case in the switch here.
6780 * src/getargs.h (no_parser_flag): Remove extern.
6781 * tests/regression.at (Web2c Actions): Remove comment that mentions
6782 --no-parser.
6783
6784 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
6785
6786 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
6787 name user variables starting with `yy'. Just pass NULL instead of a
6788 dummy local &yylval to yypush_parse.
6789 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
6790 starting with `yy'.
6791
6792 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
6793
6794 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
6795 true since it's then always used regardless of whether yyoverflow is
6796 defined. Reported by Christian Burger at
6797 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
6798 * THANKS: Add Christian Burger.
6799
6800 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
6801 node names: say "Decl Summary" not "Bison Declaration Summary".
6802
6803 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
6804
6805 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
6806 determine whether this function has already complained about an invalid
6807 value for a %define boolean variable, don't check whether Bison has
6808 ever examined the value. As written, the check was a tautology.
6809 Instead, record and check for this complaint using a separate muscle.
6810
6811 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
6812
6813 Fix push parsing memory leak reported by Brandon Lucia at
6814 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
6815 * THANKS: Add Brandon Lucia.
6816 * data/push.c (yypstate_delete): Free the stack if it was reallocated
6817 but the parse never completed and thus freed it.
6818 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
6819 * tests/testsuite.at: Include push.at.
6820 * test/push.at: New.
6821 (Push Parsing: Memory Leak for Early Deletion): New test case.
6822
6823 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
6824
6825 Improve handling of multiple S/R conflicts in the same state and of S/R
6826 conflicts involving multiple reductions.
6827 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
6828 set for a state here or Bison will abort if it is reassigned on a
6829 later conflicted reduction in the same state.
6830 Similarly, don't finalize and assign the solved conflicts report here
6831 or it will be lost if it is reassigned on a later conflicted reduction
6832 in the same state.
6833 (set_conflicts): Instead, assign them both here after all S/R conflicts
6834 in the state have been fully examined.
6835 * src/print.c (shift_set): Rename to...
6836 (no_reduce_set): ... this.
6837 (print_reductions): Update for rename, and add %nonassoc error action
6838 tokens to no_reduce_set so that, when printing the first remaining
6839 reduction on an error action token, the reduction is enclosed in
6840 brackets.
6841 (print_results): Update for rename.
6842 * tests/conflicts.at (Solved conflicts report for multiple reductions
6843 in a state): New test case.
6844 (%nonassoc error actions for multiple reductions in a state): New test
6845 case.
6846
6847 * src/main.c (main): Don't depend on C99 features.
6848
6849 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
6850
6851 * build-aux/.cvsignore: Add compile.
6852 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
6853 uniwidth.
6854
6855 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
6856
6857 * bootstrap (slurp): Create target directories that don't exist.
6858 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
6859
6860 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
6861
6862 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
6863 than item number.
6864 * closure.c (closure): Likewise.
6865 * state.h (reductions): Comment sorting of rules.
6866 (state): Comment sorting of items.
6867
6868 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
6869
6870 Fix C++ test cases after recent Gnulib changes. Discussed starting at
6871 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
6872 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
6873 definition in order to avoid Gnulib headers since we don't use config.h
6874 here.
6875 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
6876 rather than AT_DATA so that config.h is included.
6877
6878 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
6879
6880 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
6881 instead of fprintf. Guard these functions with #if YYDEBUG instead of
6882 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
6883 and so that YYFPRINTF is guaranteed to be defined here.
6884
6885 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6886
6887 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
6888 with...
6889 (muscle_percent_define_check_values): ... this more helpful function.
6890 Again, it's not used yet, but it will be.
6891 * src/muscle_tab.h: Likewise.
6892
6893 Improve some comments in parser table construction.
6894 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
6895 (generate_states): Don't mention ruleset, which is internal to closure.
6896 * src/closure.c (closure): Explain sorting of core and itemset, which
6897 is required for this function to behave correctly.
6898 * src/closure.h (closure): Mention sorting.
6899
6900 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
6901
6902 * src/lalr.c (state_lookahead_tokens_count): For code readability,
6903 move the check for disabled transitions to an aver since conflict
6904 resolution hasn't happened yet.
6905
6906 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
6907 labels a state as inconsistent just because it has error transitions.
6908 The original form of this check appeared in revision 1.1 of lalr.c,
6909 which was committed on 1991-12-21. Now (at least), changing the
6910 consistency label on such a state appears to have no useful effect in
6911 any of the places it is examined, which I enumerate below. The key
6912 point to understanding each item in this enumeration is that a state
6913 with an error transition is labelled consistent in the first place only
6914 if it has no rules, so the check cannot matter for states that have
6915 rules. (1) Labelling a state as inconsistent will cause set_conflicts
6916 to try to identify its conflicts, and a state must have *rules* to have
6917 conflicts. (2) Labelling a state as inconsistent will affect how
6918 action_row sets the default *rule* for the state. (3) Labelling a
6919 state as inconsistent will cause build_relations to add lookback edges
6920 to *rules* in that state.
6921 * src/state.h (struct state): Word the comment for member consistent
6922 more carefully.
6923
6924 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
6925
6926 Don't depend on C99 features.
6927 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
6928 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
6929 * src/reader.c (check_and_convert_grammar): Fix for-loop.
6930 * src/state.c (state_mark_reachable_states): Fix for-loop.
6931 (state_remove_unreachable_states): Fix for-loop.
6932
6933 Don't widen struct state with member reachable just to temporarily
6934 record reachability. Instead, use a local bitset.
6935 * src/state.h (struct state): Remove member.
6936 * src/state.c (state_new): Don't initialize it.
6937 (state_mark_reachable_states): Rename to...
6938 (state_record_reachable_states): ... this, and use bitset.
6939 (state_remove_unreachable_states): Use bitset.
6940
6941 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
6942
6943 * src/Makefile.am (yacc): Quote target action commands properly so
6944 that the yacc script isn't corrupt. Reported by Hans Aberg at
6945 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
6946
6947 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
6948 the case of pure parsers. Reported by Frans Englich at
6949 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
6950 * THANKS: Add Frans Englich.
6951
6952 * NEWS (2.3a+): In the %code entry, reference section `Bison
6953 Declaration Summary' from the manual now since the %code summary has
6954 moved there.
6955 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
6956 in the rules section must be terminated by semicolons.
6957
6958 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
6959
6960 Extend the front-end API for %define variables to more completely
6961 mirror the back-end. This will be useful in the future.
6962 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
6963 Update comments to mention the new front-end counterparts of these
6964 macros.
6965 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
6966 for muscle_string_decode and muscle_location_decode.
6967 (muscle_string_decode): New static function.
6968 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
6969 (muscle_percent_define_get, muscle_percent_define_ifdef): New
6970 functions.
6971 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
6972 muscle_percent_define_get to mimic the b4_percent_define_flag_if
6973 implementation more closely.
6974 (muscle_percent_define_invalid_value): New function.
6975 * src/muscle_tab.h (muscle_percent_define_get,
6976 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
6977 Prototype.
6978
6979 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
6980
6981 * NEWS (2.3a+): Mention yesterday's state-removal change.
6982 (2.3a): Remove the %language entry, which was added after 2.3a.
6983 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
6984 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
6985 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
6986 tests/existing.at: Update copyright date.
6987
6988 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
6989
6990 If conflict resolution makes states unreachable, remove those states,
6991 report rules that are then unused, and don't report conflicts in those
6992 states.
6993 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
6994 New global function.
6995 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
6996 function.
6997 * src/main.c (main): After conflict resolution, remove the unreachable
6998 states and update all data structures that reference states by number.
6999 * src/state.c (state_new): Initialize each state's reachable member to
7000 false.
7001 (state_mark_reachable_states): New static function.
7002 (state_remove_unreachable_states): New global function.
7003 * src/state.h (struct state): Add member bool reachable.
7004 (state_remove_unreachable_states): Prototype.
7005 * tests/conflicts.at (Unreachable States After Conflict Resolution):
7006 New test case.
7007 * tests/existing.at (GNU pic Grammar): Update test case output now that
7008 an unused rule is discovered.
7009
7010 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
7011
7012 Minor code cleanup in parser table construction.
7013 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
7014 (new_itemsets, save_reductions): Update for rename to nitemset.
7015 * src/closure.c (nritemset): Rename to...
7016 (nitemset): ... this since the "r" appears to meaningless and isn't
7017 used in the comments.
7018 (closure): Update for rename.
7019 * src/closure.h (nritemset): Update extern to...
7020 (nitemset): ... this.
7021 * src/lalr.c (LA): Fix a typo in comments.
7022 * src/print.c (print_core): Update for rename to nitemset.
7023 * src/print_graph.c (print_graph): Likewise.
7024 * src/state.h: Fix some typos in header comments.
7025
7026 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
7027
7028 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
7029 still sticks to ASCII. Sorry!
7030
7031 * README-hacking: New file, taken mostly from coreutils, with changes
7032 for Bison. Contains much of the contents of:
7033 * README-cvs: Remove.
7034 * bootstrap: Sync from gnulib.
7035 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
7036 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
7037
7038 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
7039
7040 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
7041 Setzer.
7042 (Java Differences): Fix some typos.
7043 * THANKS: Add Sebastian Setzer.
7044
7045 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
7046
7047 * data/java.m4 (b4_single_class_if): Remove.
7048 (b4_abstract_if): Look at "%define abstract".
7049 (b4_lexer_if): New.
7050 (b4_union_name): Rename...
7051 (b4_yystype): ... to this. Map to "%define stype".
7052 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
7053 b4_maybe_throws): Fix quoting.
7054 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
7055 * data/lalr1.java (Lexer interface): Always define.
7056 (Lexer interface within parser class): Remove.
7057 (YYLexer class): New, used when "%code lexer" is present.
7058 (constructor): When "%code lexer" is used, pass %lex-param
7059 to the lexer constructor.
7060 (yylex, yyparse): Remove %lex-param from method invocations
7061 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
7062
7063 * doc/bison.texinfo (Java Bison Interface): Mention "%define
7064 abstract". Rename "%define union_name" to "%define stype".
7065 Rename method names according to previous patch.
7066 (Java Scanner Interface): Describe "%code lexer" instead of
7067 "%pure-parser" and "%define single_class".
7068 (Java Differences): Mention "%code lexer".
7069
7070 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
7071 Include scanner here, using macros from tests/local.at.
7072 (AT_DATA_CALC_Y): Remove final argument.
7073 (_AT_CHECK_JAVA_CALC): Likewise.
7074 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
7075 of %locations and %error-verbose.
7076 (main): Test with and without %lex-param.
7077 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
7078 (AT_BISON_OPTION_POPDEFS): Pop it.
7079
7080 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7081
7082 DJGPP spefic issue. Inhibit the use of disallowed characters for
7083 file name genertion on Win98, WinXP, etc. These are |<>":?*\
7084 and concern testsuite case 46.
7085 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
7086 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
7087 * djgpp/config.bat: Inhibit the use of disallowed characters.
7088
7089 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
7090
7091 Miscellaneous %define and %code cleanup.
7092 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
7093 values are interpreted.
7094 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
7095 documentation a little more.
7096 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
7097 muscle_percent_define_insert, muscle_percent_code_grow): New
7098 functions/macros.
7099 * src/muscle_tab.h (muscle_percent_define_insert,
7100 muscle_percent_code_grow): Prototype.
7101 * src/parse-gram.y (prologue_declaration): Use
7102 muscle_percent_define_insert and muscle_percent_code_grow when parsing
7103 %define and %code directives.
7104
7105 Make it easy to share %define boolean variables between the front-end
7106 and back-end. Though not used yet, this will be useful in the future.
7107 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
7108 Bison uses of names rather than just skeleton uses of names.
7109 (b4_percent_define_get, b4_percent_define_ifdef): Rename
7110 b4_percent_define_skeleton_variables(VARIABLE) to
7111 b4_percent_define_bison_variables(VARIABLE).
7112 (b4_percent_code_get, b4_percent_code_ifdef): Rename
7113 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
7114 b4_percent_code_bison_qualifiers(QUALIFIER).
7115 (b4_check_user_names_wrap): Update for renames.
7116 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
7117 muscle_percent_define_default): New functions mimicking
7118 b4_percent_define_flag_if and b4_percent_define_default.
7119
7120 For %define variables, report locations for invalid values and
7121 redefinitions.
7122 * data/bison.m4 (b4_percent_define_flag_if): Read
7123 b4_percent_define_loc(VARIABLE) to report the location of an invalid
7124 value for VARIABLE.
7125 (b4_percent_define_default): Save a special location in
7126 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
7127 must later be reported as invalid.
7128 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
7129 functions.
7130 (muscle_percent_define_insert): Record the location of VARIABLE in
7131 muscle percent_define_loc(VARIABLE), and use it to report the previous
7132 location for a redefinition.
7133 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
7134 (muscle_percent_define_default): Update like b4_percent_define_default.
7135 (muscle_grow_user_name_list): Rename to...
7136 (muscle_user_name_list_grow): ... this for consistency and use
7137 muscle_location_grow.
7138 * src/muscle_tab.h (muscle_location_grow): Prototype.
7139 * tests/input.at (%define errors): Update expected output.
7140 * tests/skeletons.at (%define boolean variables: invalid skeleton
7141 defaults): New test case.
7142
7143 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
7144
7145 * src/print.c (lookahead_set, state_default_rule): Remove.
7146 (print_reductions): Replace state_default_rule invocation with
7147 equivalent use of yydefact, which was computed in token_actions in
7148 tables.c.
7149 (print_results): Don't allocate lookahead_set.
7150
7151 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
7152
7153 * data/lalr1.java: Prefix all private members with yy.
7154
7155 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
7156
7157 Use YYFPRINTF instead of fprintf where appropriate. Reported by
7158 Sebastien Fricker at
7159 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
7160 * THANKS: Add Sebastien Fricker.
7161 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
7162 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
7163 accept a variable number of arguments.
7164
7165 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
7166
7167 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
7168
7169 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7170
7171 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
7172 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
7173 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
7174
7175 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
7176
7177 Undo my 2007-02-07 change, switching back to the c-strcase module
7178 introduced in the 2007-02-03 change. Bruno Haible reported that
7179 the 2007-02-07 change would be dangerous in Turkish if we add a
7180 language whose name contains "i", since "i" is not lowercase "I"
7181 in Turkish.
7182 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
7183 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
7184 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
7185 * m4/.cvsignore: Remove strcase.m4.
7186 * src/getargs.c: Revert 2007-02-07 change, as follows.
7187 Include c-strcase.h.
7188 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
7189
7190 2007-02-11 Bruno Haible <bruno@clisp.org>
7191
7192 Enable the Java related testsuite tests when the only Java compiler
7193 found is a gcj < 4.3. Discussed at
7194 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
7195 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
7196
7197 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
7198
7199 * data/Makefile.am: Update copyright date.
7200 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
7201 yypstate_new returns NULL.
7202 (yypstate_new): Return NULL if malloc does.
7203 * src/reader.c (packgram): Move translation of rule actions from the
7204 beginning of packgram to...
7205 (check_and_convert_grammar): ... here right before packgram is invoked
7206 so it's easier to write more complete comments, and remove redundant
7207 code.
7208
7209 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
7210
7211 As in semantic actions, make @$ in %initial-action, %destructor, and
7212 %printer imply %locations.
7213 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
7214 scanning @$.
7215 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
7216 (@$ in %initial-action implies %locations,
7217 @$ in %destructor implies %locations,
7218 @$ in %printer implies %locations): ... these new test cases.
7219
7220 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
7221
7222 Undo most of the 2007-02-03 change, switching to the strcase module
7223 now that gnulib strcase has been fixed.
7224 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
7225 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
7226 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
7227 * m4/.cvsignore: Add strcase.m4.
7228 * src/getargs.c: Revert 2007-02-03 change, as follows.
7229 Don't include c-strcase.h.
7230 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
7231 strcasecmp has "unspecified behavior" outside the POSIX locale,
7232 but it works fine in practice if at least one argument is ASCII,
7233 as is the case in Bison.
7234
7235 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
7236
7237 * tests/java.at: Skip tests if only one of javac/java is present.
7238 Reported by Joel E. Denny.
7239 * tests/atlocal.in: Adjust copyright years.
7240
7241 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
7242
7243 * data/lalr1.java (Stack): Work around old verifiers that disallow
7244 access to the private fields of an inner class, from the outer class.
7245 We can make Stack's fields public because user code doesn't have access
7246 to the instance of Stack used by parse(). Reported by Paul Eggert.
7247
7248 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
7249
7250 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
7251 the right spot for these files?
7252 * bootstrap.conf (gnulib_modules): Add c-strcase.
7253 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
7254 c-strncasecmp.c.
7255 * src/getargs.c: Include c-strcase.h.
7256 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
7257 to avoid unspecified behavior.
7258
7259 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
7260
7261 * doc/bison.texinfo (Decl Summary): Correct typo.
7262
7263 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
7264
7265 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
7266 Complain if the value does not match empty, "true" or "false".
7267 * data/c++.m4: Adjust default definitions of %define variables.
7268 * data/java.m4: Adjust default definitions of %define variables.
7269 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
7270 to above behavior.
7271 * tests/input.at (Boolean %define variables): Test new behavior.
7272
7273 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
7274
7275 * NEWS: Mention java.
7276 * TODO: Remove things that are done.
7277 * bootstrap.conf: Add javacomp-script and javaexec-script.
7278 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
7279
7280 * data/Makefile.am: Add new files.
7281 * data/java-skel.m4: New.
7282 * data/java.m4: New.
7283 * data/lalr1.java: New.
7284
7285 * doc/bison.texinfo: Put "A Complete C++ Example" under
7286 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
7287 under Other Languages.
7288
7289 * src/getargs.c (valid_languages): Add Java.
7290 * src/getargs.h (struct bison_language): Update size of string fields.
7291
7292 * tests/Makefile.am: Add java.at.
7293 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
7294 * tests/java.at: New.
7295 * tests/testsuite.at: Include it.
7296
7297 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
7298
7299 Clean up.
7300 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
7301 at_directive_argv arguments so these no longer have to be global
7302 variables. Also, update the implementation for the following changes.
7303 (fail_for_at_directive_too_many_args,
7304 fail_for_at_directive_too_few_args): Add at_directive_name argument.
7305 (at_directive_name): Remove as at_directive_argv[0] will be used for
7306 this now.
7307 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
7308 for the directive name.
7309 (at_directive_argc, at_directive_argv): Make these local within
7310 skel_lex instead of global.
7311 (INITIAL): Update directive start action for above changes.
7312 (SC_AT_DIRECTIVE_ARG): Rename to...
7313 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
7314 (SC_AT_DIRECTIVE_SKIP_WS): Update.
7315 (scan_skel): Move yylex_destroy to...
7316 (skel_scanner_free): ... here.
7317 * tests/skeletons.at (installed skeleton file name): Rename to...
7318 (installed skeleton file names): ... this.
7319
7320 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
7321
7322 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
7323 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
7324 Summary" not "Directives".
7325 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
7326 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
7327 since the former is now the more complete one.
7328 (Prologue Alternatives): Likewise and do the same for %defines.
7329 (Table of Symbols): Add summary of %code, add summary of %define, and
7330 move full %code documentation to...
7331 (Decl Summary): ... here for consistency with other entries in these
7332 sections.
7333 Move %define entry in order to keep this list alphabetized.
7334 Reword %define entry a little to put less emphasis on the skeleton
7335 concept, which most users shouldn't have to think about.
7336
7337 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
7338
7339 Adjust to recent gnulib changes.
7340 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
7341 Add string.h, string_.h, unistd_.h, wchar_.h.
7342 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
7343 * src/system.h: Don't include <stpcpy.h>; this is now done by
7344 <string.h>.
7345
7346 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
7347
7348 Simplify implementation of unqualified %code, implement macros for
7349 uniform treatment of boolean %define flags. Document %define.
7350 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
7351 b4_percent_code_ifdef): New.
7352 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
7353 * data/c++.m4: Define default value for global_tokens_and_yystype.
7354 * data/glr.cc: Likewise.
7355 * data/location.cc: Use b4_percent_define_flag_if.
7356
7357 * doc/bison.texinfo (Decl Summary): Document %define.
7358
7359 * src/parse-gram.y (Unqualified %code): Change muscle name to
7360 b4_percent_code().
7361 (content.opt): Default to empty.
7362
7363 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
7364
7365 Implement support for relative and absolute skeleton file names.
7366 Discussed starting at
7367 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
7368 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
7369 (Bison Options): Document in --skeleton entry.
7370 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
7371 full_skeleton can't necessarily hold all of pkgdatadir.
7372 If the specified skeleton file name contains a `/', don't prepend
7373 pkgdatadir.
7374 * src/parse-gram.y (prologue_declaration): If the specified skeleton
7375 file name contains a `/', prepend the grammar file directory.
7376 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
7377 * skeletons.at: New file.
7378 (relative skeleton file names): New test case.
7379 (installed skeleton file names): New test case.
7380 * tests/testsuite.at: Include skeletons.at.
7381
7382 * bootstrap: Update copyright to 2007.
7383
7384 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
7385
7386 * bootstrap: Remove occurrences of .#bootmp from the files.
7387
7388 2007-01-17 Akim Demaille <akim@epita.fr>
7389
7390 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
7391 nonterminals.
7392 Use per-type %printer.
7393
7394 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
7395
7396 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
7397 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
7398 djgpp/config.site, src/files.c, src/files.h, src/main.c,
7399 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
7400 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
7401 tests/glr-regression.at, tests/input.at, tests/local.at,
7402 tests/output.at, tests/torture.at: Update copyright to 2007.
7403
7404 2007-01-16 Akim Demaille <akim@epita.fr>
7405
7406 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
7407 error code.
7408 (Calc++ Scanner): Exit with failure if we can't open the input
7409 file.
7410 Accept "-" standing for stdin.
7411 (Calc++ Top Level): Print the result only if the parsing was
7412 successful.
7413
7414 2007-01-16 Akim Demaille <akim@epita.fr>
7415
7416 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
7417
7418 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
7419 and Joel E. Denny <jdenny@ces.clemson.edu>
7420
7421 Clean up %define and %code implementation in M4 some. Most
7422 importantly, rename all related macros to be in the b4_percent_define
7423 and b4_percent_code namespaces. Also, complete support for `.' in
7424 %define variable names and %code qualifiers.
7425 * data/bison.m4 (b4_check_user_names): Check for special
7426 "SKELETON-NAMESPACE(name)" macros instead of using two nested
7427 m4_foreach loops.
7428 (b4_get_percent_define, b4_get_percent_code): Rename to...
7429 (b4_percent_define_get, b4_percent_code_get): ... these.
7430 Extend documentation with examples.
7431 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
7432 b4_percent_define_skeleton_variables and
7433 b4_percent_code_skeleton_qualifiers.
7434 Expect any value for the %define variable `foo' to be stored in the
7435 macro named `b4_percent_define(foo)'; expect any %code blocks for the
7436 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
7437 expect any unqualified %code blocks to be stored in a macro named
7438 `b4_percent_code_unqualified'.
7439 Use m4_indir so that %define variable names and %code qualifiers can
7440 contain `.', which is allowed by the grammar parser.
7441 (b4_percent_define_default): New macro to set a default value for a
7442 %define variable.
7443 (m4_wrap): Update wrapped code, and fix some underquoting.
7444 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
7445 Expect grammar uses of %define variables and %code qualifiers to be
7446 defined in b4_percent_define_user_variables and
7447 b4_percent_code_user_qualifiers.
7448 * data/c++.m4: Use b4_percent_define_default rather than
7449 m4_define_default. Fix some underquoting. Skeleton usage of %define
7450 variable define_location_comparison now implies skeleton usage of
7451 %define variable filename_type.
7452 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
7453 data/push.c, data/yacc.c: Update macro names.
7454 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
7455 muscle names.
7456
7457 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7458
7459 DJGPP specific issues.
7460
7461 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
7462 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
7463
7464 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
7465
7466 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
7467 run parsers in all tests so that Valgrind is invoked during
7468 maintainer-check-valgrind.
7469 (Duplicate representation of merged trees): Free all semantic values.
7470 (Duplicated user destructor for lookahead): Likewise.
7471
7472 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
7473
7474 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
7475 command-line prefix.
7476 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
7477 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
7478 miss Valgrind messages.
7479 (Exploding the Stack Size with Malloc): Likewise.
7480
7481 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
7482
7483 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
7484 locals. Reported by Juan Manuel Guerrero at
7485 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
7486 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
7487 Fix some indentation also.
7488 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
7489 explaining this issue.
7490
7491 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
7492 and Joel E. Denny <jdenny@ces.clemson.edu>
7493
7494 Simplify union and prologue handling, and escape union and lex/parse
7495 params with digraphs.
7496 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
7497 values to the empty string since these are no longer guaranteed
7498 initialized by the front-end.
7499 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
7500 braces around b4_user_stype since this is no longer done by the
7501 front-end.
7502 * src/files.c, src/files.h (pre_prologue_obstack,
7503 post_prologue_obstack): Remove.
7504 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
7505 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
7506 with digraphs. This fixes lex params and parse params.
7507 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
7508 * src/output.c (prepare): Remove muscle insertion of the prologues.
7509 (output): Remove freeing of pre_prologue_obstack and
7510 post_prologue_obstack.
7511 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
7512 than prologue_augment for prologue parsing so you don't need prologue
7513 obstacks.
7514 (grammar_declaration): For %union RHS, use `braceless' instead of
7515 "{...}" so that braces are already stripped and code is escaped with
7516 digraphs.
7517 * src/reader.c (prologue_augment): Remove.
7518 (reader): Remove initialization of pre_prologue_obstack and
7519 post_prologue_obstack.
7520 * src/reader.h (prologue_augment): Remove.
7521
7522 * data/c.m4: Remove stray parenthesis.
7523
7524 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7525
7526 Remove quotes from variables names in %define directives and from
7527 qualifiers in %code directives, and restrict the characters that are
7528 allowed in them to M4-friendly ones. For %define, continue to support
7529 the quoted form as a deprecated feature. Discussed starting at
7530 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
7531 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
7532 %code.
7533 * doc/bison.texinfo (Prologue Alternatives): Update.
7534 (Decl Summary): In %defines entry, update mention of `%code requires'
7535 and `%code provides'.
7536 (C++ Location Values): Update %define uses.
7537 (Calc++ Parser Interface): Likewise.
7538 (Calc++ Parser): Likewise, and update `%code requires' uses.
7539 (Table of Symbols): Update %code documentation.
7540 * src/parse-gram.y (prologue_declaration): For %define variables, use
7541 `variable' instead of `STRING'.
7542 (grammar_declaration): For %code qualifiers, use `ID' instead of
7543 `STRING'.
7544 (variable): New nonterminal that takes an `ID' or a `STRING'.
7545 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
7546 and %define uses.
7547 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
7548 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
7549 (%define errors): Update %define uses.
7550
7551 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7552
7553 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
7554 instead of muscle_insert for %define values so that M4-special
7555 characters are replaced with digraphs.
7556 * tests/input.at (%define errors): Extend to check weird values.
7557
7558 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7559
7560 Instead of having skeletons declare all valid %define variables and
7561 %code qualifiers, provide macros that retrieve the associated values
7562 and build these lists automatically. Thus Bison will now warn when a
7563 variable or qualifier is not used by the skeleton in the current
7564 invocation regardless of whether it might sometimes be used by that
7565 skeleton in other invocations. Also, move all %define value macros to
7566 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
7567 form, which is replaced by %code.
7568 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
7569 (b4_check_user_names): ... this, and change the series of valid name
7570 arguments to a single list argument for names used in the skeleton
7571 similar to the existing list argument for names used in the grammar.
7572 Warn instead of complaining.
7573 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
7574 values and %code code, to format %code code properly, and to build
7575 lists of all %define variables and %code qualifiers used in the
7576 skeleton: b4_skeleton_percent_define_variables and
7577 b4_skeleton_percent_code_qualifiers.
7578 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
7579 Remove, and...
7580 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
7581 the skeleton names lists can finish building first. In place of
7582 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
7583 expect the lists b4_user_percent_define_variables and
7584 b4_user_percent_code_qualifiers.
7585 * data/c++.m4: Where setting default values for b4_parser_class_name,
7586 b4_location_type, b4_filename_type, b4_namespace, and
7587 b4_define_location_comparison, update their names to the
7588 b4_percent_define_ namespace.
7589 * data/glr.c: Don't use b4_check_percent_define_variables and
7590 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
7591 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
7592 (b4_parser_class_name, b4_namespace): Define these using
7593 b4_get_percent_define for parser_class_name and namespace.
7594 * data/location.cc: Use b4_get_percent_define.
7595 * data/push.c: Don't use b4_check_percent_define_variables and
7596 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
7597 * data/yacc.c: Likewise, and don't call m4_exit in
7598 b4_use_push_for_pull_if or m4_wrap code will never execute.
7599 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
7600 Rename to...
7601 (muscle_grow_user_name_list): ... this for consistency with the
7602 terminology used in bison.m4.
7603 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
7604 %define variable names, and rename muscle used_percent_define_variables
7605 to user_percent_define_variables.
7606 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
7607 user_percent_code_qualifiers.
7608 (content): Remove.
7609 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
7610 {CODE} form is no longer accepted.
7611 * tests/input.at (Reject bad %code qualifiers): Rename to...
7612 (Reject unused %code qualifiers): ... this, and update test output.
7613 (%define error): Update test output.
7614
7615 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
7616
7617 Check for unrecognized %define variables similar to checking for
7618 unrecognized %code qualifiers. Check for redefined %define variables.
7619 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
7620 generalizes...
7621 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
7622 (b4_check_percent_define_variables): New, also wraps it.
7623 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
7624 variables using b4_check_percent_define_variables.
7625 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
7626 all those exercised in the test suite and all those listed in the
7627 `Default values' section of c++.m4. Are there others?
7628 * data/push.c, data/yacc.c: Declare no valid %define variables.
7629 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
7630 similar to muscle_find, but it works even when the muscle stores a
7631 const value.
7632 (muscle_grow_used_name_list): New function for constructing the used
7633 name list muscles that b4_check_for_unrecognized_names requires.
7634 * src/parse-gram.y (prologue_declaration): Warn if a variable is
7635 %define'd more than once. Define the b4_used_percent_define_variables
7636 muscle with muscle_grow_used_name_list.
7637 (grammar_declaration): Abbreviate %code code with
7638 muscle_grow_used_name_list.
7639 * tests/input.at (%define errors): New.
7640
7641 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7642
7643 Provide warn_at, complain_at, and fatal_at function callbacks to the
7644 skeletons, and use this for %code qualifier complaints.
7645 * data/bison.m4 (b4_error_at): New, invoked by...
7646 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
7647 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
7648 @fatal_at(...@) directives.
7649 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
7650 qualifiers in b4_used_percent_code_qualifiers and to use
7651 b4_complain_at.
7652 * src/location.c, src/location.h (boundary_set_from_string): New global
7653 function.
7654 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
7655 function.
7656 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
7657 to b4_used_percent_code_qualifiers.
7658 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
7659 function.
7660 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
7661 (lineno): Rename to...
7662 (out_lineno): ... this so I don't misunderstand it again.
7663 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
7664 here; these newlines are in the input but not the output file.
7665 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
7666 (at_directive_perform): ... this new static function, and add handling
7667 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
7668 directives.
7669 * tests/input.at (Reject bad %code qualifiers): Update test output with
7670 locations and extend.
7671
7672 * tests/output.at (Output file name: [, Output file name: ]): Remove
7673 bogus comment about these tests failing.
7674
7675 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7676
7677 Clean up b4_check_percent_code_qualifiers a little.
7678 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
7679 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
7680 documentation and add examples.
7681 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
7682 qualifiers here.
7683
7684 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
7685
7686 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
7687 unreliable -- especially when they're hidden inside another macro.
7688 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
7689 data/c.m4: Remove m4_divert(-1).
7690 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
7691 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
7692 m4_divert_push(0) and m4_divert_pop(0).
7693 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
7694 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
7695 pushed and popped by m4sugar, should be first on the stack.
7696
7697 Provide warn, complain, and fatal function callbacks to the skeletons.
7698 This provides more flexibility than m4_fatal, improves the error
7699 message format, and captures messages for translation. Discussed
7700 starting at
7701 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
7702 * data/bison.m4 (b4_error): New, invoked by...
7703 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
7704 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
7705 directives. Because these M4 macros might be called when the current
7706 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
7707 the previous removal of uses of m4_divert, which caused trouble.
7708 (b4_check_percent_code_qualifiers): Use b4_complain instead of
7709 m4_fatal to report unrecognized %code qualifiers.
7710 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
7711 push parser requests.
7712 * data/glr.c: Use b4_complain instead of m4_fatal to report
7713 non-deterministic push parser requests.
7714 Update @output usage to @output(...@) form.
7715 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
7716 report missing %defines. Update @output usage to @output(...@) form.
7717 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
7718 @output(...@) form.
7719 * src/main.c (main): Invoke skel_scanner_free.
7720 * src/scan-skel.h (skel_scanner_free): Prototype new function.
7721 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
7722 obstack_for_string from flex-scanner.h.
7723 (YY_DECL): Use to declare skel_lex static.
7724 (decode_at_digraphs): Remove; now handled in the new
7725 SC_AT_DIRECTIVE_ARG start condition.
7726 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
7727 functions.
7728 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
7729 at_directive_argv): New static globals.
7730 (INITIAL): Use fail_for_invalid_at.
7731 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
7732 recognize the start of a generalized `@directive(...@)' form and
7733 start...
7734 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
7735 directive args (using the new obstack_for_string), to decode the
7736 contained @ diagraphs, and to perform the directive. It recognizes
7737 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
7738 @output(...@).
7739 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
7740 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
7741 `@,'.
7742 (scan_skel): Initialize obstack_for_string on the first call.
7743 (skel_scanner_free): New function to free obstack_for_string.
7744 * tests/input.at (Reject bad %code qualifiers): Update test output.
7745
7746 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
7747
7748 Consolidate the 4 prologue alternative directives (%code, %requires,
7749 %provides, and %code-top) into a single %code directive with an
7750 optional qualifier field. Discussed at
7751 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
7752 * NEWS (2.3a+): Rewrite the existing entry for the prologue
7753 alternatives.
7754 * doc/bison.texinfo (Prologue Alternatives): Update.
7755 (Decl Summary): Update to %code "requires" and %code "provides".
7756 (Calc++ Parser): Update to %code "requires".
7757 (Table of Symbols): Remove entries for %requires, %provides, and
7758 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
7759 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
7760 are replaced by b4_percent_code_provides and b4_percent_code_requires,
7761 which are skeleton-specific.
7762 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
7763 declare what %code qualifiers it supports and to complain if any other
7764 qualifiers were used in the grammar.
7765 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
7766 and b4_user_code([b4_percent_code_provides]) in place of
7767 b4_user_requires and b4_user_provides.
7768 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
7769 Add b4_user_code([b4_percent_code_top]) and
7770 b4_user_code([b4_percent_code]).
7771 Invoke b4_check_percent_code_qualifiers.
7772 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
7773 PERCENT_REQUIRES): Remove.
7774 (grammar_declaration): Remove RHS's for %code-top, %provides, and
7775 %requires. Rewrite the %code RHS as the unqualified form defining the
7776 muscle b4_percent_code. Add another RHS for the qualified %code form,
7777 which defines muscles of the form b4_percent_code_QUALIFIER and the
7778 b4_used_percent_code_qualifiers muscle.
7779 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
7780 PERCENT_REQUIRES): Remove.
7781 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
7782 %code "requires" and %code "provides".
7783 * tests/input.at (Reject bad %code qualifiers): New.
7784
7785 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
7786
7787 Use the new code_props interface for destructors and printers.
7788 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
7789 printer_location members, and change the type of the destructor and
7790 printer members to code_props.
7791 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
7792 symbol_printer_get, semantic_type_destructor_set,
7793 semantic_type_printer_set, default_tagged_destructor_set,
7794 default_tagless_destructor_set, default_tagged_printer_set,
7795 default_tagless_printer_set): Use code_props in arguments and return
7796 types in place of char const * and location.
7797 (symbol_destructor_location_get, symbol_printer_location_get): Remove
7798 since the locations are now contained in the return of
7799 symbol_destructor_get and symbol_printer_get.
7800 * src/output.c (symbol_destructors_output, symbol_printers_output):
7801 Replace with...
7802 (symbol_code_props_output): ... this to eliminate duplicate code.
7803 (output_skeleton): Update to use symbol_code_props_output.
7804 * src/reader.c (symbol_should_be_used): Update use of
7805 symbol_destructor_get.
7806 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
7807 Update uses of the various _destructor_set and _printer_set functions.
7808 * src/symtab.c: (default_tagged_destructor_location,
7809 default_tagless_destructor_location, default_tagged_printer_location,
7810 default_tagless_printer_location): Remove since we...
7811 (default_tagged_destructor, default_tagless_destructor,
7812 default_tagged_printer, default_tagless_printer): ... change the type
7813 of these to code_props.
7814 (symbol_new, semantic_type_new, symbol_destructor_set,
7815 semantic_type_destructor_set, symbol_destructor_get,
7816 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
7817 symbol_check_alias_consistency, default_tagged_destructor_set,
7818 default_tagless_destructor_set, default_tagged_printer_set,
7819 default_tagless_printer_set): Update.
7820 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
7821 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
7822 code_props members.
7823 (symbol_print): Use SYMBOL_CODE_PRINT.
7824
7825 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
7826
7827 Use the new code_props interface for rule actions.
7828 * src/symlist.h (symbol_list): Replace action, action_location, and
7829 used members with a code_props action_props member.
7830 * src/reader.c (symbol_should_be_used, grammar_rule_check,
7831 grammar_midrule_action, grammar_current_rule_merge_set,
7832 grammar_current_rule_symbol_append, packgram): Update.
7833 * src/scan-code.h (translate_rule_action): Remove, no longer used.
7834 * src/scan-code.l (handle_action_dollar): Update.
7835 (translate_rule_action): Remove, no longer used.
7836 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
7837
7838 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7839
7840 Use the new code_props interface in parse-gram.y.
7841 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
7842 Update all uses of translate_* functions to use the new code_props
7843 interface and to use gram_scanner_last_string_free and
7844 code_scanner_last_string_free where possible.
7845 (grammar_declaration): symbol_list_destructor_set and
7846 symbol_list_printer_set now perform the translation, so don't do it
7847 here. Use gram_scanner_last_string_free where possible.
7848 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
7849 translate_code): Remove, no longer used.
7850 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
7851 symbol_list_printer_set): Perform code translation here rather than
7852 depending on the caller to do so.
7853
7854 * src/symlist.h (struct symbol_list): Correct some documentation typos.
7855 * src/scan-gram.h (gram_last_string): Remove declaration.
7856 * src/scan-gram.l (last_string): Declare it static.
7857
7858 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7859
7860 Encapsulate code properties and related functionality for the various
7861 destructors, printers, and actions into a code_props structure and
7862 interface. This patch merely implements code_props in scan-code.h and
7863 scan-code.l. Future patches will rewrite other modules to use it.
7864 Discussed starting at
7865 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
7866 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
7867 consistently initialize const structs that have an empty location
7868 field.
7869 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
7870 to ensure consistency.
7871 * src/scan-code.h (code_props): New structure.
7872 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
7873 function, macro, and const global variable for initializing a
7874 code_props with no code.
7875 (code_props_plain_init, code_props_symbol_action_init,
7876 code_props_rule_action_init, code_props_translate_code): The rest of
7877 the new code_props functional interface. Among other things, the init
7878 functions set the code_props kind field so that
7879 code_props_translate_code will know whether to behave like
7880 translate_symbol_action, translate_rule_action, or translate_code.
7881 These old translate functions must remain until all other modules are
7882 updated to use the new code_props interface.
7883 (code_scanner_last_string_free): New function similar to
7884 gram_scanner_last_string_free.
7885 (code_scanner_free): Add documentation.
7886 * src/scan-code.l: Implement the new interface.
7887 (code_lex): Make it static, add a code_props* argument, and remove the
7888 rule argument.
7889 (last_string): New static global similar to the one in scan-gram.l.
7890 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
7891 instead of rule.
7892 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
7893 code_props since Bison may one day use this information for destructors
7894 and printers.
7895 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
7896 (handle_action_dollar): Use symbol_list_n_get and set used flag
7897 directly since symbol_list_n_used_set is removed.
7898 (translate_action): Add a code_props* argument and remove the rule,
7899 action, and location arguments. Pass the code_props* on to code_lex.
7900 (translate_rule_action, translate_symbol_action, translate_code):
7901 Rewrite as wrappers around the new code_props interface.
7902 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
7903 it would eventually need to break the encapsulation of code_props.
7904
7905 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
7906
7907 * etc/.cvsignore: New.
7908
7909 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
7910
7911 Add maintainer-push-check to run maintainer-check using push parsing in
7912 place of pull parsing where available.
7913 * Makefile.am (maintainer-push-check): New.
7914 * data/bison.m4 (b4_use_push_for_pull_if): New.
7915 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
7916 appropriately based on their existing values.
7917 (yypush_parse): Don't print push-parser-specific diagnostics if push
7918 parsing is being used in place of pull parsing.
7919 * data/yacc.c: If push parsing should replace pull parsing, redirect to
7920 push.c.
7921 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
7922 variable, and insert b4_use_push_for_pull_flag into muscles.
7923 * tests/Makefile.am (maintainer-push-check): New.
7924
7925 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
7926
7927 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
7928 (whether successful or failed) so that yypush_parse can be invoked
7929 again to start a new parse using the same yypstate.
7930 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
7931 check multiple yypull_parse invocations on the same yypstate. For pull
7932 mode, extend to check multiple yyparse invocations.
7933 (Exploding the Stack Size with Alloca): Extend to try with
7934 %push-pull-parser.
7935 (Exploding the Stack Size with Malloc): Likewise.
7936
7937 * tests/calc.at (Simple LALR Calculator): Don't specify
7938 %skeleton "push.c" since %push-pull-parser implies that now.
7939 * tests/headers.at (export YYLTYPE): Don't check for the push
7940 declarations. Otherwise, this test case can't be used to see if push
7941 mode can truly emulate pull mode.
7942 * tests/input.at (Torturing the Scanner): Likewise.
7943 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
7944 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
7945 AT_YACC_IF, which now includes the case of push mode since %skeleton
7946 need not be used for push mode. This will be more intuitive once
7947 push.c is renamed to yacc.c.
7948
7949 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
7950
7951 For push mode, convert yyparse from a macro to a function, invoke yylex
7952 instead of passing a yylexp argument to yypull_parse, and don't
7953 generate yypull_parse or yyparse unless %push-pull-parser is declared.
7954 Discussed starting at
7955 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
7956 * data/bison.m4 (b4_pull_if): New.
7957 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
7958 * data/push.c: Improve M4 quoting a little.
7959 (b4_generate_macro_args, b4_parenthesize): Remove.
7960 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
7961 any time a pull parser is requested.
7962 Don't #define this as a wrapper around yypull_parse. Instead, when
7963 both push and pull are requested, make it a function that does that
7964 same thing.
7965 (yypull_parse): If there's a b4_prefix, #define this to
7966 b4_prefix[pull_parse] when both push and pull are requested.
7967 Don't define this as a function unless both push and pull are
7968 requested.
7969 Remove the yylexp argument and hard-code yylex invocation instead.
7970 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
7971 %push-parser.
7972 * src/getargs.c (pull_parser): New global initialized to true.
7973 * getargs.h (pull_parser): extern it.
7974 * src/output.c (prepare): Insert pull_flag muscle.
7975 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
7976 (prologue_declaration): Set both push_parser and pull_parser = true for
7977 %push-pull-parser. Set push_parser = true and pull_parser = false for
7978 %push-parser.
7979 * src/scan-gram.l: Don't accept %push_parser as an alternative to
7980 %push-parser since there's no backward-compatibility concern here.
7981 Scan %push-pull-parser.
7982 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
7983 instead of %push-parser.
7984 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
7985 prototype it in the module that calls yyparse.
7986 * tests/input.at (Torturing the Scanner): Likewise.
7987 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
7988
7989 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
7990
7991 Update etc/bench.pl. Optimize push mode a little (the yyn change
7992 deserves most of the credit).
7993 * Makefile.am (SUBDIRS): Add etc subdirectory.
7994 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
7995 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
7996 yytoken, yyval, and yyloc declarations to...
7997 (yyparse or yypush_parse): ... here to improve performance. For
7998 yypush_parse invocations after the first, be sure to assign yyn its old
7999 value again.
8000 (yypstate_new): Don't bother initializing the yyresult field since the
8001 initial value isn't used.
8002 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
8003 remove the #define that, in push mode, set it to yyps->NAME.
8004 * etc/Makefile.am: New.
8005 * etc/bench.pl: Remove and build it instead from...
8006 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
8007 "tests/bison" from the build directory by default rather than just
8008 invoking "bison" from $PATH.
8009 (calc_grammar): Update push parser code: don't declare yylval globally,
8010 don't define yyparse_wrapper, and don't #define yyparse.
8011 (bench_grammar): Update to check all working combinations of yacc.c,
8012 push.c, impure, pure, pull, and push.
8013
8014 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
8015
8016 For push mode, add pull wrappers around yypush_parse.
8017 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
8018 (yypull_parse): New function wrapping yypush_parse.
8019 (yyparse): New #define wrapping yypull_parse.
8020 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
8021 is declared.
8022 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
8023 prototype yylex in the module that calls yyparse, and don't prototype
8024 yyparse there. Otherwise, the yyparse expansion won't compile.
8025 * tests/input.at (Torturing the Scanner): Likewise.
8026
8027 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
8028
8029 Enable push parsers to operate in impure mode. Thus, %push-parser no
8030 longer implies %pure-parser. The point of this change is to move
8031 towards being able to test the push parser code by running the entire
8032 test suite as if %push-parser had been declared.
8033 * data/push.c (yypush_parse): For impure mode, remove the
8034 yypushed_char, yypushed_val, and yypushed_loc arguments.
8035 Instead, declare these as local variables initialized to the global
8036 yychar, yylval, and yylloc.
8037 For the first yypush_parse invocation only, restore the initial values
8038 of these global variables when it's time to read a token since they
8039 have been overwritten.
8040 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
8041 %push-parser.
8042 * tests/calc.at (Simple LALR(1) Calculator): Always declare
8043 %pure-parser along with %push-parser since this test case was designed
8044 for pure push parsers.
8045 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
8046 (AT_YACC_OR_PUSH_IF): New.
8047 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
8048 add a note that it's still wrong for some cases (as it has been for a
8049 while).
8050 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
8051 %push-parser no longer implies %pure-parser.
8052
8053 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
8054
8055 Remove some unnecessary differences between the pull parser code and
8056 the push parser code. This patch enables yynerrs in push mode.
8057 * data/push.c: Reformat M4 a little.
8058 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
8059 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
8060 because push mode is on. Instead, if pure mode is on, move yynerrs
8061 to...
8062 (b4_declare_parser_state_variables): ... here.
8063 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
8064 to yyps->NAME so it can be used in yypush_parse.
8065 (yypush_parse): Don't omit uses of yynerrs in push mode.
8066
8067 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
8068
8069 Fix bug such that the first pushed token's value and location are
8070 sometimes overwritten (sometimes by %initial-action) before being used.
8071 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
8072 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
8073 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
8074 more closely mimic the pull parser logic.
8075 Don't copy the pushed token to yychar, yylval, and yylloc until it's
8076 time to read a token, which is after any initialization of yylval and
8077 yylloc.
8078 (gottoken): Rename label to...
8079 (yyread_pushed_token): ... for clarity and to avoid infringing on the
8080 user namespace.
8081
8082 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
8083
8084 Rearrange initialization of the parser state variables so that the
8085 skeleton doesn't have to have a copy for pull mode and another for push
8086 mode. This patch also fixes at least a bug such that yylloc was not
8087 initialized (with b4_location_initial_line and
8088 b4_location_initial_column) upon calling yypush_parse. However, that
8089 initialization now overwrites the first token's location;
8090 %initial-action assigning @$ already did the same thing, and both bugs
8091 will be fixed in a later patch.
8092 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
8093 (b4_declare_parser_state_variables): Remove initialization of yytoken,
8094 yyss, yyvs, yyls, and yystacksize.
8095 (yypstate_new): Remove initialization of some yypstate fields: yystate,
8096 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
8097 yylsp.
8098 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
8099 yyps->NAME so it can be used in yypush_parse.
8100 (yyparse or yypush_parse): For yypush_parse, don't print the
8101 "Starting parse" diagnostic for invocations after the first.
8102 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
8103 yypush_parse, only do it for the first invocation.
8104 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
8105 initialization to occur in yypush_parse but only on the first
8106 invocation.
8107
8108 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
8109
8110 * data/push.c: Add CPP guards around push parser declarations in both
8111 the header and the code file.
8112 In the code file, move the push parser declarations to the same place
8113 they appear in the header file.
8114 Clean up the M4 some, especially the inconsistent underquoting in
8115 some b4_c_function_def and b4_c_function_decl uses.
8116
8117 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
8118
8119 Encapsulate the push parser state variables into an M4 macro so the
8120 push skeleton doesn't have to list them again for pull mode's yyparse.
8121 For push mode, remove yypush_parse's local equivalents of these
8122 variables to eliminate unnecessary copying between the two sets at
8123 run-time. This patch also fixes at least a bug related to multiple
8124 %initial-action invocations in push mode.
8125 * data/push.c (b4_declare_parser_variables): Rename to...
8126 (b4_declare_scanner_communication_variables): ... this for clarity and
8127 update both uses.
8128 (b4_declare_yyparse_variables): Remove and move its contents to the one
8129 spot where it was invoked.
8130 (b4_declare_parser_state_variables): New macro containing the parser
8131 state variables required by push mode.
8132 (struct yypstate): Replace all fields but yynew with
8133 b4_declare_parser_state_variables.
8134 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
8135 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
8136 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
8137 (yyparse or yypush_parse): For yyparse in pull mode, replace local
8138 parser state variable declarations with
8139 b4_declare_parser_state_variables.
8140 Don't initialize parser state variables when calling yypush_parse since
8141 yypstate_new already does that.
8142 Invoke the user's initial action only upon the first yypush_parse
8143 invocation.
8144 Remove all code that copies between the local parser state variables
8145 and the yypstate.
8146
8147 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
8148
8149 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
8150 prevent a name collision in a future patch where these names will
8151 sometimes be #define'd.
8152 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
8153 since it no longer has the same name as the existing argument.
8154 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
8155
8156 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
8157 and Joel E. Denny <jdenny@ces.clemson.edu>
8158
8159 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
8160 that the argument is case-insensitive, and there's no `=' here.
8161 For the %skeleton entry, mention that %language is better.
8162 (Bison Options): Likewise for --language and --skeleton. Move the
8163 --skeleton entry so that the `Tuning the parser' section is sorted
8164 alphabetically on long options.
8165 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
8166 %language directive in detail here; cross-reference the %language
8167 documentation instead.
8168 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
8169 `%require "2.3b"' so that the example is always up-to-date.
8170 (Table of Symbols): Add entries for %language and %skeleton.
8171 * examples/extexi (normalize): Instead of replacing every %require
8172 argument with the current Bison version, just substitute for
8173 `@value{VERSION}'. This guarantees that we're testing what actually
8174 appears in the documentation.
8175 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
8176 rather than `@VERSION@'.
8177
8178 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
8179
8180 * NEWS: Reword the %language news a bit, and put it earlier.
8181
8182 * src/getargs.c (skeleton_arg): Last arg is now location const *.
8183 Rewrite to simplify the logic.
8184 (language_argmatch): Likewise.
8185 (program_name): We now own this var.
8186 * src/getargs.h (struct bison_language): Use char[] rather than
8187 const char *.
8188
8189 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
8190 Java is supported.
8191 * src/complain.c (program_name): Remove decl; no longer needed.
8192 * src/main.c (program_name): Remove; now belongs to getargs.
8193
8194 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
8195
8196 * NEWS: Document %language.
8197
8198 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
8199
8200 * data/c-skel.m4, data/c++-skel.m4: New files.
8201 * data/glr.c: Complain on push parsers.
8202
8203 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
8204 over %skeleton.
8205 (Decl Summary): Document %language and %skeleton.
8206 (Command line): Document -L.
8207
8208 * examples/extexi: Rewrite %require directive.
8209 * examples/calc++/Makefile.am: Pass VERSION to extexi.
8210
8211 * src/files.c (compute_exts_from_gc): Look in language structure
8212 for .y extension.
8213 (compute_file_name_parts): Check whether .tab should be added.
8214 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
8215 (language, skeleton_arg, language_argmatch): New.
8216 (long_options): Add --language.
8217 (getargs): Use skeleton_arg, add -L/--language.
8218 * src/getargs.h: Include location.h.
8219 (struct bison_language, language, skeleton_arg, language_argmatch): New.
8220 * src/output.c (prepare): Pick default skeleton from struct language.
8221 Don't dispatch C skeletons here.
8222 * src/parse-gram.y (PERCENT_LANGUAGE): New.
8223 (prologue_declaration): Add "%language" rule, use skeleton_arg.
8224 * src/scan-gram.l ("%language"): New rule.
8225
8226 * tests/calc.at: Test %skeleton and %language.
8227 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
8228 (AT_GLR_IF): Look for %skeleton "glr.cc".
8229 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
8230 (AT_YACC_IF): Reject %language.
8231
8232 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
8233
8234 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
8235 since it wasn't used; only the typedef name 'semantic_type' is needed.
8236 Also, omit trailing white space.
8237
8238 * bootstrap: Sync from coreutils.
8239 (gnulib_extra_files): Add build-aux/announce.gen.
8240 (slurp): Adjust .gitignore files like .cvsignore files.
8241 * build-aux/announce-gen: Remove from CVS, since bootstrap
8242 now creates this.
8243
8244 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
8245
8246 Make %push-parser imply %pure-parser. This fixes several bugs; see
8247 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
8248 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
8249 pure_parser = true.
8250 * data/push.c: Don't bother testing b4_push_if when deciding whether
8251 to expand b4_declare_parser_variables globally.
8252 (yypush_parse): Likewise in here.
8253
8254 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
8255 (yy_reduce_print): Reformat M4 for readability.
8256
8257 2006-12-15 Bob Rossi <bob@brasko.net>
8258 and Joel Denny <jdenny@ces.clemson.edu>
8259
8260 * data/push.c (yypstate): Add typedef, and update all uses of
8261 struct yypstate to just yypstate.
8262 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
8263
8264 2006-12-14 Bob Rossi <bob@brasko.net>
8265
8266 * data/push.c (yypush_parse): Declare prototype regardless of
8267 %locations option.
8268
8269 2006-12-14 Bob Rossi <bob@brasko.net>
8270
8271 * data/push.c (yyparse): Remove the prototype and the #define when in
8272 push-parser mode.
8273
8274 2006-12-13 Bob Rossi <bob@brasko.net>
8275
8276 * data/push.c (yypstate_init): Rename to...
8277 (yypstate_new): ... this and use b4_c_function_def.
8278 (yypstate_delete): New.
8279 (yypush_parse): Change parameters yynval and yynlloc to be const.
8280 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
8281 yypstate_delete functions.
8282
8283 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
8284
8285 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
8286 strange test case titles. Reported by Bob Rossi.
8287
8288 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
8289
8290 * TODO: Add pointer to Sylvain Schmitz's work on static detection
8291 of potential ambiguities in GLR grammers.
8292
8293 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
8294
8295 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
8296 `bison ', use m4_index instead of m4_substr since chopping up a string
8297 containing M4-special characters causes problems here.
8298
8299 Fix a couple of bugs related to special characters in user-specified
8300 file names, and make it easier for skeletons to compute output file
8301 names with the same file name prefix as Bison-computed output file
8302 names.
8303 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
8304 b4_parser_file_name and b4_spec_defines_file instead of
8305 @output_parser_name@ and @output_header_name@, which are now redundant.
8306 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
8307 b4_parser_file_name, b4_spec_defines_file, and the new
8308 @basename(FILENAME@) instead of @output_parser_name@ and
8309 @output_header_name@, which inappropriately escaped the file names as
8310 C string literals.
8311 * src/files.c (all_but_ext): Remove static qualifier.
8312 (compute_output_file_names): Move `free (all_but_ext)' to...
8313 (output_file_names_free): ... here since all_but_ext is needed later.
8314 * src/files.h (all_but_ext): Extern.
8315 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
8316 exactly what MUSCLE_INSERT_STRING used to do.
8317 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
8318 characters are escaped properly.
8319 * src/output.c (prepare): Define muscle file_name_all_but_ext as
8320 all_but_ext.
8321 For pkgdatadir muscle, maintain previous functionality by using
8322 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
8323 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
8324 digraphs would never be expanded. Hopefully no one has M4-special
8325 characters in his Bison installation path.
8326 * src/scan-skel.l: Don't parse @output_header_name@ and
8327 @output_parser_name@ anymore since they're now redundant.
8328 In @output, use decode_at_digraphs.
8329 Parse a new @basename command that invokes last_component.
8330 (decode_at_digraphs): New.
8331 (BASE_QPUTS): Remove unused.
8332 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
8333 (Output file name): New tests.
8334
8335 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
8336
8337 Warn about output files that are generated by the skeletons and that
8338 conflict with other output files.
8339 * data/glr.c: Don't generate the header file here when glr.cc does.
8340 * src/files.c (file_names, file_names_count): New static globals.
8341 (compute_output_file_names): Invoke output_file_name_check for files
8342 not generated by the skeletons and remove existing checks.
8343 (output_file_name_check): New function that warns about conflicting
8344 output file names.
8345 (output_file_names_free): Free file_names.
8346 * src/files.h (output_file_name_check): Declare.
8347 * src/scan-skel.l: Invoke output_file_name_check for files generated by
8348 the skeletons.
8349 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
8350 (Conflicting output files): New tests.
8351
8352 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8353
8354 * doc/bison.texinfo: Fix a couple of typos.
8355
8356 2006-12-08 Bob Rossi <bob@brasko.net>
8357
8358 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
8359 Rename to...
8360 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
8361 update all uses.
8362 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
8363 (yypush_parse): Rename yypvars argument to yyps and remove redundant
8364 local pv.
8365 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
8366 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
8367
8368 2006-12-07 Bob Rossi <bob@brasko.net>
8369 and Joel Denny <jdenny@ces.clemson.edu>
8370
8371 * data/push.c (yypvarsinit): Change return type from void* to struct
8372 yypvars*. No longer cast to void* on return.
8373 (struct yypvars): Remove yylen since it need not be remembered between
8374 yypushparse invocations.
8375 (yypushparse): Don't copy between yylen and pv->yylen.
8376
8377 2006-12-05 Bob Rossi <bob@brasko.net>
8378
8379 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
8380 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
8381 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
8382 (struct yypvars): Remove b4_declare_parser_variables.
8383 (yypvarsinit): Remove init code for removed variables.
8384 (global scope): Do not declare b4_declare_parser_variables if
8385 push or pure mode.
8386 (yypushparse): Add b4_declare_parser_variables.
8387 Init new local variables, and remove init code for removed
8388 yypvars variables.
8389 (yyparse): Delete.
8390 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
8391 and yyparse for other modes.
8392 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
8393 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
8394 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
8395 (AT_PURE_LEX_IF): True if pure or push parser.
8396
8397 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
8398
8399 Document Yacc prologue alternatives and default %destructor's and
8400 %printer's as experimental. Don't mention Java yet. Discussed at
8401 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
8402 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
8403 (2.3a): Annotate this entry to say the old forms of these features were
8404 also experimental.
8405 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
8406 Table of Symbols): Say they're experimental. Comment out any mention
8407 of Java (we'll want this back eventually).
8408
8409 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
8410
8411 Support a file name argument to %defines. Deprecate `=' in
8412 %file-prefix, %name-prefix, and %output. Discussed at
8413 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
8414 * NEWS (2.3a+): Mention.
8415 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
8416 form of %defines, and remove `=' from entries for %file-prefix,
8417 %name-prefix, and %output.
8418 * src/parse-gram.y (prologue_declaration): Implement.
8419 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
8420 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
8421 all but one occurrence of %name-prefix.
8422 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
8423 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
8424 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
8425 occurrence of each of %file-prefix and %output. Add check for %defines
8426 with argument.
8427 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
8428 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
8429 Remove the `=' from %output.
8430
8431 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
8432
8433 Don't escape $ in test case titles since Autoconf 2.61 now does that
8434 correctly.
8435 * tests/actions.at (Default %printer and %destructor are not for error
8436 or $undefined): Here.
8437 (Default %printer and %destructor are not for $accept): Here.
8438 * tests/input.at (Invalid $n and @n): Here.
8439
8440 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
8441
8442 Rename <!> to <>. Discussed starting at
8443 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
8444 * NEWS (2.3a+): Update.
8445 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
8446 Update.
8447 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
8448 * src/scan-gram.l (INITIAL): Implement.
8449 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
8450 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
8451 comment.
8452 * tests/actions.at (Default tagless %printer and %destructor,
8453 Default tagged and per-type %printer and %destructor,
8454 Default %printer and %destructor are not for error or $undefined,
8455 Default %printer and %destructor are not for $accept,
8456 Default %printer and %destructor for mid-rule values): Update.
8457 * tests/input.at (Default %printer and %destructor redeclared,
8458 Unused values with default %destructor): Update.
8459
8460 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
8461
8462 Don't let %prec take a nonterminal.
8463 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
8464 token.
8465 * tests/input.at (%prec takes a token): New test checking that %prec
8466 won't take a nonterminal.
8467
8468 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
8469
8470 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
8471 it was double-quoted.
8472 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
8473 grammar is maintained with Bison's highest standards.
8474 * src/getargs.c: Fix some typos in Doxygen comments.
8475
8476 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
8477
8478 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
8479 later. Reported by Paul Eggert in
8480 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
8481 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
8482 * src/scan-code.l (translate_action): Don't bother invoking
8483 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
8484 (code_scanner_free): Instead of invoking
8485 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
8486 which frees more.
8487 * src/scan-gram.l (gram_scanner_free): Likewise.
8488 * src/scan-skel.l (scan_skel): Likewise.
8489
8490 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
8491
8492 * src/files.c (tr): Change return type to void.
8493 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
8494 has been called previously for the same key.
8495 (muscle_find): Return storage instead of value so that
8496 --enable-gcc-warnings doesn't produce warnings that the return discards
8497 const. aver that the value and storage are the same since storage
8498 could potentially be NULL when value is not.
8499 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
8500 same as 0.
8501
8502 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
8503
8504 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
8505 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
8506 us a slightly cleaner distribution, and also works.
8507 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
8508 gnulib changes.
8509
8510 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
8511 and Paul Eggert <eggert@cs.ucla.edu>
8512
8513 Don't let Bison leak memory except when it complains.
8514 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
8515 (spec_defines_file, dir_prefix): Now char *, not const char *,
8516 since they are freed.
8517 * src/files.c: Likewise.
8518 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
8519 Likewise.
8520 (tr): Now operates in-place. All uses changed.
8521 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
8522 values.
8523 (compute_file_name_parts, compute_output_file_names): Don't store
8524 read-only data in variables that will be freed.
8525 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
8526 src_extension, and header_extension.
8527 (output_file_names_free): New public function to free
8528 spec_verbose_file, spec_graph_file, spec_defines_file,
8529 parser_file_name, and dir_prefix.
8530 * src/getargs.c (getargs): Don't store read-only data in variables that
8531 will be freed.
8532 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
8533 (which previously existed but was unused), and quotearg_free.
8534 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
8535 * src/muscle_tab.c: Likewise.
8536 (muscle_entry): Make the value char const *,
8537 and add a new storage member that is char * and can be freed.
8538 (muscle_entry_free): New private function.
8539 (muscle_init): Use it instead of free.
8540 (muscle_insert, muscle_grow): Update and use new storage member.
8541 (muscle_code_grow): Free the string passed to muscle_grow
8542 since it's not needed anymore.
8543 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
8544 add a new `char *code' member.
8545 ("{...}"): Declare semantic type as code.
8546 * src/scan-code.h (translate_rule_action):
8547 (translate_symbol_action, translate_code, translate_action): Return
8548 `char const *' rather than `char *' since external code should not free
8549 these strings.
8550 * src/scan-code.l: Likewise.
8551 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
8552 which is "{...}" in the parser.
8553 * tests/Makefile.am (maintainer-check-valgrind): Set
8554 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
8555 Valgrind.
8556 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
8557 complain.
8558 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
8559 expecting a non-zero exit status sets --leak-check=summary and
8560 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
8561 this case, and we don't want to hear about it.
8562
8563 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
8564
8565 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
8566 instead of from the template, to simplify configuration a bit.
8567 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
8568 and m4/wint_t.m4, as they are needed with the latest gnulib.
8569
8570 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
8571
8572 Disable unset/unused mid-rule value warnings by default, and recognize
8573 --warnings=midrule-values to enable them. Discussed starting at
8574 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
8575 * NEWS (2.3a+): Mention.
8576 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
8577 warnings): Add entry for midrule-values subargument.
8578 * src/reader.c (symbol_should_be_used): Don't return true just because
8579 the value is a set/used mid-rule value unless
8580 --warnings=midrule-values was specified.
8581 * tests/input.at (Unused values, Unused values before symbol
8582 declarations): Run tests with and without --warnings=midrule-values.
8583
8584 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
8585 than LIST_FREE directly.
8586
8587 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
8588
8589 Finish implementing --warnings=error, which should not be implied by
8590 --warnings=all (or by its synonyms -W and --warnings without
8591 subarguments).
8592 * src/complain.c (set_warning_issued): New function to report that
8593 warnings are being treated as errors and to record an error if so.
8594 Invoke...
8595 (warn_at, warn): ... here.
8596 * src/getargs.c (warnings_args, warnings_types): Reorder so that
8597 "error - warnings are errors" does not appear above "all - all of the
8598 above".
8599 (getargs): For -W and --warnings without subarguments, don't let
8600 FLAGS_ARGMATCH set warnings_error in warnings_flag.
8601 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
8602
8603 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
8604
8605 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
8606 empty subargument list. For example: `bison --warnings= parser.y'.
8607
8608 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
8609
8610 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
8611 the parser header file so that gcc doesn't warn.
8612
8613 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
8614
8615 Split the default %destructor/%printer into two kinds: <*> and <!>.
8616 Discussed starting at
8617 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
8618 * NEWS (2.3a+): Mention.
8619 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
8620 previous change today related to mid-rules.
8621 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
8622 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
8623 (TYPE_TAG_ANY): Add as <*>.
8624 (TYPE_TAG_NONE): Add as <!>.
8625 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
8626 for <*> and <!>.
8627 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
8628 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
8629 * src/symlist.c (symbol_list_default_new): Split into tagged and
8630 tagless versions.
8631 (symbol_list_destructor_set, symbol_list_printer_set): Split
8632 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
8633 SYMLIST_DEFAULT_TAGLESS.
8634 * src/symlist.h: Update symbol_list_default*_new prototypes.
8635 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
8636 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
8637 * src/symtab.c (default_destructor, default_destructor_location,
8638 default_printer, default_printer_location): Split each into tagged and
8639 tagless versions.
8640 (symbol_destructor_get, symbol_destructor_location_get,
8641 symbol_printer_get, symbol_printer_location_get): Implement tagged
8642 default and tagless default cases.
8643 (default_destructor_set, default_printer_set): Split each into tagged
8644 and tagless versions.
8645 * src/symtab.h: Update prototypes.
8646 * tests/actions.at (Default %printer and %destructor): Rename to...
8647 (Default tagless %printer and %destructor): ... this, and extend.
8648 (Per-type %printer and %destructor): Rename to...
8649 (Default tagged and per-type %printer and %destructor): ... this, and
8650 extend.
8651 (Default %printer and %destructor for user-defined end token): Extend.
8652 (Default %printer and %destructor are not for error or $undefined):
8653 Update.
8654 (Default %printer and %destructor are not for $accept): Update.
8655 (Default %printer and %destructor for mid-rule values): Extend.
8656 * tests/input.at (Default %printer and %destructor redeclared): Extend.
8657 (Unused values with default %destructor): Extend.
8658
8659 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
8660
8661 Don't apply the default %destructor/%printer to an unreferenced midrule
8662 value. Mentioned at
8663 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
8664 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
8665 like $@n instead of just @n so that the default %destructor/%printer
8666 logic doesn't see them as user-defined symbols.
8667 (symbol_is_dummy): Check for both forms of the name.
8668 * src/reader.c (packgram): Remove the `$' from each midrule symbol
8669 name for which the midrule value is referenced in any action.
8670 * tests/actions.at (Default %printer and %destructor for mid-rule
8671 values): New test.
8672 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
8673 for change to dummy symbol names.
8674
8675 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
8676
8677 Warn about unset midrule $$ if the corresponding $n is used.
8678 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
8679 $n usage.
8680 (packgram): Before invoking grammar_rule_check on any rule, make sure
8681 all actions have already been scanned in order to set `used' flags.
8682 Otherwise, checking that a midrule's $$ is set will not always work
8683 properly because the midrule check must forward-reference the midrule's
8684 parent rule.
8685 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
8686 warning.
8687
8688 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
8689
8690 More improvements to the documentation of the prologue alternatives:
8691 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
8692 Bison manual.
8693 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
8694 some text to clarify the relative importance of the new directives and
8695 to show how these directives may be viewed as code labels.
8696
8697 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
8698
8699 Similar to the recently removed %before-header, add %code-top as the
8700 alternative to the pre-prologue. Mentioned at
8701 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
8702 Also, let the prologue alternatives appear in the grammar section.
8703 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
8704 (prologue_declaration): Move the existing prologue alternatives to...
8705 (grammar_declaration): ... here and add %code-top.
8706 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
8707
8708 Clean up and extend documentation for the prologue alternatives.
8709 * NEWS (2.3a+): Describe prologue alternatives.
8710 * doc/bison.texinfo (Prologue): Move discussion of prologue
8711 alternatives to...
8712 (Prologue Alternatives): ... this new section, and extend it to discuss
8713 all 4 directives in detail.
8714 (Table of Symbols): Clean up discussion of prologue alternatives and
8715 add %code-top.
8716
8717 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8718
8719 DJGPP specific issues.
8720
8721 * djgpp/config.bat: config.hin has been moved to lib. Adjust
8722 config.bat accordingly.
8723 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
8724 * djgpp/config.site: Likewise.
8725
8726 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
8727
8728 Replace %*-header with %provides, %requires, %code. See discussion at
8729 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
8730
8731 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
8732 (b4_user_start_header): Remove.
8733 * data/glr.c: Use new macros instead of b4_*start_header
8734 and b4_*end_header.
8735 * data/glr.cc: Likewise.
8736 * data/lalr1.cc: Likewise.
8737 * data/push.c: Likewise.
8738 * data/yacc.c: Likewise.
8739
8740 * doc/bison.texinfo: Remove %before-header, rename
8741 %{start,end,after}-header to %requires, %provides, %code.
8742
8743 * src/parse-gram.y: Likewise (also rename token names accordingly).
8744 * src/scan-gram.l: Likewise.
8745 * tests/actions.at: Likewise.
8746
8747 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
8748
8749 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
8750 Problem reported by Joel E. Denny.
8751
8752 2006-10-14 Jim Meyering <jim@meyering.net>
8753
8754 (Sync from coreutils.)
8755 Work also when the working directory (with e.g. coreutils sources)
8756 is version controlled with git, rather than CVS.
8757 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
8758 rather than CVS.
8759 In messages and comments, say e.g., "checked-out sources",
8760 rather than "CVS sources".
8761 (version_controlled_file): New function. Work for git as well as
8762 for CVS. Don't use grep's -q option.
8763 (slurp): Call it here, in place of CVS-specific code.
8764
8765 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
8766
8767 Fix testsuite for ./configure --enable-gcc-warnings:
8768 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
8769 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
8770 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
8771 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
8772 * test/regression.at (Diagnostic that expects two alternatives):
8773 Likewise.
8774
8775 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
8776
8777 * bootstrap.conf (gnulib_modules): Add config-h.
8778 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
8779 worry about HAVE_CONFIG_H.
8780 * lib/abitset.c: Likewise.
8781 * lib/bitset.c: Likewise.
8782 * lib/bitset_stats.c: Likewise.
8783 * lib/bitsetv-print.c: Likewise.
8784 * lib/bitsetv.c: Likewise.
8785 * lib/ebitset.c: Likewise.
8786 * lib/get-errno.c: Likewise.
8787 * lib/lbitset.c: Likewise.
8788 * lib/subpipe.c: Likewise.
8789 * lib/timevar.c: Likewise.
8790 * lib/vbitset.c: Likewise.
8791 * lib/bitset.c: Include "bitset.h" first, to test interface.
8792 * lib/bitset_stats.c: Include "bitset_stats.h" first.
8793 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
8794 * lib/bitsetv.c: Include "bitsetv.h" first.
8795 * lib/get-errno.c: Include "get-errno.h" first.
8796 * m4/.cvsignore: Add config-h.m4.
8797 * tests/actions.at (Default %printer and %destructor for ...):
8798 Adjust expected line numbers in output to reflect removal of #if
8799 HAVE_CONFIG_H lines.
8800 * tests/glr-regression.at (Missed %merge type warnings when ...):
8801 Likewise.
8802 * tests/regression.at (Braced code in declaration in rules section):
8803 Likewise.
8804 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
8805 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
8806 Include <config.h> unconditionally.
8807
8808 * bootstrap: Sync from coreutils, as follows:
8809
8810 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
8811
8812 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
8813 variable was sometimes used without being initialized. This
8814 messed up the installation of the INSTALL file in some cases.
8815
8816 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
8817
8818 * bootstrap (usage, main program, symlink_to_gnulib): Add option
8819 --copy. Inspired by a suggestion from Bruno Haible.
8820
8821 2006-10-03 Jim Meyering <jim@meyering.net>
8822
8823 * bootstrap: Undo last change to this file, since now gnulib-tool
8824 sticks with the automake default in generating dependencies.
8825
8826 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
8827
8828 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
8829 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
8830
8831 * doc/bison.1: Add copyright notice.
8832
8833 * data/glr.c: Don't include <stdarg.h>; not used.
8834
8835 * NEWS: The -g and --graph options now output graphs in Graphviz
8836 DOT format, not VCG format.
8837 * doc/bison.1: Likewise.
8838 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
8839 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
8840 of this change in
8841 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
8842 * TODO: Remove Graphviz entry.
8843 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
8844 remove vcg.c, vcg.h, vcg_defaults.h.
8845 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
8846 * src/graphviz.c, src/graphviz.h: New files.
8847 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
8848 * src/files.h: Make comment more generic.
8849 * src/main.c (main): Likewise.
8850 * src/print_graph.h: Likewise.
8851 * src/getargs.c (usage): Make usage description more generic.
8852 * src/print_graph.c: Include graphviz.h rather than vcg.h.
8853 (static_graph, fgraph): Remove. All uses changed to pass
8854 arguments instead of sharing a static var.
8855 (print_core, print_actions, print_state, print_graph):
8856 Output graphviz format rather than VCG format.
8857 * tests/.cvsignore: Remove *.vcg; add *.dot.
8858 * tests/output.at: Expect *.dot files, not *.vcg files.
8859
8860 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
8861 accommodates the 2006-10-08 change.
8862
8863 2006-10-11 Bob Rossi <bob@brasko.net>
8864
8865 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
8866 (b4_yyssa, b4_yyerror_range): New macros.
8867 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
8868 (yypvarsinit): Remove init of removed fields.
8869 (yypushparse): Remove use of removed fields; use new macros instead.
8870
8871 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
8872
8873 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
8874 in a push parser. Reindent slightly to match yacc.c better.
8875
8876 2006-10-11 Bob Rossi <bob@brasko.net>
8877
8878 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
8879 yymsg_alloc fields.
8880 (yypvarsinit, yypushparse): Remove init of removed fields.
8881 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
8882
8883 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
8884
8885 * THANKS: Add Paolo Bonzini and Bob Rossi.
8886
8887 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
8888
8889 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
8890 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
8891 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
8892 b4_define_user_cde and uses): Remove.
8893 (b4_comment, b4_prefix, b4_sync_start): New.
8894 * data/bison.m4: New file, with most of the content removed from c.m4.
8895 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
8896 * src/output.c (output_skeleton): Pass bison.m4.
8897 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
8898 only if specified.
8899
8900 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
8901
8902 Fix test failure reported by Tom Lane in
8903 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
8904 and try to make such failures easier to catch in the future.
8905 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
8906 that's now the caller's responsibility.
8907 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
8908 Set yychar = YYEOF if it's negative.
8909 * tests/actions.at (yylex): Abort if asked to read past EOF.
8910 * tests/conflicts.at (yylex): Likewise.
8911 * tests/cxx-type.at (yylex): Likewise.
8912 * tests/glr-regression.at (yylex): Likewise.
8913 * tests/input.at (yylex): Likewise.
8914 * tests/regression.at (yylex): Likewise.
8915 * tests/torture.at (yylex): Likewise.
8916
8917 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
8918
8919 Fix problems with translating English-language diagnostics.
8920 * bootstrap: Fix bug introduced in recent bootstrap changes, with
8921 respect to bison-runtime pot generation. The YY_ stuff
8922 wasn't being captured.
8923 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
8924 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
8925 * runtime-po/POTFILES.in: Add data/push.c.
8926
8927 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
8928
8929 Merge bootstrap changes from coreutils.
8930
8931 2006-09-28 Jim Meyering <jim@meyering.net>
8932
8933 Automatically generated dependencies are important even
8934 when all of the sources in a directory come from gnulib.
8935 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
8936 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
8937
8938 2006-09-23 Jim Meyering <jim@meyering.net>
8939
8940 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
8941
8942 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8943
8944 * bootstrap: Add support for --force.
8945 (usage): New function. Describe usage less tersely.
8946 (CVS_only_file): New var.
8947
8948 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
8949
8950 * data/push.c (YYPUSH_MORE): Make it an enum instead.
8951 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
8952 Adjust white space and comments to match GNU style better.
8953
8954 2006-09-20 Bob Rossi <bob@brasko.net>
8955
8956 * data/push.c (yyresult_get): Remove function.
8957 (YYPUSH_MORE): Add #define.
8958 (yypushparse): Modify return value.
8959
8960 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8961
8962 * stamp-h.in: Remove; no longer needed.
8963 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
8964 Remove config.h, config.hin, intl (no longer created).
8965 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
8966 stamp-h1.
8967
8968 Sync bootstrap from coreutils, as follows:
8969
8970 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
8971
8972 * bootstrap (symlink_to_gnulib): New function.
8973 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
8974 to copies-of-gnulib.
8975 (cp_mark_as_generated, slurp, gnulib_files):
8976 Avoid making a copy if it's the same as the old version.
8977 (gnulib_files): Add support for this variable (used by Bison).
8978
8979 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8980
8981 * src/getargs.c (usage): Rework to use conventions similar to
8982 coreutils, to make translation a bit easier and the code a bit
8983 smaller. Problem reported by Tim Van Holder.
8984
8985 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
8986
8987 Use some of gnulib's new modules, taken from coreutils.
8988
8989 * bootstrap: Sync from coreutils, except add support for gnulib_files.
8990 * bootstrap.conf: New file.
8991 (gnulib_modules): Add configmake, inttypes, unistd.
8992 (XGETTEXT_OPTIONS): Add complain, complain_at,
8993 fatal, fatal_at, warn, warn_at, unexpected_end.
8994 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
8995 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
8996 (gl_EARLY): Add.
8997 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
8998 (gl_INIT): Add
8999 (GNULIB_AUTOCONF_SNIPPET): Remove.
9000 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
9001 the pickiest.
9002 * lib/.cvsignore: Add inttypes_.h.
9003 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
9004 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
9005 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
9006 no-longer-necessary initializations.
9007 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
9008 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
9009 use the unistd module.
9010 * src/system.h: Likewise.
9011 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
9012 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
9013 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
9014 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
9015 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
9016 * src/system.h: Include inttypes.h unconditionally, now that we
9017 use the inttypes module. Don't bother to include stdint.h, since
9018 inttypes.h now does that for us.
9019 (LOCALEDIR): Remove, now that we use the configmake module.
9020 * src/getargs.c: Include configmake.h.
9021 * src/main.c: Likewise.
9022 * src/output.c: Likewise.
9023 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
9024 not from $abs_top_builddir, since config.h moved.
9025
9026
9027 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
9028 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
9029
9030 * src/parse-gram.y (symbol_declaration): Don't put statements
9031 before declarations; it's not portable to C89.
9032 * src/scan-code.l (handle_action_at): Likewise.
9033
9034 * src/scan-code.l: Always initialize braces_level; the old code
9035 left it uninitialized and therefore had undefined behavior.
9036
9037 Don't attempt to redefine 'assert', since it runs afoul of
9038 systems where standard headers (mistakenly) include <assert.h>.
9039 Instead, define and use our own alternative, called 'aver'.
9040 * src/reader.c: Don't include assert.h, since we no longer
9041 use assert.
9042 * src/scan-code.l: Likewise.
9043 * src/system.h (assert): Remove, replacing with....
9044 (aver): New function, taking a bool arg. All uses changed.
9045 * src/tables.c (pack_vector): Ensure that aver arg is bool,
9046 not merely an integer.
9047
9048 2006-09-15 Bob Rossi <bob@brasko.net>
9049
9050 Add support for push parsing. Based on the original work of
9051 Odd Arild Olsen <oao@fibula.no>.
9052 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
9053 * data/c.m4 (YYPUSH): New.
9054 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
9055 * data/push.c: New file.
9056 * src/getargs.c (push_parser): New var.
9057 * src/getargs.h (push_parser): New declaration.
9058 * src/output.c (prepare): Add macro insertion of `push_flag'.
9059 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
9060 (prologue_declaration): Parse %push-parser.
9061 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
9062 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
9063 list of removed lines from the traces observed.
9064 (AT_CHECK_CALC_LALR): Added push parser tests.
9065
9066 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
9067
9068 * NEWS: Version 2.3a.
9069 * configure.ac (AC_INIT): Likewise.
9070
9071 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
9072 "#define YYSTYPE int" that caused "make maintainer-check" to fail
9073 due to header ordering dependencies. I don't know why the #define
9074 was there.
9075
9076 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
9077 runtime cost when YYDEBUG is not defined, and so that some tests
9078 that used to fail now work. Problem and initial suggestion by
9079 Paolo Bonzini.
9080 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
9081 * data/glr.cc (b4_parser_class_name):
9082 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
9083 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
9084 (yydebug_) [YYDEBUG]: New member.
9085 (yycdebug_): Now defined only if YYDEBUG.
9086 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
9087 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
9088 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
9089 if YYYDEBUG.
9090 (debug_stream, set_debug_stream, debug_level, set_debug_level):
9091 Define only if YYDEBUG.
9092 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
9093 set_debug_level.
9094 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
9095 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
9096 AT_CHECK_CALC_GLR_CC that are working now.
9097
9098 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
9099
9100 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
9101 We don't need them in glr.cc, and glr.c defines them.
9102 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
9103 assumes that defining it to anything is the same as defining
9104 it to 1. Problem reported by Paolo Bonzini.
9105
9106 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
9107
9108 * data/c.m4 (b4_null, b4_case): Define.
9109 * src/output.c (prepare_symbols): Use b4_null.
9110 (user_actions_output): Use b4_case.
9111
9112 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
9113
9114 * data/glr.c (b4_shared_declarations): Put start-header first,
9115 before any #includes that we generate, so that feature-test
9116 macros work. Problem reported by Michael Deutschmann in
9117 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
9118 * data/lalr1.cc: Likewise.
9119 * doc/bison.texinfo (Prologue): Document that feature-test macros
9120 should be defined before any Bison declarations.
9121 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
9122 that depend on location.hh after, not before, Bison decls, since
9123 we now include location.hh after the first user prologue.
9124
9125 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
9126 Sander Brandenburg in
9127 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
9128 Also, fix minor white space and comment issues.
9129 (Prologue): Mention that it's better to define feature-test macros
9130 before Bison declarations. Problem reported by Michael Deutschmann.
9131
9132 * README-cvs: Fix typo: "&" should be "&&". Problem reported
9133 by Jim Meyering.
9134 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
9135 This adjusts to recent gnulib changes.
9136
9137 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
9138
9139 Finish implementation of per-type %destructor/%printer. Discussed
9140 starting at
9141 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
9142 and
9143 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
9144 * NEWS (2.3+): Add a description of this feature to the default
9145 %destructor/%printer description.
9146 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
9147 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
9148 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
9149 list node contains a semantic type.
9150 * src/symtab.c, src/symtab.h: Extend with a table that associates
9151 semantic types with their %destructor's and %printer's.
9152 (semantic_type_from_uniqstr, semantic_type_get,
9153 semantic_type_destructor_set, semantic_type_printer_set): New functions
9154 composing the public interface of that table.
9155 (symbol_destructor_get, symbol_destructor_location_get,
9156 symbol_printer_get, symbol_printer_location_get): If there's no
9157 per-symbol %destructor/%printer, look up the per-type before trying
9158 the default.
9159 * tests/actions.at (Per-type %printer and %destructor): New test case.
9160 * tests/input.at (Default %printer and %destructor redeclared):
9161 Extend to check that multiple occurrences of %symbol-default in a
9162 single %destructor/%printer declaration is an error.
9163 (Per-type %printer and %destructor redeclared, Unused values with
9164 per-type %destructor): New test cases.
9165
9166 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
9167
9168 Require default %destructor/%printer to be declared using
9169 %symbol-default instead of an empty symbol list, and start working on
9170 new per-type %destructor/%printer. Discussed at
9171 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
9172 * NEWS (2.3+): Add %symbol-default to example.
9173 * bison.texinfo (Freeing Discarded Symbols): Likewise.
9174 (Table of Symbols): Add entry for %symbol-default.
9175 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
9176 (generic_symlist, generic_symlist_item): New nonterminals for creating
9177 a list in which each item is a symbol, semantic type, or
9178 %symbol-default.
9179 (grammar_declaration): Use generic_symlist in %destructor and %printer
9180 declarations instead of symbols.1 or an empty list.
9181 (symbol_declaration, precedence_declaration, symbols.1): Update actions
9182 for changes to symbol_list.
9183 * src/reader.c: Update for changes to symbol_list.
9184 * src/scan-code.l: Likewise.
9185 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
9186 * src/symlist.c, src/symlist.h: Extend such that a list node may
9187 represent a semantic type or a %symbol-default in addition to just an
9188 ordinary symbol. Add switched functions for setting %destructor's and
9189 %printer's.
9190 * tests/actions.at, tests/input.at: Add %symbol-default to all default
9191 %destructor/%printer declarations.
9192
9193 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
9194
9195 Whether the default %destructor/%printer applies to a particular symbol
9196 isn't a question of whether the user *declares* that symbol (in %token,
9197 for example). It's a question of whether the user by any means
9198 *defines* the symbol at all (by simply using a char token, for
9199 example). $end is defined by Bison whereas any other token with token
9200 number 0 is defined by the user. The error token is always defined by
9201 Bison regardless of whether the user declares it with %token, but we
9202 may one day let the user define error as a nonterminal instead.
9203 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
9204 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
9205 the meaning of "user-defined".
9206 * tests/actions.at (Default %printer and %destructor for user-declared
9207 end token): Rename to...
9208 (Default %printer and %destructor for user-defined end token): ...
9209 this.
9210
9211 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
9212 computation of whether to apply the default, don't maintain a list of
9213 every Bison-defined symbol. Instead, just check for a first character
9214 of '$', which a user symbol cannot have, and check for the error token.
9215
9216 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
9217
9218 Don't apply the default %destructor or %printer to the error token,
9219 $undefined, or $accept. This change fits the general rule that the
9220 default %destructor and %printer are only for user-declared symbols,
9221 and it solves several difficulties that are described in the new test
9222 cases listed below.
9223 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
9224 * tests/actions.at (Default %printer and %destructor are not for error
9225 or $undefined, Default %printer and %destructor are not for $accept):
9226 New test cases.
9227
9228 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
9229
9230 Allow %start after the first rule.
9231 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
9232 when parsing the first rule.
9233 (check_and_convert_grammar): Search for it here after all grammar
9234 declarations have been parsed. Skip midrules, which have dummy LHS
9235 nonterminals.
9236 * src/symtab.c (symbol_is_dummy): New function.
9237 * src/symtab.h (symbol_is_dummy): Declare it.
9238 * tests/input.at (%start after first rule): New test.
9239
9240 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
9241
9242 Redo some of the previous commit: add back the ability to use
9243 non-aliased/undeclared string literals since it might be useful to
9244 those declaring %token-table.
9245 * src/reader.c (check_and_convert_grammar): Undo changes in previous
9246 commit: don't worry about complaints from symbols_pack.
9247 * src/symtab.c (symbol_new, symbol_class_set,
9248 symbol_check_alias_consistency): Undo changes in previous commit: count
9249 each string literal as a new symbol and token, assign it a symbol
9250 number, and don't complain about non-aliased string literals.
9251 (symbols_pack): Since symbol_make_alias still does not decrement symbol
9252 and token counts but does still set aliased tokens to the same number,
9253 symbol_pack_processor now leaves empty slots in the symbols array.
9254 Remove those slots.
9255 * tests/regression.at (Undeclared string literal): Remove test case
9256 added in previous commit since non-aliased string literals are allowed
9257 again.
9258 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
9259 remove unnecessary string literal declarations.
9260 * tests/sets.at (Firsts): Likewise.
9261
9262 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
9263
9264 Don't allow an undeclared string literal, but allow a string literal to
9265 be used before its declaration.
9266 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
9267 symbols_pack complained.
9268 * src/symtab.c (symbol_new): Don't count a string literal as a new
9269 symbol.
9270 (symbol_class_set): Don't count a string literal as a new token, and
9271 don't assign it a symbol number since symbol_make_alias does that.
9272 (symbol_make_alias): It's not necessary to decrement the symbol and
9273 token counts anymore. Don't assume that an alias declaration occurs
9274 before any uses of the identifier or string, and thus don't assert that
9275 one of them has the highest symbol number so far.
9276 (symbol_check_alias_consistency): Complain if there's a string literal
9277 that wasn't declared as an alias.
9278 (symbols_pack): Bail if symbol_check_alias_consistency failed since
9279 symbol_pack asserts that every token has been assigned a symbol number
9280 although undeclared string literals have not.
9281 * tests/regression.at (String alias declared after use, Undeclared
9282 string literal): New test cases.
9283 (Characters Escapes, Web2c Actions): Declare string literals as
9284 aliases.
9285 * tests/sets.at (Firsts): Likewise.
9286
9287 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
9288
9289 In the grammar scanner, STRING_FINISH unclosed constructs and return
9290 them to the parser in order to improve error messages.
9291 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
9292 SC_BRACED_CODE, SC_PROLOGUE): Implement.
9293 * tests/input.at (Unclosed constructs): New test case.
9294 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
9295 seen.
9296
9297 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
9298 unused global.
9299
9300 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
9301
9302 Handle string aliases for character tokens correctly.
9303 * src/symtab.c (symbol_user_token_number_set): If the token has an
9304 alias, check and set its alias's user token number instead of its own,
9305 which is set to indicate the alias. Previously, every occurrence of
9306 the character token in the grammar overwrote that alias indicator with
9307 the character code.
9308 * tests/input.at (String aliases for character tokens): New test.
9309
9310 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
9311
9312 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
9313
9314 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
9315
9316 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
9317 to prevent failures when building on older platforms.
9318 Check for autopoint failure.
9319 Set XGETTEXT_OPTIONS to values that check for C format strings,
9320 so that translators are warned about them (this also helps
9321 prevent core dumps).
9322
9323 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
9324 function, since it simplifies our code a bit.
9325
9326 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
9327 rather than -W, so we don't get bogus warnings about sign comparisons.
9328 Add -Wpointer-arith, since that warning is useful (it reports code
9329 that does not conform to C89 and that some compilers reject).
9330 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
9331 since it's no longer needed.
9332
9333 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
9334
9335 Clean up scanners a bit.
9336 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
9337 definitions so gcc won't warn when obstack_for_string is unused.
9338 * src/scan-code.l: config.h and system.h are already #include'd by
9339 scan-code-c.c, so get rid of them here.
9340 * src/scan-gram.l: Likewise.
9341 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
9342 definitions rather than duplicating the rest of it.
9343 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
9344
9345 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
9346
9347 Suppress signed/unsigned comparison warnings for yycheck.
9348 * data/c.m4 (b4_safest_int_type): New macro.
9349 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
9350 a signed int type, cast it to b4_safest_int_type first.
9351 * data/yacc.c: Likewise.
9352 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
9353 also overwritten.
9354
9355 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
9356
9357 * doc/bison.texinfo: Fix some typos.
9358
9359 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
9360
9361 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
9362 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
9363
9364 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
9365 the latest gnulib does this a different way.
9366 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
9367 translation was patched, so stop omitting it.
9368
9369 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
9370
9371 Enable declaration of default %printer/%destructor. Make the parser
9372 use these for all user-declared grammar symbols for which the user does
9373 not declare a specific %printer/%destructor. Thus, the parser uses it
9374 for token 0 if the user declares it but not if Bison generates it as
9375 $end. Discussed starting at
9376 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
9377 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
9378 and
9379 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
9380 * NEWS (2.3+): Mention.
9381 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
9382 declare a %destructor for a mid-rule's semantic value. It's just
9383 impossible to declare one specific to it.
9384 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
9385 code. Describe default %destructor form.
9386 * src/parse-gram.y (grammar_declaration): Parse default
9387 %printer/%destructor declarations.
9388 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
9389 and symbol_destructor_location_get rather than accessing the destructor
9390 and destructor_location members of struct symbol.
9391 (symbol_printers_output): Likewise but for %printer's.
9392 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
9393 again.
9394 * src/symtab.c (default_destructor, default_destructor_location,
9395 default_printer, default_printer_location): New static global
9396 variables to record the default %destructor and %printer.
9397 (symbol_destructor_get, symbol_destructor_location_get,
9398 symbol_printer_get, symbol_printer_location_get): New functions to
9399 compute the appropriate %destructor and %printer for a symbol.
9400 (default_destructor_set, default_printer_set): New functions to set the
9401 default %destructor and %printer.
9402 * src/symtab.h: Prototype all those new functions.
9403 * tests/actions.at (Default %printer and %destructor): New test to
9404 check that the right %printer and %destructor are called, that they're
9405 not called for $end, and that $$ and @$ work correctly.
9406 (Default %printer and %destructor for user-declared end token): New
9407 test to check that the default %printer and %destructor are called for
9408 a user-declared end token.
9409 * tests/input.at (Default %printer and %destructor redeclared, Unused
9410 values with default %destructor): New tests to check related grammar
9411 warnings and errors.
9412
9413 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
9414
9415 Clean up handling of %destructor for the end token (token 0).
9416 Discussed starting at
9417 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
9418 and
9419 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
9420
9421 Make the skeletons consistent in how they pop the end token and invoke
9422 its %destructor.
9423 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
9424 state, which has token number 0, since this would invoke the
9425 %destructor for the end token.
9426 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
9427 until after shifting the end token, or else it won't be popped.
9428 * data/yacc.c (yyparse): Likewise.
9429
9430 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
9431 it's the end token. Upon termination, destroy an unshifted lookahead
9432 even when it's the end token.
9433 * data/lalr1.cc (yy::parser::parse): Likewise.
9434 * data/yacc.c (yyparse): Likewise.
9435
9436 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
9437 value warnings for the end token when the user gives the end token a
9438 %destructor.
9439
9440 * tests/actions.at (Printers and Destructors): Test all the above.
9441
9442 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
9443
9444 Update to latest gnulib and gettext versions.
9445 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
9446 Add fopen-safer.
9447 (gnulib_files): Add m4/warning.m4. Don't worry about files
9448 overwritten by autopoint.
9449 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
9450 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
9451 rejects them.
9452 Don't use autoreconf; instead, invoke autopoint etc. by hand,
9453 so that we can remove the intl files at a better time.
9454 (intl_files_to_remove): Remove aclocal.m4, since it gets
9455 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
9456 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
9457 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
9458 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
9459 Remove datarootdir hack; no longer needed.
9460 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
9461 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
9462 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
9463 strdup.h.
9464 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
9465 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
9466
9467 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
9468
9469 * bootstrap: Adjust to today's change to gnulib-tool by invoking
9470 it with --assume-autoconf='latest-stable'.
9471
9472 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
9473
9474 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
9475 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
9476 YYSTYPE' and `{'.
9477 * src/muscle_tab.h (muscle_grow): Replace the header comments with
9478 those from muscle_tab.c since the old ones are misleading.
9479
9480 2006-07-13 Akim Demaille <akim@epita.fr>
9481
9482 Support %define "KEY" {VALUE}.
9483 * src/scan-code.h, src/scan-code.l (translate_action)
9484 (translate_rule_action, translate_symbol_action, translate_code):
9485 Return char *, not const char *.
9486 * src/parse-gram.y (declaration): Rename as...
9487 (prologue_declaration): this.
9488 (string_content): Remove this nonterminal, use STRING.
9489 (braceless, content, content.opt): New nonterminal.
9490 Use them.
9491 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
9492 as value.
9493 * src/scan-gram.l (getargs.h): Don't include it.
9494
9495 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
9496
9497 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
9498 rather than a for-loop that declares a local bool variable. This
9499 should work around a compatibility problem with a Cray x1e C++
9500 compiler reported by Hung Nguyen in
9501 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
9502 The for-loop was introduced in the 2004-11-17 change but I don't
9503 know why it was needed.
9504
9505 2006-07-12 Akim Demaille <akim@epita.fr>
9506
9507 * data/c.m4: Comment changes.
9508
9509 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
9510
9511 * src/complain.c (error_message, ERROR_MESSAGE): New.
9512 To factor...
9513 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
9514 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
9515
9516 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
9517
9518 * NEWS: Instead of %union, you can define and use your own union type
9519 YYSTYPE if your grammar contains at least one <type> tag.
9520 Your YYSTYPE need not be a macro; it can be a typedef.
9521 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
9522 (Union Decl, Decl Summary): Document this.
9523 * data/glr.c (YYSTYPE): Implement this.
9524 * data/glr.cc (YYSTYPE): Likewise.
9525 * data/lalr1.cc (YYSTYPE): Likewise.
9526 * data/yacc.c (YYSTYPE): Likewise.
9527 * src/output.c (prepare): Output tag_seen_flag.
9528 * src/parse-gram.y (declaration, grammar_declaration):
9529 Use 'union_seen' rather than 'typed' to determine whether
9530 %union has been seen, since grammars can now be typed without
9531 %union.
9532 (symbol_declaration, type.opt, symbol_def):
9533 Keep track of whether a tag has been seen.
9534 * src/reader.c (union_seen, tag_seen): New vars.
9535 (typed): remove.
9536 * src/reader.h (union_seen, tag_seen, typed): Likewise.
9537 * src/scan-code.l (untyped_var_seen): New variable.
9538 (handle_action_dollar): Adjust to above changes.
9539 (handle_action_dollar, handle_action_at):
9540 Improve overflow checking for outlandish numbers.
9541 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
9542 avoid new diagnostics generated by above changes.
9543 * tests/regression.at (YYSTYPE typedef): Add test to check
9544 for type tags without %union.
9545
9546 * src/symlist.c (symbol_list_length): Return int, not unsigned
9547 int, since callers expect int. This may need to get revisited
9548 once we have proper integer overflow checking.
9549
9550 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
9551 object is now static.
9552
9553 * src/getargs.c (flags_argmatch): Return void, not int,
9554 to pacify ./configure --enable-gcc-warnings.
9555
9556 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
9557 since last_string is already defined to FLEX_PREFIX (last_string).
9558
9559 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
9560
9561 Implement --warnings/-W.
9562 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
9563 replaced by...
9564 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
9565 Adjust callers.
9566 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
9567 (warnings_args, warnings_types): New.
9568 (getargs, short_options, long_options): Accept -W/--warnings.
9569 Sort the options by alphabetical order, upper case letter right
9570 before its lower case.
9571
9572 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
9573
9574 Change %merge result type clash warnings to errors. Discussed at
9575 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
9576 * src/reader.c (record_merge_function_type): Use complain_at.
9577 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
9578 declared later): Update test case results.
9579
9580 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
9581
9582 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
9583 to be in alphabetical order.
9584 (trace_args): Spelling fixes.
9585
9586 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
9587
9588 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
9589 so they don't collide with user-defined macros.
9590 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
9591 this was never guaranteed, and now that we're using gnulib stdint,
9592 which defines int_fast16_t to long int, the problem is exposed.
9593
9594 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
9595
9596 * data/c.m4 (b4_basename): Simplify a bit, since we don't
9597 need the full POSIX semantics (and weren't implementing them
9598 anyway).
9599
9600 Adjust to Autoconf 2.60 and today's gnulib.
9601 * bootstrap (gnulib_modules): Add stdint.
9602 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
9603 no longer copies it.
9604 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
9605 since stdint needs the former and wcwidth (which is now required
9606 by mbswidth) needs the latter.
9607 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
9608 work around a compatibility glitch between gettext 0.14.6 and
9609 Autoconf 2.60.
9610 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
9611 Do not check for uintptr_t, since new stdint module does the right
9612 thing.
9613 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
9614 Add stdint.h, stdint_.h, wcwidth.h.
9615 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
9616 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
9617 stdint.m4, wchar_t.m4, wcwidth.m4.
9618 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
9619 usual order for ../lib/*.h files.
9620 (file_name_split): Use last_component, not base_name, to adjust
9621 to gnulib changes.
9622 * src/parse-gram.h: Include <strverscmp.h> in the usual order
9623 for ../lib/*.h files.
9624 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
9625 Define unconditionally, since we now assume the stdint module.
9626 * src/scan-skel.l: Include <dirname.h>.
9627 (BASE_QPUTS): Use last_component, not base_name.
9628 * src/system.h: Include <unlocked-io.h> in the usual order
9629 for ../lib/*.h files. Include <stdint.h> unconditionally,
9630 since we now use the stdint module.
9631 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
9632 HAVE_UINTPTR_T, since we now use the stdint module.
9633 (base_name): Remove decl, since files now include <dirname.h>
9634 to get the decl.
9635
9636 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
9637
9638 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
9639 New, default to 1.
9640 * data/yacc.c, data/glr.c, data/location.cc: Use them.
9641 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
9642 default.
9643 * tests/calc.at: Adjust.
9644
9645 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
9646
9647 * data/c.m4 (b4_basename): New.
9648 (b4_syncline): Also output the location of its invocation (from
9649 the skeleton).
9650 (b4_user_action, b4_define_user_action, b4_user_actions)
9651 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
9652 (b4_user_stype): New.
9653 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
9654
9655 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
9656
9657 In the grammar file, the first column is 1 not 0 on the first line as
9658 on every other line.
9659 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
9660 * tests/input.at (Torturing the Scanner): Update output.
9661
9662 * src/scan-gram.l (scanner_cursor): Declare it static.
9663
9664 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
9665
9666 In warnings, say "previous declaration" rather than "first
9667 declaration".
9668 * src/symtab.c (redeclaration): Do that here.
9669 * src/reader.c (record_merge_function_type): In the case of a result
9670 type clash, report the previous declaration rather than the very first
9671 one in the grammar file.
9672 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
9673 declared later): Add a third declaration to check this behavior.
9674 * tests/input.at (Incompatible Aliases): Update output.
9675
9676 2006-06-27 Akim Demaille <akim@epita.fr>
9677
9678 * doc/Doxyfile.in: New.
9679 * doc/Makefile.am: Use it.
9680 * src/lalr.h, src/symtab.h: Initial doxygenation.
9681
9682 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
9683
9684 Don't miss %merge result type warnings just because the LHS types are
9685 declared after the %merge. This continues the effort of the previous
9686 patch.
9687 * src/reader.c (get_merge_function): Don't set the merger type yet.
9688 (record_merge_function_type): New function for setting the merger type
9689 and checking for clashes.
9690 (grammar_current_rule_merge_set): Set the location of the %merge for
9691 the current rule.
9692 (packgram): Invoke record_merge_function_type for each rule now that
9693 all symbol type declarations have been parsed.
9694 * src/reader.h (merger_list.type_declaration_location): New member
9695 storing the location of the first %merge from which the type for this
9696 merging function was derived.
9697 * src/symlist.h (symbol_list.merger_declaration_location): New member
9698 storing the location of a rule's %merge, if any.
9699 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
9700 declared later): New test to catch the error fixed by the above patch.
9701
9702 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
9703
9704 Get action warnings (grammar_rule_check) right even when symbol
9705 declarations appear after the rules. Discussed at
9706 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
9707 and
9708 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
9709 Don't mistake the type of $$ in a midrule to be that of its parent
9710 rule's $$.
9711 * src/reader.c (grammar_current_rule_end): Don't invoke
9712 grammar_rule_check yet since not all symbol declarations may have been
9713 parsed yet.
9714 (grammar_midrule_action): Likewise.
9715 Don't record whether the midrule's $$ has been used yet since actions
9716 haven't been translated yet.
9717 Record the midrule's parent rule and its RHS index within the parent
9718 rule.
9719 (grammar_current_rule_action_append): Don't translate the action yet
9720 since not all symbol declarations may have been parsed yet and, thus,
9721 warnings about types for $$, $n, @$, and @n can't be reported yet.
9722 (packgram): Translate the action and invoke grammar_rule_check now that
9723 all symbol declarations have been parsed.
9724 * src/scan-code.l (handle_action_dollar): Now that this is invoked
9725 after parsing the entire grammar file, the symbol list here in the case
9726 of a midrule is actually the midrule's empty RHS, so reference its
9727 parent rule's RHS where necessary.
9728 On the other hand, now that you can already know it's a midrule, you
9729 aren't forced to think $$ has the same type as its parent rule's $$.
9730 (handle_action_at): In the case of a midrule, reference the parent rule
9731 where necessary.
9732 * src/symlist.c (symbol_list_new): Initialize new midrule-related
9733 members.
9734 (symbol_list_length): Now that this is invoked after all rules have
9735 been parsed, a NULL symbol (rather than a NULL symbol list node)
9736 terminates a rule. symbol_list_print already does this correctly.
9737 * src/symlist.h (symbol_list.midrule_parent_rule,
9738 symbol_list.midrule_parent_rhs_index): New members so that midrules can
9739 remember their relationships with their parents.
9740 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
9741 fixed by the above patch.
9742 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
9743 implementing...
9744 (Unused values): ... this old test case and...
9745 (Unused values before symbol declarations): ... this new test case.
9746 This one is the same as `Unused values' except that all symbol
9747 declarations appear after the rules in order to catch the rest of the
9748 errors fixed by the above patch.
9749
9750 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
9751
9752 More cleanup.
9753 * src/reader.c (current_rule): Declare it static since it's no longer
9754 used outside this file.
9755 (grammar_current_rule_action_append): Remove redundant arguments from
9756 translate_rule_action invocation.
9757 * src/reader.h (current_rule): Remove this unused extern.
9758 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
9759 * src/scan-code.l (translate_rule_action): Likewise.
9760
9761 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
9762
9763 Clean up yesterday's patch.
9764 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
9765 to...
9766 * src/reader.c (grammar_current_rule_action_append): ... here for
9767 consistency with grammar_current_rule_symbol_append.
9768 * tests/regression.at (Braced code in declaration in rules section):
9769 Make yyerror and yylex static as usual.
9770
9771 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
9772
9773 Fix bug that mistakes braced code in a declaration in the rules section
9774 to be a rule action. Mentioned at
9775 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
9776 * src/scan-gram.l: Move midrule action detection from the start of the
9777 scanning of any braced code to...
9778 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
9779 action. For readability, use $2 and @2 rather than the equivalent
9780 global variables.
9781 * tests/regression.at (Braced code in declaration in rules section):
9782 New test to catch the error fixed by the above patch.
9783
9784 Work on code readability some.
9785 * src/scan-code.l (current_rule): Get rid of this misleading and
9786 redundant declaration: it's actually extern'ed in reader.h.
9787 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
9788 translate_action): Add a rule argument and use it instead of the global
9789 current_rule.
9790 (translate_rule_action): This already receives current_rule through an
9791 argument, so pass it on to translate_action instead of assigning
9792 current_rule to current_rule.
9793 (translate_symbol_action, translate_code): Pass rule = NULL to
9794 translate_action.
9795
9796 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
9797
9798 Rename %before-definitions to %start-header and %after-definitions to
9799 %end-header. Don't use these declarations to separate pre-prologue
9800 blocks from post-prologue blocks. Add new order-independent
9801 declarations %before-header and %after-header as alternatives to the
9802 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
9803 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
9804 * NEWS (2.3+): Update for these changes.
9805 * data/glr.c (b4_before_definitions): Update to...
9806 (b4_start_header): ... this.
9807 (b4_after_definitions): Update to...
9808 (b4_end_header): ... this.
9809 * data/glr.cc: Likewise.
9810 * data/lalr1.cc: Likewise.
9811 * data/yacc.c: Likewise.
9812 * doc/bison.texinfo (The prologue): Update names, and replace remaining
9813 prologue blocks with %*-header declarations.
9814 (Calc++ Parser): Likewise.
9815 (Decl Summary): Update names.
9816 (Table of Symbols): Update description.
9817 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
9818 (PERCENT_END_HEADER): ... this.
9819 (PERCENT_BEFORE_DEFINITIONS): Update to...
9820 (PERCENT_START_HEADER): ... this.
9821 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
9822 (declaration): Update token names and m4 macro names.
9823 When parsing %end-header and %start-header, invoke translate_code
9824 before muscle_code_grow, and no longer set global booleans to remember
9825 whether these declarations have been seen.
9826 Parse new %after-header and %before-header.
9827 * src/reader.c (before_definitions, after_definitions): Remove.
9828 (prologue_augment): Accept a new bool argument to specify whether to
9829 augment the pre-prologue or post-prologue.
9830 * src/reader.h (before_definitions, after_definitions): Remove these
9831 extern's.
9832 (prologue_augment): Add new bool argument.
9833 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
9834 (PERCENT_END_HEADER): ... this.
9835 (PERCENT_BEFORE_DEFINITIONS): Update to...
9836 (PERCENT_START_HEADER): ... this.
9837 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
9838 * tests/actions.at (Printers and Destructors): Update names.
9839
9840 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
9841
9842 Add comparison operators for C++ location classes. Discussed at
9843 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
9844 * data/c++.m4 (b4_define_location_comparison): New boolean %define
9845 declaration indicating whether filename_type has an operator==. If
9846 filename_type is `std::string', it defaults to `1', `0' otherwise.
9847 * data/location.cc: Iff b4_define_location_comparison is `1', add
9848 operator== and operator!= for class position and for class location.
9849
9850 Some minor fixes.
9851 * src/scan-action.l: Remove unused file.
9852 * src/symtab.c (symbol_printer_set): Use printer_location not
9853 destructor_location.
9854 * src/symtab.h (struct symbol): Replace incorrect source comment for
9855 printer members.
9856 * tests/input.at (Incompatible Aliases): Update output with correct
9857 printer location.
9858
9859 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
9860
9861 Don't put the pre-prologue in the header file. For the yacc.c code
9862 file and the glr.c header and code files, move the pre-prologue before
9863 the token definitions. Add new %before-definitions and
9864 %after-definitions to declare code that will go in both the header file
9865 and code file. Discussed at
9866 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
9867 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
9868 and
9869 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
9870 * NEWS (2.3+): Describe these changes.
9871 * data/glr.c (b4_pre_prologue): Move from within to before...
9872 (b4_shared_declarations): ... this.
9873 Add new b4_before_definitions before b4_token_enums.
9874 Add new b4_after_definitions at the end.
9875 * data/glr.cc (b4_pre_prologue): Replace with...
9876 (b4_before_definitions): ... this in the header file.
9877 (b4_after_definitions): New near the end of the header file.
9878 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
9879 code file right before including the header file.
9880 (b4_before_definitions): New in the previous position of
9881 b4_pre_prologue in the header file.
9882 (b4_after_definitions): New near the end of the header file.
9883 * data/yacc.c: Clean up some m4 quoting especially in the header file.
9884 (b4_token_enums_defines): In the code file, move to right before
9885 YYSTYPE for consistency with the header file.
9886 (b4_before_definitions): New right before b4_token_enums_defines in
9887 both the header and code file.
9888 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
9889 header and code file.
9890 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
9891 of prologues for %union dependencies.
9892 (Decl Summary): In %defines description, mention the effect of
9893 %before-definitions and %after-definitions on the header file.
9894 (Calc++ Parser): Forward declare driver in a %before-definitions rather
9895 than in the pre-prologue so that make check succeeds.
9896 (Table of Symbols): Add entries for %before-definitions and
9897 %after-definitions.
9898 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
9899 %before-definitions.
9900 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
9901 (declaration): Parse those declarations and append to
9902 b4_before_definitions and b4_after_definitions, respectively.
9903 * src/reader.c (before_definitions, after_definitions): New bools to
9904 track whether those declarations have been seen.
9905 (prologue_augment): Add to the post-prologue if %union,
9906 %before-definitions, or %after-definitions has been seen.
9907 * src/reader.h (before_definitions, after_definitions): New extern's.
9908 * src/scan-gram.l: Scan the new declarations.
9909 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
9910 prologue block in a %before-definitions or a %after-definitions based
9911 on whether the %union is declared.
9912 * tests/regression.at (Early token definitions with --yacc, Early token
9913 definitions without --yacc): Move tests for token definitions into the
9914 post-prologue since token names are no longer defined in the
9915 pre-prologue.
9916
9917 2006-06-20 Akim Demaille <akim@epita.fr>
9918
9919 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
9920 (symbol_get): Use it.
9921 * src/parse-gram.y: Use it.
9922
9923 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
9924
9925 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
9926 build succeeds when configured with --enable-gcc-warnings.
9927
9928 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
9929
9930 * src/parse-gram.y (char_name): New function.
9931 (CHAR, STRING, string_content): For %printer, properly escape.
9932 (ID): Prefer fputs to fprintf.
9933 (id): Reindent to be consistent with other rules.
9934 Properly quote char.
9935
9936 The Translation Project changed its way of publishing translations
9937 to maintainers. I haven't received any responses to my request
9938 for supporting the old way, or for documenting the new way. I
9939 have modified 'bootstrap' to use screen scraping
9940 (in this case, HTML scraping). This is unreliable and inelegant,
9941 but I don't see any better way. Yuck.
9942 * bootstrap (TP_URL, WGET_COMMAND): New vars.
9943 (get_translations): New function, which uses HTML scraping to
9944 deduce locations of latest translations.
9945 Use this function to grab both bison and bison-runtime .po files.
9946 Don't bother priming the pump for the runtime-po domain any more,
9947 as it's now translated better than bison is.
9948
9949 2006-06-19 Akim Demaille <akim@epita.fr>
9950
9951 * src/scan-gram.l: No longer "parse" things after `%union' until
9952 `{'. Rather, return a single "%union" token.
9953 No longer make symbols: return strings, and leave the conversion
9954 to symbols to the parser.
9955 (SC_PRE_CODE, token_type): Remove.
9956 * src/parse-gram.y (%union): New field `character'.
9957 Sort tokens.
9958 (CHAR): New token.
9959 (ID, ID_COLON): Now that the scanner no longer makes them
9960 identifiers, adjust all uses to invoke symbol_get.
9961 (id_colon): New, wraps the conversion from string to symbol.
9962 (%union): Accept a possible union_name.
9963 (symbol): Now can be a char.
9964 * data/c.m4 (b4_union_name): Leave a default value.
9965 * data/glr.c, data/yacc.c: Use it.
9966
9967 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
9968
9969 For associating token numbers with token names for "yacc.c", don't use
9970 #define statements unless `--yacc' is specified; always use enum
9971 yytokentype. Most important discussions start at:
9972 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
9973 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
9974 and
9975 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
9976 * NEWS (2.3+): Mention.
9977 * data/c.m4 (b4_yacc_if): New.
9978 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
9979 token #define's.
9980 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
9981 on token name definitions.
9982 * src/getargs.c (usage): Capitalize `Yacc' in English.
9983 * src/output.c (prepare): Define b4_yacc_flag.
9984 * tests/regression.at (Early token definitions): Test that tokens names
9985 are defined before the pre-prologue not just before the post-prologue.
9986 Remove this test case and copy to...
9987 (Early token definitions with --yacc): ... this to test #define's.
9988 (Early token definitions without --yacc): ... and this to test enums.
9989
9990 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
9991
9992 * NEWS: Reword the post-2.3 change to not be so optimistic about
9993 removing the old "look-ahead" spelling.
9994 Update previous look-ahead/lookahead change reports.
9995 * REFERENCES: look-ahead -> lookahead (since that's
9996 what he actually wrote).
9997 * doc/refcard.tex: look ahead -> lookahead,
9998 look-ahead -> lookahead
9999
10000 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
10001
10002 For consistency, use `lookahead' instead of `look-ahead' or
10003 `look_ahead'. Discussed starting at
10004 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
10005 and then at
10006 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
10007 * NEWS: For the next release, note the change to `--report'.
10008 * TODO, doc/bison.1: Update English.
10009 * doc/bison.texinfo: Update English.
10010 (Understanding Your Parser, Bison Options): Document as
10011 `--report=lookahead' rather than `--report=look-ahead'.
10012 * src/conflicts.c: Update English in comments.
10013 (lookahead_set): Rename from look_ahead_set.
10014 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
10015 (resolve_sr_conflict): Rename local look_ahead_tokens to
10016 lookahead_tokens, and update other uses.
10017 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
10018 count_rr_conflicts, conflicts_free): Update uses.
10019 * src/getargs.c (report_args): Move "lookahead" before alternate
10020 spellings.
10021 (report_types): Update uses.
10022 (usage): For `--report' usage description, state `lookahead' spelling
10023 rather than `look-ahead'.
10024 * src/getargs.h (report.report_lookahead_tokens): Rename from
10025 report_look_ahead_tokens.
10026 * src/lalr.c: Update English in comments.
10027 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
10028 (state_lookahead_tokens_count): Rename from
10029 state_look_ahead_tokens_count.
10030 Rename local n_look_ahead_tokens to n_lookahead_tokens.
10031 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
10032 Rename local n_look_ahead_tokens to n_lookahead_tokens.
10033 Update other uses.
10034 Update English in output.
10035 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
10036 * src/print.c: Update English in comments.
10037 (lookahead_set): Rename from look_ahead_set.
10038 (print_reduction): Rename argument lookahead_token from
10039 look_ahead_token.
10040 (print_core, state_default_rule, print_reductions, print_results):
10041 Update uses.
10042 * src/print_graph.c: Update English in comments.
10043 (print_core): Update uses.
10044 * src/state.c: Update English in comments.
10045 (reductions_new): Update uses.
10046 (state_rule_lookahead_tokens_print): Rename from
10047 state_rule_look_ahead_tokens_print, and update other uses.
10048 * src/state.h: Update English in comments.
10049 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
10050 (state_rule_lookahead_tokens_print): Rename from
10051 state_rule_look_ahead_tokens_print.
10052 * src/tables.c: Update English in comments.
10053 (conflict_row, action_row): Update uses.
10054 * tests/glr-regression.at
10055 (Incorrect lookahead during deterministic GLR,
10056 Incorrect lookahead during nondeterministic GLR): Rename
10057 print_look_ahead to print_lookahead.
10058 * tests/torture.at: Update English in comments.
10059 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
10060 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
10061 (Many lookahead tokens): Update uses.
10062 * data/glr.c: Update English in comments.
10063 * lalr1.cc: Likewise.
10064 * yacc.c: Likewise.
10065 * src/conflicts.h: Likewise.
10066 * src/lalr.h: Likewise.
10067 * src/main.c: Likewise.
10068 * src/output.c: Likewise.
10069 * src/parse-gram.c: Likewise.
10070 * src/tables.h: Likewise.
10071 * tests/calc.at: Likewise.
10072
10073 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
10074
10075 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
10076
10077 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
10078
10079 * TODO: Add request from Nelson H. F. Beebe to be able to install
10080 Bison without installing the yacc script.
10081
10082 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
10083
10084 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
10085 and yytext if they're already #define'd.
10086 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
10087 * src/scan-code-c.c: ... here.
10088 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
10089 <config.h>.
10090
10091 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
10092
10093 Get Bison to build again when configured with --enable-gcc-warnings.
10094 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
10095 missing #include's.
10096 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
10097 loc argument as it shadows a global.
10098 * src/scan-gram.l: Remove stray comma that prevents boundary_set
10099 invocation.
10100
10101 * src/.cvsignore: Add scan-code.c.
10102
10103 2006-06-07 Akim Demaille <akim@epita.fr>
10104
10105 * src/scan-gram.l: Move the "add a trailing ; to actions" code
10106 to...
10107 * src/scan-code.l: here.
10108 * tests/input.at (Torturing the Scanner): Fix another location
10109 error.
10110
10111 2006-06-07 Akim Demaille <akim@epita.fr>
10112
10113 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
10114
10115 2006-06-06 Akim Demaille <akim@epita.fr>
10116
10117 Extract the parsing of user actions from the grammar scanner.
10118 As a consequence, the relation between the grammar scanner and
10119 parser is much simpler. We can also split "composite tokens" back
10120 into simple tokens.
10121 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
10122 * src/scan-gram.l (add_column_width, adjust_location): Move to and
10123 rename as...
10124 * src/location.h, src/location.c (add_column_width)
10125 (location_compute): these.
10126 Fix the column count: the initial column is 0.
10127 (location_print): Be robust to ending column being 0.
10128 * src/location.h (boundary_set): New.
10129 * src/main.c: Adjust to scanner_free being renamed as
10130 gram_scanner_free.
10131 * src/output.c: Include scan-code.h.
10132 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
10133 Use boundary_set.
10134 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
10135 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
10136 which is now, again, a separate token.
10137 Adjust all dependencies.
10138 Whereever actions with $ and @ are used, use translate_code.
10139 (action): Remove this nonterminal which is now useless.
10140 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
10141 (grammar_current_rule_action_append): Use translate_code.
10142 (packgram): Bound check ruleno, itemno, and rule_length.
10143 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
10144 (last_string, last_braced_code_loc, max_left_semantic_context)
10145 (scanner_initialize, scanner_free, scanner_last_string_free)
10146 (gram_out, gram_lineno, YY_DECL_): Move to...
10147 * src/scan-gram.h: this new file.
10148 (YY_DECL): Rename as...
10149 (GRAM_DECL): this.
10150 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
10151 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
10152 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
10153 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
10154 Move these declarations, and...
10155 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
10156 these to...
10157 * src/flex-scanner.h: this new file.
10158 * src/scan-gram.l (rule_length, rule_length_overflow)
10159 (increment_rule_length): Remove.
10160 (last_braced_code_loc): Rename as...
10161 (gram_last_braced_code_loc): this.
10162 Adjust to the changes of the parser.
10163 Move all the handling of $ and @ into...
10164 * src/scan-code.l: here.
10165 * src/scan-gram.l (handle_dollar, handle_at): Remove.
10166 (handle_action_dollar, handle_action_at): Move to...
10167 * src/scan-code.l: here.
10168 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
10169 scan-code.h, scan-code-c.c, scan-gram.h.
10170 (EXTRA_bison_SOURCES): Add scan-code.l.
10171 (BUILT_SOURCES): Add scan-code.c.
10172 (yacc): Be robust to white spaces.
10173
10174 * tests/conflicts.at, tests/input.at, tests/reduce.at,
10175 * tests/regression.at: Adjust the column numbers.
10176 * tests/regression.at: Adjust the error message.
10177
10178 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
10179
10180 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
10181 Use Akim's wording from
10182 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
10183
10184 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
10185
10186 Between Bison releases, manually append `+' to the previous Bison
10187 release number, and use that as a signal to automatically print the
10188 ChangeLog's CVS Id keyword from --version. Discussed starting at
10189 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
10190 * ChangeLog: Add Id header.
10191 * configure.ac (AC_INIT): Append `+' to `2.3'.
10192 * src/.cvsignore: Add revision.c.
10193 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
10194 (BUILT_SOURCES): Add revision.c.
10195 (revision.c): New target rule. This file defines a new global variable
10196 named revision. It initializes it with either the Id from ChangeLog
10197 or, if VERSION doesn't contain `+', with the empty string.
10198 * src/getargs.c (version): Print the value of revision.
10199 * src/revision.h: Extern revision.
10200
10201 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
10202
10203 * NEWS: Version 2.3.
10204 * configure.ac (AC_INIT): Likewise.
10205
10206 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
10207
10208 * data/glr.c (YYRECOVERING): Define to be a function-like macro
10209 with no arguments, not as an object-like macro. This is for
10210 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
10211 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
10212 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
10213 Document this.
10214
10215 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
10216
10217 * src/getargs.c (usage): Back out yesterday's modification of the
10218 --help output so that we don't have to wait for translation before
10219 releasing 2.3.
10220
10221 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
10222
10223 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
10224 Problem reported by Akim Demaille.
10225
10226 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
10227
10228 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
10229
10230 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
10231
10232 * data/yacc.c (yy_reduce_print): Omit trailing white space in
10233 generated source code. Problem reported by Frans Englich in
10234 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
10235
10236 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
10237
10238 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
10239 shell, not within 'make', so that 'make' by an ordinary builder
10240 (using GNU make) does not worry about configuring gzip. This also
10241 works around a bug reported independently by Keith Thompson and by
10242 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
10243 stderr rather than stdout, messing up the build logs.
10244
10245 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
10246
10247 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
10248 to make sure that YYID will never be unused. This fixes a 'make
10249 maintainer-check' failure caused by the recent changes to the 'Trivial
10250 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
10251 not used.
10252 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
10253
10254 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
10255
10256 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
10257 state before an empty RHS is always resolved here. Only the location
10258 of that state is guaranteed to be resolved, and that's enough. This
10259 fixes the remaining bug reported by Derek M. Jones in
10260 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
10261 * tests/glr-regression.at (Uninitialized location when reporting
10262 ambiguity): Test the above case.
10263 Also, the embedded comments in this test case claim it checks the case
10264 of an empty RHS that has inherited the initial location. However, the
10265 corresponding LHS was already resolved, so yyresolveLocations didn't
10266 actually have reason to modify it. Fix this by forcing
10267 nondeterministic operation at the beginning of the parse.
10268
10269 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
10270
10271 * data/c.m4 (b4_yy_symbol_print_generate):
10272 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
10273 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
10274 of the bugs reported today by Derek M Jones in
10275 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
10276 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
10277 defined to be a type name without parens or brackets.
10278 (Location Type): Similarly for YYLTYPE.
10279 * tests/regression.at (Trivial grammars): Put in a test for this
10280 bug that will be caught by 'make maintainer-check' (though not,
10281 alas, by 'make check' unless your compiler is picky).
10282
10283 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
10284
10285 * NEWS: Version 2.2.
10286 * configure.ac (AC_INIT): Likewise.
10287
10288 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
10289
10290 * data/glr.c (yyreportTree): Make room in yystates for the state
10291 preceding the RHS. This fixes the segmentation fault reported by Derek
10292 M. Jones in
10293 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
10294 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
10295 to the user. Reported for yyreportTree by Derek M. Jones later in the
10296 same thread.
10297 * THANKS: Add Derek M. Jones.
10298 Update my email address.
10299 Fix typo in Steve Murphy's name.
10300
10301 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
10302
10303 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
10304 checking against YYLAST that caused the parser to miss a potential
10305 alternative in its diagnostic.
10306 Problem reported by Maria Jose Moron Fernandez in
10307 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
10308 * data/lalr1.cc (yysyntax_error_): Likewise.
10309 * data/yacc.c (yysyntax_error): Likewise.
10310 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
10311 tokens, in case we run into an older C compiler.
10312 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
10313 Use them to check for the off-by-one error fixed above.
10314
10315 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
10316 YYSIZE_T, not size_t.
10317 * tests/regression.at (Trivial grammars): New test, to catch
10318 the error fixed by the above patch.
10319
10320 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
10321
10322 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
10323 scheme.
10324 Reported by Steve Murphy.
10325
10326 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
10327
10328 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
10329 * data/glr.cc: b4_location_flag is now b4_locations_flag.
10330
10331 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
10332
10333 Implement --trace=m4.
10334 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
10335 * src/output.c (output_skeleton): When set, pass -dV to m4.
10336
10337 Factor the handling of flags in m4.
10338 * src/output.c (prepare): Rename the muscle names debug, defines,
10339 error_verbose to debug_flag, defines_flag, error_verbose_flag.
10340 * data/c.m4: Adjust.
10341 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
10342 Use b4_define_flag_if to define other b4_FLAG_if macros.
10343 (b4_location_if): As a consequence, rename as...
10344 (b4_locations_if): this, for consistency.
10345 Adjust all the skeletons.
10346
10347 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
10348
10349 * etc/bench.pm: Shorten bench names.
10350
10351 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
10352
10353 * src/output.h, src/output.c (error_verbose): Move to...
10354 * src/getargs.h, src/getargs.c: here.
10355 Sort the flags.
10356 Adjust dependencies.
10357
10358 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
10359
10360 * data/c.m4 (b4_copyright): Put the special exception for Bison
10361 skeletons here, so we don't have to put it in each skeleton. All
10362 uses changed. Suggested by Akim Demaille. Also, wrap the
10363 copyright notice, in case it is longer than 80 columns. Replace
10364 comma by newline after title.
10365
10366 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
10367
10368 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
10369 incompatibility, not a bug. Mention that it wasn't fixed as of
10370 flex 2.5.33.
10371
10372 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
10373
10374 * examples/extexi: Enforce the precedence of concatenation over
10375 >>.
10376 Reported by Tommy Nordgren.
10377
10378 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
10379
10380 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
10381 with the member "token".
10382 Reported by Martin Nylin.
10383
10384 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
10385
10386 * data/glr.c: Switch to Bison 2.2 special-exception language in
10387 the copyright notice. Use more-regular format for titles and
10388 copyright notices.
10389 * data/glr.cc: Likewise.
10390 * data/location.cc: Likewise.
10391 * data/yacc.cc: Likewise.
10392 * doc/bison.texinfo (Conditions): Document this.
10393 * NEWS: likewise. Upgrade version to 2.2.
10394
10395 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
10396
10397 * data/glr.cc: Remove dead code.
10398
10399 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
10400
10401 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
10402 that variable and the line breaks the bootstrap. Problem reported
10403 by Juan M. Guerrero.
10404
10405 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
10406
10407 * doc/bison.texinfo (Multiple start-symbols): New.
10408
10409 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
10410
10411 * etc/README, etc/bench.pl: New.
10412
10413 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
10414
10415 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
10416 rule.
10417 Reported by Mickael Labau.
10418 * tests/input.at (Torturing the Scanner): Test it.
10419
10420 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
10421
10422 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
10423 Problem reported by Bob Rossi.
10424
10425 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
10426
10427 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
10428 and didn't really work.
10429 For the index, use @ifnotinfo, not @iftex.
10430 Minor cleanups of spacing and terminology.
10431
10432 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
10433
10434 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
10435 of AT_NAME_PREFIX when %name-prefix is not used.
10436
10437 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
10438
10439 Apply --prefix to C++ skeletons too: they change the namespace.
10440 The test suite already exercize these cases.
10441 * data/c++.m4 (b4_namespace): New.
10442 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
10443 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
10444 * data/yacc.c, data/glr.c: Remove a useless `[]'.
10445 * doc/bison.texinfo: Document it.
10446 (Option Cross Key): Use @multitable in all formats. It looks
10447 nicer, even in TeX outputs.
10448 (Rules): Use the same code whatever the output type is.
10449 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
10450 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
10451 * tests/calc.at: Use it, instead of hard coding `yy'.
10452
10453 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
10454
10455 * TODO: Remove dead items.
10456
10457 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
10458
10459 * doc/FAQ: Remove, merged into...
10460 * doc/bison.texinfo (FAQ): this.
10461 * doc/Makefile.am (EXTRA_DIST): Adjust.
10462
10463 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
10464
10465 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
10466 even if empty.
10467 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
10468 * doc/bison.texinfo (Calc++ Scanner): Use it.
10469
10470 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
10471
10472 Fix two nits reported by twlevo, plus one more that I discovered.
10473
10474 * src/assoc.h (assoc_to_string): Give a name to the arg, as
10475 this is the usual Bison style.
10476 * src/location.h (location_print): Likewise.
10477
10478 * src/reader.h (token_name): Likewise.
10479
10480 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
10481
10482 Fix some nits reported by twlevo.
10483 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
10484 and "POSIX". Use more-modern syntax for URLs. Mention C++
10485 and ask for Java. Don't hardwire OS version numbers. Add
10486 copyright notice.
10487 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
10488 * src/conflicts.c (solved_conflicts_obstack): Now static.
10489
10490 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
10491
10492 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
10493 page. Say "you can use it" not "you may use it" as on the web page;
10494 we're describing capabilities not granting permission.
10495
10496 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
10497
10498 * data/glr.c (yyresolveLocations): Rename local variables to avoid
10499 shadowing warnings. Use usual patter for iterating through RHS.
10500 * tests/glr-regression.at
10501 (Uninitialized location when reporting ambiguity):
10502 Modify yylex so that it uses its argument, rather than trying
10503 to rely on ARGSUSED (which doesn't work for gcc with warnings).
10504 const char -> char const.
10505
10506 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
10507 Don't use tabs inside commands; it messes up 'ps'.
10508 Problem reported by twlevo.
10509
10510 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
10511
10512 * tests/glr-regression.at (Uninitialized location when reporting
10513 ambiguity): New test case.
10514 * data/glr.c (yyresolveLocations): New function, which uses
10515 YYLLOC_DEFAULT.
10516 (yyresolveValue): Invoke yyresolveLocations before reporting an
10517 ambiguity.
10518 * doc/bison.texinfo (Default Action for Locations): Note
10519 YYLLOC_DEFAULT's usage for ambiguity locations.
10520 (GLR Semantic Actions): Cross-reference those notes.
10521
10522 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
10523
10524 * tests/glr-regression.at (Leaked semantic values when reporting
10525 ambiguity): Remove unnecessary union and type declarations.
10526 (Leaked lookahead after nondeterministic parse syntax error): New test
10527 case.
10528 * data/glr.c (yyparse): Check for zero stacks remaining before
10529 attempting to shift the lookahead so that you don't lose it.
10530
10531 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
10532
10533 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
10534 * tests/glr-regression.at (Leaked semantic values when reporting
10535 ambiguity): New test case.
10536 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
10537 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
10538 now unnecessary yystackp parameter.
10539 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
10540 destructors can be called.
10541
10542 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
10543 in existing testcases.
10544
10545 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
10546
10547 Don't leak semantic values for parent RHS when a user action cuts the
10548 parser, and clean up related code a bit.
10549 * tests/glr-regression.at (Leaked merged semantic value if user action
10550 cuts parse): Rename to...
10551 (Leaked semantic values if user action cuts parse): ... this. Add check
10552 for leaked parent RHS values.
10553 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
10554 between an unresolved state (non-empty chain of semantic options) and
10555 an incomplete one (signaled by an empty chain).
10556 (yyresolveStates): Document the interface. Move all manipulation of a
10557 successfully or unsuccessfully resolved yyGLRState to...
10558 (yyresolveValue): ... here so that yyresolveValue always leaves a
10559 yyGLRState with consistent data and thus is easier to understand.
10560 Remove the yyvalp and yylocp parameters since they are always just
10561 taken from the yys parameter. When reporting a discarded merged value
10562 in debugging output, note that it is incompletely merged. Document the
10563 interface.
10564 (yyresolveAction): If resolving any of the RHS states fails, destroy
10565 them all rather than leaking them. Thus, as long as user actions are
10566 written to clean up the RHS correctly, yyresolveAction always cleans up
10567 the RHS of a semantic option. Document the interface.
10568
10569 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
10570
10571 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
10572 led to a segmentation fault in GNU Pascal. Problem reported
10573 by Waldek Hebisch.
10574
10575 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
10576
10577 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
10578 mid-rule action inside a nonterminal symbol in order to declare a
10579 destructor for its semantic value.
10580
10581 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
10582
10583 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
10584 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
10585 __cplusplus && ! defined _STDLIB_H && !
10586 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
10587 defined free))]: Include <stdlib.h> rather than rolling our own
10588 declarations of malloc and free, to avoid problems with
10589 incompatible declarations (using 'throw') C++'s stdlib.h. This
10590 should fix Debian bug 340012
10591 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
10592 reported by Guillaume Melquiond.
10593
10594 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
10595
10596 * NEWS: Clarify symbols versus types in unused-value warnings.
10597
10598 * configure.ac (AC_INIT): Bump version number.
10599
10600 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
10601
10602 * NEWS: Version 2.1a.
10603 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
10604 since C99 requires this.
10605
10606 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
10607
10608 * m4/c-working.m4: New file.
10609 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
10610
10611 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
10612
10613 * Makefile.maint: Merge from coreutils.
10614
10615 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
10616
10617 More portability fixes for problems summarized by Nelson H. F. Beebe.
10618
10619 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
10620 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
10621 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
10622 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
10623 messes up because C++ code is compiled in 32-bit mode but linked
10624 in 64-bit mode.
10625
10626 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
10627
10628 More portability fixes for problems summarized by Nelson H. F. Beebe.
10629
10630 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
10631 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
10632
10633 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
10634 nodist_PROGRAMS, since we don't need to actually compile the
10635 example if we're just doing a plain 'make'. This avoids bothering
10636 the installer unnecessarily about problems due to weird C++
10637 compilers.
10638
10639 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
10640
10641 More portability fixes for problems summarized by Nelson H. F. Beebe.
10642
10643 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
10644 than #include "...", and compile with -I'.'. The old method was
10645 not portable, according to Posix and the C standard, and it does
10646 not work with Sun C 5.7, where previous #line directives affect
10647 the working directory used in later #include "..." directives.
10648
10649 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10650
10651 Various DJGGP specific issues in /djgpp
10652
10653 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
10654
10655 More portability fixes for problems summarized by Nelson H. F. Beebe.
10656
10657 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
10658 '#include <map>' works and that you can apply ++ to iterators.
10659
10660 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
10661
10662 Work around portability problems summarized by Nelson H. F. Beebe in
10663 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
10664
10665 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
10666 that '#include <string>' works.
10667
10668 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
10669 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
10670 "warning: sorry: semantics of inline function static data `const
10671 unsigned char translate_table[262]' are wrong (you'll wind up with
10672 multiple copies)".
10673
10674 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
10675 or, xor to not_, and_, or_, and xor_, respectively. This works
10676 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
10677 random system header somewhere that includes the equivalent of
10678 <iso646.h>.
10679
10680 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
10681 -E" works; it apparently doesn't work with PathScale EKO Compiler
10682 Suite Version 2.0.
10683
10684 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
10685
10686 During deterministic GLR operation, user actions should be able to
10687 influence the parse by changing yychar. To make this easier to fix and
10688 to make glr.c easier to evolve in general, don't maintain yytoken in
10689 parallel with yychar; just compute yytoken when needed.
10690 * tests/glr-regression.at (Incorrect lookahead during deterministic
10691 GLR): Check that setting yychar in a user action has the intended
10692 effect.
10693 * data/glr.c (yyGLRStack): Remove yytokenp member.
10694 (yyclearin): Don't set *yytokenp.
10695 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
10696 yychar rather than *yytokenp to determine the current lookahead.
10697 Compute yytoken locally when needed.
10698 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
10699 point to.
10700
10701 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
10702 after `--report' documentation.
10703
10704 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
10705
10706 * src/parse-gram.y (grammar_declaration): Location of printer
10707 symbol is @1, not list->location. Bug reported by twlevo.
10708 * tests/input.at (Incompatible Aliases): Adjust to above change.
10709
10710 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
10711
10712 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
10713 all the test at once. This makes the output easier to read in the
10714 normal case.
10715
10716 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
10717 got from <http://bro-ids.org/download.html>. The bug is that
10718 when two actions appeared in succession, the second one was
10719 scanned before the first one was added to the grammar rule
10720 as a midrule action. Bison then output the incorrect warning
10721 "parse.y:905.17-906.36: warning: unused value: $3".
10722 * src/parse-gram.y (BRACED_CODE, action): These are no longer
10723 associated with a value.
10724 (rhs): Don't invoke grammar_current_rule_action_append.
10725 (action): Invoke it here instead.
10726 * src/reader.c (grammar_midrule_action): Now extern.
10727 (grammar_current_rule_action_append): Don't invoke
10728 grammar_midrule_action; that is now the scanner's job.
10729 * src/reader.h (last_string, last_braced_code_loc):
10730 (grammar_midrule_action): New decls.
10731 * src/scan-gram.l (last_string): Now extern, sigh.
10732 (last_braced_code_loc): New extern variable.
10733 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
10734 rule already has an action.
10735 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
10736 * tests/input.at (AT_CHECK_UNUSED_VALUES):
10737 Add some tests to check that the above changes fixed the bug.
10738
10739 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
10740
10741 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
10742 All used changed. Check whether the symbol has a destructor,
10743 not whether it is typed.
10744 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
10745 that the values are still reported as unused. All line numbers
10746 adjusted.
10747
10748 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
10749
10750 Work around a bug in bro 0.8, which underparenthesizes its
10751 definition of YYLLOC_DEFAULT.
10752 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
10753 their arguments.
10754 * data/lalr1.cc: Likewise.
10755 * data/yacc.cc: Likewise.
10756
10757 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
10758
10759 Work around a bug in Pike 7.0, and give the Pike folks a
10760 better way to override the usual int widths.
10761 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
10762 user can override the types.
10763 (short): #undef, to work around a bug in Pike 7.0.
10764 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
10765 (union yyalloc.yyss): Use yytype_int16 rather than short.
10766 All uses changed.
10767 (yysigned_char): Remove.
10768 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
10769 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
10770 * tests/regression.at (Web2c Actions): Adjust to above changes.
10771
10772 * src/reader.c (check_and_convert_grammar): New function.
10773 (reader): Close the input file even if something went wrong during
10774 parsing. Minor file descriptor leak reported by twlevo.
10775
10776 * src/assoc.c (assoc_to_string): Use a default: abort (); case
10777 to pacify gcc -Wswitch-default.
10778 * src/scan-gram.l (adjust_location): Use a default: break; case
10779 to pacify gcc -Wswitch-default.
10780 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
10781 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
10782 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
10783 Move these decls to scan-skel.l, since they don't need to be
10784 visible elsewhere.
10785 * src/scan-skel.l: Accept the above decls.
10786 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
10787 is used.
10788
10789 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
10790
10791 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
10792 since we don't want to insist on a version number at the start
10793 of the changelog every time.
10794 * Makefile.maint: Sync from coreutils a bit better.
10795 (sc_trailing_blank): Renamed from sc_trailing_space.
10796 All uses changed.
10797 (sc_no_if_have_config_h, sc_require_config_h):
10798 (sc_prohibit_assert_without_use): New rules.
10799 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
10800 (sc_dd_max_sym_length): Fix leading spaces in rule.
10801 (sc_system_h_headers): Prefix with @.
10802 (sc_useless_cpp_parens, m4-check): Output line numbers.
10803 (changelog-check): Allow version only in head.
10804 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
10805 satisfy new Makefile.maint rule.
10806 * data/glr.c: Likewise.
10807 * data/glr.cc: Likewise.
10808 * data/lalr1.cc: Likewise.
10809 * data/yacc.c: Likewise.
10810 * lib/ebitsetv.c: Likewise.
10811 * lib/lbitset.c: Likewise.
10812 * lib/subpipe.c: Likewise.
10813 * lib/timevar.c: Likewise.
10814 * src/system.h: Likewise.
10815 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
10816 * djgpp/Makefile.maint: Add copyright notice.
10817 * djgpp/README.in: Likewise.
10818 * djgpp/config.bat: Likewise.
10819 * djgpp/config.site: Likewise.
10820 * djgpp/config_h.sed: Likewise.
10821 * djgpp/djunpack.bat: Likewise.
10822 * djgpp/config.sed: Fix copyright notice to match standard format.
10823 * djgpp/subpipe.h: Likewise.
10824 * lib/bitsetv-print.c: Likewise.
10825 * lib/bitsetv.c: Likewise.
10826 * lib/subpipe.h: Likewise.
10827 * lib/timevar.c: Likewise.
10828 * lib/timevar.h: Likewise.
10829 * djgpp/subpipe.c: Use standard recipe for config.h.
10830 * lib/abitset.c: Likewise.
10831 * lib/bitset.c: Likewise.
10832 * lib/bitset_stats.c: Likewise.
10833 * lib/bitsetv-print.c: Likewise.
10834 * lib/bitsetv.c: Likewise.
10835 * lib/ebitsetv.c: Likewise.
10836 * lib/get-errno.c: Likewise.
10837 * lib/lbitset.c: Likewise.
10838 * lib/subpipe.c: Likewise.
10839 * lib/timevar.c: Likewise.
10840 * lib/vbitset.c: Likewise.
10841 * tests/local.at: Likewise.
10842 * src/scan-gram.l: Don't include verify.h, since system.h does
10843 that for us.
10844 * .x-sc_require_config_h: New file.
10845 * .x-sc_unmarked_diagnostics: New file.
10846
10847 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
10848
10849 Be a bit more systematic about using 'abort'.
10850 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
10851 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
10852 Put 'default: abort ();' before some other case, to satisfy older
10853 pedantic compilers.
10854 * lib/bitset_stats.c (bitset_stats_init): Likewise.
10855 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
10856 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
10857 * src/conflicts.c (resolve_sr_conflict): Likewise.
10858 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
10859 (get_decision_str, get_orientation_str, get_node_alignment_str):
10860 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
10861 (get_linestyle_str, get_arrowstyle_str): Likewise.
10862 * src/conflicts.c (resolve_sr_conflict):
10863 Use a default case rather than one for the one remaining enum
10864 value, to catch invalid enum values as well.
10865 * src/lalr.c (set_goto_map, map_goto):
10866 Prefer "assert (FOO);" to "if (!FOO) abort ();".
10867 * src/nullable.c (nullable_compute, token_definitions_output):
10868 Likewise.
10869 * src/reader.c (packgram, reader): Likewise.
10870 * src/state.c (transitions_to, state_new, state_reduction_find):
10871 Likewise.
10872 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
10873 (symbol_pack): Likewise.
10874 * src/tables.c (conflict_row, pack_vector): Likewise.
10875 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
10876 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
10877 * src/system.h: Don't include <assert.h>.
10878 (assert): New macro.
10879
10880 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
10881 (Destructor Decl, Parser Function, Pure Calling):
10882 Describe rules for braces inside C code more carefully.
10883
10884 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
10885
10886 Fix some porting glitches found by Nelson H. F. Beebe.
10887 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
10888 compilers that don't understand that abort () does not return.
10889 * src/state.c (transitions_to): Likewise.
10890 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
10891 that '#include <cstdlib>' works.
10892 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
10893 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
10894 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
10895 for the benefit of some pre-C99 compilers.
10896
10897 * bootstrap: Undo changes to gnulib files that autoreconf made.
10898
10899 Minor fixups to get 'make maintainer-check' to work.
10900 * configure.ac: Don't use -Wnested-externs, as it's incompatible
10901 with the new verify.h implementation.
10902 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
10903 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
10904 * data/yacc.c (YYUSE): Likewise.
10905 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
10906 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
10907 * src/parse-gram.y (declaration): Don't pass a string constant
10908 to a function that expects char *, since GCC might complain
10909 about the constant value.
10910 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
10911 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
10912 before #defining them.
10913 * tests/glr-regression.at
10914 (Incorrectly initialized location for empty right-hand side in GLR):
10915 In yyerror, use the msg arg.
10916 (Corrupted semantic options if user action cuts parse):
10917 (Incorrect lookahead during deterministic GLR):
10918 (Incorrect lookahead during nondeterministic GLR):
10919 Don't name a local var 'index'; it shadows string.h's 'index'.
10920
10921 2006-01-19 Akim Demaille <akim@epita.fr>
10922
10923 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
10924 location, not just parts of it.
10925
10926 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
10927
10928 * NEWS: Document the fact that multiple %unions are now allowed.
10929 * doc/bison.texinfo (Union Decl): Likewise.
10930 * TODO: This feature is now implemented, so remove it from
10931 the wishlist.
10932
10933 * Makefile.maint: Merge with coreutils Makefile.maint.
10934 (CVS_LIST): Use build-aux version if available.
10935 (VERSION_REGEXP): New macro.
10936 (syntax-check-rules): Add sc_no_if_have_config_h,
10937 sc_prohibit_assert_without_use, sc_require_config_h,
10938 sc_useless_cpp_parens.
10939 (sc_obsolete_symbols): Check for O_NDELAY.
10940 (sc_dd_max_sym_length): Track coreutils.
10941 (sc_unmarked_diagnostics): Look in all files, not just *.c.
10942 (sc_useless_cpp_parens): New rule.
10943 (news-date-check): Look for version or today's date.
10944 (changelog-check): Don't require version number near head.
10945 (copyright-check): Use current year instead of hardwiring 2005.
10946 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
10947 (announcement): Add --gpg-key-ID.
10948
10949 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
10950 with "file system".
10951
10952 Avoid undefined behavior that addressed just before the start of an
10953 array. Problem reported by twlevo.
10954 * src/reader.c (packgram): Prepend a new sentinel before ritem.
10955 * src/lalr.c (build_relations): Rely on new sentinel.
10956 * src/gram.c (gram_free): Adjust to new sentinel.
10957
10958 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
10959
10960 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
10961 yylookaheadNeeds. All uses updated.
10962 (yysplitStack): Rename local yynewLookaheadStatuses to
10963 yynewLookaheadNeeds.
10964 * data/glr-regression.at (Incorrect lookahead during nondeterministic
10965 GLR): In comments, change `lookahead status' to `lookahead need'.
10966
10967 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10968
10969 * data/glr.c (yysplitStack): A little stylistic rewrite.
10970
10971 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10972
10973 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
10974
10975 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
10976
10977 * doc/bison.texinfo: Fix some typos.
10978 (GLR Semantic Actions): New subsection discussing special
10979 considerations because GLR semantic actions might be deferred.
10980 (Actions): Mention look-ahead usage of yylval.
10981 (Actions and Locations): Mention look-ahead usage of yylloc.
10982 (Special Features for Use in Actions): Add YYEOF entry and mention it
10983 in the yychar entry.
10984 In the yychar entry, remove mention of the local yychar case (pure
10985 parser) since this is irrelevant information when writing semantic
10986 actions and since it's already discussed in `Table of Symbols' where
10987 yychar is otherwise described as an external variable.
10988 In the yychar entry, don't call it the `current' look-ahead since it
10989 isn't when semantic actions are deferred.
10990 In the yychar and yyclearin entries, add note about deferred semantic
10991 actions.
10992 Add yylloc and yylval entries discussing look-ahead usage.
10993 (Look-Ahead Tokens): When discussing yychar, don't call it the
10994 `current' look-ahead, and do mention yylval and yylloc.
10995 (Error Recovery): Cross-reference `Action Features' when mentioning
10996 yyclearin.
10997 (Table of Symbols): In the yychar entry, don't call it the `current'
10998 look-ahead.
10999 In the yylloc and yylval entries, mention look-ahead usage.
11000
11001 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
11002
11003 * tests/glr-regression.at: Update copyright year to 2006.
11004
11005 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
11006
11007 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
11008 use during nondeterministic operation to track which stacks have
11009 actually needed the current lookahead.
11010 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
11011 Allocate, deallocate, resize, and otherwise shuffle space for
11012 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
11013 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
11014 appropriately during nondeterministic operation.
11015 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
11016 members to store the current lookahead to be used by the deferred
11017 user action.
11018 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
11019 from which the RHS is taken. Set the lookahead members of the new
11020 yySemanticOption according to the lookahead status for stack yyk.
11021 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
11022 yyaddDeferredAction.
11023 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
11024 members of yySemanticOption before invoking yyuserAction, and then set
11025 them back to their current values afterward.
11026 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
11027 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
11028 * tests/glr-regression.at: Remove `.' from the ends of recent test case
11029 titles for consistency.
11030 (Leaked merged semantic value if user action cuts parse): In order to
11031 suppress lint warnings, use arguments in merge function, and assign
11032 char value < 128 in main.
11033 (Incorrect lookahead during deterministic GLR): New test case.
11034 (Incorrect lookahead during nondeterministic GLR): New test case.
11035
11036 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
11037
11038 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
11039 !yyvaluep as signal that no semantic value is available to print.
11040 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
11041 to print a semantic value.
11042
11043 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
11044
11045 * tests/glr-regression.at: For consistency with my newer test cases,
11046 don't thank myself.
11047
11048 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
11049
11050 * data/glr.c (yyresolveValue): When merging semantic options, if at
11051 least one user action succeeds but a later one cuts the parse, then
11052 destroy the semantic value before returning rather than leaking it.
11053 (yyresolveStates): If a user action cuts the parse and thus
11054 yyresolveValue fails, ignore the (unset) semantic value rather than
11055 corrupting the yyGLRState, and empty the semantic options list since
11056 the user actions should have called all necessary destructors.
11057 Simplify code with YYCHK.
11058 * tests/glr-regression.at (Corrupted semantic options if user action
11059 cuts parse): New test case.
11060 (Undesirable destructors if user action cuts parse): New test case.
11061 Before applying any of this patch, this test case never actually failed
11062 for me... but only because the corrupted semantic options usually
11063 masked this bug.
11064 (Leaked merged semantic value if user action cuts parse): New test
11065 case.
11066
11067 2006-01-05 Akim Demaille <akim@epita.fr>
11068
11069 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
11070
11071 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
11072
11073 * data/c.m4 (b4_c_modern): New macro, with a new provision for
11074 _MSC_VER. Problem reported by Cenzato Marco.
11075 (b4_c_function_def): Use it.
11076 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
11077 b4_c_modern.
11078 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
11079 than rolling our own.
11080
11081 2006-01-04 Akim Demaille <akim@epita.fr>
11082
11083 Also warn about non-used mid-rule values.
11084 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
11085 member.
11086 (symbol_list_new): Adjust.
11087 * src/reader.c (symbol_typed_p): New.
11088 (grammar_rule_check): Use it.
11089 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
11090 Check its rule.
11091 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
11092 Use it.
11093 * tests/actions.at (Exotic Dollars): Adjust.
11094
11095 2006-01-04 Akim Demaille <akim@epita.fr>
11096
11097 * src/reader.c (grammar_midrule_action): If $$ is set in a
11098 mid-rule, move the `used' bit to its lhs.
11099 * tests/input.at (Unused values): New.
11100 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
11101
11102 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
11103
11104 * doc/bison.texinfo (Bison Options): Say more accurately what
11105 --yacc does.
11106 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
11107 about declarations in the grammar when in Yacc mode, as POSIX does
11108 not require a diagnostic when the grammar uses extensions.
11109
11110 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
11111
11112 Warn about dubious constructions like "%token T T".
11113 Reported by twlevo.
11114 * src/symtab.h (struct symbol.declared): New member.
11115 * src/symtab.c (symbol_new): Initialize it to false.
11116 (symbol_class_set): New arg DECLARING, specifying whether
11117 this is a declaration that we want to warn about, if there
11118 is more than one of them. All uses changed.
11119
11120 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
11121 Allow multiple %union directives, whose contents concatenate.
11122 * src/parse-gram.y (grammar_declaration): Likewise.
11123 Use muscle_code_grow, so that we don't need stype_line any more.
11124 All uses changed.
11125
11126 * src/muscle_tab.c (muscle_grow): Fix comment.
11127
11128 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
11129 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
11130 Update copyright year to 2006.
11131
11132 2006-01-03 Akim Demaille <akim@epita.fr>
11133
11134 Have glr.cc pass (some of) the calc.at tests.
11135 * data/glr.cc (b4_parse_param_orig): New.
11136 (b4_parse_param): Improve its definition, and bound it more
11137 clearly in the skeleton.
11138 (b4_epilogue): Append, instead of prepending, in order to keep
11139 #line consistency.
11140 Simplify the generation of auxiliary functions: locations and
11141 purity are mandated.
11142 (b4_global_tokens_and_yystype): Honor it.
11143 * data/location.cc (c++.m4): Don't include it.
11144 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
11145 and AT_SKEL_CC_IF.
11146 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
11147 AT_LALR1_CC_IF.
11148 Be sure to initialize the first position's filename.
11149 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
11150 mandated anyway.
11151 (AT_CHECK_CALC_GLR_CC): New.
11152 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
11153
11154 2006-01-02 Akim Demaille <akim@epita.fr>
11155
11156 * src/output.c (output_skeleton): Don't hard wire the inclusion of
11157 c.m4.
11158 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
11159 * data/glr.cc: Do not include stack.hh.
11160
11161 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
11162
11163 * data/glr.c: Reformat whitespace with tabs.
11164 (b4_lpure_formals): Remove this unused m4 macro.
11165 * tests/cxx-type.at: Reformat whitespace with tabs.
11166 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
11167 since it's a member. Rename type to isNterm for clarity.
11168
11169 2005-12-29 Akim <akim@sulaco.local>
11170
11171 Let glr.cc catch up with symbol_value_print.
11172 * data/glr.cc (b4_yysymprint_generate): Replace by...
11173 (b4_yy_symbol_print_generate): this.
11174 (yy_symbol_print, yy_symbol_value_print): Declare them.
11175
11176 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
11177
11178 * src/location.h (boundary): Note that a line or column equal
11179 to INT_MAX indicates an overflow.
11180 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
11181 (rule_length_overflow, increment_rule_length, add_column_width):
11182 New functions.
11183 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
11184 (<SC_BRACED_CODE>"}"):
11185 Use increment_rule_length rather than incrementing it by hand.
11186 (adjust_location, handle_syncline): Diagnose overflow.
11187 (handle_action_dollar, handle_action_at):
11188 Fix bug with monstrosities like $-2147483648.
11189 Remove now-unnecessary checks.
11190 (scan_integer): Verify assumptions and remove now-unnecessary checks.
11191 (convert_ucn_to_byte): Verify assumptions.
11192 (handle_syncline): New arg LOC. All callers changed.
11193 Don't store through a value derived from char const * pointer.
11194
11195 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
11196 GCC warnings.
11197
11198 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
11199
11200 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
11201 Remove unnecessary forward static decls.
11202
11203 2005-12-27 Akim Demaille <akim@epita.fr>
11204
11205 * src/reader.c (grammar_current_rule_check): Also check that $$
11206 is used.
11207 Take the rule to check as argument, hence rename as...
11208 (grammar_rule_check): this.
11209 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
11210 Rename as...
11211 (grammar_rule_begin, grammar_rule_end): these, for consistency.
11212 (grammar_midrule_action, grammar_symbol_append): Now static.
11213 * tests/torture.at (input): Don't rely on the default action
11214 being always performed.
11215 * tests/calc.at: "Set" $$ even when the action is "cut" with
11216 YYERROR or other.
11217 * tests/actions.at (Exotic Dollars): Instead of using unused
11218 values, check that the warning is issued.
11219
11220 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
11221
11222 * NEWS: Improve wording for unused-value warnings.
11223
11224 2005-12-22 Akim Demaille <akim@epita.fr>
11225
11226 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
11227 (b4_yysymprint_generate): Rename as...
11228 (b4_yy_symbol_print_generate): this.
11229 Generate yy_symbol_print instead of yysymprint.
11230 Generate also yy_symbol_value_print, and use it.
11231
11232 2005-12-22 Akim Demaille <akim@epita.fr>
11233
11234 * NEWS: Warn about unused values.
11235 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
11236 a `used' member.
11237 (symbol_list_n_get, symbol_list_n_used_set): New.
11238 (symbol_list_n_type_name_get): Use symbol_list_n_get.
11239 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
11240 * src/reader.c (grammar_current_rule_check): Check that values are
11241 used.
11242 * src/symtab.c (symbol_print): Accept 0.
11243 * tests/existing.at: Remove the type information.
11244 Empty the actions.
11245 Remove useless actions (beware of mid-rule actions: perl -000
11246 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
11247 * tests/actions.at (Exotic Dollars): Use unused values.
11248 * tests/calc.at: Likewise.
11249 * tests/glr-regression.at (No users destructors if stack 0 deleted):
11250 Likewise.
11251
11252 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
11253 rule_useful_p.
11254
11255 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
11256
11257 Undo 2005-12-01 tentative license wording change. The wording is
11258 still being reviewed by the lawyers, and we don't want to wait for
11259 them before publishing a test release. For now, revert to the
11260 previous wording.
11261 * NEWS: Undo 2005-12-01 change.
11262 * data/glr.c: Revert to previous license wording.
11263 * data/glr.cc: Likewise.
11264 * data/lalr1.cc: Likewise.
11265 * data/location.cc: Likewise.
11266 * data/yacc.c: Likewise.
11267
11268 * NEWS: Reword %destructor vs YYABORT etc.
11269 * data/glr.c: Use American spacing, for consistency.
11270 * data/glr.cc: Likewise.
11271 * data/lalr1.cc: Likewise.
11272 * data/yacc.c: Likewise.
11273 * data/yacc.c: Reformat comments slightly.
11274 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
11275 for consistency. Fix some spelling errors and reword recently-included
11276 text slightly.
11277 * tests/cxx-type.at: Cast results of malloc, for C++.
11278
11279 2005-12-21 Joel E. Denny <address@hidden>
11280
11281 * tests/cxx-type.at: Construct a tree, count the parents of shared
11282 nodes, and free each node once and only once. Previously, the memory
11283 for semantic values was leaked instead.
11284
11285 2005-12-21 Joel E. Denny <address@hidden>
11286
11287 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
11288 (yylval, yylloc): If pure, #define to yystackp->yyval and
11289 yystackp->yyloc similar to yychar and yynerrs.
11290 (yyparse): If pure, remove local yylval and yylloc. Add local
11291 yystackp to accommodate pure definitions of yylval and yylloc.
11292 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
11293 yylvalp and yyllocp to &yylval and &yylloc.
11294 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
11295 namespace. Previously, nerrs and char were missing, but lval and lloc
11296 weren't necessary.
11297 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
11298 yylvalp and yyllocp parameters since, if pure, these are now always
11299 accessible through yystackp. If not pure, they are still accessible
11300 globally.
11301 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
11302 `if (YYID (N))' to pacify lint.
11303
11304 2005-12-21 Akim Demaille <akim@epita.fr>
11305
11306 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
11307 destroy the RHS symbols of a rule.
11308 * data/yacc.c (yylen): Initialize to 0.
11309 Keep its value to the number of items to possibly shift.
11310 In particular, a regular successful parse that ends on YYFINAL by
11311 a (internal) YYACCEPT must not have yylen != 0.
11312 (yyerrorlab, yyreturn): Pop the RHS.
11313 Reorder a bit to emphasize the `shifting' bits of code.
11314 (YYPOPSTACK): Now accept a number of items to pop.
11315 * data/lalr1.cc: Likewise.
11316 * data/glr.c: Formatting changes.
11317 Use goto instead of fall through.
11318 * doc/bison.texinfo (Destructor Decl): Complete.
11319
11320 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
11321
11322 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
11323 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
11324 * djgpp/config.bat: Replace every occurence of the file name
11325 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
11326 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
11327 * djgpp/config.sed: Replace every occurence of the file name
11328 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
11329 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
11330 * djgpp/djunpack.bat: DJGPP specific file.
11331 * djgpp/fnchange.lst: DJGPP specific file.
11332 * djgpp/README.in: Add new information about how to unpack the bison
11333 source on MSDOS and other systems which have 8.3 file name restrictions
11334 using djunpack.bat and fnchange.lst.
11335
11336 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
11337
11338 * bootstrap (build_cvs_prefix): Remove; unused.
11339 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
11340 when getting gnulib.
11341
11342 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
11343
11344 * data/glr.c: Reorder typedef declarations for structs to match order
11345 of struct declarations.
11346 Rename yystack everywhere to yystackp except in yyparse where it's not
11347 a pointer.
11348 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
11349 consistency.
11350 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
11351 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
11352 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
11353 lint.
11354
11355 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
11356
11357 * tests/sets.at (Accept): Fix typos in regular expression used to
11358 sed out the final state number.
11359
11360 Work around portability problem on Solaris 10: flex-generated
11361 files include <stdio.h> before <config.h>, which messes up
11362 because the latter defines __EXTENSIONS__. Address the problem
11363 by creating two new little files that include <config.h> first,
11364 then include the flex-generated files. Rewrite everyone else
11365 to include <config.h> first, as well.
11366 * lib/timevar.c: Always include "config.h".
11367 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
11368 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
11369 (EXTRA_bison_SOURCES): New macro.
11370 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
11371 * src/system.h: Don't include config.h.
11372 * src/LR0.c: Include <config.h> first.
11373 * src/assoc.c: Likewise.
11374 * src/closure.c: Likewise.
11375 * src/complain.c: Likewise.
11376 * src/conflicts.c: Likewise.
11377 * src/derives.c: Likewise.
11378 * src/files.c: Likewise.
11379 * src/getargs.c: Likewise.
11380 * src/gram.c: Likewise.
11381 * src/lalr.c: Likewise.
11382 * src/location.c: Likewise.
11383 * src/main.c: Likewise.
11384 * src/muscle_tab.c: Likewise.
11385 * src/nullable.c: Likewise.
11386 * src/output.c: Likewise.
11387 * src/parse-gram.y: Likewise.
11388 * src/print.c: Likewise.
11389 * src/print_graph.c: Likewise.
11390 * src/reader.c: Likewise.
11391 * src/reduce.c: Likewise.
11392 * src/relation.c: Likewise.
11393 * src/state.c: Likewise.
11394 * src/symlist.c: Likewise.
11395 * src/symtab.c: Likewise.
11396 * src/tables.c: Likewise.
11397 * src/uniqstr.c: Likewise.
11398 * src/vcg.c: Likewise.
11399
11400 * src/parse-gram.y: Fix minor problems uncovered by lint.
11401 (current_lhs, current_lhs_location): Now static.
11402 (current_assoc): Remove unused variable.
11403
11404 Cleanups so that Bison-generated parsers have less lint.
11405 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
11406 Prepend /*ARGSUSED*/, for lint's sake.
11407 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
11408 definition if 'lint' is defined.
11409 (YYID): New macro (or function, if lint).
11410 All uses of /*CONSTCOND*/0 replaced by YYID(0).
11411 * data/yacc.c: Likewise.
11412 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
11413 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
11414 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
11415 is C++ only.
11416 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
11417 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
11418 Use YYID(0) rather than 0, for lint.
11419 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
11420 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
11421
11422 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
11423
11424 * tests/glr-regression.at
11425 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11426 Close memory leak reported by twlevo.
11427
11428 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
11429
11430 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
11431 all stacks.
11432 (yyparse): Iterate another stack in order to call user destructors.
11433 * tests/glr-regression.at (No users destructors if stack 0 deleted):
11434 New test case.
11435 (Duplicated user destructor for lookahead): This test now is expected
11436 to succeed.
11437
11438 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
11439
11440 * NEWS: Document the following change.
11441 * data/yacc.c: Say "parser skeleton" rather than "file", since
11442 it's no longer just a file.
11443 * data/glr.c: Grant a special exception for C GLR parsers, that
11444 reads like the already-existing exception for C LALR(1) parsers.
11445 * data/glr.cc: Likewise.
11446 * data/lalr1.cc: Likewise.
11447 * data/location.cc: Likewise.
11448 * data/yacc.c: Reword the "written by" statement to clarify that
11449 it was the parser skeleton, not the entire output file.
11450 * data/glr.c: Written by Paul Hilfinger.
11451 * data/glr.cc: Written by Akim Demaille.
11452 * data/lalr1.cc: Likewise.
11453
11454 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
11455
11456 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
11457 Fix typos in previous change that broke 'make check'.
11458 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
11459 supported in C.
11460 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
11461 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
11462 We can revert this once things settle down.
11463
11464 * src/conflicts.c (conflicts_print): Don't print file name twice
11465 when %expect fails because there were no conflicts.
11466 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
11467 change.
11468 * tests/conflicts.at (%expect not enough, %expect too much):
11469 (%expect with reduce conflicts): Adjust to new behavior.
11470
11471 2005-11-18 Akim Demaille <akim@epita.fr>
11472
11473 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
11474 errors.
11475 * NEWS: Document this.
11476 * doc/bison.texinfo (Expect Decl): Likewise.
11477
11478 2005-11-16 Akim Demaille <akim@epita.fr>
11479
11480 Generalize the display of semantic values and locations in traces.
11481 * data/glr.c (yy_reduce_print): Fix indices (again).
11482 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
11483 literal integers.
11484 * data/lalr1.cc (yyreduce_print): Rename as...
11485 (yy_reduce_print): this.
11486 Display values and locations.
11487 * data/yacc.c (yy_reduce_print): Likewise.
11488 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
11489 (yysymprint): Move higher to be visible from yy_reduce_print).
11490 (yyparse): Adjust.
11491 * tests/calc.at: Adjust the expected length of the traces.
11492
11493 2005-11-14 Akim Demaille <akim@epita.fr>
11494
11495 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
11496 from 1 to N, while values and location start at 0.
11497 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
11498
11499 2005-11-14 Akim Demaille <akim@epita.fr>
11500
11501 * data/glr.c (yy_reduce_print): Fix the $ number.
11502
11503 2005-11-14 Akim Demaille <akim@epita.fr>
11504
11505 "Use" parse parameters.
11506 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
11507 * data/glr.c, data/glr.cc: Use them.
11508 * data/glr.c (YYUSE): Have a C++ definition that supports
11509 non-pointer types.
11510
11511 2005-11-14 Akim Demaille <akim@epita.fr>
11512
11513 * data/glr.c (yyexpandGLRStack): Declare only if defined.
11514
11515 2005-11-14 Akim Demaille <akim@epita.fr>
11516
11517 * data/glr.cc: New.
11518 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
11519
11520 2005-11-12 Akim Demaille <akim@epita.fr>
11521
11522 Let position and location be PODs.
11523 * data/location.cc (position::initialize, location::initialize): New.
11524 (position::position, location::location): Define only if
11525 b4_location_constructors is defined.
11526 * data/lalr1.cc (b4_location_constructors): Define it for backward
11527 compatibility.
11528 * doc/bison.texinfo (Initial Action Decl): Use initialize.
11529
11530 2005-11-12 Akim Demaille <akim@epita.fr>
11531
11532 * data/lalr1.cc: Move the body of the ctor and dtor into the
11533 parser file (instead of the header).
11534 Wrap the implementations in a "namespace yy".
11535
11536 2005-11-12 Akim Demaille <akim@epita.fr>
11537
11538 Have glr.c include its header file when created.
11539 * data/glr.c (b4_shared_declarations): New.
11540 Output them verbatim in the parser if !%defines, otherwise
11541 output then in the header file, and include it instead.
11542
11543 2005-11-11 Akim Demaille <akim@epita.fr>
11544
11545 * data/glr.c: Comment changes.
11546
11547 2005-11-11 Akim Demaille <akim@epita.fr>
11548
11549 When yydebug, report semantic and location values for reductions.
11550 * data/glr.c (yy_reduce_print): Report the semantic values and the
11551 locations.
11552 (YY_REDUCE_PRINT): Adjust.
11553 (yyglrReduce): Use them.
11554 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
11555 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
11556 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
11557 traces.
11558
11559 2005-11-10 Akim Demaille <akim@epita.fr>
11560
11561 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
11562 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
11563 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
11564
11565 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
11566
11567 * m4/cxx.m4, examples/Makefile.am: Don't build
11568 examples/calc++ if no C++ compiler is available. (trivial change)
11569
11570 2005-11-09 Akim Demaille <akim@epita.fr>
11571
11572 * src/scan-skel.l: Use a couple of asserts.
11573
11574 2005-11-03 Akim Demaille <akim@epita.fr>
11575
11576 In some (weird) cases, the final state number is incorrect.
11577 Reported by Alexandre Duret-Lutz.
11578 * src/LR0.c (state_list_append): Remove the computation of
11579 final_state.
11580 (save_reductions): Do it here.
11581 (get_state): Alpha conversion.
11582 (generate_states): Use a for loop.
11583 * src/gram.h (item_number_is_rule_number)
11584 (item_number_is_symbol_number): New.
11585 * src/state.c: Use assert.
11586 * src/system.h: Include assert.h.
11587 * tests/sets.at (Accept): New.
11588
11589 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11590
11591 * data/glr.c (yyfill): Adjust comment.
11592 (yyresolveAction): Initialize default location properly
11593 for empty right-hand sides.
11594 (yydoAction): Ditto.
11595 Add comment explaining apparently dead code.
11596 * tests/glr-regression.at
11597 (Incorrectly initialized location for empty right-hand side in GLR):
11598 New test.
11599
11600 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
11601
11602 * bootstrap (cleanup_gnulib): New function. Use it to clean up
11603 gnulib when interrupted. This fixes some race conditions and
11604 works around some portability problems (one noted by Paul
11605 Hilfinger).
11606
11607 2005-10-22 Akim <akim@epita.fr>
11608
11609 * Makefile.cfg: Adjust to config -> build-aux.
11610 Reported by twledo.
11611
11612 2005-10-21 Akim Demaille <akim@epita.fr>
11613
11614 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
11615 the %parse-params.
11616 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
11617 * data/yacc.c (b4_Pure_if): Rename as...
11618 (b4_yacc_pure_if): this.
11619 (YY_SYMBOL_PRINT, yyparse): Adjust.
11620 * doc/bison.texinfo: Formatting changes.
11621
11622 2005-10-21 Akim Demaille <akim@epita.fr>
11623
11624 Finish the transition config -> build-aux.
11625 * configure.ac, Makefile.am: Use build-aux.
11626 * config/prev-version, config/announce-gen, config/Makefile.am:
11627 Move to...
11628 * build-aux/prev-version, build-aux/announce-gen,
11629 * build-aux/Makefile.am: here.
11630
11631 2005-10-14 Akim Demaille <akim@epita.fr>
11632
11633 * examples/calc++/test: Use set -x only when VERBOSE.
11634
11635 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
11636
11637 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
11638 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
11639
11640 2005-10-13 Akim Demaille <akim@epita.fr>
11641
11642 * src/scan-skel.l: Output the base name parts of the parser and
11643 header file names.
11644 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
11645 additional checks.
11646 Use this to exercise C++ outputs in subdirs.
11647 Reported by Oleg Smolsky.
11648
11649 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
11650
11651 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
11652 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
11653 Problem reported by John P. Hartmann.
11654 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
11655 already defined it.
11656
11657 2005-10-12 Akim Demaille <akim@epita.fr>
11658
11659 * src/parse-gram.y (version_check): Exit 63 to please missing
11660 (stands for "version mismatch).
11661 * tests/input.at, doc/bison.texinfo: Adjust.
11662
11663 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
11664
11665 Work around portability problems with Visual Age C compiler
11666 (xlc and xlC_r) reported by John P. Hartmann.
11667 * data/location.cc (initial_column, initial_line): Remove.
11668 All uses replaced by 0 and 1.
11669 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
11670 that xlc complains about.
11671 * src/scan-skel.l (skel_wrap): Likewise.
11672 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
11673 as __STDC__.
11674 * data/yacc.c (YYMODERN_C): New macro, which also looks at
11675 __STDC_VERSION__. Use it everywhere instead of looking at
11676 __STDC__ and __cplusplus.
11677
11678 2005-10-10 Akim Demaille <akim@epita.fr>
11679
11680 * examples/calc++/test: Be quiet unless VERBOSE.
11681
11682 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
11683
11684 * data/c.m4 (yydestruct, yysymprint):
11685 Use YYUSE instead of casting to void.
11686 * data/glr.c (YYUSE): New macro.
11687 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
11688 Use it instead of rolling our own.
11689 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
11690 (YYCHK1):
11691 Use /*CONSTCOND*/ to suppress lint warnings.
11692 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
11693 (YY_STACK_PRINT): Use 'false' not '0'.
11694 (YYUSE): New macro.
11695 (yysymprint_, yydestruct_): Use it instead of rolling our own.
11696 * data/yacc.c (YYUSE): New macro.
11697 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
11698 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
11699 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
11700
11701
11702 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
11703 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
11704
11705 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
11706
11707 Undo the parts of the unlocked-I/O change that substituted
11708 putc or puts for printf. This might hurt performance a bit,
11709 but some people prefer the printf style.
11710 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
11711 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
11712 All uses replaced by YYFPRINTF and YYDPRINTF.
11713 * data/yacc.c: Likewise.
11714 * lib/bitset.c (bitset_print): Likewise.
11715 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
11716 putc and puts.
11717 * lib/lbitset.c (debug_lbitset): Likewise.
11718 * src/closure.c (print_firsts, print_fderives): Likewise.
11719 * src/gram.c (grammar_dump): Likewise.
11720 * src/lalr.c (look_ahead_tokens_print): Likewise.
11721 * src/output.c (escaped_output): Likewise.
11722 (user_actions_output): Break apart two printfs.
11723 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
11724 * src/reduce.c (reduce_print): Likewise.
11725 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
11726 * src/system.h: Include unlocked-io.h rathe than stdio.h.
11727
11728 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
11729 Use assignments rather than casts-to-void to suppress
11730 unused-variable warnings. This pacifies 'lint'.
11731 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
11732 unused-variable warnings.
11733
11734 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
11735
11736 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
11737
11738 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
11739
11740 Use unlocked I/O for a minor performance improvement on hosts like
11741 GNU/Linux and Solaris that support unlocked I/O. The basic idea
11742 is to use the gnlib unlocked-io module, and to prefer putc and
11743 puts to printf when either will work (since the latter doesn't
11744 come in an unlocked flavor).
11745 * bootstrap (gnulib_modules): Add unlocked-io.
11746 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
11747 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
11748 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
11749 and similarly for puts and putc and printf.
11750 * data/yacc.c: Likewise.
11751 * lib/bitset.c (bitset_print): Likewise.
11752 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
11753 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
11754 to printf.
11755 * lib/lbitset.c (debug_lbitset): Likewise.
11756 * src/closure.c (print_firsts, print_fderives): Likewise.
11757 * src/gram.c (grammar_dump): Likewise.
11758 * src/lalr.c (look_ahead_tokens_print): Likewise.
11759 * src/output.c (escaped_output): Likewise.
11760 (user_actions_output): Coalesce two printfs.
11761 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
11762 * src/reduce.c (reduce_print): Likewise.
11763 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
11764 * src/system.h: Include unlocked-io.h rather than stdio.h.
11765
11766 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
11767 this confuses xgettext.
11768
11769 2005-10-02 Akim Demaille <akim@epita.fr>
11770
11771 * bootstrap (gnulib_modules): Add strverscmp.
11772 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
11773 * m4/.cvsignore: Add strverscmp.m4.
11774 * src/parse-gram.y (%require): New token, new rule.
11775 (version_check): New.
11776 * src/scan-gram.l (%require): Adjust.
11777 * tests/input.at (AT_REQUIRE): New.
11778 Use it.
11779 * doc/bison.texinfo (Require Decl): New.
11780 (Calc++ Parser): Use %require.
11781
11782 2005-10-02 Akim Demaille <akim@epita.fr>
11783
11784 * data/location.cc: New.
11785
11786 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
11787 Akim Demaille <akim@epita.fr>
11788
11789 Make sure -odir/foo.cc creates dir/location.hh etc.
11790 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
11791 (spec_file_prefix, spec_verbose_file, spec_graph_file)
11792 (spec_defines_file): Now const.
11793 (dir_prefix): New.
11794 (short_base_name): Remove.
11795 * src/files.c: Adjust.
11796 (dirname.h): Include.
11797 (base_name): Don't prototype it.
11798 (finput): Remove, duplicates gram_in.
11799 (full_base_name, short_base_name): Replace by...
11800 (all_but_ext, all_but_tab_ext): these.
11801 (compute_base_names): Rename as...
11802 (compute_file_name_parts): this.
11803 Update to compute the new variables, including dir_prefix.
11804 Adjust dependencies.
11805 * src/output.c (prepare): Output them.
11806 * src/reader.c: Adjust to use gram_in, not finput.
11807 * src/scan-skel.l (@dir_prefix@): New.
11808
11809 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
11810
11811 * lib/subpipe.c: New function end_of_output_subpipe() added
11812 to allow support for non-posix systems. This is a no-op function
11813 for posix systems.
11814
11815 * lib/subpipe.h: New function end_of_output_subpipe() added
11816 to allow support for non-posix systems. This is a no-op function
11817 for posix systems.
11818
11819 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
11820 handle the lack of pipe/fork functionality on non-posix systems.
11821
11822 * djgpp/Makefile.maint: DJGPP specific file.
11823
11824 * djgpp/README.in: DJGPP specific file.
11825
11826 * djgpp/config.bat: DJGPP specific configuration file.
11827
11828 * djgpp/config.sed: DJGPP specific configuration file.
11829
11830 * djgpp/config.site: DJGPP specific configuration file.
11831
11832 * djgpp/config_h.sed: DJGPP specific configuration file.
11833
11834 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
11835
11836 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
11837
11838 2005-10-02 Akim Demaille <akim@epita.fr>
11839
11840 * data/location.cc: New, extract from...
11841 * data/lalr1.cc: here.
11842 (location.hh): Include it after the user prologue, in case the
11843 filename type is defined by the user.
11844 Forward declation location and position before the pre-prologue.
11845 (yyresult_): Rename as...
11846 (yyresult): this, it's a local variable, not an attribute.
11847 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
11848
11849 2005-10-01 Akim Demaille <akim@epita.fr>
11850
11851 * examples/extexi: Restore the #line generation.
11852
11853 2005-09-30 Akim Demaille <akim@epita.fr>,
11854 Alexandre Duret-Lutz <adl@gnu.org>
11855
11856 Move the token type and YYSTYPE in the parser class.
11857 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
11858 (parser::token): New, from the moved free definition of tokens.
11859 (parser::semantic_value): Now a full definition instead of an
11860 indirection to YYSTYPE.
11861 (b4_post_prologue): No longer included in the header file, but
11862 in the implementation file.
11863 * doc/bison.texi (C+ Language Interface): Update.
11864 * src/parse-gram.y: Support unary %define.
11865 * tests/actions.at: Define global_tokens_and_yystype for backward
11866 compatibility until we update the tests.
11867 * tests/calc.at: Idem.
11868 (first_line, first_column, last_line, last_column): Define for lalr1.cc
11869 to simplify the code.
11870
11871 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
11872
11873 Port to SunOS 4.1.4, which lacks strtoul and strerror.
11874 Ah, the good old days! Problem reported by Peter Klein.
11875 * bootstrap (gnulib_modules): Add strerror, strtoul.
11876 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
11877 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
11878
11879 2005-09-29 Akim Demaille <akim@epita.fr>
11880
11881 * data/c.m4 (b4_error_verbose_if): New.
11882 * data/lalr1.cc: Use it.
11883 (YYERROR_VERBOSE_IF): Remove.
11884 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
11885 parser members, replaced by...
11886 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
11887 local variables.
11888 (yysyntax_error_): Takes the state number as argument.
11889 (yyreduce_print_): Use the argument yyrule, not the former
11890 attribute yyn_.
11891
11892 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
11893
11894 * bootstrap (gnulib_modules): Add verify.
11895 * lib/.cvsignore: Add verify.h.
11896 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
11897 * src/system.h (verify): Remove.
11898 Include verify.h instead.
11899 * src/tables.c (tables_generate): Use new API for 'verify'.
11900
11901 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
11902
11903 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
11904 local variables whose names begin with 'yy'.
11905 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
11906 Trivial changes from Joel E. Denny.
11907
11908 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
11909 it itself.
11910 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
11911 don't use alloca any more.
11912
11913 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
11914 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
11915 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
11916 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
11917 to match yacc.c, to test more hosts.
11918
11919 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
11920
11921 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
11922 doesn't affect behavior.
11923 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
11924 Solaris, AIX, MSC.
11925 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
11926 This works a bit better with glibc, if user code has already included
11927 stdlib.h.
11928 * doc/bison.texinfo (Bison Parser): Document that users can't
11929 arbitrarily use malloc and free for other purposes. Document
11930 that <alloca.h> and <malloc.h> might be included.
11931 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
11932 user must declare alloca.
11933
11934 * HACKING (release): Forwarn the Translation Project about
11935 stable releses.
11936
11937 2005-09-20 Akim Demaille <akim@epita.fr>
11938
11939 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
11940
11941 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
11942
11943 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
11944 (YYSTACK_ALLOC_MAXIMUM): Use it.
11945 (yysyntax_error): New function.
11946 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
11947 multiple syntax errors are reported, and alloca is being used.
11948 Instead, reallocate buffers twice as big each time, so that
11949 we waste at most half the allocated memory. Start with a small
11950 (128-byte) buffer that will suffice in most cases anyway.
11951 Use yysyntax_error to do most of the work.
11952
11953 * doc/bison.texinfo (Error Reporting, Table of Symbols):
11954 yynerrs is the number of errors reported, not the number of
11955 errors encountered.
11956
11957 * tests/glr-regression.at (Duplicated user destructor for lookahead):
11958 Mark it as expected to fail.
11959 Cast result of malloc; problem reported by twlevo@xs4all.nl.
11960 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
11961 Don't start user-code symbols with "yy", to avoid name space problems.
11962
11963 2005-09-19 Akim Demaille <akim@epita.fr>
11964
11965 Remove the traits, failed experiment.
11966 It never proved useful, and anyway because of the current
11967 definition, it was not possible to have several specialization of
11968 this traits, making it useless.
11969 * data/lalr1.cc (yy:traits): Remove.
11970 Inline its definitions in the parser class.
11971
11972 2005-09-19 Akim Demaille <akim@epita.fr>
11973
11974 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
11975 least Mac OSX with a /usr/local install of gettext.
11976
11977 2005-09-19 Akim Demaille <akim@epita.fr>
11978
11979 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
11980 and yytoken for similarity with the other skeletons.
11981
11982 2005-09-19 Akim Demaille <akim@epita.fr>
11983
11984 * NEWS, configure.ac: update version number to 2.1a.
11985
11986 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
11987
11988 * NEWS: Version 2.1.
11989
11990 * NEWS: Remove notice of yytname change, since it was never in an
11991 official release.
11992 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
11993 diagnostic.
11994 * src/output.c (prepare): Likewise.
11995 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
11996 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
11997 is not defined. This is an awful hack, but it's enough for now.
11998 All callers changed.
11999 * tests/glr-regression-at (make_value): Args are const pointers now,
12000 to avoid GCC warning.
12001 (Duplicated user destructor for lookahead): New test. Currently
12002 skipped. It fails on my host but I'm not sure it'll always fail.
12003
12004 2005-09-16 Akim Demaille <akim@epita.fr>
12005
12006 * src/symtab.h (struct symbol): Declare the printer and destructor
12007 as const, to avoid accidental calls to free.
12008 (symbol_destructor_set, symbol_printer_set): Adjust.
12009 * src/symtab.c: Adjust.
12010
12011 2005-09-16 Akim Demaille <akim@epita.fr>
12012
12013 * data/c.m4 (b4_token_enums): New.
12014 (b4_token_defines): Rename as...
12015 (b4_token_enums_defines): this.
12016 (b4_token_defines): New, output only the #defines.
12017 * data/yacc.c, data/glr.c: Adjust.
12018 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
12019 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
12020 as default values.
12021
12022 2005-09-16 Akim Demaille <akim@epita.fr>
12023
12024 * data/lalr1.cc (yylex_): Remove, inline its code.
12025 (yyreport_syntax_error_): Remove, replaced by...
12026 (yysyntax_error_): this which returns a string and leaves to the
12027 caller the call to the users' error function.
12028 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
12029 Move from members of the parser object...
12030 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
12031 to local variables of the parse function.
12032
12033 2005-09-16 Akim Demaille <akim@epita.fr>
12034
12035 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
12036 since it's in Bison's name space.
12037
12038 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
12039
12040 * data/glr.c (yyresolveValue): Add default case to pacify
12041 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
12042
12043 * NEWS: Document when yyparse started to return 2.
12044 * doc/bison.texinfo (Parser Function): Document when yyparse
12045 returns 2.
12046
12047 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
12048 (b4_filename_type): Renamed back from b4_file_name_type. All uses
12049 changed.
12050 (class position): file_name -> filename (reverting). All uses changed.
12051
12052 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
12053
12054 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
12055 do anything if $@ exists. This reverts part of the 2005-07-07
12056 patch.
12057
12058 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
12059
12060 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
12061 contains obsolete information and isn't worth distributing as a
12062 separate file anyway.
12063 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
12064 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
12065 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
12066 (yyparse): Abort if user code uses longjmp to throw an unexpected
12067 value.
12068
12069 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
12070
12071 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
12072 Suggested by twlevo@xs4all.nl.
12073
12074 * data/glr.c (YYCHK1): Do not assume YYE is in range.
12075 This avoids a diagnostic from gcc -Wswitch-enum.
12076 Problem reported by twlevo@xs4all.nl.
12077
12078 * doc/bison.texinfo: Don't use "filename", as per GNU coding
12079 standards. Use "file name" or "file" or "name", depending on
12080 the context.
12081 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
12082 not to hack/foo.tab.c.
12083 (Calc++ Top Level): 2nd arg of main is not const.
12084 * data/glr.c: b4_filename -> b4_file_name.
12085 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
12086 All uses changed.
12087 (class position): filename -> file_name. All uses changed.
12088 * data/yacc.c: b4_filename -> b4_file_name.
12089 * lib/bitset.h: filename -> file_name in local vars.
12090 * lib/bitset_stats.c: Likewise.
12091 * src/files.c: Likewise.
12092 * src/scan-skel.l ("@output ".*\n): Likewise.
12093 * src/files.c (file_name_split): Renamed from filename_split.
12094 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
12095
12096 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
12097
12098 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
12099 to accommodate latest gnulib.
12100
12101 * tests/glr-regression.at (Duplicate representation of merged trees):
12102 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
12103
12104 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
12105 needed.
12106
12107 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
12108
12109 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
12110 All uses changed. Invoke user destructor after an error during a
12111 split parse (trivial change from Joel E. Denny).
12112
12113 * tests/glr-regression.at
12114 (User destructor after an error during a split parse): New test case.
12115 Problem reported by Joel E. Denny in:
12116 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
12117
12118 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
12119
12120 * README-cvs: Give URLs for recommended tools.
12121 Mention Gzip version problem, and bootstrapping issues.
12122 Remove troubleshooting section, as it's somewhat obsolete.
12123
12124 * bootstrap (no_cache): New var, to accommodate different wget
12125 variants. Use it instead of '-C off'. Problem reported by
12126 twlevo@xs4all.nl.
12127
12128 * data/glr.c (yydestroyStackItem): New function.
12129 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
12130 debugging information. Problem reported by Joel E. Denny.
12131
12132 2005-08-25 Akim Demaille <akim@epita.fr>
12133
12134 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
12135
12136 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
12137
12138 * data/glr.c (yyrecoverSyntaxError, yyreturn):
12139 Don't invoke destructor on unresolved entries.
12140 * tests/glr-regression.at
12141 (User destructor for unresolved GLR semantic value): New test case.
12142 Problem reported by Joel E. Denny in:
12143 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
12144
12145 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
12146
12147 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
12148 Add strnlen.c.
12149 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
12150 lib-prefix.m4, po.m4.
12151
12152 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
12153 in yydestruct diagnostic, since it might not be an error.
12154 Problem reported by Joel Denny near end of
12155 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
12156 * data/lalr1.cc (yyerturn): Likewise.
12157 * data/yacc.c (yyreturn): Likewise.
12158 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
12159
12160 * src/files.c: Remove obsolete FIXME comment.
12161
12162 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
12163 with the other templates, and to fix bogus run-on messages such
12164 as the one reported at the end of
12165 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
12166 All callers changed to avoid the newline.
12167 (yyprocessOneStack): Output two lines rather than one, to accommodate
12168 the above change. This changes the debug output format slightly.
12169
12170 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
12171 reported by Joel E. Denny in
12172 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
12173 (trivial change).
12174 * tests/glr-regression.at (Duplicate representation of merged trees):
12175 New test, from Joel E. Denny in:
12176 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
12177 * THANKS: Add Joel E. Denny.
12178
12179 * configure.ac (AC_INIT): Bump to 2.0c.
12180
12181 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
12182
12183 * NEWS: Version 2.0b.
12184
12185 * Makefile.am (SUBDIRS): Put examples before tests, so that
12186 "make check" doesn't finish with "All 1 tests passed".
12187
12188 * tests/regression.at (Token definitions): Don't rely on
12189 AT_PARSER_CHECK for data that contains backslashes. It currently
12190 uses 'echo', and 'echo' isn't portable if its argument contains
12191 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
12192 that the byte '\0xff' is not printable in the C locale; it is,
12193 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
12194 not printable, so use '\0x81' to test.
12195
12196 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
12197 version of GCC, since the macro is used with non-GCC compilers.
12198
12199 Fix core dump reported by Pablo De Napoli in
12200 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
12201 * tests/regression.at (Invalid inputs with {}): New test.
12202 * src/parse-gram.y (token_name): Translate type before using
12203 it as an index.
12204
12205 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
12206 the user's name space. All uses changed to __attribute__
12207 ((__unused__)).
12208 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
12209 Add __attribute__ ((__noreturn__)).
12210
12211 * etc/clcommit: Remove. We weren't using it, and it failed
12212 "make maintainer-distcheck".
12213 * Makefile.maint: Merge from coreutils.
12214 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
12215 (syntax-check-rules): Change list of rules as described below.
12216 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
12217 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
12218 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
12219 (sc_trailing_space): New rules.
12220 (sc_xalloc_h_in_src): Remove.
12221 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
12222 (sc_space_tab, sc_error_exit_success, sc_changelog):
12223 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
12224 (makefile-check, po-check, author_mark_check):
12225 (makefile_path_separator_check, copyright-check):
12226 Use grep -n, to make it easier to find violations.
12227 Use CVS_LIST and CVS_LIST_EXCEPT.
12228 (header_regexp, h_re): Remove.
12229 (dd_c): New macro.
12230 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
12231 (my-distcheck): Use more-modern GCC flags.
12232 (signatures, %.asc): Remove.
12233 (rel-files, announcement): Remove signatures.
12234 Restore old updating code, even though we don't use it, so
12235 that we're the same as coreutils.
12236 (alpha, beta, major): Depend on news-date-check.
12237 Make the upload commands.
12238
12239 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
12240 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
12241 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
12242 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
12243 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
12244 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
12245 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
12246 * tests/sets.at: Likewise.
12247
12248 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
12249 we comment out the Autoconf version number.
12250 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
12251 it's error-prone and "make maintainer-distcheck" rejects it.
12252
12253 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
12254 Indent calls to "error" to pacify "make maintainer-distcheck",
12255 when the calls are not intended to be translated.
12256 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
12257
12258 * src/Makefile.am (DEFS): Use +=, to pacify
12259 "make maintainer-distcheck".
12260 (bison_SOURCES): Add scan-skel.h.
12261 (sc_tight_scope): New rule, from coreutils.
12262
12263 * src/files.c (src_extension, header_extension):
12264 Now static, not extern.
12265 * src/getargs.c (short_options): Likewise.
12266 * src/muscle_tab.c (muscle_table): Likewise.
12267 * src/parse-gram.y (current_class, current_type, current_prec):
12268 Likewise.
12269 * src/reader.c (grammar_end, previous_rule_end): Likewise.
12270 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
12271 * src/main.c (main): Cast bindtextdomain and textdomain calls to
12272 void, to avoid warning when NLS is disabled.
12273 * src/output.c: Include scan-skel.h.
12274 (scan_skel): Remove decl, since scan-skel.h does this.
12275 (output_skeleton):
12276 Indent calls to "error" to pacify "make maintainer-distcheck".
12277 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
12278 * src/reader.h (gram_end, gram_lineno): New decls to pacify
12279 "make maintainer-distcheck".
12280 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
12281 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
12282 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
12283 (skel_lex_destroy, scan_skel): Move these decls to...
12284 * src/scan-skel.h: New file.
12285 * src/uniqstr.c (uniqstr_assert):
12286 Indent calls to "error" to pacify "make maintainer-distcheck".
12287
12288 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
12289 not @VAR@.
12290
12291 * tests/torture.at: Revamp to avoid misuse of atoi that
12292 "make maintainer-distcheck" complained about.
12293
12294 * examples/extexi (message): Don't print a message more than once,
12295 and omit line-number decoration that makes Emacs compile think
12296 that informative messages are worth worrying about.
12297
12298 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
12299
12300 * configure.ac: Update version number.
12301
12302 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
12303 accidentally.
12304 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
12305 autogenerated by the maintainer.
12306 * examples/calc++/.cvsignore: Add *.yy.
12307
12308 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
12309 * lib/bitset_stats.c (bitset_stats_init): Likewise.
12310 * lib/bitsetv.c (bitsetv_alloc): Likewise.
12311
12312 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
12313
12314 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
12315 from maintainer-distcheck about casting the argument of 'free'.
12316
12317 * NEWS: Mention recent yytname changes.
12318 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
12319
12320 * bootstrap: For translations that have not yet been upgraded to
12321 the new runtime-po domain, prime the pump by extracting the
12322 relevant strings from the obsolete translations. This code can be
12323 removed once the bison-runtime domain has been translated by each
12324 team.
12325
12326 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
12327 now that token names are already quoted.
12328
12329 Fix problem reported by Anthony Heading.
12330 * data/glr.c (YYTOKEN_TABLE): New macro.
12331 (yytname): Define if YYTOKEN_TABLE.
12332 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
12333 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
12334 (YYERROR_VERBOSE): Define the same way the other skeletons do.
12335 * src/output.c (prepare_symbols): Output token_table_flag.
12336
12337 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
12338
12339 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
12340 again if the first call fails.
12341
12342 * data/glr.c (yytnamerr): New function.
12343 (yyreportSyntaxError): Use it to dequote most string literals.
12344 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
12345 with other skeletons. All uses changed.
12346 (yytnameerr_): New function.
12347 (yyreport_syntax_error): Use it to dequote most string literals.
12348 * data/yacc.c (yytnamerr): New function.
12349 (yyerrlab): Use it to decode most string literals.
12350 * doc/bison.texinfo (Decl Summary, Calling Convention):
12351 Clarify quoting convention of yytname.
12352 * src/output.c (prepare_symbols): Quote all names. This undoes
12353 the 2005-04-17 change, which is now accomplished (mostly) via
12354 changes in the parsers as described above.
12355 * tests/regression.at (Token definitions, Web2c Actions):
12356 Undo most 2005-04-17 change here, too.
12357
12358 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
12359
12360 Fix more problems reported by twlevo@xs4all.nl.
12361 * tests/cxx-type.at: Don't pipe output of ./types through sed to
12362 remove trailing spaces. This loses the exit status of ./types,
12363 and isn't needed since ./types shouldn't be emitting trailing
12364 spaces.
12365 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
12366 as the stack isn't valid in that case.
12367
12368 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
12369 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
12370 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
12371 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
12372 is used.
12373 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
12374 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
12375 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
12376 Likewise.
12377
12378 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
12379 overly-picky compilers that reject 'char *foo = "bar";'.
12380
12381 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
12382 to FILE * parameter, not to stderr. This fixes a typo introduced
12383 in the 2005-07-12 change.
12384
12385 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
12386 warnings from GCC 4.
12387
12388 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
12389 (yyglrShiftDefer, yysplitStack):
12390 Remove unused parameters b4_pure_formals. All uses changed.
12391 (yyglrShift): Remove unused parameters b4_user_formals.
12392 All uses changed.
12393 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
12394
12395 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
12396
12397 Destructor cleanups and regularization among the three skeletons.
12398 * NEWS: Document the behavior changes.
12399 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
12400 stack before failing, as the cleanup code will do it for us now.
12401 * data/lalr1.cc (yyerrlab): Likewise.
12402 * data/glr.c (yyparse): Pop everything off the stack before
12403 freeing it, so that destructors get called properly.
12404 * data/lalr1.cc (yyreturn): Likewise.
12405 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
12406 This is more consistent.
12407 * doc/bison.texinfo (Destructor Decl): Mention more reasons
12408 why destructors might be called. 1.875 -> 2.1.
12409 (Destructor Decl, Decl Summary, Table of Symbols):
12410 Some English-language cleanups for %destructor.
12411 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
12412 Add output line for destructor of start symbol.
12413 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
12414 because of that same extra output line.
12415
12416 * NEWS: Document minor wording changes in diagnostics of
12417 Bison-generated parsers.
12418 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
12419 Remove unused formals. All uses changed.
12420 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
12421 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
12422 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
12423 Rename yyoverflowab to yyexhaustedlab.
12424 When memory exhaustion occurs during syntax-error reporting,
12425 report it separately rather than in a single diagnostic; this
12426 eases translation.
12427 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
12428 (Memory Exhausted): Renamed from Parser Stack Overflow.
12429 Revamp wording slightly to prefer "memory exhaustion".
12430 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
12431
12432 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
12433
12434 Add i18n support to the GLR skeleton. Partially fix the C++
12435 skeleton; a C++ expert needs to finish this. Remove debugging
12436 msgids; there's little point to having them translated, since they
12437 can be understood only by someone who can read the
12438 (English-language) source code.
12439
12440 Generate runtime-po/bison-runtime.pot automatically, so that we
12441 don't have to worry about garbage getting in that file. We'll
12442 make sure after the next official release that old msgids don't
12443 get lost. See
12444 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
12445
12446 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
12447 Now auto-generated.
12448 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
12449 Fix typos in explanations of the runtime file.
12450 * bootstrap: Change gettext keyword from YYI18N to YY_.
12451 Use standard Makefile.in.in in runtime-po, since we'll arrange
12452 for backward-compatible bison-runtime.po files in a different way.
12453 * data/glr.c (YY_): New macro, from yacc.c.
12454 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
12455 Translate messages intended for users.
12456 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
12457 the wording in the other skeletons. We don't know that the memory
12458 is virtual.
12459 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
12460 Use same method that yacc.c uses.
12461 Don't translate debugging messages.
12462 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
12463 it doesn't work (yet), and requires C++ expertise to fix.
12464 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
12465 Move defn to a more logical place, to be consistent with other
12466 skeletons.
12467 Don't translate debugging messages.
12468 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
12469 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
12470 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
12471 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
12472
12473 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
12474 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
12475 void, not int.
12476 * tests/glr-regression.at (Badly Collapsed GLR States):
12477 Likewise.
12478 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
12479 yylex should return 0 at EOF rather than aborting.
12480
12481 Improve tests for stack overflow in GLR parser.
12482 Problem reported by twlevo@xs4all.nl.
12483 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
12484 All uses removed.
12485 (yyStackOverflow): Just longjmp, but with value 2 so that caller
12486 can handle the problem.
12487 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
12488 (yyparse): New local variable yyresult to record the result.
12489 Use result of setjmp to set it, rather than storing itinto
12490 struct.
12491 (yyDone): Remove label.
12492 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
12493 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
12494 if YYABORT is used).
12495 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
12496 yyparse status; put status > 1 into diagnostic.
12497 Check that status==2 works.
12498 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
12499 Use exit status 3 for failure to open (which shouldn't happen).
12500
12501 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
12502
12503 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
12504 1 on syntax error; just let yyparse do its thing.
12505 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
12506 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
12507 (Exploding the Stack Size with Alloca):
12508 (Exploding the Stack Size with Malloc):
12509 Expect exit status 2, not 1, since the parser is supposed to blow
12510 its stack. Problem reported by twlevo@xs4all.nl.
12511
12512 * data/glr.c (yyparse): Don't assume that the initial calls
12513 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
12514 Print a stack-overflow message and fail instead.
12515 Initialize the line-number information before creating the stack,
12516 so that the stack-overflow message can report line zero safely.
12517
12518 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
12519
12520 Fix problems reported by twlevo@xs4all.nl.
12521 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
12522 (yyuserMerge): Provide a default case if b4_mergers is empty.
12523 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
12524 * tests/glr-regression.at
12525 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
12526 Add casts to pacify C++ compilers.
12527 * tests/glr-regression.at (Improper merging of GLR delayed action
12528 sets): Declare yylex before using it.
12529 * tests/Makefile.am (maintainer-check-g++): Fix a stray
12530 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
12531 test for valgrind; valgrind is independent of g++.
12532 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
12533 for compatibility with POSIX 1003.1-2001 (if running coreutils).
12534 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
12535 Use a destructor, so that we can expand the stack. Change
12536 YYSTYPE to char * so that we can free it. Cast result of malloc.
12537
12538 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12539
12540 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
12541 a valgrind failure. Problem reported by twlevo@xs4all.nl.
12542
12543 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
12544
12545 * PACKAGING: New file, suggested by Bruno Haible and taken from
12546 similar wording in gettext's PACKAGING file.
12547 * NEWS: Mention PACKAGING.
12548 * Makefile.am (EXTRA_DIST): Add PACKAGING.
12549
12550 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
12551
12552 * NEWS: Document recent i18n improvements.
12553 * bootstrap: Get runtime translations into runtime-po.
12554 Create runtime-po files automatically, if possible.
12555 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
12556 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
12557 does not infringe on the user's name space.
12558 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
12559 * doc/bison.texinfo (Internationalization): Revamp the English
12560 and Texinfo syntax a bit, to try to make it clearer.
12561 (Bison Options, Option Cross Key): Mention --print-localedir.
12562 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
12563 YYENABLE_NLS. Quote a bit more.
12564 * runtime-po/.cvsignore: New file.
12565 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
12566 * runtime-po/Rules-quot: Remove; now created by bootstrap.
12567 * runtime-po/quot.sed: Likewise.
12568 * runtime-po/boldquot.sed: Likewise.
12569 * runtime-po/en@quot.header: Likewise.
12570 * runtime-po/en@boldquot.header: Likewise.
12571 * runtime-po/insert-header.sin: Likewise.
12572 * runtime-po/remove-potcdate.sin: Likewise.
12573 * runtime-po/Makevars: Likewise.
12574 * runtime-po/LINGUAS: Likewise.
12575 * runtime-po/de.po: Likewise; we will rely on the translation project
12576 to maintain this, so "bootstrap" should get it.
12577 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
12578 its value.
12579 * src/main.c (main): Bind the bison-runtime domain, too.
12580
12581 2005-07-12 Bruno Haible <bruno@clisp.org>
12582
12583 * data/yacc.c: Include <libintl.h> when NLS is enabled.
12584 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
12585 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
12586 * runtime-po: New directory.
12587 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
12588 $(DOMAIN).pot-update rule, so that old messages are never dropped.
12589 * runtime-po/Rules-quot: New file, copied from po/.
12590 * runtime-po/quot.sed: Likewise.
12591 * runtime-po/boldquot.sed: Likewise.
12592 * runtime-po/en@quot.header: Likewise.
12593 * runtime-po/en@boldquot.header: Likewise.
12594 * runtime-po/insert-header.sin: Likewise.
12595 * runtime-po/remove-potcdate.sin: Likewise.
12596 * runtime-po/Makevars: New file.
12597 * runtime-po/POTFILES.in: New file.
12598 * runtime-po/LINGUAS: New file.
12599 * runtime-po/bison-runtime.pot: New file.
12600 * runtime-po/de.po: New file.
12601 * m4/bison.m4: New file.
12602 * Makefile.am (SUBDIRS): Add runtime-po.
12603 (aclocaldir, aclocal_DATA): New variables.
12604 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
12605 Define aclocaldir.
12606 * src/getargs.c (usage): Document --print-localedir option.
12607 (PRINT_LOCALEDIR_OPTION): New enum item.
12608 (long_options): Add --print-localedir option.
12609 (getargs): Handle --print-localedir option.
12610 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
12611 (Internationalization): New section.
12612
12613 2005-07-12 Akim Demaille <akim@epita.fr>
12614
12615 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
12616 for consistency with the rest of the code.
12617 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
12618 Add separators.
12619
12620 2005-07-12 Akim Demaille <akim@epita.fr>
12621
12622 * src/parse-gram.y: Use %printer instead of YYPRINT.
12623
12624 2005-07-12 Akim Demaille <akim@epita.fr>
12625
12626 * src/symtab.h, src/symtab.c (symbol_print): New.
12627 * src/symlist.h, src/symlist.c (symbol_list_print): New.
12628 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
12629
12630 2005-07-12 Akim Demaille <akim@epita.fr>
12631
12632 * data/glr.c (b4_syncline): Fix (swap) the definitions of
12633 b4_at_dollar and b4_dollar_dollar.
12634
12635 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
12636
12637 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
12638 and Pennello's paper.
12639
12640 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
12641
12642 * data/yacc.c (yyparse): Undo previous patch. Instead,
12643 set yylsp[0] and yyvsp[0] only if the initial action
12644 sets yylloc and yylval, respectively.
12645
12646 * data/yacc.c (yyparse): In the initial action, set
12647 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
12648 This avoids the use of undefined variables if the initial
12649 action does not set yylloc and/or yylval.
12650
12651 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
12652
12653 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
12654 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
12655 Remove from CVS. These files are automatically generated.
12656 * examples/extexi: Clarify that this file is now part of Bison,
12657 not GNU M4, and that it works with any POSIX-compatible Awk.
12658 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
12659 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
12660 so that we also get calc++-parser.yy. Geneate it.
12661 Use $(AWK), not gawk, since any conforming Awk will do.
12662 Put comment before action, since older 'make' can't handle comment
12663 in action.
12664 $(BUILT_SOURCES): List all built sources, not just some of them.
12665 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
12666 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
12667 $($(calc_sources_generated)): Remove unnecessary test for existence
12668 of target. (This had a shell syntax error anyway; a stray "x".)
12669 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
12670 calc++-parser.yy.
12671 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
12672
12673 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
12674 implied by the other modules.
12675
12676 2005-07-06 Akim Demaille <akim@epita.fr>
12677
12678 Bind examples/calc++ to the package.
12679 * examples/calc++/Makefile: Remove, replaced by...
12680 * examples/calc++/Makefile.am: ... this new file.
12681 * examples/calc++/test: Remove input.
12682 * examples/calc++/compile: Remove.
12683 * examples/Makefile.am: New.
12684 * configure.ac, Makefile.am: Adjust.
12685 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
12686
12687 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
12688
12689 * data/glr.c (yyFail): Drastically simplify; since the format argument
12690 never had any % directives, we can simply pass it to yyerror.
12691 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
12692 be modified later, as that is the usual style in glr.c.
12693 Problems reported by Paul Hilfinger.
12694
12695 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
12696 and size overflow errors.
12697 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
12698 in case the user prolog sets feature-test macros like _GNU_SOURCE.
12699 (YYSIZEMAX): New macro.
12700 (yystpcpy): New function, taken from yacc.c.
12701 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
12702 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
12703 so that we don't have to maintain their signatures.
12704 (yyFail): Check for buffer overflow, by using vsnprintf rather
12705 than vsprintf. Allocate a bigger buffer if possible.
12706 Report an error if buffer allocation fails.
12707 (yyStackOverflow): New function.
12708 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
12709 the initialization was successful. It might fail if storage was
12710 exhausted.
12711 (yyexpandGLRStack): Add more checks for storage allocation failure.
12712 Use yyStackOverflow to report failures.
12713 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
12714 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
12715 Don't assume stack number fits in int.
12716 (yysplitStack): Check for storage allocation failure.
12717 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
12718 can print diagnostics on storage allocation failure. All callers
12719 changed.
12720 (yyresolveValue): Use yybool for boolean.
12721 (yyreportSyntaxError): Check for size-calculation overflow.
12722 This code is taken from yacc.c.
12723 (yyparse): Check for storage allocation errors when allocating
12724 the initial stack.
12725
12726 2005-07-05 Akim Demaille <akim@epita.fr>
12727
12728 Extract calc++ from the documentation.
12729 * doc/bison.texinfo (Calc++): Add the extraction marks.
12730 * examples/extexi: New, from the aborted GNU Programming 2E.
12731 Separate the different paragraph of a file with empty lines.
12732 * examples/Makefile: Use it to extract the whole calc++ example.
12733
12734 2005-06-24 Akim Demaille <akim@epita.fr>
12735
12736 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
12737 class typedefs.
12738
12739 2005-06-22 Akim Demaille <akim@epita.fr>
12740
12741 * doc/bison.texinfo (C++ Language Interface): First stab.
12742 (C++ Parsers): Remove.
12743
12744 2005-06-22 Akim Demaille <akim@epita.fr>
12745
12746 * data/lalr1.cc (yylex_): Honor %lex-param.
12747
12748 2005-06-22 Akim Demaille <akim@epita.fr>
12749
12750 Start a set of simple examples.
12751 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
12752 * examples/calc++/calc++-driver.hh,
12753 * examples/calc++/calc++-parser.yy,
12754 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
12755 * examples/calc++/compile, examples/calc++/test: New.
12756
12757 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
12758
12759 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
12760 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
12761 which stems from the 2005-05-27 patch.
12762
12763 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
12764
12765 * data/glr.c: Modify treatment of unused parameters to permit use
12766 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
12767
12768 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
12769
12770 Fix infringement on user name space reported by Janos Zoltan Szabo.
12771 * data/yacc.c (yyparse): strlen -> yystrlen.
12772
12773 2005-05-30 Akim Demaille <akim@epita.fr>
12774
12775 * data/lalr1.cc (_): New.
12776 Translate the various messages.
12777
12778 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
12779
12780 Fix infringement on user name space reported by Bruno Haible.
12781 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
12782 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
12783 the user's name space.
12784 (alloca): Include <stdlib.h> to get it, if it's not built in.
12785 (YYMALLOC, YYFREE): Define only if needed.
12786 (malloc, free): Declare, but only if needed, as this infringes on
12787 the user name space.
12788
12789 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
12790
12791 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
12792 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
12793 with %d format.
12794 * lib/ebitset.c (min, max): Undef before defining.
12795 * lib/vbitset.c (min, max): Likewise.
12796 * lib/subpipe.c (create_subpipe): Save local variables in case
12797 vfork clobbers them.
12798
12799 2005-05-24 Bruno Haible <bruno@clisp.org>
12800
12801 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
12802 error message syntax used by gcc-4.0.
12803
12804 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
12805
12806 * README: Mention m4 1.4.3. Remove obsolete advice about
12807 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
12808
12809 * bootstrap: Remove workaround for problem I encountered with
12810 gettext 0.14.1; it seems to be fixed now.
12811
12812 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
12813
12814 * NEWS: Version 2.0a.
12815
12816 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
12817 the previous change.
12818
12819 Various maintainer cleanups.
12820 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
12821 conftest*, for benefit of CVS commands run at the same time as
12822 "configure". Add build-aux, since "bootstrap" now creates it and
12823 its subfiles.
12824 * Makefile.cfg (move_if_change): Remove.
12825 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
12826 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
12827 (po_repo, do-po-update, po-update, wget_files, get-targets):
12828 (config.guess-url_prefix, config.sub-url_prefix):
12829 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
12830 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
12831 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
12832 Remove.
12833 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
12834 this is now the recommended name.
12835 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
12836 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
12837 ylwrap. These files now go into build-aux.
12838 * config/move-if-change: Remove.
12839 * config/prev-version.txt: Bump from 1.75 to 2.0.
12840
12841 * bootstrap: Add stdio-safer, unistd-safer modules.
12842 Remove m4/glibc2.m4 (introduced by latest gnulib, but
12843 we don't need it).
12844 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
12845 fopen-safer.c, stdio-safer.h, unistd-safer.h.
12846 * lib/subpipe.c: Include "unistd-safer.h".
12847 (create_subpipe): Make sure all the newly-created
12848 file descriptors are > 2, so that diagnostics don't
12849 get sent down them (which might cause Bison to hang, in theory).
12850 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
12851 * src/files.c (xfopen): Use fopen_safer, not fopen.
12852
12853 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
12854 yesterday's yacc.c fix.
12855
12856 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
12857
12858 * data/glr.c, data/lalr1.cc: Update copyright date.
12859
12860 Fix a destructor bug reported by Wolfgang Spraul in
12861 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
12862 * data/yacc.c (yyabortlab): Don't call destructor, and
12863 don't set yychar to EMPTY.
12864 (yyoverflowlab): Don't call destructor.
12865 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
12866 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
12867 since we no longer output the message "discarding lookahead token
12868 end of input ()".
12869
12870 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12871
12872 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
12873 fix a small glitch in debugging output.
12874 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
12875 after YY_SYMBOL_PRINT where needed.
12876
12877 (struct yyGLRState): Add some comments.
12878 (struct yySemanticOption): Add some comments.
12879 (union yyGLRStackItem): Add comment.
12880
12881 (yymergeOptionSets): Correct this to properly perform the union,
12882 avoiding infinite reported by Michael Rosien.
12883 Update comment.
12884
12885 * tests/glr-regression.at: Add test for GLR merging error reported
12886 by M. Rosien.
12887
12888 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
12889
12890 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
12891 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
12892 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
12893 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
12894 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
12895 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
12896 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
12897 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
12898 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
12899 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
12900 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
12901 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
12902 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
12903 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
12904 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
12905 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
12906 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
12907 src/derives.h, src/files.c, src/files.h, src/getargs.c,
12908 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
12909 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
12910 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
12911 src/output.h, src/parse-gram.c, src/parse-gram.h,
12912 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
12913 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
12914 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
12915 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
12916 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
12917 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
12918 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
12919 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
12920 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
12921 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
12922 tests/reduce.at, tests/regression.at, tests/sets.at,
12923 tests/synclines.at, tests/testsuite.at, tests/torture.at:
12924 Update FSF postal mail address.
12925
12926 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
12927
12928 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
12929 Problem reported by Ralf Menzel.
12930
12931 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
12932
12933 * tests/actions.at: Test that stack overflow invokes destructors.
12934 From Marcus Holland-Moritz.
12935 * data/yacc.c (yyerrlab): Move the code that destroys the stack
12936 from here....
12937 (yyreturn): to here. That way, destructors are called properly
12938 even if the stack overflows, or the user calls YYACCEPT or
12939 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
12940 (yyoverflowlab): Destroy the lookahead.
12941
12942 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
12943
12944 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
12945
12946 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
12947
12948 * NEWS: Bison-generated C parsers no longer quote literal strings
12949 associated with tokens.
12950 * src/output.c (prepare_symbols): Don't escape strings,
12951 since users don't want to see C escapes.
12952 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
12953 in diagnostics.
12954 * tests/input.at (Torturing the Scanner): Likewise.
12955 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
12956
12957 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
12958
12959 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
12960 the data size is known to be too small and we can't increase it.
12961 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
12962
12963 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
12964
12965 * src/parse-gram.y: Include quotearg.h.
12966 (string_as_id): Quote $1 before using it as a key, since the
12967 lexer no longer quotes it for us.
12968 (string_content): Don't strip quotes, since lexer no longer
12969 quotes it for us.
12970 * src/scan-gram.l: Include quotearg.h.
12971 ("\""): Omit quote.
12972 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
12973 a key, since the rest of the lexer doesn't quote it.
12974 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
12975 * tests/regression.at (Token definitions): Check for backslashes
12976 in token strings.
12977
12978 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
12979 (YYSIZE_T): Define to unsigned long int when using an older compiler.
12980 (yyparse): Revamp code to generate long syntax error message, to
12981 make it easier to translate, and to avoid problems with arithmetic
12982 overflow. Change "virtual memory" to "memory" in diagnostic, since
12983 we don't know whether the memory is virtual.
12984
12985 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
12986
12987 * NEWS: Bison-generated C parsers now use the _ macro to
12988 translate strings.
12989 * data/yacc.c (_) [!defined _]: New macro.
12990 All English strings wrapped inside this macro.
12991 * doc/bison.texinfo (Bison Parser): Document _.
12992 * po/POTFILES.in: Include src/parse-gram.c, since it now
12993 includes translateable strings that parse-gram.y doesn't.
12994
12995 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
12996
12997 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
12998 reverting the 2004-10-11 change to this function.
12999 (symbol_check_alias_consistency): Don't call symbol_type_set
13000 if the type name is already correct.
13001 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
13002
13003 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
13004
13005 * tests/regression.at (Token definitions): Don't use a token named
13006 c, as that generates a "#define c ..." that runs afoul of buggy
13007 stdlib.h that uses the identifier c as a member of struct
13008 drand48_data. Problem reported by Horst Wente.
13009
13010 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
13011
13012 * bootstrap: Change translation URL from
13013 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
13014 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
13015 redirection glitches. Problem reported by twlevo@xs4all.nl.
13016
13017 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
13018
13019 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
13020 after operands; POSIX says this isn't portable for the c99 command.
13021
13022 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
13023
13024 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
13025 immediately if a data overrun has occurred; this may help us track
13026 down what may be a spurious failure on MacOS.
13027
13028 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
13029
13030 Respond to problems reported by twlevo@xs4all.nl.
13031
13032 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
13033
13034 * src/vcg.h: Comment fix.
13035 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
13036 (G_CMAX): Change to -1 instead of INT_MAX.
13037
13038 * data/yacc.c (yyparse): Omit spaces before #line.
13039
13040 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
13041
13042 * src/tables.c (state_number_to_vector_number): Put it inside an
13043 "#if 0", since it's not currently used. Problem reported by
13044 Roland McGrath.
13045
13046 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
13047
13048 * src/output.c (escaped_output): Renamed from
13049 escaped_file_name_output, since we now use it for symbol tags as
13050 well. All uses changed.
13051 (symbol_destructors_output, symbol_printers_output):
13052 Escape symbol tags too.
13053 Problem reported by Matyas Forstner in
13054 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
13055
13056 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
13057 not needed.
13058 * src/output.c (user_actions_output, token_definitions_output,
13059 symbol_destructors_output, symbol_printers_output): Likewise.
13060 * src/reader.c (prologue_augment): Likewise.
13061 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
13062
13063 * src/vcg.c (output_edge): Don't quote linestyle arg.
13064 Problem reported by twlevo@xs4all.nl.
13065
13066 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
13067
13068 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
13069 example, reported by Derek M Jones. Also, make the example even
13070 more outrageous, to better illustrate how bad the problem is.
13071
13072 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
13073
13074 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
13075 putsym. Typo reported by Sebastian Piping.
13076
13077 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
13078
13079 * doc/bison.texinfo (Language and Grammar): some -> same
13080 (Epilogue): int he -> in the
13081 Typos reported by Sebastian Piping via Justin Pence.
13082
13083 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
13084
13085 * tests/glr-regression.at (Improper handling of embedded actions
13086 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
13087 embedded actions and $-N in GLR parsers", work around an Autoconf bug
13088 with dollar signs in test names.
13089 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
13090 for a similar reason.
13091
13092 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
13093
13094 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
13095 wants to redefine G_VIEW.
13096
13097 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
13098
13099 * src/vcg.c (get_view_str): Remove case for normal_view.
13100 Problem reported by twlevo@xs4all.nl.
13101
13102 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
13103
13104 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
13105 Problem reported by twlevo@xs4all.nl.
13106
13107 * doc/bison.texinfo: Change @dircategory from "GNU programming
13108 tools" to "Software development". Requested by Richard Stallman
13109 via Karl Berry.
13110
13111 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
13112
13113 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
13114 Problem reported by twlevo@xs4all.nl.
13115
13116 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
13117
13118 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
13119 keyword; it's not needed with modern compilers, and it doesn't
13120 affect correctness with older compilers. Suggested by
13121 twlevo@xs4all.nl.
13122
13123 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
13124
13125 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
13126 gcc -Wswitch-default.
13127 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
13128 * data/yacc.c (yyparse): Likewise.
13129
13130 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
13131
13132 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
13133 already. Let config.h define any nonstandard values.
13134
13135 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
13136
13137 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
13138 for the benefit of slower hosts. Problem reported by
13139 Nelson H. F. Beebe.
13140
13141 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
13142
13143 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
13144 being defined and not used.
13145 * data/lalr1.cc (yyparse): Likewise.
13146 Use "if (false)" rather than "if (0)".
13147
13148 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
13149
13150 * TODO: Mention that we should allow NUL bytes in tokens.
13151
13152 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
13153
13154 * src/scan-skel.l (<<EOF>>): Don't close standard output.
13155 Problem reported by Hans Aberg.
13156
13157 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
13158
13159 * src/getargs.c (version): Happy new year; update overall
13160 program copyright date from 2004 to 2005.
13161
13162 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
13163 Problem reported by Hans Aberg.
13164 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
13165 (Output file names.): Add a test for the case when standard output
13166 is closed.
13167
13168 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
13169
13170 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
13171 to fix an oversight in the Bison 2.0 manual.
13172
13173 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
13174
13175 * NEWS: Version 2.0. Reformat the existing news items since
13176 1.875, so that related items are grouped together.
13177 * configure.ac (AC_INIT): Bump version to 2.0.
13178 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
13179
13180 * tests/torture.at (Exploding the Stack Size with Alloca): Set
13181 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
13182 otherwise, we're not testing alloca. Unfortunately there's no
13183 simple way to consult HAVE_ALLOCA here.
13184
13185 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
13186 for yymsg, too.
13187
13188 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
13189 hand. This avoids a warning about comparing int to size_t when
13190 GCC warnings are enabled.
13191
13192 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
13193
13194 * NEWS: Bison-generated parsers no longer default to using the
13195 alloca function (when available) to extend the parser stack, due
13196 to widespread problems in unchecked stack-overflow detection.
13197 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
13198 responsibility to set it to a positive value. This lets the user
13199 specify a value that is not a preprocessor constant.
13200 * data/yacc.c (YYMAXDEPTH): Likewise.
13201 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
13202 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
13203 to be a compile-time constant. However, explain the constraints on it.
13204 Also, explain the constraints on YYINITDEPTH.
13205 (Table of Symbols): Explain that alloca is no longer the default.
13206 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
13207 to 1.
13208
13209 * doc/bison.texinfo (Location Default Action): Mention that n must
13210 be zero when k is zero. Suggested by Frank Heckenbach.
13211
13212 2004-12-22 Akim Demaille <akim@epita.fr>
13213
13214 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
13215 (parser::state_type, parser::semantic_type, parser::location_type):
13216 Private, not public.
13217 (parser::parse): Return ints, not bool.
13218 Returning a bool introduces a problem: 0 corresponds to false, and
13219 it seems weird to return false on success. Returning true changes
13220 the conventions for yyparse.
13221 Alternatively we could return void and send an exception.
13222 There is no clear consensus (yet?).
13223 (state_stack, semantic_stack, location_stack): Rename as...
13224 (state_stack_type, semantic_stack_type, location_stack_type): these.
13225 Private, not public.
13226 * tests/c++.at: New.
13227 * tests/testsuite.at, tests/Makefile.am: Adjust.
13228
13229 2004-12-21 Akim Demaille <akim@epita.fr>
13230
13231 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
13232
13233 2004-12-21 Akim Demaille <akim@epita.fr>
13234
13235 Don't impose std::string for filenames.
13236
13237 * data/lalr1.cc (b4_filename_type): New.
13238 (position::filename): Use it.
13239 (parser.hh): Move the inclusion of stack.hh and location.hh below
13240 the user code, so that needed headers for the filename type can be
13241 included first.
13242 Forward declare them before the user code.
13243 * tests/Makefile.am (check-local, installcheck-local): Pass
13244 TESTSUITEFLAGS to the TESTSUITE.
13245
13246 2004-12-20 Akim Demaille <akim@epita.fr>
13247
13248 Use more STL like names: my_class instead of MyClass.
13249
13250 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
13251 (SemanticStack, SemanticType, StateStack, StateType)
13252 (TokenNumberType, Stack, Slice, Traits, Parser::location)
13253 (Parser::value): Rename as...
13254 (location_stack, location_type, rhs_number_type, semantic_stack)
13255 (semantic_type, state_stack, state_type, token_number_type, stack)
13256 (slice, traits, parser::yylloc, parser::yylval): these.
13257
13258 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
13259
13260 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
13261
13262 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
13263 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
13264
13265 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
13266
13267 Remove uses of 'short int' and 'unsigned short int'. This raises
13268 some arbitrary limits. It uses more memory but nowadays that's
13269 not much of an issue.
13270
13271 This change does not affect the generated parsers; that's a different
13272 task, as some users will want to conserve memory there.
13273
13274 Ideally we should use size_t to represent all object counts, and
13275 something like ptrdiff_t to represent signed differences of object
13276 counts; but that will require more code-cleanup than I have the
13277 time to do right now.
13278
13279 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
13280 Use size_t, not int or short int, to count objects.
13281 * src/closure.c (nritemset, closure): Likewise.
13282 * src/closure.h (nritemset, closure): Likewise.
13283 * src/nullable.c (nullable_compute): Likewise.
13284 * src/print.c (print_core): Likewise.
13285 * src/print_graph.c (print_core): Likewise.
13286 * src/state.c (state_compare, state_hash): Likewise.
13287 * src/state.h (struct state): Likewise.
13288 * src/tables.c (default_goto, goto_actions): Likewise.
13289
13290 * src/gram.h (rule_number, rule): Use int, not short int.
13291 * src/output.c (prepare_rules): Likewise.
13292 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
13293 errs, reductions): Likewise.
13294 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
13295 Likewise.
13296 * src/tables.c (vector_number, tally, action_number,
13297 ACTION_NUMBER_MINIMUM): Likewise.
13298 * src/output.c (muscle_insert_short_int_table): Remove.
13299
13300 2004-12-17 Akim Demaille <akim@epita.fr>
13301
13302 * data/lalr1.cc: Extensive Doxygenation.
13303 (error_): Rename as...
13304 (error): this, since it is visible to the user.
13305 Adjust callers.
13306 (Parser::message): Now an automatic variable from...
13307 (Parser::yyreport_syntax_error_): here.
13308 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
13309 Parser::error.
13310 * tests/input.at: Escape $.
13311
13312 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
13313
13314 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
13315 Parenthesize rhs to avoid obscure problems with mistakes like
13316 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
13317 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
13318 b4_rhs_location): Likewise.
13319 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
13320 b4_rhs_location): Likewise.
13321
13322 2004-12-16 Akim Demaille <akim@epita.fr>
13323
13324 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
13325 yacc.c: be sure to stay within yycheck_.
13326 * tests/actions.at: Re-enable C++ tests.
13327
13328 2004-12-16 Akim Demaille <akim@epita.fr>
13329
13330 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
13331 real.
13332
13333 2004-12-16 Akim Demaille <akim@epita.fr>
13334
13335 Use #define to handle the %name-prefix.
13336
13337 * data/glr.c, data/yacc.c: Comment changes.
13338 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
13339 so that one can refer to yylex in the parser file, and have it
13340 renamed, as is the case with other skeletons.
13341
13342 2004-12-16 Akim Demaille <akim@epita.fr>
13343
13344 Move lalr1.cc internals into yy*.
13345
13346 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
13347 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
13348 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
13349 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
13350 (empty_, final_, terror_, errcode_, ntokens_)
13351 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
13352 (looka_, ilooka_, error_range_, nerrs_):
13353 Rename as...
13354 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
13355 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
13356 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
13357 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
13358 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
13359 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
13360 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
13361 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
13362 these.
13363
13364 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
13365
13366 Fix some problems reported by twlevo at xs4all.
13367 * src/symtab.c (symbol_new): Report an error if the input grammar
13368 contains too many symbols. This is better than calling abort() later.
13369 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
13370 (struct node, struct graph):
13371 Rename member expand to stretch. All uses changed.
13372 (struct graph): Remove member layoutalgorithm. All uses removed.
13373 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
13374 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
13375 All uses changed.
13376 (N_STRETCH): Rename from N_EXPAND. All uses changed.
13377
13378 2004-12-15 Akim Demaille <akim@epita.fr>
13379
13380 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
13381 Add more Doxygen comments.
13382 (symprint_, stack_print_, reduce_print_, destruct_, pop)
13383 (report_syntax_error_, translate_): Rename as...
13384 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
13385 (yypop_, yyreport_syntax_error_, yytranslate_): this.
13386
13387 2004-12-15 Akim Demaille <akim@epita.fr>
13388
13389 * data/lalr1.cc (lex_): Rename as...
13390 (yylex_): this.
13391 Move the trace here.
13392 Take the %name-prefix into account.
13393 Reported by Alexandre Duret-Lutz.
13394
13395 2004-12-15 Akim Demaille <akim@epita.fr>
13396
13397 Simplify the C++ parser constructor.
13398
13399 * data/lalr1.cc (debug_): Rename as...
13400 (yydebug_): so that the parser's internals are always in the yy*
13401 pseudo namespace.
13402 Adjust uses.
13403 (b4_parse_param_decl): Remove the leading comma as it is now only
13404 called as unique argument list.
13405 (Parser::Parser): Remove the constructor accepting a location and
13406 an initial debugging level.
13407 Remove from the other ctor the argument for the debugging level.
13408 (debug_level_type, debug_level, set_debug_level): New.
13409
13410 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
13411 constructor calls.
13412
13413 2004-12-15 Akim Demaille <akim@epita.fr>
13414
13415 Remove b4_root related material: failure experiment
13416 (which goal was to allow to derive from a class).
13417
13418 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
13419 definitions and uses.
13420
13421 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
13422
13423 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
13424 not 2, since it's not portable to subtract 1 from the start of an
13425 array. The new item 0 is never set or used. All uses changed.
13426
13427 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
13428 the default definition of YYLLOC_DEFAULT. Problem reported
13429 by Frank Heckenbach.
13430
13431 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
13432
13433 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
13434 the normal case and one for the error case. Just use the
13435 first one uniformly. Problem reported by Frank Heckenbach.
13436 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
13437 use exactly the same macro in both places.
13438 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
13439 so that the normal-case YYRHSLOC works for the error case too.
13440 All uses changed.
13441 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
13442 (YYLLOC_DEFAULT): Use the same macro as glr.c.
13443 * doc/bison.texinfo (Location Default Action): Don't claim that
13444 we have an array of locations. Use the same macro for both glr
13445 and lalr parsers. Mention YYRHSLOC. Mention what happens when
13446 the index is 0.
13447
13448 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
13449
13450 * HACKING: Update email addresses to send announcements to.
13451
13452 * configure.ac (AC_INIT): Bump version to 1.875f.
13453
13454 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
13455
13456 * NEWS: Version 1.875e.
13457 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
13458
13459 * src/scan-skel.l: Include "complain.h", for "fatal".
13460
13461 * src/relation.h (relation_print, relation_digraph):
13462 Relation sizes are of type relation_node, not size_t (this is
13463 merely a doc fix, since the two types are equivalent).
13464 (relation_transpose): Relation sizes are of type relation_node,
13465 not int.
13466 * src/relation.c: Likewise.
13467 (top, infinity): Now of type relation_node, not int.
13468 (traverse, relation_transpose): Use relation_node, not int.
13469
13470 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
13471 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
13472 (yyparse): Remove unused local introduced in 2004-10-25 patch.
13473
13474 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
13475 specifying whether the test should be skipped. Use it tp
13476 specify that the [%defines %skeleton "lalr1.cc"] tests currently
13477 fail on some hosts, and should be skipped.
13478
13479 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
13480
13481 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
13482 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
13483 unless otherwise specified below.
13484
13485 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
13486 to allocate kernel_base, kernel_items, kernel_size, since
13487 they needn't be initialized to 0.
13488 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
13489 * src/closure.c (new_closure): Likewise, for itemset.
13490 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
13491 * src/lalr.c (set_goto_map): Likewise, for temp_map.
13492 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
13493 (build_relations): Likewise for edge, states1, includes.
13494 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
13495 * src/reader.c (packgram): Likewise, for ritem, rules.
13496 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
13497 * src/relation.c (relation_digraph): Likewise for VERTICES.
13498 (relation_transpose): Likewise for new_R, end_R.
13499 * src/symtab.c (symbols_token_translations_init): Likewise for
13500 token_translations.
13501 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
13502 (token_actions): Likewise for yydefact, actrow, conflrow,
13503 conflict_list.
13504 (save_column): Likewise for froms[symno], tos[symno].
13505 (goto_actions): Likewise for state_count.
13506 (pack_table): Likewise for base, pos, check.
13507 (tables_generate): Likewise for width.
13508
13509 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
13510 for initial core. Just have a separate core, so we needn't worry
13511 about whether kernel_size and kernel_base are initialized.
13512
13513 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
13514 kernel_size, kernel_items): Remove unnecessary initialization.
13515 * src/conflicts.c (conflicts): Likewise.
13516 * src/derives.c (derives): Likewise.
13517 * src/muscle_tablc (muscle_insert): Likewise.
13518 * src/relation.c (relation_digraph): Likewise.
13519 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
13520 conflrow, conflict_table, conflict_list, table, check):
13521 Likewise.
13522
13523 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
13524 This is because all callers pass unsigned int.
13525 * src/closure.h (new_closure): Likewise.
13526
13527 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
13528 (build_relations): Initialize includes[i] in all cases.
13529 * src/reader.c (packgram): Always initialize rules[ruleno].prec
13530 and rules[ruleno].precsym. Initialize members in order.
13531 * src/relation.c (relation_transpose): Always initialize new_R[i]
13532 and end_R[i].
13533 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
13534
13535 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
13536 conflict_list[0] was always 0, but now it isn't initialized.
13537
13538 * src/table.c (table_grow): When conflict_table grew, the grown
13539 area wasn't cleared. Fix this.
13540
13541 * lib/.cvsignore: Add strdup.c, strdup.h.
13542 * m4/.cvsignore: Add strdup.m4.
13543
13544 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
13545
13546 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
13547 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
13548 GOTO_NUMBER_MAXIMUM, since we occasionally compute
13549 ngotos + 1 without checking for overflow.
13550 (build_relations): Use END_NODE, not -1, to denote end of edges.
13551 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
13552 build_relations): Use goto_number, not int, for goto numbers.
13553 * src/tables.c (save_column, default_goto): Likewise.
13554
13555 2004-11-23 Akim Demaille <akim@epita.fr>
13556
13557 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
13558 of #defining from yystype.
13559 Don't typedef yystype, C++ does not need it.
13560 This lets it possible to forward declare it as union.
13561
13562 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
13563
13564 * bootstrap (gnulib_modules): Add extensions.
13565 Problem reported by Jim Meyering.
13566
13567 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
13568
13569 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
13570 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
13571 src/system.h, src/tables.c: XFREE -> free, to accommodate
13572 recent change to gnulib xalloc.h.
13573 Problem reported by Jim Meyering.
13574
13575 2004-11-17 Akim Demaille <akim@epita.fr>
13576
13577 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
13578
13579 2004-11-17 Akim Demaille <akim@epita.fr>,
13580 Alexandre Duret-Lutz <adl@gnu.org>
13581
13582 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
13583 changes.
13584 (YYCDEBUG): Adjust.
13585 Use it instead of cdebug_.
13586 (Parser::debug_stream, Parser::set_debug_stream): New.
13587 (Parser::symprint_): Define cdebug_ for temporary backward
13588 compatibility.
13589 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
13590 debug_stream ().
13591
13592 2004-11-17 Akim Demaille <akim@epita.fr>
13593
13594 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
13595 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
13596 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
13597 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
13598
13599 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
13600
13601 * data/glr.c (yyloc_default): Remove; not used.
13602 Problem reported by Frank Heckenbach.
13603
13604 2004-10-25 Akim Demaille <akim@epita.fr>
13605
13606 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
13607 Introduce another definition to address simple location arrays.
13608 (yyGLRStack): New member: yyerror_range.
13609 (yyrecoverSyntaxError, yyparse): Update it.
13610 (yyrecoverSyntaxError): Use it when shifting the error token to
13611 have an accurate range, equivalent to the one computed by both
13612 yacc.c and lalr1.cc.
13613 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
13614 that column numbers start at column 0, as per GNU Coding
13615 Standards, the others tests, and the doc.
13616 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
13617 Adjust to the above change (first column is 0).
13618 And adjust the location of the "<error>", now covering the whole
13619 line.
13620
13621 2004-10-22 Akim Demaille <akim@epita.fr>
13622 and Paul Eggert <eggert@cs.ucla.edu>
13623
13624 Remove some arbitrary limits on goto numbers and relations.
13625 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
13626 initial values, since they're never used.
13627 (set_goto_map): ngotos is now unsigned, so test for overflow
13628 by seeing whether it wraps around to zero.
13629 * src/lalr.h (goto_number): Now size_t, not short int.
13630 (GOTO_NUMBER_MAXIMUM): Remove.
13631 * src/relation.c (relation_print, traverse, relation_transpose):
13632 Check for END_NODE rather than looking at sign.
13633 * src/relation.h (END_NODE): New macro.
13634 (relation_node): Now size_t, not short int.
13635
13636 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
13637
13638 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
13639 keyword, not an identifier. Problem reported by Baron Schwartz in
13640 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
13641
13642 2004-10-11 Akim Demaille <akim@epita.fr>
13643
13644 * src/symtab.c (symbol_check_alias_consistency): Also check
13645 type names, destructors, and printers.
13646 Reported by Alexandre Duret-Lutz.
13647 Recode the handling of associativity and precedence in terms
13648 of symbol_precedence_set.
13649 Accept no redeclaration at all, not even equal to the previous
13650 value.
13651 (redeclaration): New.
13652 Use it to factor redeclaration complaints.
13653 (symbol_make_alias): Don't set the type of the alias, let
13654 symbol_check_alias_consistency do it as for other features.
13655 * src/symtab.h (symbol): Add new member prec_location, and
13656 type_location.
13657 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
13658 * tests/input.at (Incompatible Aliases): New.
13659
13660 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
13661
13662 .cvsignore fixes to accommodate gnulib changes,
13663 and the practice of naming build directories "_build".
13664 * .cvsignore: Add "_*". Sort.
13665 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
13666 * m4/.cvsignore: Add "*_gl.m4".
13667
13668 2004-10-06 Akim Demaille <akim@epita.fr>
13669
13670 * src/parse-gram.y (add_param): Fix the truncation of trailing
13671 spaces.
13672
13673 2004-10-05 Akim Demaille <akim@epita.fr>
13674
13675 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
13676 whether the reducion was empty or not. This leaves room to
13677 improve the use of YYLLOC_DEFAULT in such a case.
13678 lalr1.cc is still experimental, so changing this is acceptable.
13679 And finally, there are probably not many users who changed the
13680 handling of locations in GLR, so changing is admissible too.
13681
13682 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
13683 empty reduction, set @$ to an empty location ending the previously
13684 stacked symbol.
13685 Adjust uses to make sure the code is triggered on empty
13686 reductions.
13687 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
13688 expected output: empty reductions have empty locations.
13689
13690 2004-09-29 Akim Demaille <akim@epita.fr>
13691
13692 * data/lalr1.cc: Move towards a more standard C++ coding style
13693 for templates: Class < T > -> Class<T>.
13694
13695 2004-09-29 Akim Demaille <akim@epita.fr>
13696
13697 * data/lalr1.cc: Reinstall the former ctor, for sake of
13698 compatibility, but warn it will be removed.
13699 Move towards a more standard C++ coding style (i.e., type *var ->
13700 type* var).
13701
13702 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
13703
13704 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
13705 since it's less likely to work if NULs are involved in the future.
13706
13707 2004-09-27 Akim Demaille <akim@epita.fr>
13708
13709 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
13710
13711 2004-09-27 Akim Demaille <akim@epita.fr>
13712
13713 * data/lalr1.cc (b4_parse_param_decl_1): New.
13714 (b4_parse_param_decl): Use it to have different names between attribute
13715 and argument names.
13716 (b4_cc_constructor_call): Likewise.
13717
13718 2004-09-24 Akim Demaille <akim@epita.fr>
13719
13720 * src/parse-gram.y (add_param): Strip the leading and trailing
13721 blanks from a formal argument declaration.
13722 (YY_LOCATION_PRINT): New.
13723
13724 2004-09-24 Akim Demaille <akim@epita.fr>
13725
13726 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
13727 after the location.
13728
13729 2004-09-24 Akim Demaille <akim@epita.fr>
13730
13731 * doc/bison.texinfo (Table of Symbols): Sort.
13732
13733 2004-09-21 Akim Demaille <akim@epita.fr>
13734
13735 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
13736 the useless parentheses.
13737 Suggested by Paul Eggert.
13738
13739 2004-09-20 Akim Demaille <akim@epita.fr>
13740
13741 Let the initial-action act on the look-ahead, and use it for the
13742 "initial push" (corresponding to an hypothetical beginning-of-file).
13743 And let lalr1.cc honor %initial-action.
13744
13745 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
13746 example.
13747 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
13748 (Parser::Parser): Remove the ctor that used to initialize it.
13749 (Parser::parse): Like in the other skeletons, issue the "starting
13750 parse" message before any action.
13751 Honor %initial-action.
13752 Initialize the stacks with the lookahead.
13753 * data/yacc.c: Let $$ and @$ in %initial-action designate the
13754 look-ahead.
13755 Push them in the stacks.
13756 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
13757
13758 2004-09-20 Akim Demaille <akim@epita.fr>
13759
13760 * doc/bison.texinfo (Initial Action Decl): New.
13761
13762 2004-09-20 Akim Demaille <akim@epita.fr>
13763
13764 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
13765 clearer criterion to define it.
13766 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
13767 When reducing on an empty RHS, use the latest stacked location as
13768 location.
13769 yylloc is not always available.
13770 * data/glr.c: Likewise.
13771 Also, honor initial-actions.
13772
13773 2004-09-20 Akim Demaille <akim@epita.fr>
13774
13775 * data/yacc.c (YY_LOCATION_PRINT): New.
13776 Define when we know YYLTYPE's structure, i.e., when the default
13777 YYLLOC_DEFAULT is used.
13778 * data/c.m4 (b4_yysymprint_generate): Use it.
13779 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
13780 value of the result.
13781 (error_start_): Replace with...
13782 (error_range_): this location array.
13783 This allows to replace code relying on the implementation of
13784 locations by portable code.
13785 * data/yacc.c (yylerrsp): Replace with...
13786 (yyerror_range): this.
13787 Every time a token is popped, update yyerror_range[0], to have an
13788 accurate location for the error token.
13789 * data/glr.c (YY_LOCATION_PRINT): New.
13790 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
13791 deference a pointer.
13792 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
13793 report the location in %printers.
13794
13795 * src/scan-skel.l: Instead of abort, report error messages to ease
13796 understanding skeleton scanning failures.
13797
13798 2004-09-16 Akim Demaille <akim@epita.fr>
13799
13800 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
13801 (iterator, const_iterator): these, to be more in the C++ spirit.
13802 Also, return reverse iterators so that when displaying the stack
13803 we display its bottom first.
13804 (Parser::stack_print_, Parser::reduce_print_): Match the messages
13805 from yacc.c.
13806 We should probably use vector here though.
13807
13808 2004-09-16 Akim Demaille <akim@epita.fr>
13809
13810 Have more complete shift traces.
13811
13812 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
13813 to report Shifts instead of ad hoc YYDPRINTF invocations,
13814 including for the error token.
13815 * data/lalr1.cc (symprint_): Output the location.
13816 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
13817 output the location within the %printer.
13818 Activate GLR tests, at least to make sure they compile properly.
13819 They still don't pass though.
13820 * tests/calc.at: Adjust expect verbose output, since now "Entering
13821 state..." is on a different line than the "Shifting" message.
13822
13823 2004-09-08 Akim Demaille <akim@epita.fr>
13824
13825 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
13826 Bison directive from the Bison file to the invocation of this
13827 macro, so that these directives are passed to
13828 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
13829 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
13830 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
13831 the extra Bison directives instead of the whole series.
13832 Change the grammar so that there are recoverable errors, and
13833 unrecoverable errors. Now we can have the parser give up before
13834 consuming the whole input. As a result we now can observe that
13835 the lookahead is freed when needed.
13836 Change the parser source to parse argv[1] instead of a hard coded
13837 string.
13838 Simplify yylex, and give a value and location to EOF.
13839 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
13840 passed directives already coded in the file.
13841 Add some tests to check the location of "error".
13842 For some tests, the C++ parser is correct, and not yacc.c.
13843 For other tests, they provide different, but unsatisfying, values,
13844 so keep the C++ value so that at least one parser is "correct"
13845 according to the test suite.
13846 (Actions after errors): Remove, this is subsumed by the
13847 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
13848
13849 2004-09-06 Akim Demaille <akim@epita.fr>
13850
13851 * data/lalr1.cc: Adjust the indentation of the labels.
13852 (Parser::pop): New.
13853 Use it.
13854
13855 2004-09-06 Akim Demaille <akim@epita.fr>
13856
13857 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
13858 argument, an informative message.
13859 Call YY_SYMBOL_PRINT.
13860 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
13861 * data/lalr1.cc (destruct_): Likewise.
13862 In addition, no longer depend on b4_yysymprint_generate and
13863 b4_yydestruct_generate to generate these functions, do it "by
13864 hand".
13865
13866 2004-09-03 Akim Demaille <akim@epita.fr>
13867
13868 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
13869 invoked, yydestruct the lookahead.
13870 * tests/calc.at (Calculator $1): Update the expected lengths of
13871 traces: there is an added line for the discarded lookahead.
13872 * doc/bison.texinfo (Destructor Decl): Some rewording.
13873 Define "discarded" symbols.
13874
13875 2004-09-02 Akim Demaille <akim@epita.fr>
13876
13877 * data/lalr1.cc (translate_, destruct_): No reason to be static.
13878
13879 2004-09-02 Akim Demaille <akim@epita.fr>
13880
13881 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
13882 (YYDSYMPRINTF): Rename as...
13883 (YY_SYMBOL_PRINT): this.
13884 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
13885 two.
13886 Use it instead of direct symprint_ calls.
13887 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
13888 one.
13889
13890 2004-09-02 Akim Demaille <akim@epita.fr>
13891
13892 * data/lalr1.cc (b4_yysymprint_generate): New.
13893 (symprint_): New member function, defined when YYDEBUG.
13894 Use it consistently instead of token/nterm debugging output by
13895 hand.
13896 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
13897 %printer calls to use cdebug_ when using lalr1.cc.
13898
13899 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
13900
13901 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
13902 with #ifdef YYDEBUG.
13903
13904 2004-08-26 Akim Demaille <akim@epita.fr>
13905
13906 * doc/bison.texinfo (Implementing Loops): Rename as...
13907 (Implementing Gotos/Loops): this.
13908
13909 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
13910
13911 Adjust to latest gnulib.
13912 * bootstrap (gnulib_modules): Add xalloc-die.
13913 Set LC_ALL=C so that file names sort consistently.
13914 Prefer the gnulib copies of gettext.m4, glibc21.m4,
13915 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
13916 uintmax_t.m4, ulonglong.m4.
13917 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
13918 po.m4 since we are now using _gl.m4 instead.
13919
13920 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
13921
13922 * src/scan-action.l: Remove. Scanning of semantic actions is
13923 handled in scan-gram.l.
13924
13925 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
13926
13927 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
13928
13929 * src/location.h (struct): The file member is a uniqstr.
13930 (equal_boundaries): Use UNIQSTR_EQ for comparison.
13931
13932 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
13933
13934 Fix bug with non-%union parsers that have printers or destructors,
13935 which led to a Bison core dump. Reported by Peter Fales in
13936 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
13937
13938 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
13939 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
13940 not to our own type.
13941 * src/output.c (symbol_destructors_output, symbol_printers_output):
13942 Don't assume %union.
13943 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
13944 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
13945 UNION-FLAG. All callers changed.
13946 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
13947 Use type char, not unsigned int, when declaring an array of char;
13948 this lets us remove a cast.
13949 (Printers and Destructors): Add non-%union test cases.
13950
13951 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
13952
13953 * doc/bison.texinfo: Minor editorial changes, mostly to the new
13954 GLR writeups. E.g., avoid frenchspacing and the future tense,
13955 change "lookahead" to "look-ahead", and change "wrt" to "with
13956 respect to".
13957
13958 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13959
13960 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
13961 New sections, split off from the GLR Parsers section. Put the new
13962 Simple GLR Parser near the start of the GLR section, for clarity.
13963 Rewrite connective text.
13964
13965 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
13966
13967 * doc/bison.texinfo (Simple GLR Parsers): New section.
13968
13969 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
13970
13971 * NEWS, TODO, doc/bison.texinfo:
13972 Use "look-ahead" instead of "lookahead", to be consistent.
13973 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
13974 while we're fixing "look-ahead".
13975 * src/conflicts.c (shift_set): Renamed from shiftset.
13976 (look_ahead_set): Renamed from lookaheadset.
13977 * src/print.c: Likewise.
13978 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
13979 name for "lookahead".
13980 (report_types, usage): Likewise.
13981 * src/getargs.h (report_look_ahead_tokens): Renamed from
13982 report_lookaheads.
13983 * src/lalr.c (compute_look_ahead_tokens): Renamed from
13984 compute_lookaheads.
13985 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
13986 (look_ahead_tokens_print): Renamed from lookaheads_print.
13987 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
13988 state_rule_lookaheads_print.
13989 * src/state.h: Likewise.
13990 (reductions.look_ahead_tokens): Renamed from lookaheads.
13991 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
13992 AT_DATA_LOOKAHEADS_GRAMMAR.
13993
13994 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
13995
13996 * README: Update location of patched M4 distribution.
13997
13998 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
13999
14000 Don't assume the C++ compiler takes the same arguments as the C compiler
14001 (trivial change).
14002 * configure.ac (O0CXXFLAGS): New var.
14003 * tests/atlocal.in (CXXFLAGS): Use it.
14004
14005 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
14006
14007 Fix some "make check" problems with C++ reported by
14008 Albert Chin-A-Young for Tru64 C++ in this thread:
14009 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
14010
14011 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
14012 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
14013 Output to a .cc file for C++, not to a .c file.
14014 * tests/calc.at (AT_CHECK_CALC): Likewise.
14015 * tests/regression.at (AT_CHECK_DANCER): Likewise.
14016 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
14017
14018 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
14019
14020 * tests/calc.at, tests/actions.at: Workaround for SGI
14021 C++ compiler. (trivial change)
14022
14023 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
14024
14025 Spent a few hours checking out which prerequisite versions the
14026 current sources actually require. I went all the way back to
14027 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
14028 a seemingly endless set of combinations of versions more recent
14029 than that. The bottom line is that the current sources require
14030 fairly recent versions of the build tools, and it'll be some work
14031 to change this.
14032 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
14033 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
14034 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
14035 Add comments explaining why those particular versions are
14036 currently needed.
14037
14038 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
14039 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
14040 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
14041
14042 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
14043 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
14044
14045 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
14046
14047 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
14048 0.11.5. Suggested by Bruno Haible.
14049 * bootstrap: Remove gettext version checking.
14050
14051 * doc/bison.texinfo (Decl Summary): Also mention that %union
14052 can depend on prerequisite types. Problem reported by Tim
14053 Van Holder.
14054
14055 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
14056
14057 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
14058 * README-alpha: Don't tell people not to package this.
14059
14060 * bootstrap: Don't assume $(...) works; use `...` instead.
14061 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
14062 gettext better.
14063
14064 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
14065 put into the -d output file, and mention what to do if YYSTYPE is
14066 defined as a macro.
14067
14068 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
14069
14070 Undo change made earlier today: it caused autopoint to not bring
14071 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
14072 autopoint's.
14073
14074 * bootstrap: Check that gettext version matches what's in
14075 configure.ac. Warn users to ignore robots.txt ERROR 404.
14076 * bootstrap: Undo today's earlier change (logged below).
14077 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
14078
14079 The gettext version checking is causing more trouble than it's
14080 curing; remove it. Problem reported by Paul Hilfinger.
14081
14082 * bootstrap: Issue a warning that one can expect a message
14083 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
14084 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
14085
14086 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
14087
14088 Ensure that the C++ compiler used for testing actually works on a
14089 simple test program; if not, skip the C++-related tests. Problem
14090 reported by Vin Shelton in:
14091 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
14092
14093 * m4/cxx.m4: New file.
14094 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
14095 * tests/atlocal.in (BISON_CXX_WORKS): Add.
14096 * tests/local.at (AT_COMPILE_CXX): Use it.
14097
14098 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
14099
14100 * data/glr.c (yylloc): Output this macro even if locations are not
14101 being generated, as the GLR parser needs it even in that case.
14102 Problem reported by Troy A. Johnson
14103 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
14104
14105 * configure.ac (AC_INIT): Update to 1.875e.
14106
14107 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
14108
14109 * NEWS: Version 1.875d.
14110 * configure.ac (AC_INIT): Likewise.
14111 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
14112
14113 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
14114 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
14115 lalr1.cc runs afoul of the first, and the last two are no longer
14116 supported by GCC 3.4.0.
14117 * README: Mention GNU m4 1.4 or later; mention m4 patches.
14118 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
14119
14120 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
14121
14122 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
14123 unsigned int, for compatibility with latest gnulib hash module.
14124 * src/state.c (state_hash, state_hasher): Likewise.
14125 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
14126 * src/uniqstr.c (hash_uniqstr): Likewise.
14127
14128 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
14129
14130 * NEWS: Unescaped newlines are no longer allowed in char & strings.
14131
14132 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
14133 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
14134 character and string literals.
14135 (unexpected_end): New function.
14136 (unexpected_eof): Use it.
14137 (unexpected_newline): New function.
14138 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
14139 actions.
14140
14141 * NEWS: Document %expect-rr.
14142
14143 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
14144 Fix typo by replacing $1 with $option.
14145 Remove more 'intl'-related files.
14146 Don't DEFUN AM_INTL_SUBDIR twice.
14147
14148 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
14149 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
14150 strtoul.c.
14151 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
14152 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
14153 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
14154 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
14155 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
14156 * src/.cvsignore: Add *.output.
14157
14158 * src/parse-gram.y: Put copyright notice inside %{ %} so it
14159 gets copied to the output file.
14160
14161 2004-04-28 Paul Eggert <eggert@twinsun.com>
14162
14163 Get files from the gnulib and po repositories, instead of relying
14164 on them being in our CVS. Upgrade to latest versions of gnulib
14165 and Automake.
14166
14167 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
14168 * bootstrap: Bootstrap from gnulib and po repositories.
14169 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
14170 * README-cvs: Document these changes. Remove version numbers from
14171 mentions of build tools, since they change so often. Mention Flex.
14172
14173 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
14174 (gl_USE_SYSTEM_EXTENSIONS): Add.
14175 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
14176 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
14177 does this for us.
14178 (AC_ISC_POSIX): Remove; we no longer support this
14179 ancient OS, as it gets in the way of latest Autoconf & gnulib.
14180 (AC_HEADER_STDC): Remove: we now assume C89 or better.
14181 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
14182 Do not check for C89 headers, except for locale.h which is used
14183 by the Yacc library and must port to K&R hosts.
14184 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
14185 Do not check for C89 functions, except for setlocale which is
14186 used by the Yacc library.
14187 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
14188 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
14189 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
14190 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
14191 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
14192 AM_GNU_GETTEXT): Remove; now done by:
14193 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
14194 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
14195 for us.
14196
14197 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
14198 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
14199 Define to empty, as gnulib.mk will do the rest for us.
14200 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
14201 for us.
14202 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
14203 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
14204
14205 * src/files.c: Include gnulib's xstrndup.h.
14206
14207 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
14208 (REALLOC): Use xnrealloc, for likewise.
14209 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
14210 (strnlen, memrchr): Remove decls; functions no longer used.
14211 Include <stpcpy.h>.
14212
14213 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
14214 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
14215 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
14216 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
14217 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
14218 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
14219 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
14220 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
14221 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
14222 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
14223 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
14224 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
14225 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
14226 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
14227 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
14228 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
14229 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
14230 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
14231 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
14232 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
14233 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
14234 Remove, as these files are now generated automatically
14235 by bootstrap or automake.
14236
14237 * po/ChangeLog: Remove: all but one entry was a duplicate
14238 of this file, and I moved that 2000-11-02 entry here.
14239
14240 * config/.cvsignore: Add Makefile, depcomp, install-sh.
14241 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
14242 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
14243 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
14244 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
14245 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
14246 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
14247 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
14248 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
14249 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
14250 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
14251 xstrndup.h.
14252 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
14253 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
14254 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
14255 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
14256 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
14257 * src/.cvsignore: Remove *_.c.
14258
14259
14260 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
14261 support it. (The latest stable gzip doesn't.)
14262
14263 2004-04-27 Paul Eggert <eggert@twinsun.com>
14264
14265 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
14266 case, as stos_ is now used by destructors due to the 2004-02-09
14267 change.
14268
14269 Remove more K&R C support.
14270 * lib/libiberty.y (PARAMS): Remove. All uses removed.
14271 * lib/subpipe.c (errno): Remove decl.
14272 Include <stdlib.h> unconditionally.
14273 (EXIT_FAILURE): Remove macro.
14274 * src/complain.c (vfprintf, strerror): Remove.
14275 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
14276 unconditionally.
14277 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
14278 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
14279 (strchr, strspn, memchr): Remove decls.
14280 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
14281 unconditionally. Do not declare perror.
14282 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
14283 unconditionally.
14284
14285 * src/complain.c (_): Remove useless defn, as system.h defines this.
14286
14287 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
14288 with latest obstack.h.
14289 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
14290 to procedure types, as obstack.h now does that for us.
14291 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
14292
14293 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
14294 so that this include file can stand alone.
14295 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
14296 does this now. Include subpipe.h first after config.h, to
14297 test whether it can stand alone.
14298
14299 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
14300 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
14301 unused declaration.
14302
14303 * tests/synclines.at (%union synch line): Put a dummy member in
14304 the union, because empty unions aren't allowed in C. Caught
14305 by GCC 3.4.0.
14306
14307 2004-04-13 Jim Meyering <jim@meyering.net>
14308
14309 * src/conflicts.c (conflicts_print): Correct format string typo:
14310 use `%%' to produce literal `%'. (trivial change)
14311
14312 2004-03-30 Paul Eggert <eggert@twinsun.com>
14313
14314 * src/getargs.c (version): Update copyright year to 2004.
14315
14316 * data/c.m4 (b4_int_type): Use 'short int' rather than
14317 'short', and similarly for 'long', 'unsigned', etc.
14318 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
14319 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
14320 yy_yypstack, yydumpstack): Likewise.
14321 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
14322 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
14323 Likewise.
14324 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
14325 yy_stack_print, yyparse): Likewise.
14326 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
14327 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
14328 * lib/bitset.c (bitset_print): Likewise.
14329 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
14330 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14331 * lib/bitsetv.c (bitsetv_dump): Likewise.
14332 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
14333 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
14334 Likewise.
14335 * src/LR0.c (allocate_itemsets): Likewise.
14336 * src/gram.h (rule_number, rule): Likewise.
14337 * src/lalr.h (goto_number): Likewise.
14338 * src/nullable.c (nullable_compute): Likewise.
14339 * src/output.c (prepare_rules): Likewise.
14340 * src/relation.c (relation_print, relation_digraph): Likewise.
14341 * src/relation.h (relation_node): Likewise.
14342 * src/state.h (state_number, transitions, errs, reductions,
14343 struct state): Likewise.
14344 * src/symtab.h (symbol_number, struct symbol): Likewise.
14345 * src/tables.c (vector_number, tally, action_number,
14346 default_goto, goto_actions): Likewise.
14347 * tests/existing.at (GNU Cim Grammar): Likewise.
14348 * tests/regression.at (Web2c Actions): Likewise.
14349
14350 * src/output.c (muscle_insert_short_int_table): Renamed from
14351 muscle_insert_short_table. All uses changed.
14352
14353 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
14354
14355 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
14356 (declaration): Replace expected_conflicts with expected_sr_conflicts.
14357 Add %expect-rr rule.
14358
14359 * src/scan-gram.l: Recognize %expect-rr.
14360
14361 * src/conflicts.h (expected_sr_conflicts): Rename from
14362 expected_conflicts.
14363 (expected_rr_conflicts): Declare.
14364
14365 * src/conflicts.c (expected_sr_conflicts): Rename from
14366 expected_conflicts.
14367 (expected_rr_conflicts): Define.
14368 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
14369 for GLR parsers.
14370 Use expected_sr_conflicts in place of expected_conflicts.
14371 Warn if expected_rr_conflicts used in non-GLR parser.
14372
14373 * doc/bison.texinfo: Add documentation for %expect-rr.
14374
14375 2004-03-08 Paul Eggert <eggert@gnu.org>
14376
14377 Add support for hex token numbers. Suggested by Odd Arild Olsen in
14378 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
14379
14380 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
14381 in lalr1.cc.
14382 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
14383 * src/scan-gram.l (scan_integer): New function.
14384 ({int}): Use it.
14385 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
14386 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
14387 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
14388 Say "long int", not "long", for uniformity with GNU style.
14389
14390 2004-02-25 Paul Eggert <eggert@twinsun.com>
14391
14392 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
14393 compilers. This fixes a problem with Intel's C++ compiler being
14394 chatty, reported by Guido Trentalancia in
14395 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
14396
14397 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
14398
14399 Support %destructor and merge error locations in lalr1.cc.
14400
14401 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
14402 (Parser::stos_): Define unconditionally.
14403 (Parser::destruct_): New method. Generate its body with
14404 b4_yydestruct_generate.
14405 (Parser::error_start_): New attribute.
14406 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
14407 token which are discarded.
14408 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
14409 error_start_ when erroneous token are discarded.
14410 (Parser::parse) <yyerrlab1>: Compute the location of the error
14411 token so that it covers all the discarded tokens.
14412 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
14413 it can be called with `%skeleton "lalr1.cc"', and do that.
14414
14415 2004-02-02 Paul Eggert <eggert@twinsun.com>
14416
14417 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
14418 $(top_srcdir)/lib and ../lib. This fixes a bug reported
14419 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
14420 There's no need to mention top_builddir since Automake does that
14421 for us.
14422 (INCLUDES): Remove, as Automake says it's obsolescent.
14423 Contents migrated into AM_CPPFLAGS as described above.
14424 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
14425
14426 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
14427
14428 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
14429 (yyreportSyntaxError): Handle case where lookahead token is
14430 YYEMPTY.
14431
14432 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14433
14434 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
14435 resulting parsers are compilable with C++.
14436
14437 2003-12-23 Paul Eggert <eggert@twinsun.com>
14438
14439 * config/depcomp, config/install-sh: Sync with Automake 1.8.
14440 * src/output.c (output_skeleton): Rename local var.
14441 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
14442 Bison tokens, as this runs afoul of the 2003-10-07 change that
14443 disallowed NUL bytes in character constants or string literals.
14444
14445 * tests/local.at: Require Autoconf 2.59's Autotest.
14446 * tests/testsuite.at: Don't include local.at, since we now assume
14447 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
14448 including it.
14449 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
14450 multiple inclusion warnings.
14451
14452 2003-12-02 Akim Demaille <akim@epita.fr>
14453
14454 * doc/bison.texinfo (How Can I Reset the Parser): More about start
14455 conditions.
14456 From Bruno Haible.
14457
14458 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
14459
14460 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
14461
14462 2003-10-07 Paul Eggert <eggert@twinsun.com>
14463
14464 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
14465 if testsuite doesn't exist.
14466
14467 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
14468 literals, unfortunately.
14469 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
14470 Complain about NUL bytes in character constants or string literals.
14471
14472 2003-10-05 Paul Eggert <eggert@twinsun.com>
14473
14474 * NEWS: Don't document %no-default-prec, as it's still
14475 too experimental.
14476 * doc/bison.texinfo: Document %no-default-prec only if
14477 the defaultprec flag is set. Normally it's not.
14478
14479 2003-10-04 Paul Eggert <eggert@twinsun.com>
14480
14481 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
14482 non-modifiable lvalue, instead of a modifiable one.
14483 * doc/bison.texinfo (Actions): Document that $$ can
14484 be assigned to. Do not claim that $$ and $N are
14485 array element references: user code should not rely on this.
14486
14487 2003-10-01 Paul Eggert <eggert@twinsun.com>
14488
14489 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
14490 (grammar_declaration): Use it.
14491 * src/scan-gram.l: New token %no-default-prec.
14492 * tests/conflicts.at: Revamp tests to use %no-default-prec.
14493 * NEWS, doc/bison.texinfo: Document the above.
14494
14495 2003-10-01 Akim Demaille <akim@epita.fr>
14496
14497 VCG no longer supports long_straight_phase.
14498
14499 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
14500 * src/print_graph.c (print_graph): Adjust.
14501
14502 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
14503 and Paul Eggert <eggert@twinsun.com>
14504
14505 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
14506 Table of Symbols): Document %default-prec.
14507 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
14508 (grammar_declaration): Set default_prec on %default-prec.
14509 * src/scan-gram.l (%default-prec): New token.
14510 * src/reader.h (default_prec): New flag.
14511 * src/reader.c: Likewise.
14512 (packgram): Handle it.
14513 * tests/conflicts.at (%default-prec without %prec,
14514 %default-prec with %prec, %default-prec 1): New tests.
14515
14516 2003-09-30 Paul Eggert <eggert@twinsun.com>
14517
14518 * tests/testsuite.at: Include local.at, not input.at, fixing
14519 a typo in the 2003-08-25 patch.
14520
14521 2003-08-27 Akim Demaille <akim@epita.fr>
14522
14523 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
14524 GCC warnings.
14525
14526 2003-08-26 Akim Demaille <akim@epita.fr>
14527
14528 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
14529 "<\#" to avoid magic from Gnus when posting parts of this script.
14530
14531 2003-08-26 Akim Demaille <akim@epita.fr>
14532
14533 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
14534 (Parser::parse): here.
14535 Adjust: nerrs and errstatus is now replaced by...
14536 (Parser::nerrs_, Parser::errstatus_): New.
14537
14538 2003-08-25 Akim Demaille <akim@epita.fr>
14539
14540 * config/announce-gen, Makefile.cfg: New.
14541 * Makefile.am: Adjust.
14542 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
14543 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
14544
14545 2003-08-25 Akim Demaille <akim@epita.fr>
14546
14547 When reducing initial empty rules, Bison parser read an initial
14548 location that is not defined. This results in garbage, and that
14549 affects Bison's own parser. Therefore we need (i) to extend Bison
14550 to support a means to initialize this location, and (ii) to use
14551 this CVS Bison to fix CVS Bison's parser.
14552
14553 * src/reader.h, reader.c (epilogue_augment): Remove, replace
14554 with...
14555 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
14556 * src/parse-gram.y: Adjust.
14557 (%initial-action): New.
14558 (%error-verbose): Since we require CVS Bison, there is no reason
14559 not to use it.
14560 * src/scan-gram.l: Adjust.
14561 * src/Makefile.am (YACC): New, to make sure we use our own parser.
14562 * data/yacc.c (yyparse): Use b4_initial_action.
14563
14564 2003-08-25 Akim Demaille <akim@epita.fr>
14565
14566 * doc/bison.texinfo: Don't promote stdout for error messages.
14567
14568 2003-08-25 Akim Demaille <akim@epita.fr>
14569
14570 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
14571 From Alexandre Duret-Lutz.
14572
14573 2003-08-25 Akim Demaille <akim@epita.fr>
14574
14575 Version 1.875c.
14576
14577 2003-08-25 Akim Demaille <akim@epita.fr>
14578
14579 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
14580 Use them.
14581
14582 2003-08-25 Akim Demaille <akim@epita.fr>
14583
14584 * data/lalr1.cc (Parser::reduce_print_): New.
14585 Use it.
14586
14587 2003-08-25 Akim Demaille <akim@epita.fr>
14588
14589 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
14590 error recovery loops. This patch is based on
14591 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
14592 Also, augment the similarity between lalr1.cc and yacc.c.
14593 Note: the locations of error recovery rules are not correct yet.
14594
14595 * data/lalr1.cc: Comment changes to augment the similarity between
14596 lalr1.cc and yacc.c.
14597 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
14598 (yyerrlab1): Remove, but where it used to be (now the bottom part of
14599 yyerrlab), when hitting EOF, pop the whole stack here instead of
14600 merely falling thru the default error handling mechanism.
14601 (yyerrorlab): New label, with the old contents of YYERROR,
14602 plus the following change: pop the stack of rhs corresponding
14603 to the production that invoked YYERROR. That is how Yacc
14604 behaves (required by POSIX).
14605 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
14606 fail.
14607
14608 2003-08-25 Akim Demaille <akim@epita.fr>
14609
14610 Tune local.at so that people can "autom4te -l autotest calc.at -o
14611 calc" for instance, to extract a sub test suite.
14612
14613 * tests/testsuite.at: Move the initialization, Autotest version
14614 requirement, and AT_TESTED invocation into...
14615 * tests/local.at: here.
14616 * tests/testsuite.at: Include it for compatibility with Autoconf
14617 2.57.
14618 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
14619 be ignore.
14620
14621 2003-08-04 Paul Eggert <eggert@twinsun.com>
14622
14623 Rework code slightly to avoid gcc -Wtraditional warnings.
14624 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
14625 The returned value is now stored in *YY0. All callers changed.
14626 * src/output.c (merge_output): Adjust to the above change.
14627
14628 2003-07-26 Paul Eggert <eggert@twinsun.com>
14629
14630 * data/glr.c (YYASSERT): New macro.
14631 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
14632 yyresolveStates, yyprocessOneStack):
14633 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
14634 Derived from a suggestion by Frank Heckenbach.
14635
14636 2003-07-25 Paul Eggert <eggert@twinsun.com>
14637
14638 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
14639 for portability to K&R C (after ansi2knr, presumably). See
14640 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
14641 by Frank Heckenbach, though I have omitted the structure-initialization
14642 part of his glr-knr.diff patch since I recall that the Portable
14643 C Compiler didn't require that change.
14644
14645 Let the user specify how to allocate and free memory.
14646 Derived from a suggestion by Frank Heckenbach in
14647 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
14648 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
14649 All uses of free, malloc, realloc changed to use these macros,
14650 and unnecessary casts removed.
14651 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
14652
14653 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
14654
14655 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
14656 use s.empty() rather than s == "" to test for empty string; see
14657 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
14658 (trivial change)
14659
14660 2003-06-25 Akim Demaille <akim@epita.fr>
14661
14662 * config/depcomp, config/install-sh: Update from masters.
14663
14664 2003-06-20 Paul Eggert <eggert@twinsun.com>
14665
14666 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
14667 and return properly parenthesized result.
14668 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
14669 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
14670 Remove unnecessary parentheses from uses.
14671 * doc/bison.texinfo (Location Default Action): Describe the
14672 conventions for parentheses.
14673
14674 2003-06-19 Paul Eggert <eggert@twinsun.com>
14675
14676 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
14677 yyreportTree): Do not assume that size_t is the same width as int,
14678 when printing sizes. Print sizes using an unsigned format.
14679 Problem reported by Frank Heckenbach in
14680 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
14681
14682 Port to Forte Developer 7 C compiler.
14683 * data/glr.c (struct YYLTYPE): If locations are not being used,
14684 declare a single dummy member, as empty structs do not conform
14685 to the C standard.
14686 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
14687 the Forte Developer 7 C compiler complains that end-of-loop
14688 code is not reached.
14689
14690 2003-06-17 Paul Eggert <eggert@twinsun.com>
14691
14692 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
14693 avoid warnings from picky compilers about redefinition of PARAMS.
14694
14695 2003-06-17 Paul Eggert <eggert@twinsun.com>
14696
14697 Version 1.875b.
14698
14699 * NEWS: Document 1.875b.
14700
14701 * lib/bbitset.h: Do not include config.h; that's the includer's job.
14702 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
14703 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
14704 Don't use 'index' in comments, as it's a builtin fn on some hosts.
14705 * lib/bitset_stats.c: Include gettext.h unconditionally, as
14706 per recent gettext manual's suggestion.
14707 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
14708 Use prototypes, not old-style definitions.
14709 * lib/lbitset.c (lbitset_unused_clear): Likewise.
14710 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
14711 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
14712 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
14713 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
14714 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
14715 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
14716 vbitset_or_and_cmp, vbitset_copy): Likewise.
14717
14718 * lib/libiberty.h: Do not include config.h; that's the includer's job.
14719 Do not include <stdlib.h>.
14720 (PARAMS): Define unconditionally for C89.
14721 (ATTRIBUTE_NORETURN): Remove.
14722 (ATTRIBUTE_UNUSED): Define unconditionally.
14723
14724 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
14725 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
14726 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
14727 * lib/vbitset.c, lib/vbitset.h: New files.
14728 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
14729 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
14730 from libbitset.
14731
14732 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
14733 `How Can I Reset @code{yyparse}', since texinfo does not allow
14734 arbitrary @ in node names.
14735
14736 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
14737 shouldn't be needed according to the gettext 0.12.1 documentation
14738 but which seem to be needed anyway: codeset.m4 glibc21.m4
14739 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
14740 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
14741 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
14742
14743 * lib/.cvsignore: Add stdbool.h.
14744 * m4/.cvsignore: Add nls.m4, po.m4.
14745
14746 Upgrade to CVS gnulib.
14747 * stdbool_.h: File renamed from stdbool.h.in.
14748 * configure.ac (AM_STDBOOL_H): Invoke this instead of
14749 AC_HEADER_STDBOOL.
14750 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
14751 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
14752 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
14753 (MOSTLYCLEANFILES): New var.
14754 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
14755 (stdbool.h): New rule.
14756 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
14757 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
14758 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
14759 m4/quote.m4: Upgrade to today's gnulib.
14760
14761 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
14762 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
14763 the tests right now.
14764 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
14765 yyerror are declared before use; C99 requires this.
14766
14767 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14768
14769 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
14770 first.
14771 (yyrecoverSyntaxError): Correct the logic for setting and testing
14772 yyerrState.
14773 Correct comment on handling EOF.
14774 Allow states with only a default reduction, rather than failing
14775 (I can't quite reconstruct why these were not allowed before).
14776
14777 Fixes to avoid problem that $-N rules in GLR parsers can cause
14778 buffer overruns, corrupting state.
14779
14780 * src/output.c (prepare_rules): Output max_left_semantic_context
14781 definition.
14782 * src/reader.h (max_left_semantic_context): New variable declaration.
14783 * src/scan-gram.l (max_left_semantic_context): Define.
14784 (handle_action_dollar): Update max_left_semantic_context.
14785 * data/glr.c (YYMAXLEFT): New definition.
14786 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
14787 (yyresolveAction): Ditto.
14788
14789 Fixes to problems with location handling in GLR parsers reported by
14790 Frank Heckenbach (2003/06/05).
14791
14792 * data/glr.c (YYLTYPE): Make trivial if locations not used.
14793 (YYRHSLOC): Add parentheses, and define only if locations used.
14794 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
14795 locations not used.
14796 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
14797 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
14798
14799 * tests/cxx-type.at: Exercise location information; update tests
14800 to differentiate output with and without locations.
14801 Remove forward declarations of yylex and yyerror---caused errors
14802 because default YYLTYPE not yet defined.
14803 Change semantic actions to compute strings, rather than printing
14804 them directly (to test proper passing of semantics values). Change
14805 output to prefix notation and update test data and expected results.
14806 (yylex): Track locations.
14807 (stmtMerge): Return value rather than printing, and include arguments
14808 in value.
14809
14810 2003-06-03 Paul Eggert <eggert@twinsun.com>
14811
14812 Avoid warnings generated by GCC 2.95.4 when Bison is
14813 configured with --enable-gcc-warnings.
14814 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
14815 yy::]b4_parser_class_name[::translate_,
14816 yy::Stack::operator[] (unsigned),
14817 yy::Stack::operator[] (unsigned) const,
14818 yy::Slice::operator[] (unsigned),
14819 yy::Slice::operator[] (unsigned) const):
14820 Rename local vars to avoid warnings.
14821 * tests/glr-regression.at (Improper handling of embedded actions
14822 and $-N in GLR parsers): Remove unused local variable from yylex.
14823 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
14824 (void) as arg when not pure, since we now assume C89 when building
14825 Bison. Pacify GCC by using parameter.
14826
14827 2003-06-02 Paul Eggert <eggert@twinsun.com>
14828
14829 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
14830 yy::Location::lines, yy::Location::columns): Rename arguments
14831 to avoid shadowing; this removes a warning generated by GCC 3.3.
14832
14833 2003-06-01 Paul Eggert <eggert@twinsun.com>
14834
14835 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
14836 to g++, as GCC 3.3 complains if you do it.
14837 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
14838 everything that WARNING_CFLAGS has, except omit warnings
14839 not suitable for C++.
14840 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
14841 * tests/atlocal.in (CXXFLAGS): New var.
14842 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
14843
14844 Fix a GLR parser bug I reported in February; see
14845 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
14846 The problem was that GLR parsers did not conform to the C standard,
14847 because actions like { $1 = $2 + $3; } expanded to expressions
14848 that invoked YYFILL in separate subexpressions, and YYFILL assigned
14849 to a local variable. The C standard says that expressions
14850 like (var = f ()) + (var = f ()) have undefined behavior.
14851 Another problem was that GCC sometimes issues warnings that
14852 yyfill and its parameters are unused.
14853
14854 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
14855 as possibly unused.
14856 (yyfill): New function.
14857 (YYFILL): Use it.
14858 (yyuserAction): Change type of yynormal to bool, so that it matches
14859 the new yyfill signature. Mark it as possibly unused.
14860
14861
14862 Follow up on a bug I reported in February, where a Bison-generated
14863 parser can loop. Provide a test case and a fix for yacc.c. I
14864 don't have a fix for lalr1.cc or for glr.c, unfortunately.
14865 The original bug report is in:
14866 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
14867
14868 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
14869 macro's size was becoming unwieldy.
14870 (yyerrlab): Do not discard an empty lookahead symbol, as this
14871 might destroy garbage.
14872 (yyerrorlab): New label, with the old contents of YYERROR,
14873 plus the following change: pop the stack of rhs corresponding
14874 to the production that invoked YYERROR. That is how Yacc
14875 behaves, and POSIX requires this behavior.
14876 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
14877 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
14878 Define 'alarm' to do nothing if unistd.h is not available.
14879 Add a new rule "exp: '-' error;" to test the above change to
14880 data/yacc.c. Use 'alarm' to abort any test taking longer than
14881 10 seconds, as it's probably looping.
14882 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
14883 Also, the new yacc.c generates two fewer diagnostics for an
14884 existing test.
14885
14886 2003-05-24 Paul Eggert <eggert@twinsun.com>
14887
14888 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
14889 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
14890 This fixes a problem reported by John Bowman when the Compaq/HP
14891 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
14892 -ansi -Wall -gall).
14893 * data/yacc.c (union yyalloc): Likewise.
14894 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
14895
14896 Switch from 'int' to 'bool' where that makes sense.
14897
14898 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
14899 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
14900 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
14901 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
14902 Return or accept bool, not int. All callers changed.
14903 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
14904 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
14905 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
14906 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
14907 bitset_or_and_cmp_): Likewise.
14908 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
14909 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
14910 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
14911 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
14912 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
14913 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
14914 bitset_stats_or_and_cmp): Likewise.
14915 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
14916 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
14917 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
14918 ebitset_xor_cmp): Likewise.
14919 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
14920 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
14921 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
14922 lbitset_xor_cmp): Likewise.
14923 * lib/bbitset.h: Include <stdbool.h>.
14924 (struct bitset_vtable): The following members now return bool, not
14925 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
14926 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
14927 or_and_cmp).
14928 * src/conflicts.c (count_rr_conflicts): Likewise.
14929 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
14930 All uses changed.
14931 * lib/ebitset.c (ebitset_obstack_init): Likewise.
14932 * lib/lbitset.c (lbitset_obstack_init): Likewise.
14933 * src/getargs.c (debug_flag, defines_flag, locations_flag,
14934 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
14935 graph_flag): Likewise.
14936 * src/getargs.h (debug_flag, defines_flag, locations_flag,
14937 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
14938 graph_flag): Likewise.
14939 * src/output.c (error_verbose): Likewise.
14940 * src/output.h (error_verbose): Likewise.
14941 * src/reader.c (start_flag, typed): Likewise.
14942 * src/reader.h (typed): Likewise.
14943 * src/getargs.c (LOCATIONS_OPTION): New constant.
14944 (long_options, getargs): Use it.
14945 * src/lalr.c (build_relations): Use bool, not int.
14946 * src/nullable.c (nullable_compute): Likewise.
14947 * src/print.c (print_reductions): Likewise.
14948 * src/tables.c (action_row, pack_vector): Likewise.
14949 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
14950 * src/output.c (prepare): Use it.
14951 * src/output.c (token_definitions_output,
14952 symbol_destructors_output, symbol_destructors_output): Use string,
14953 not boolean integer, to keep track of whether to output separator.
14954 * src/print_graph.c (print_core): Likewise.
14955 * src/state.c (state_rule_lookaheads_print): Likewise.
14956
14957 * config/install-sh: Sync from automake 1.7.5.
14958
14959 2003-05-14 Paul Eggert <eggert@twinsun.com>
14960
14961 * src/parse-gram.y (rules_or_grammar_declaration): Require a
14962 semicolon after a grammar declaration, in the interest of possible
14963 future changes to the Bison input language.
14964 Do not allow a stray semicolon at the start of the grammar.
14965 (rhses.1): Allow one or more semicolons after any rule, including
14966 just before "|" as required by POSIX.
14967 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
14968 grammar.
14969
14970 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
14971
14972 %parse-param support for lalr1.cc.
14973
14974 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
14975 b4_cc_constructor_calls, b4_cc_constructor_call,
14976 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
14977 definitions.
14978 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
14979 parse-param arguments.
14980 (yy::b4_parser_class_name): Declare instance variables to
14981 hold parse-param arguments.
14982 * tests/calc.at: s/value/semantic_value/ because value clashes
14983 with a member of yy::b4_parser_class_name. Adjust C++ code
14984 to handle %parse-param. Enable %parse-param test in C++.
14985
14986 2003-05-12 Paul Eggert <eggert@twinsun.com>
14987
14988 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
14989 English a bit. Fix fclose typo. Change "const char" to "char
14990 const", and use ANSI C rather than K&R for "main". Suggest
14991 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
14992 and suggest yy_switch_to_buffer.
14993
14994 2003-05-05 Paul Eggert <eggert@twinsun.com>
14995
14996 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
14997 C89. This avoids a diagnostic on compilers that define __STDC__
14998 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
14999 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
15000
15001 2003-05-03 Paul Eggert <eggert@twinsun.com>
15002
15003 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
15004 Do not overrun array bounds.
15005 This should fix a bug reported today by Olatunji Oluwabukunmi in
15006 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
15007
15008 2003-04-29 Akim Demaille <akim@epita.fr>
15009
15010 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
15011 * src/getargs.c, src/getargs.h: here, as bool, not int.
15012 (nondeterministic_parser): New.
15013 * src/parse-gram.y, src/scan-gram.l: Support
15014 %nondeterministic-parser.
15015 * src/output.c (prepare): Use nondeterministic_parser instead
15016 of glr_parser where appropriate.
15017 * src/tables.c (conflict_row, action_row, save_row)
15018 (token_actions, token_actions, pack_vector): Ditto.
15019
15020 2003-04-29 Akim Demaille <akim@epita.fr>
15021
15022 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
15023
15024 2003-04-29 Akim Demaille <akim@epita.fr>
15025
15026 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
15027 with %pure-parser and %locations to exercise the patch from Yakov
15028 Markovitch below.
15029
15030 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
15031
15032 * data/yacc.c: (b4_lex_param): Corrected for the case where
15033 %lex-param is provided and %pure-parser isn't.
15034
15035 2003-04-27 Paul Eggert <eggert@twinsun.com>
15036
15037 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
15038 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
15039 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
15040 if it is not defined.
15041 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
15042
15043 2003-04-26 Paul Eggert <eggert@twinsun.com>
15044
15045 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
15046 Declare to be of type suitable for the ninf value itself, not of
15047 type suitable for the corresponding table, since the latter might
15048 be unsigned but the ninf value might be negative. This fixes a
15049 bug reported by Alexandre Duret-Lutz in
15050 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
15051
15052 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
15053 invokes it. We shouldn't invoke it twice because it will attempt
15054 to put error.o in the archive twice. This fixes a glitch reported
15055 by Martin Mokrejs in
15056 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
15057
15058 2003-04-21 Paul Eggert <eggert@twinsun.com>
15059
15060 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
15061 to gnulib.
15062
15063 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
15064
15065 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
15066 Fix obvious typo that results in uncompilable GLR parsers
15067 when both %pure-parser and %locations are used. (trivial change)
15068
15069 2003-04-17 Paul Eggert <eggert@twinsun.com>
15070
15071 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
15072 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
15073 Do not insert the expected token via unput, as this runs afoul
15074 of a POSIX-compatibility bug in flex 2.5.31.
15075 All uses changed to BEGIN the parent state,
15076 since we no longer insert the expected token via unput.
15077 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
15078 that is no longer emitted after the above change.
15079
15080 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
15081 the first one. This change is from Paul Hilfinger, and it fixes
15082 regression reported by Werner Lemberg in
15083 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
15084
15085 (resolve_sr_conflict): Don't invoke state_errs_set
15086 unless one or more tokens have been explicitly made errors.
15087 Otherwise, the above change causes Bison to abort.
15088
15089 * tests/existing.at (GNU pic Grammar): New test case, taken from
15090 Lemberg's email.
15091
15092 2003-03-31 Akim Demaille <akim@epita.fr>
15093
15094 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
15095
15096 2003-03-31 Akim Demaille <akim@epita.fr>
15097
15098 * src/output.c (prepare_symbols): Avoid trailing spaces in the
15099 output.
15100
15101 2003-03-31 Akim Demaille <akim@epita.fr>
15102
15103 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
15104 From Paul Hilfinger.
15105
15106 2003-03-29 Akim Demaille <akim@epita.fr>
15107
15108 * m4/error.m4: Do not put under dynamic conditions some code which
15109 expansion is under static control.
15110
15111 2003-03-29 Akim Demaille <akim@epita.fr>
15112
15113 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
15114
15115 2003-03-29 Akim Demaille <akim@epita.fr>
15116
15117 * doc/bison.texinfo (Strings are Destroyed): New.
15118
15119 2003-03-13 Paul Eggert <eggert@twinsun.com>
15120
15121 * .cvsignore: Add configure.lineno.
15122 * src/.cvsignore: Add yacc.
15123 * tests/.cvsignore: Add testsuite.log.
15124 * doc/fdl.texi: Sync with latest FSF version.
15125
15126 2003-03-12 Paul Eggert <eggert@twinsun.com>
15127
15128 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
15129 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
15130 cursor, instead of leaving it undefined. This fixes a bug
15131 reported by Tim Van Holder in
15132 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
15133 * tests/input.at (Torturing the Scanner): Test the scanner on
15134 an empty input file, which was Tim Van Holder's test case.
15135
15136 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
15137 <sys/resource.h> can be included, include sys/time.h and
15138 sys/times.h first, if available. This works around the SunOS
15139 4.1.4 porting bug reported by Bruce Becker in
15140 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
15141
15142 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
15143 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
15144 AC_HEADER_SYS_WAIT.
15145
15146 Merge changes from gnulib. This was prompted because the CVS
15147 snapshot didn't build on Solaris 7 due to strnlen problems.
15148
15149 These changes need to be merged back into gnulib:
15150 * lib/hash.c: Include <stdbool.h> unconditionally.
15151 * m4/onceonly.m4 (m4_quote): New macro.
15152 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
15153 Quote AC_FOREACH variable-expansions properly.
15154 The 2003-01-03 obstack.h change also needs merging.
15155 {end of changes requiring merging}
15156
15157 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
15158 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
15159 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
15160 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
15161 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
15162 New files, imported from gnulib.
15163 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
15164 above.
15165
15166 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
15167 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
15168 gnulib sources.
15169
15170 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
15171 Add.
15172 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
15173 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
15174 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
15175 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
15176 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
15177 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
15178 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
15179 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
15180 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
15181 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
15182 (jm_PREREQ_ARGMATCH): Remove.
15183 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
15184 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
15185
15186 * src/system.h: Include <stdbool.h> unconditionally.
15187
15188 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
15189 assuming at least C89 in the bitset code for some time now.
15190
15191 2003-03-03 Akim Demaille <akim@epita.fr>
15192
15193 * ro.po: New.
15194
15195 2003-03-02 Akim Demaille <akim@epita.fr>
15196
15197 * doc/bison.texinfo (Table of Symbols): Reactivate the
15198 documentation for %lex-param, and %parse-param.
15199
15200 2003-03-02 Akim Demaille <akim@epita.fr>
15201
15202 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
15203 generate verbose error messages.
15204 Use the number of tokens as an upper bound in yytname, as it
15205 cannot be a non terminal.
15206
15207 2003-03-02 Akim Demaille <akim@epita.fr>
15208
15209 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
15210 message.
15211
15212 2003-03-02 Akim Demaille <akim@epita.fr>
15213
15214 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
15215 Use them to exercise yycheck overrun.
15216 Based on Andrew Suffield's grammar.
15217
15218 2003-03-02 Akim Demaille <akim@epita.fr>
15219
15220 Create tests/local.at for Bison generic testing macros.
15221
15222 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
15223 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
15224 This new file.
15225 * tests/calc.at (AT_CHECK_CALC): Adjust.
15226 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
15227 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
15228 * tests/local.at: here.
15229 (AT_COMPILE_CXX): Tags the tests using it as c++.
15230 Ignore the test if CXX is not functional.
15231
15232 2003-03-01 Paul Eggert <eggert@twinsun.com>
15233
15234 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
15235 not loc->end, since loc->end might contain garbage and this leads
15236 to undefined behavior on some platforms.
15237 (id_loc, token_start): Use (IF_LINTed) initial values that do not
15238 depend on *loc, so that the reader doesn't give the the false
15239 impression that *loc is initialized.
15240 (<INITIAL>"%%"): Do not bother setting code_start, since its value
15241 does not survive the return.
15242
15243 2003-03-01 Akim Demaille <akim@epita.fr>
15244
15245 * src/scan-gram.l (code_start): Always initialize it when entering
15246 into yylex, as SC_EPILOGUE is activated *before* the corresponding
15247 yylex invocation. An alternative would be making it static, but
15248 then it starts with the second %%'s beginning, instead of its end.
15249
15250 2003-02-28 Paul Eggert <eggert@twinsun.com>
15251
15252 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
15253 around a UnixWare 7.1.1 porting bug reported by John Hughes in
15254 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
15255
15256 2003-02-26 Paul Eggert <eggert@twinsun.com>
15257
15258 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
15259 Remove Sequent/Pyramid discussion (nobody uses them any more).
15260 Merge VMS and MS-DOS discussion; these ports may well be dead
15261 but let's keep mentioning them for now. Put <> around email
15262 addresses. Add copyright notice.
15263
15264 2003-02-24 Paul Eggert <eggert@twinsun.com>
15265
15266 * data/glr.c (yy_reduce_print): yylineno -> yylno,
15267 to avoid collision with flex use of yylineno.
15268 Problem reported by Bruce Lilly in
15269 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
15270 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
15271 * data/yacc.c (yy_reduce_print): Likewise.
15272
15273 * config/depcomp: Sync with Automake 1.7.3.
15274
15275 2003-02-21 Akim Demaille <akim@epita.fr>
15276
15277 * data/lalr1.cc: Use temporary variables instead of casts to
15278 change integer types.
15279 Suggested by Paul Eggert.
15280
15281 2003-02-21 Akim Demaille <akim@epita.fr>
15282
15283 * doc/bison.texinfo: Use "location" consistently to refer to @n,
15284 to avoid confusions with lalr1.cc's notion of Position.
15285 Suggested by Paul Eggert.
15286
15287 2003-02-20 Akim Demaille <akim@epita.fr>
15288
15289 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
15290 before initial_columns.
15291 (location.hh): Use consistent variable names when defining the
15292 operator<<.
15293 Use "last" so that we subtract from Positions, not from unsigned.
15294
15295 2003-02-20 Akim Demaille <akim@epita.fr>
15296
15297 * data/lalr1.cc (position.hh): New subfile, including the extended
15298 and Doxygen'ed documentation of class Position.
15299 (location.hh): Use it.
15300 Document a` la Doxygen.
15301 With the help of Benoit Perrot.
15302
15303 2003-02-20 Akim Demaille <akim@epita.fr>
15304
15305 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
15306 AT_YACC_IF.
15307 Redefine AT_YYERROR_SEES_LOC_IF using it.
15308 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
15309 not defined.
15310 Don't use the location in yy::Parser::error_ and
15311 yy::Parser::print_ when not %locations.
15312 Activate more lalr1.cc tests.
15313
15314 2003-02-19 Akim Demaille <akim@epita.fr>
15315
15316 * data/lalr1.cc: When displaying a line number, be sure to make it
15317 an int.
15318
15319 2003-02-19 Akim Demaille <akim@epita.fr>
15320
15321 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
15322 Remove, useless.
15323 (YYABORT, YYACCEPT, YYERROR): New.
15324 * tests/calc.at: Renable the lalr1.cc test.
15325
15326 2003-02-19 Akim Demaille <akim@epita.fr>
15327
15328 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
15329 error recovery, mixing with/without pops and discarding of the
15330 lookahead.
15331 Exercise YYERROR.
15332 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
15333
15334 2003-02-17 Paul Eggert <eggert@twinsun.com>
15335
15336 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
15337 * tests/testsuite.at (AT_COMPILE): Use them.
15338 This fixes the testsuite problem reported by Robert Lentz in
15339 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
15340
15341 2003-02-12 Paul Eggert <eggert@twinsun.com>
15342
15343 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
15344 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
15345 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
15346 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
15347 Check for malloc failure, for consistency with yacc.c.
15348 (yytname_size): Remove, for consistency with yacc.c.
15349
15350 The bug still remains in data/lalr1.cc, as I didn't have time
15351 to fix it there.
15352
15353 2003-02-06 Akim Demaille <akim@epita.fr>
15354
15355 * configure.ac (GXX): Rename as...
15356 (CXX): this, to keep the original Autoconf semantics.
15357 Require 2.57.
15358 * data/lalr1.cc: Fix b4_copyright invocations.
15359 If YYDEBUG is not defined, don't depend upon name_ being defined.
15360 (location.hh): Include string and iostream.
15361 (Position::filename): New member.
15362 (Position::Position ()): New.
15363 (operator<< (Position)): New.
15364 (operator- (Position, int)): New.
15365 (Location::first, Location::last): Rename as...
15366 (Location::begin, Location::end): these, to mock the conventional
15367 iterator names.
15368 (operator<< (Location)): New.
15369 * tests/atlocal.in (CXX): New.
15370 * tests/testsuite.at (AT_COMPILE_CXX): New.
15371 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
15372 locations in a more synthetic way.
15373 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
15374 lalr1.cc is used.
15375 Adjust the C locations to match those from Emacs: first column is
15376 column 0.
15377 Change all the expected results.
15378 Conform to the GCS: simplify the locations when applicable.
15379 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
15380 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
15381 these CPP macros with the m4 macros new defined by...
15382 (AT_CHECK_PUSHDEFS): this, i.e.:
15383 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
15384 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
15385 New macros.
15386 (AT_CHECK_POPDEFS): Undefine them.
15387 (AT_CHECK_CALC_LALR1_CC): New.
15388 Use it for the first lalr1.cc test.
15389
15390 2003-02-04 Akim Demaille <akim@epita.fr>
15391
15392 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
15393 Location as is defined.
15394
15395 2003-02-04 Akim Demaille <akim@epita.fr>
15396
15397 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
15398 name_ being defined.
15399
15400 2003-02-03 Paul Eggert <eggert@twinsun.com>
15401
15402 * src/gram.h (start_symbol): Remove unused decl.
15403
15404 Use more-consistent naming conventions for local vars.
15405
15406 * src/derives.c (derives_compute): Change type of local var from
15407 int to rule_number.
15408 * src/gram.c (grammar_rules_partial_print): Likewise.
15409 * src/print.c (print_core): Likewise.
15410 * src/reduce.c (reduce_grammar_tables): Likewise.
15411
15412 * src/gram.c (grammar_dump): Change name of item_number *
15413 local var from r to rp.
15414 * src/nullable.c (nullable_compute): Likewise.
15415
15416 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
15417
15418 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
15419 for symbol or symbol_number var.
15420 * src/reader.c (grammar_start_symbol_set): Likewise.
15421 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
15422 Likewise.
15423 * src/state.c (transitions_to): Likewise.
15424 * src/state.h: Likewise.
15425 * src/tables.c (symbol_number_to_vector_number): Likewise.
15426
15427 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
15428 char * var.
15429
15430 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
15431 var.
15432
15433 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
15434 var.
15435
15436 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
15437 Use str, not s, for char * var. Use ch, not c, for character var.
15438 Use size for size var.
15439
15440 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
15441 char * var.
15442 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
15443 uniqstr var.
15444 * src/uniqstr.h: Likewise.
15445
15446 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
15447 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
15448 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
15449 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
15450 param to have same name as that of enum, so that we don't use
15451 "s" to stand for a non-state.
15452
15453 2003-02-02 Akim Demaille <akim@epita.fr>
15454
15455 * src/scan-skel.l: Scan more than one inert character per yylex
15456 invocation.
15457
15458 2003-02-01 Paul Eggert <eggert@twinsun.com>
15459
15460 Version 1.875a.
15461
15462 * po/LINGUAS: Add ms.
15463
15464 2003-01-30 Akim Demaille <akim@epita.fr>
15465
15466 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
15467
15468 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15469
15470 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
15471 of $1.
15472
15473 Changes in response to error report by S. Eken: GLR mode does not
15474 handle negative $ indices or $ indices in embedded rules correctly.
15475 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
15476
15477 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
15478 (b4_rhs_location): Ditto.
15479 (yyfill): New function to copy from stack tree into array
15480 incrementally.
15481 (yyuserAction): Modify to allow incremental move of semantic values
15482 to rhs array when in GLR mode.
15483 Define YYFILL to use in user-defined actions to fill semantic array
15484 as needed.
15485 Remove dummy use of yystack, as there is now a guaranteed use.
15486 (yydoAction): Modify to allow incremental move of semantic values
15487 to rhs array when in GLR mode.
15488 (yyresolveAction): Ditto.
15489 (yyglrShiftDefer): Update comment.
15490 (yyresolveStates): Use X == NULL for pointers, not !X.
15491 (yyglrReduce): Ditto.
15492 (yydoAction): Ditto
15493
15494 * tests/glr-regr1.at: Rename to ...
15495 * tests/glr-regression.at: Add new regression test for the problems
15496 described above (adapted from S. Eken).
15497 Update copyright notice.
15498 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
15499 * tests/Makefile.am: Ditto.
15500
15501 2003-01-28 Paul Eggert <eggert@twinsun.com>
15502
15503 * data/lalr1.cc: Do not use @output_header_name@ unless
15504 b4_defines_flag is set. This fixes two bugs reported by
15505 Tim Van Holder in
15506 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
15507 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
15508
15509 2003-01-21 Paul Eggert <eggert@twinsun.com>
15510
15511 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
15512 we don't need to worry about yyerrlab1 being reported as an
15513 "unused label" by non-GCC C compilers. The downside is that if
15514 locations are used then a couple of statements are duplicated each
15515 time YYERROR is invoked, but the upside is that the warnings
15516 should vanish.
15517 (yyerrlab1): Move code to YERROR.
15518 (yyerrlab2): Remove. Change uses back to yyerrlab1.
15519 This reverts some of the 2002-12-27 change.
15520
15521 2003-01-17 Paul Eggert <eggert@twinsun.com>
15522
15523 * src/output.c (symbol_printers_output): Fix typo that led
15524 to core dump. Problem reported by Antonio Rus in
15525 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
15526
15527 2003-01-13 Akim Demaille <akim@epita.fr>,
15528 Quoc Peyrot <chojin@lrde.epita.fr>,
15529 Robert Anisko <anisko_r@lrde.epita.fr>
15530
15531 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
15532 when the stacks contain one element, as the loop would otherwise
15533 free the last state, and then use the top state (the one we just
15534 popped). This means that the initial elements will not be freed
15535 explicitly, as is the case in yacc.c; it is not a problem, as
15536 these elements have fake values.
15537
15538 2003-01-11 Paul Eggert <eggert@twinsun.com>
15539
15540 * NEWS: %expect-violations are now just warnings, reverting
15541 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
15542 bootstrapping problem reported by Matthias Klose; see
15543 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
15544 * src/conflicts.c (conflicts_print): Likewise.
15545 * tests/conflicts.at (%expect not enough, %expect too much,
15546 %expect with reduce conflicts): Likewise.
15547 * doc/bison.texinfo (Expect Decl): Document this. Also mention
15548 that the warning is enabled if the number of conflicts changes
15549 (not necessarily increases).
15550
15551 * src/getargs.c (version): Update copyright year.
15552
15553 2003-01-09 Akim Demaille <akim@epita.fr>
15554
15555 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
15556
15557 2003-01-08 Paul Eggert <eggert@twinsun.com>
15558
15559 * Makefile.maint (WGETFLAGS):
15560 New macro, containing "-C off" to disable proxy caches.
15561 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
15562 (rel-check): Use $(WGET) instead of wget.
15563
15564 2003-01-06 Paul Eggert <eggert@twinsun.com>
15565
15566 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
15567 the GLR paper of Scott, Johnstone and Hussain.
15568
15569 2003-01-04 Paul Eggert <eggert@twinsun.com>
15570
15571 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
15572 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
15573 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
15574 (EXTRA_LIBRARIES): New var, for liby.a.
15575 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
15576 (EXTRA_SCRIPTS): New var, for yacc.
15577
15578 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
15579 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
15580 Problem reported by Nelson H. F. Beebe.
15581
15582 2003-01-03 Paul Eggert <eggert@twinsun.com>
15583
15584 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
15585 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
15586 when compiling Bison 1.875's `bitset bset = obstack_alloc
15587 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
15588
15589 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
15590 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
15591 grow to a huge size with typical invocation.
15592
15593 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
15594 Use the pattern recommended by Autoconf 2.57, except also protect
15595 against double-definition.
15596 * src/system.h: Likewise.
15597 Portability issues reported by Nelson H. F. Beebe.
15598
15599 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
15600 All uses changed. Provide a definition in both C and C++.
15601 (yytrue, yyfalse): Define even if defined (__cplusplus).
15602
15603 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
15604 Reported by Nelson H. F. Beebe.
15605
15606 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
15607
15608 2003-01-02 Paul Eggert <eggert@twinsun.com>
15609
15610 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
15611 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
15612 Bug reported by Nelson H. F. Beebe.
15613
15614 2003-01-01 Paul Eggert <eggert@twinsun.com>
15615
15616 * Version 1.875.
15617
15618 2002-12-30 Paul Eggert <eggert@twinsun.com>
15619
15620 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
15621 Moved here from...
15622 (<INITIAL>","): Here. This causes stray "," to be treated
15623 more uniformly.
15624
15625 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
15626 last brace in braced code when not in Yacc mode, for compatibility
15627 with Bison 1.35. This resurrects the 2001-12-15 patch to
15628 src/reader.c.
15629
15630 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
15631 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
15632
15633 2002-12-28 Paul Eggert <eggert@twinsun.com>
15634
15635 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
15636 that of SYM's type. This fixes Debian bug 168069, reported by
15637 Thomas Olsson.
15638
15639 2002-12-28 Paul Eggert <eggert@twinsun.com>
15640
15641 Version 1.75f.
15642
15643 Switch back to the Yacc style of conflict reports, undoing some
15644 of the 2002-07-30 change.
15645 * doc/bison.texinfo (Understanding): Use Yacc style for
15646 conflict reports. Also, use new way of locating rules.
15647 * src/conflicts.c (conflict_report):
15648 Renamed from conflict_report_yacc, removing the old
15649 'conflict_report'. Translate the entire conflict report at once,
15650 so that we don't assume that "," has the same interpretation in
15651 all languages.
15652 (conflicts_output): Use Yacc-style conflict report for each state,
15653 instead of our more-complicated style.
15654 (conflicts_print): Use Yacc-style conflict report, except print
15655 the input file name when not emulating Yacc.
15656 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
15657 Conflicted Reduction, %expect not enough, %expect too much,
15658 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
15659 * tests/existing.at (GNU Cim Grammar): Likewise.
15660 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
15661
15662 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
15663 fatal): Don't invoke fflush; it's not needed and it might even be
15664 harmful for stdout, as stdout might not be open.
15665 * src/reduce.c (reduce_print): Likewise.
15666
15667 2002-12-27 Paul Eggert <eggert@twinsun.com>
15668
15669 Fix a bug where error locations were not being recorded correctly.
15670 This problem was originally reported by Paul Hilfinger in
15671 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
15672
15673 * data/yacc.c (yyparse): New local var yylerrsp, to record the
15674 top of the location stack's error locations.
15675 (yyerrlab): Set it. When discarding a token, push its location
15676 onto yylerrsp so that we don't lose track of the error's end.
15677 (yyerrlab1): Now is only the target of YYERROR, so that we can
15678 properly record the location of the action that failed. For GCC
15679 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
15680 GCC warning about yyerrlab1 being unused if YYERROR is unused.
15681 (yyerrlab2): New label, which yyerrlab now falls through to.
15682 Compute the error's location by applying YYLLOC_DEFAULT to
15683 the locations of all the symbols that went into the error.
15684 * doc/bison.texinfo (Location Default Action): Mention that
15685 YYLLOC_DEFAULT is also invoked for syntax errors.
15686 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
15687 Error locations include the locations of all the tokens that were
15688 discarded, not just the last token.
15689
15690 2002-12-26 Paul Eggert <eggert@twinsun.com>
15691
15692 * src/files.c: Include quote.h.
15693 (compute_output_file_names): Warn if we detect conflicting
15694 outputs to the same file. This should catch the misunderstanding
15695 exemplified by Debian Bug 165349, reported by Bruce Stephens..
15696
15697 * src/conflicts.c (conflicts_print): If the user specifies
15698 "%expect N", report an error if there are any reduce/reduce
15699 conflicts. This is what the manual says should happen.
15700 This fixes Debian bug 130890, reported by Anthony DeRobertis.
15701 * tests/conflicts.at (%expect with reduce conflicts): New test.
15702
15703 Don't use m4_include on relative file names, as it doesn't work as
15704 desired if there happens to be a file with that name under ".".
15705
15706 * m4sugar/version.m4: Remove; it was included but it wasn't used.
15707 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
15708 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
15709 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
15710 * src/output.c (output_skeleton): Use full path names when
15711 specifying a file to include; don't rely on include path, as
15712 it's unreliable when the working file contains a file with
15713 that name.
15714
15715 2002-12-25 Paul Eggert <eggert@twinsun.com>
15716
15717 Remove obsolete references to bison.simple and bison.hairy.
15718 Problem mentioned by Aubin Mahe in
15719 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
15720 * data/glr.c: Comment fix.
15721 * doc/bison.1: Remove references. Also, mention "yacc".
15722
15723 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
15724 with -g option.
15725
15726 * src/parse-gram.y (declaration): Use enum "report_states" rather
15727 than its numeric value 1.
15728
15729 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
15730 opening a new one. This fixes Debian bug 165349, reported by
15731 Bruce Stephens.
15732
15733 2002-12-24 Paul Eggert <eggert@twinsun.com>
15734
15735 Version 1.75e.
15736
15737 * Makefile.maint (cvs-update): Don't assume that the shell
15738 supports $(...), as Solaris sh doesn't.
15739
15740 * src/parse-gram.y (lloc_default): Remove test for empty
15741 nonterminals at the end, since it didn't change the result.
15742
15743 2002-12-24 Paul Eggert <eggert@twinsun.com>
15744
15745 If the user does not define YYSTYPE as a macro, Bison now declares it
15746 using typedef instead of defining it as a macro. POSIX requires this.
15747 For consistency, YYLTYPE is also declared instead of defined.
15748
15749 %union directives can now have a tag before the `{', e.g., the
15750 directive `%union foo {...}' now generates the C code
15751 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
15752 The default union tag is `YYSTYPE', for compatibility with Solaris 9
15753 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
15754 instead of `yyltype'.
15755
15756 `yystype' and `yyltype' are now obsolescent macros instead of being
15757 typedefs or tags; they are no longer documented and will be
15758 withdrawn in a future release.
15759
15760 * data/glr.c (b4_location_type): Remove.
15761 (YYSTYPE): Renamed from yystype.
15762 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
15763 (struct YYLTYPE): Renamed from struct yyltype.
15764 (YYLTYPE): Renamed from yyltype.
15765 (yyltype, yystype): New (and obsolescent) macros,
15766 for backward compatibility.
15767 * data/yacc.c: Likewise.
15768
15769 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
15770 does not specify a union tag. This is for compatibility with
15771 Solaris 9 yacc.
15772
15773 * src/parse-gram.y (add_param): 2nd arg is now char * not char
15774 const *, since it is now modified by stripping surrounding { }.
15775 (current_braced_code): Remove.
15776 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
15777 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
15778 trailing " {...}". Now of type <chars>.
15779 (grammar_declaration): Adjust to bundled tokens.
15780 (code_content): Remove; stripping is now done by add_param.
15781 (print_token_value): Print contents of bundled tokens.
15782 (token_name): New function.
15783
15784 * src/reader.h (braced_code, current_braced_code): Remove.
15785 (token_name): New decl.
15786
15787 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
15788 token_type, not braced_code code_kind. All uses changed.
15789 (SC_PRE_CODE): New state, for scanning after a keyword that
15790 has (or usually has) an immediately-following braced code.
15791 (token_type): New local var, to keep track of which token type
15792 to return when scanning braced code.
15793 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
15794 <INITIAL>"%parse-param", <INITIAL>"%printer",
15795 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
15796 instead of returning a token type immediately.
15797 (<INITIAL>"{"): Set token type.
15798 (<SC_BRACED_CODE>"}"): Use it.
15799 (handle_action_dollar, handle_action_at): Now returns bool
15800 indicating success. Fail if ! current_rule; this prevents a core dump.
15801 (handle_symbol_code_dollar, handle_symbol_code_at):
15802 Remove; merge body into caller.
15803 (handle_dollar, handle_at): Complain in invalid contexts.
15804
15805 * NEWS, doc/bison.texinfo: Document the above.
15806 * NEWS: Fix years and program names in copyright notice.
15807
15808 2002-12-17 Paul Eggert <eggert@twinsun.com>
15809
15810 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
15811 Reporting, Table of Symbols): Omit mentions of %lex-param and
15812 %parse-param from the documentation for now.
15813
15814 2002-12-15 Paul Eggert <eggert@twinsun.com>
15815
15816 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
15817 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
15818 lookahead symbol, and which sets yychar in parser actions) and it
15819 disagreed with the Bison documentation. Bug
15820 reported by Andrew Walrond.
15821
15822 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
15823 as the caller now does that.
15824 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
15825 (YYEMPTY): Parenthesize right hand side, since others use it.
15826 (yyparse): Don't assume that our generated code is the only code
15827 that sets yychar.
15828
15829 2002-12-13 Paul Eggert <eggert@twinsun.com>
15830
15831 Version 1.75d.
15832
15833 POSIX requires a "yacc" command.
15834 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
15835 (MOSTLYCLEANFILES): Add yacc.
15836 (yacc): New rule.
15837 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
15838 as an alias for bison y.
15839
15840 * po/LINGUAS: Add da.
15841
15842 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
15843 problem with latest <getopt.h>.
15844 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
15845
15846 * doc/fdl.texi: Upgrade to 1.2.
15847 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
15848 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
15849 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
15850 gnulib.
15851 * config/install-sh: Sync with autotools.
15852
15853 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
15854 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
15855 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
15856 locations are requested.
15857 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
15858 locations are requested.
15859
15860 2002-12-12 Paul Eggert <eggert@twinsun.com>
15861
15862 Remove unportable casts and storage allocation tricks.
15863 While we're at it, remove almost all casts, since they
15864 usually aren't needed and are a sign of trouble.
15865
15866 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
15867
15868 * src/derives.c (derives_compute): Do not subtract NTOKENS from
15869 the pointer DSET returned by malloc; this isn't portable.
15870 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
15871 Similarly for DERIVES.
15872 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
15873 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
15874 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
15875
15876 * src/derives.c (derives_compute): Do not bother invoking
15877 int_of_rule_number, since rule numbers are integers.
15878
15879 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
15880 rather than XMALLOC (char, N).
15881
15882 * src/files.c (filename_split): Rewrite to avoid cast.
15883
15884 * src/gram.h (symbol_number_as_item_number,
15885 item_number_as_symbol_number, rule_number_as_item_number,
15886 item_number_as_rule_number):
15887 Now inline functions rather than macros, to avoid casts.
15888 * src/state.h (state_number_as_int): Likewise.
15889 * src/tables.c (state_number_to_vector_number,
15890 symbol_number_to_vector_number): Likewise.
15891
15892 * src/gram.h (int_of_rule_number): Remove; no longer used.
15893
15894 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
15895 since the resulting storage is always stored into.
15896
15897 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
15898 where it's needed.
15899
15900 * src/muscle_tab.c (muscle_m4_output):
15901 Now inline. Return bool, not int.
15902 * src/state.c (state_compare): Likewise.
15903 * src/symtab.c (symbol_check_defined,
15904 symbol_check_alias_consistency, symbol_pack, symbol_translation,
15905 hash_compare_symbol, hash_symbol):
15906 Likewise.
15907 * src/uniqstr.c (uniqstr_print): Likewise.
15908 * src/muscle_tab.c (muscle_m4_output_processor):
15909 New function, to avoid casts.
15910 * src/state.c (state_comparator, stage_hasher): Likewise.
15911 * src/symtab.c (symbol_check_defined_processor,
15912 symbol_check_alias_consistency_processor, symbol_pack_processor,
15913 symbol_translation_processor, hash_symbol_comparator,
15914 hash_symbol_hasher): Likewise.
15915 * src/uniqstr.c (uniqstr_print_processor): Likewise.
15916 * src/muscle_tab.c (muscles_m4_output):
15917 Use new functions instead of casting old functions unportably.
15918 * src/state.c (state_hash_new): Likewise.
15919 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
15920 symbols_token_translations_init):
15921 Likewise.
15922 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
15923
15924 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
15925 var instead of casting to long, to avoid casts.
15926 (prepare_states): Use MALLOC rather than alloca, so that we don't
15927 have to worry about alloca.
15928 * src/state.c (state_hash_lookup): Likewise.
15929
15930 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
15931 local var instead of casting to unsigned char, to avoid casts.
15932
15933 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
15934 STATE_ALLOC): Remove.
15935 (transitions_new, errs_new, reductions_new, state_new): Use malloc
15936 rather than calloc, and use offsetof to avoid allocating slightly
15937 too much storage.
15938 (state_new): Initialize all members.
15939
15940 * src/state.c (state_hash): Use unsigned accumulator, not signed.
15941
15942 * src/symtab.c (symbol_free): Remove; unused.
15943 (symbol_get): Remove cast in lhs of assignment.
15944 (symbols_do): Now static. Accept generic arguments, not
15945 hashing-related ones.
15946
15947 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
15948 (symbol_processor): Remove.
15949 (symbols_do): Remove decl; now static.
15950
15951 * src/system.h (alloca): Remove; decl no longer needed.
15952 (<stddef.h>): Include, for offsetof.
15953 (<inttypes.>, <stdint.h>): Include if available.
15954 (uintptr_t): New type, if system lacks it.
15955 (CALLOC, MALLOC, REALLOC): New macros.
15956 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
15957 new macros.
15958
15959 * src/tables.c (table_size): Now int, to pacify GCC.
15960 (table_grow, table_ninf_remap): Use signed table size.
15961 (save_row): Don't bother initializing locals when not needed.
15962 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
15963 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
15964
15965 * src/vcg.h: Correct misspellings.
15966
15967 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
15968
15969
15970 * src/getargs.c (getargs): Don't assume EOF == -1.
15971
15972 2002-12-09 Paul Eggert <eggert@twinsun.com>
15973
15974 Change identifier spellings to avoid collisions with names
15975 that are reserved by POSIX.
15976
15977 Don't use names ending in _t, since POSIX reserves them.
15978 For consistency, remove _e and _s endings -- they're weren't
15979 needed to remove ambiguity. All uses changed.
15980 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
15981 turn was just renamed from struniq_t.
15982 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
15983 which in turn was just renamed from struniq_processor_t.
15984 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
15985 in turn was renamed from hash_compare_struniq_t.
15986 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
15987 (state_list): Renamed from state_list_t.
15988 * src/assoc.h (assoc): Renamed from assoc_t.
15989 * src/conflicts.c (enum conflict_resolution): Renamed from
15990 enum conflict_resolution_e.
15991 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
15992 (rule_list): Renamed from rule_list_t.
15993 * src/getargs.h (enum trace): Renamed from enum trace_e.
15994 (enum report): Renamed from enum report_e.
15995 * src/gram.h (item_number): Renamed from item_number_t.
15996 (rule_number): Renamed from rule_number_t.
15997 (struct rule_s): Remove the "rule_s" part; not used.
15998 (rule): Renamed from rule_t.
15999 (rule_filter): Renamed from rule_filter_t.
16000 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
16001 (goto_list): Renamed from goto_list_t.
16002 * src/lalr.h (goto_number): Renamed from goto_number_t.
16003 * src/location.h (location): Renamed from location_t.
16004 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
16005 and moved here from:
16006 * src/muscle_tab.h (muscle_entry_t): here.
16007 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
16008 (rule_list): Renamed from rule_list_t.
16009 * src/print_graph.c (static_graph): Renamed from graph.
16010 * src/reader.h (braced_code): Renamed from braced_code_t.
16011 Remove brace_code_e tag.
16012 * src/relation.h (relation_node): Renamed from relation_node_t.
16013 (relation_nodes): Renamed from relation_nodes_t.
16014 (relation): Renamed from relation_t.
16015 * src/state.h (state_number): Renamed from state_number_t.
16016 (struct state): Renamed from struct state_s.
16017 (state): Renamed from state_t.
16018 (transitions): Renamed from transitions_t. Unused (and
16019 misspelled) transtion_s tag removed.
16020 (errs): Renamed from errs_t. Unused errs_s tag removed.
16021 (reductions): Renamed from reductions_t. Unused tag
16022 reductions_s removed.
16023 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
16024 (struct symbol_list): Renamed from struct symbol_list_s.
16025 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
16026 (struct symbol): Renamed from struct symbol_s.
16027 (symbol): Renamed from symbol_t.
16028 * src/tables.c (vector_number): Renamed from vector_number_t.
16029 (action_number): Renamed from action_t.
16030 * src/tables.h (base_number): Renamed from base_t.
16031 * src/vcg.h (enum color): Renamed from enum color_e.
16032 (enum textmode): Renamed from enum textmode_e.
16033 (enum shape): Renamed from enum shape_e.
16034 (struct colorentry): Renamed from struct colorentry_s.
16035 (struct classname): Renamed from struct classname_s.
16036 (struct infoname): Renamed from struct infoname_s.
16037 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
16038 (enum decision): Renamed from enum decision_e.
16039 (enum orientation): Renamed from enum orientation_e.
16040 (enum alignment): Renamed from enum alignment_e.
16041 (enum arrow_mode): Renamed from enum arrow_mode_e.
16042 (enum crossing_type): Renamed from enum crossing_type_e.
16043 (enum view): Renamed from enum view_e.
16044 (struct node): Renamed from struct node_s.
16045 (node): Renamed from node_t.
16046 (enum linestyle): Renamed from enum linestyle_e.
16047 (enum arrowstyle): Renamed from enum arrowstyle_e.
16048 (struct edge): Renamed from struct edge.
16049 (edge): Renamed from edge_t.
16050 (struct graph): Renamed from struct graph_s.
16051 (graph): Renamed from graph_t.
16052 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
16053 Rename value_t -> value.
16054 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
16055 value_t_as_yystype -> value_as_yystype.
16056
16057 Don't include <errno.h> in the mainstream code, since it
16058 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
16059 * lib/get-errno.c, lib/get-errno.h: New files.
16060 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
16061 get-errno.c.
16062 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
16063 * src/output.c (output_skeleton): Likewise.
16064 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
16065 instead of errno.
16066 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
16067 Likewise.
16068 (handle_action_dollar, handle_action_at): Likewise.
16069 * src/system.h: Do not include <errno.h>.
16070 (TAB_EXT): Renamed from EXT_TAB.
16071 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
16072
16073 Avoid str[a-z]*, since <string.h> reserves that name space.
16074 Change all instances of "struniq" in names to "uniqstr", and
16075 likewise for "STRUNIQ" and "UNIQSTR".
16076 * src/uniqstr.c: Renamed from src/struniq.c.
16077 * src/uniqstr.h: Renamed from src/struniq.h.
16078 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
16079 * src/files.c (strsuffix): Remove; unused.
16080 (concat2): Renamed from stringappend. Now static.
16081 * src/files.h (strsuffix, stringappend): Remove; unused.
16082 * src/parse-gram.y (<chars>): Renamed from <string>.
16083 (<uniqstr>): Renamed from <struniq>.
16084 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
16085 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
16086 (struct graph_s.expand): Renamed from struct graph_s.stretch.
16087 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
16088 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
16089 (N_EXPAND): Renamed from N_STRETCH.
16090
16091 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
16092 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
16093 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
16094 Remove; unused.
16095 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
16096 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
16097 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
16098 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
16099 (BASE_MAXIMUM): Renamed from BASE_MAX.
16100 (BASE_MINIMUM): Renamed from BASE_MIN.
16101 (ACTION_MAX): Remove; unused.
16102 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
16103 Unnecessary casts removed from above defines.
16104
16105
16106 Fix misspelling in names.
16107 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
16108 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
16109 G_NODE_ALIGNEMENT.
16110
16111
16112 * lib/timevar.c (timevar_report): Renamed from time_report,
16113 for consistency with other names.
16114 * lib/timevar.h (timevar_report): New decl.
16115 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
16116
16117
16118 Sort include-file uses.
16119
16120 Reorder all include files under src to be in the order "system.h".
16121 then the ../lib include files in angle brackets (alphabetized),
16122 then the . include files in double-quotes (alphabetized). Fix
16123 dependency breakages encountered in this process, as follows:
16124 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
16125 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
16126 * src/state.h: Include "symtab.h".
16127
16128 2002-12-08 Paul Eggert <eggert@twinsun.com>
16129
16130 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
16131 since this causes problems when __file__ contains character
16132 sequences like "@" that are treated specially by src/scan-skel.l.
16133 Instead, just use the file's basename. This fixes the bug
16134 reported by Martin Mokrejs in
16135 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
16136
16137 2002-12-06 Paul Eggert <eggert@twinsun.com>
16138
16139 Add support for rules that do not have trailing semicolons, as
16140 POSIX requires. Improve the quality of locations in Bison
16141 diagnostics.
16142
16143 * src/location.c: Include <quotearg.h>.
16144 (empty_location): Now const.
16145 (location_print): New function. Follow the recommendation of the
16146 GNU Coding Standards for locations that span file boundaries.
16147 * src/location.h: Do not include <quotearg.h>; no longer needed.
16148 (boundary): New type.
16149 (location_t): Use it. This allows locations to span file boundaries.
16150 All member uses changed: file -> start.file or end.file (as needed),
16151 first_line -> start.line, first_column -> start.column,
16152 last_line -> end.line, last_column -> end.column.
16153 (equal_boundaries): New function.
16154 (LOCATION_RESET, LOCATION_STEP): Remove.
16155 (LOCATION_PRINT): Remove. All callers changed to use location_print.
16156 (empty_location): Now const.
16157 (location_print): New decl.
16158 * src/parse-gram.y (lloc_default): New function, which handles
16159 empty locations more accurately.
16160 (YYLLOC_DEFAULT): Use it.
16161 (%token COLON): Remove.
16162 (%token ID_COLON): New token.
16163 (rules): Use it.
16164 (declarations, rules): Remove trailing semicolon.
16165 (declaration, rules_or_grammar_declaration):
16166 Allow empty (";") declaration.
16167 (symbol_def): Remove empty actions; no longer needed.
16168 (rules_or_grammar_declaration): Remove trailing semicolon.
16169 (semi_colon.opt): Remove.
16170 * src/reader.h: Include location.h.
16171 (scanner_cursor): New decl.
16172 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
16173 rolling our own.
16174 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
16175 of *loc.
16176 (STEP): Remove. No longer needed, now that adjust_location does
16177 the work. All uses removed.
16178 (scanner_cursor): New var.
16179 (adjust_location): Renamed from extend_location. It now sets
16180 *loc and adjusts the scanner cursor. All uses changed.
16181 Don't bother testing for CR.
16182 (handle_syncline): Remove location arg; now updates scanner cursor.
16183 All callers changed.
16184 (unexpected_end_of_file): Now accepts start boundary of token or
16185 comment, not location. All callers changed. Update scanner cursor,
16186 not the location.
16187 (SC_AFTER_IDENTIFIER): New state.
16188 (context_state): Renamed from c_context. All uses changed.
16189 (id_loc, code_start, token_start): New local vars.
16190 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
16191 processing of Yacc white space and equivalents here.
16192 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
16193 instead of returning ID immediately, since we need to search for
16194 a subsequent colon.
16195 (<INITIAL>"'", "\""): Save token_start.
16196 (<INITIAL>"%{", "{", "%%"): Save code_start.
16197 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
16198 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
16199 BEGIN context_state at end, not INITIAL.
16200 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
16201 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
16202 Return correct token start.
16203 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
16204 the start of a character, string or multiline comment is found.
16205 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
16206 Reduction): Adjust reported locations to match the more-precise
16207 results now expected.
16208 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
16209 * tests/reduce.at (Useless Rules, Reduced Automaton,
16210 Underivable Rules): Likewise.
16211 * tests/regression.at (Invalid inputs): No longer `expecting ";"
16212 or "|"' now that so many other tokens are allowed by the new grammar.
16213
16214 * src/complain.h (current_file): Remove duplicate decl;
16215 current_file is now owned by files.h.
16216 * src/complain.c, src/scan-gram.l: Include files.h.
16217
16218 2002-12-06 Paul Eggert <eggert@twinsun.com>
16219
16220 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
16221 promotes to int; it might be unsigned int.
16222 * data/yacc.c (yy_reduce_print): Likewise.
16223
16224 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
16225 be #defined in the prologue, not in the Bison declarations.
16226 This fixes Debian Bug 102878, reported by Shaul Karl.
16227
16228 2002-12-02 Paul Eggert <eggert@twinsun.com>
16229
16230 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
16231 * lib/strtoul.c: New file, from gnulib.
16232 This fixes a porting bug reported by Peter Klein in
16233 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
16234
16235 2002-11-30 Paul Eggert <eggert@twinsun.com>
16236
16237 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
16238 and put only a forward declaration in the prologue. This is for
16239 consistency with the other scanner helper functions.
16240
16241 Type clashes now generate warnings, not errors, since it
16242 appears that POSIX may allow some grammars with type clashes.
16243 * src/reader.c (grammar_current_rule_check): Warn about
16244 type clashes instead of complaining.
16245 * tests/input.at (Type Clashes): Expect warnings, not complaints.
16246
16247 Add Yacc library, since POSIX requires it.
16248 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
16249 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
16250 * lib/main.c, lib/yyerror.c: New files.
16251
16252 gram_error can be static; it need not be extern.
16253 * src/reader.h (gram_error): Remove decl.
16254 * src/parse-gram.y (gram_error): Now static. Add static decl.
16255 (print_token_value): Omit parameter names from forward decl,
16256 for consistency.
16257
16258 2002-11-29 Paul Eggert <eggert@twinsun.com>
16259
16260 * doc/bison.texinfo: Emphasize that yylex and yyerror must
16261 be declared before being used. E.g., one should typically
16262 declare them in the prologue. Use GNU coding style in examples.
16263 Put "const" consistently after the type it modifies. Mention
16264 that C99 supports "inline". Mention that yyerror traditionally
16265 returns "int".
16266
16267 %parse-param and %lex-param now take just one argument, the
16268 declaration; the argument name is deduced from the declaration.
16269
16270 * doc/bison.texinfo (Parser Function, Pure Calling, Error
16271 Reporting, Table of Symbols): Document this.
16272 * src/parse-gram.y (add_param): New function.
16273 (COMMA): Remove.
16274 (declaration): Implement new rule for %parse-param and %lex-param.
16275 * src/scan-gram.l: "," now elicits a warning, rather than being
16276 a token; this is more compatible with byacc.
16277 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
16278
16279 2002-11-27 Paul Eggert <eggert@twinsun.com>
16280
16281 Rename identifiers to avoid real and potential collisions.
16282
16283 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
16284 to avoid collision with lex macro described by Bruce Lilly in
16285 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
16286 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
16287 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
16288 * src/parse-gram.y (print_token_value): Renamed from yyprint.
16289 All uses changed.
16290 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
16291 The name "yycontrol" violates the name space rules, and this stuff
16292 wasn't being used anyway.
16293 (input): Remove action; this stuff wasn't being used.
16294 (gram_error): Rename local variable yylloc -> loc.
16295 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
16296 (YY_DECL): Don't use "yy" at start of local variables.
16297 All uses changed, e.g., yylloc -> loc.
16298 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
16299 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
16300 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
16301 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
16302
16303 * src/parse-gram.y (gram_error): loc is now const *.
16304 * src/reader.h (gram_error): Likewise.
16305
16306 2002-11-24 Paul Eggert <eggert@twinsun.com>
16307
16308 Version 1.75c.
16309
16310 * tests/actions.at (Actions after errors): Use an output format
16311 more similar to that of the Printers and Destructors test.
16312 Test the position of the ';' token too.
16313 (Printers and Destructors): Likewise.
16314 (Printers and Destructors: %glr-parser): Remove for now, to avoid
16315 unnecessarily alarming people when the test fails.
16316
16317 * data/yacc.c (yyerrlab1): Move this label down, so that the
16318 parser does not discard the lookahead token if the user code
16319 invokes YYERROR. This change is required for POSIX conformance.
16320
16321 * lib/error.c: Sync with gnulib.
16322
16323 2002-11-22 Paul Eggert <eggert@twinsun.com>
16324
16325 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
16326 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
16327 * lib/xmalloc.c: Likewise.
16328
16329 2002-11-20 Paul Eggert <eggert@twinsun.com>
16330
16331 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
16332
16333 2002-11-20 Paul Eggert <eggert@twinsun.com>
16334
16335 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
16336 should use `if (! x) abort ();' rather than `assert (x);', and
16337 anyway it's one less thing to worry about configuring.
16338
16339 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
16340 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
16341 and replace all instances of assert with abort.
16342 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
16343 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
16344
16345 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
16346 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
16347 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
16348 hash_find_entry, hash_rehash, hash_insert): Likewise.
16349 * src/conflicts.c (resolve_sr_conflict): Likewise.
16350 * src/lalr.c (set_goto_map, map_goto): Likewise.
16351 * src/nullable.c (nullable_compute): Likewise.
16352 * src/output.c (prepare_rules, token_definitions_output): Likewise.
16353 * src/reader.c (packgram, reader): Likewise.
16354 * src/state.c (state_new, state_free, state_transitions_set,
16355 state_reduction_find): Likewise.
16356 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
16357 symbol_pack): Likewise.
16358 * src/tables.c (conflict_row, pack_vector): Likewise.
16359 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
16360 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
16361 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
16362 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
16363
16364 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
16365 (ARGMATCH_CONSTRAINT): New macro.
16366 (ARGMATCH_ASSERT): Use it.
16367
16368 * src/system.h (verify): New macro.
16369 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
16370 rather than assert.
16371 * src/tables.c (tables_generate): Likewise.
16372
16373 * src/struniq.c (struniq_assert): Now returns void, and aborts
16374 if the assertion is false.
16375 (struniq_assert_p): Remove.
16376 * src/struniq.h: Likewise.
16377
16378 2002-11-18 Paul Eggert <eggert@twinsun.com>
16379
16380 * data/glr.c (yygetLRActions): Replace `yyindex' with
16381 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
16382 This fixes the regression with Sun ONE Studio 7 cc that I reported in
16383 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
16384
16385 2002-11-18 Akim Demaille <akim@epita.fr>
16386
16387 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
16388 space.
16389 From Tim Van Holder.
16390
16391 2002-11-17 Paul Eggert <eggert@twinsun.com>
16392
16393 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
16394 to "SyntaxError" for consistency with my 2002-11-15 change.
16395
16396 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
16397 not define to {}, since this breaks the common use of `YYDPRINTF
16398 ((...));' if a single statement is desired (e.g. before `else').
16399 Work around GCC warnings by surrounding corresponding calls with
16400 {} if needed.
16401 (yyhasResolvedValue): Remove unused function.
16402 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
16403 loop body.
16404 (yyreportSyntaxError): Renamed from yyreportParseError.
16405 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
16406 All uses changed.
16407 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
16408 extern when possible. Remove unused initializations.
16409
16410 2002-11-16 Akim Demaille <akim@epita.fr>
16411
16412 Augment the similarity between GLR and LALR traces.
16413
16414 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
16415 (YY_REDUCE_PRINT): New.
16416 (yyparse): Use them.
16417 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
16418 YYDPRINT here.
16419 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
16420 state reached after the reduction/recovery, since...
16421 (yyparse, yyprocessOneStack): Report the state we are entering in.
16422
16423 2002-11-16 Akim Demaille <akim@epita.fr>
16424
16425 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
16426 Add support for --trace=skeleton.
16427 * src/scan-skel.l: %option debug.
16428 Scan strings of non-@ or \n instead of character by character.
16429 (scan_skel): Handle trace_skeleton.
16430 (QPUTS): New.
16431 (@output_parser_name@, @output_header_name@): ``Restore'' their
16432 support (used to be M4 macros).
16433 * data/yacc.c: Quote larger chunks, a la glr.c.
16434 * data/lalr1.cc: Likewise.
16435 The header guards are no longer available, so use some other
16436 string than `YYLSP_NEEDED'.
16437
16438 2002-11-16 Akim Demaille <akim@epita.fr>
16439
16440 Make the ``Printers and Destructors'' test more verbose, taking
16441 `yacc.c''s behavior as (possibly wrong) reference.
16442
16443 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
16444 instead of fprint on stdout.
16445 Set and report the last_line of the symbols.
16446 Consistently display values and locations.
16447
16448 2002-11-16 Paul Eggert <eggert@twinsun.com>
16449
16450 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
16451
16452 2002-11-15 Paul Eggert <eggert@twinsun.com>
16453
16454 * tests/actions.at (Actions after errors): New test case.
16455
16456 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
16457 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
16458 tests/action.at, tests/calc.at, tests/conflicts.at,
16459 tests/cxx-type.at, tests/regression.at:
16460 "parse error" -> "syntax error" for POSIX compatibility.
16461 "parsing stack overflow..." -> "parser stack overflow" so
16462 that code matches Bison documentation.
16463
16464 2002-11-15 Akim Demaille <akim@epita.fr>
16465
16466 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
16467 take two BRACED_CODE, not two string_content.
16468 Free the scanner's obstack when we are done.
16469 (code_content): New.
16470 * tests/calc.at: Adjust.
16471 * doc/bison.texinfo: Adjust.
16472 Also, make sure to include the `,' for these declarations.
16473
16474 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
16475
16476 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
16477 definition; avoids potential autoreconf problems.
16478
16479 2002-11-15 Akim Demaille <akim@epita.fr>
16480
16481 Always check the value returned by yyparse.
16482
16483 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
16484 returned by yyparse.
16485 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
16486 Adjust calls.
16487 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
16488 returned by yyparse.
16489
16490 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16491
16492 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
16493 on input.at test.
16494
16495 2002-11-14 Paul Eggert <eggert@twinsun.com>
16496
16497 * src/output.c (output_skeleton): Call xfopen instead of
16498 duplicating xfopen's body.
16499
16500 Fix bugs reported by Nelson H. F. Beebe in
16501 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
16502
16503 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
16504 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
16505 Group compiler. Instead, use "$CC -E bar.c". Include the .h
16506 file twice in the grammar, as an extra check.
16507
16508 * tests/input.at (Torturing the Scanner): Surround the
16509 backslash-newline tests with "#if 0", to make it less likely that
16510 we'll run into compiler bugs. Bring back solitary \ inside
16511 comment, but add a closing comment to work around HP C bug. Don't
16512 test backslash-newline in C character constant.
16513
16514 2002-11-14 Akim Demaille <akim@epita.fr>
16515
16516 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
16517 status of the compiler.
16518 Calling `exit 1' is no longer needed.
16519 Reported by Nelson H. F. Beebe.
16520
16521 2002-11-14 Akim Demaille <akim@epita.fr>
16522
16523 * tests/atlocal.in (CPPFLAGS): We have config.h.
16524 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
16525 New.
16526 * tests/actions.at, tests/calc.at, tests/conflicts.at,
16527 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
16528 * tests/regression.at, tests/torture.at: Use them for all the
16529 grammars that are to be compiled.
16530 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
16531 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
16532 * doc/bison.texinfo (GLR Parsers): Document `inline'.
16533
16534 2002-11-14 Akim Demaille <akim@epita.fr>
16535
16536 * doc/bison.texinfo: Various formatting changes (alignments in
16537 samples, additional @group/@end group, GCS in samples.
16538 Use @deffn instead of simple @table to define the directives,
16539 macros, variables etc.
16540
16541 2002-11-13 Paul Eggert <eggert@twinsun.com>
16542
16543 Fix some bugs reported by Albert Chin-A-Young in
16544 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
16545
16546 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
16547 -o c"; the HP C compiler chatters during compilation.
16548 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
16549 * tests/headers.at (export YYLTYPE): Likewise.
16550
16551 * tests/input.at (Torturing the Scanner): Remove lines containing
16552 solitary backslashes, as they tickle a bug in the HP C compiler.
16553
16554 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
16555 comments, since they're not portable. Use GNU coding style.
16556
16557 2002-11-13 Akim Demaille <akim@epita.fr>
16558
16559 * data/yacc.c: Leave bigger chunks of quoted text.
16560 (YYDSYMPRINTF): New.
16561 Use it to report symbol activities.
16562 * data/glr.c (YYDSYMPRINTF): New.
16563 Use it.
16564
16565 2002-11-12 Paul Eggert <eggert@twinsun.com>
16566
16567 Version 1.75b.
16568
16569 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
16570 (yyglrReduce): Return yyok, not 0.
16571 This should avoid the enumerated-type warnings reported
16572 by Nelson H. F. Beebe in
16573 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
16574
16575 * lib/bbitset.h (BITSET_INLINE): Remove.
16576 * lib/bitset.h [! BITSET_INLINE]: Remove.
16577 (bitset_set, bitset_reset, bitset_test): Rename local vars
16578 to avoid shadowing warnings by GCC.
16579
16580 * data/glr.c (inline): Remove #define. It's the user's
16581 responsibility to #define it away, just like 'const'.
16582 This fixes one of the bugs reported by Nelson H. F. Beebe in
16583 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
16584
16585 * Makefile.maint (po-check): Scan .l and .y files instead of the
16586 .c and the .h files that they generate. This fixes the bug
16587 reported by Tim Van Holder in:
16588 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
16589 Look for N_ as well as for _. Try to avoid matching #define for
16590 N_ and _.
16591 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
16592 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
16593 * src/scan-gram.l: Revamp regular expressions so that " and '
16594 do not confuse xgettext.
16595
16596 * src/struniq.h (struniq_new): Do not declare the return type
16597 to be 'const'; this violates the C standard.
16598 * src/struniq.c (struniq_new): Likewise.
16599
16600 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
16601
16602 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
16603 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
16604 linker.
16605
16606 2002-11-12 Akim Demaille <akim@epita.fr>
16607
16608 * Makefile.maint: Sync with Autoconf:
16609 (local_updates): New.
16610
16611 2002-11-12 Akim Demaille <akim@epita.fr>
16612
16613 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
16614
16615 2002-11-12 Akim Demaille <akim@epita.fr>
16616
16617 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
16618 locations.
16619
16620 2002-11-12 Akim Demaille <akim@epita.fr>
16621
16622 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
16623 not yyvalue.
16624
16625 2002-11-12 Akim Demaille <akim@epita.fr>
16626
16627 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
16628 Use it to test the GLR parser.
16629
16630 2002-11-12 Akim Demaille <akim@epita.fr>
16631
16632 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
16633 defines it.
16634 * data/glr.c (yystos): New.
16635 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
16636 (YYDSYMPRINT): New.
16637 (yyval): Don't define it, it is handled via M4.
16638 (yyrecoverParseError): Free verbosely the discarded symbols.
16639 * data/yacc.c (yysymprint): Remove, rather...
16640 (b4_yysymprint_generate): invoke.
16641 * data/c.m4 (b4_yysymprint_generate): New.
16642 Accept pointers as arguments, as opposed to the version from
16643 yacc.c.
16644 (b4_yydestruct_generate): Likewise.
16645 * tests/cations.at (Printers and Destructors): Use Bison directives
16646 instead of CPP macros.
16647 Don't rely on internal details.
16648
16649 2002-11-12 Akim Demaille <akim@epita.fr>
16650
16651 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
16652 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
16653 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
16654 it against YYEMPTY and so forth), work on yytoken (i.e., set
16655 it to YYEMPTY etc.).
16656 (yydestruct): Replace with a b4_yydestruct_generate invocation.
16657 (b4_symbol_actions): Remove.
16658 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
16659 for 0, end-of-input.
16660
16661 2002-11-12 Akim Demaille <akim@epita.fr>
16662
16663 * doc/bison.texinfo (Destructor Decl): New.
16664
16665 2002-11-12 Akim Demaille <akim@epita.fr>
16666
16667 * src/tables.c (tables_generate): Use free for pointers that
16668 cannot be NULL, not XFREE.
16669 (pack_vector): Use assert, not fatal, for bound violations.
16670 * src/state.c (state_new): Likewise.
16671 * src/reader.c (reader): Likewise.
16672 * src/lalr.c (set_goto_map): Likewise.
16673 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
16674 the file name.
16675
16676 2002-11-12 Akim Demaille <akim@epita.fr>
16677
16678 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
16679 Restore.
16680 * src/scan-gram.l (last_string): Is global to the file, not to
16681 yylex.
16682 * src/parse-gram.y (input): Don't append the epilogue here,
16683 (epilogue.opt): do it here, and free the scanner's obstack.
16684 * src/reader.c (epilogue_set): Rename as...
16685 (epilogue_augment): this.
16686 * data/c.m4 (b4_epilogue): Defaults to empty.
16687
16688 2002-11-12 Akim Demaille <akim@epita.fr>
16689
16690 * src/getargs.c (long_options): Remove duplicates.
16691 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
16692 Remove.
16693 * doc/bison.rnh: Remove.
16694 * doc/bison.texinfo (VMS Invocation): Remove.
16695
16696 2002-11-12 Akim Demaille <akim@epita.fr>
16697
16698 * src/struniq.h, src/struniq.c (struniq_t): Is const.
16699 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
16700
16701 Use struniq for symbols.
16702
16703 * src/symtab.h (symbol_t): The tag member is a struniq.
16704 (symbol_type_set): Adjust.
16705 * src/symtab.c (symbol_new): Takes a struniq.
16706 (symbol_free): Don't free the tag member.
16707 (hash_compare_symbol_t, hash_symbol_t): Rename as...
16708 (hash_compare_symbol, hash_symbol): these.
16709 Use the fact that tags as struniqs.
16710 (symbol_get): Use struniq_new.
16711 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
16712 Returns a strniq.
16713 * src/reader.h (merger_list, grammar_currentmerge_set): The name
16714 and type members are struniqs.
16715 * src/reader.c (get_merge_function)
16716 (grammar_current_rule_merge_set): Adjust.
16717 (TYPE, current_type): Are struniq.
16718
16719 Use struniq for file names.
16720
16721 * src/files.h, src/files.c (infile): Split into...
16722 (grammar_file, current_file): these.
16723 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
16724 * src/reduce.c (reduce_print): Likewise.
16725 * src/getargs.c (getargs): Likewise.
16726 * src/complain.h, src/complain.c: Likewise.
16727 * src/main.c (main): Call struniqs_new early enough to use it for
16728 file names.
16729 Don't free the input file name.
16730
16731 2002-11-12 Akim Demaille <akim@epita.fr>
16732
16733 * src/symtab.c (symbol_free): Remove dead deactivated code:
16734 type_name are properly removed.
16735 Don't use XFREE to free items that cannot be NULL.
16736 * src/struniq.h, src/struniq.c: New.
16737 * src/main.c (main): Initialize/free struniqs.
16738 * src/parse-gram.y (%union): Add astruniq member.
16739 (yyprint): Adjust.
16740 * src/scan-gram.l (<{tag}>): Return a struniq.
16741 Free the obstack bit that used to store it.
16742 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
16743
16744 2002-11-11 Paul Eggert <eggert@twinsun.com>
16745
16746 Revamp to fix many (but not all) of the C- and M4-related quoting
16747 problems. Among other things, this fixes the Bison bug reported
16748 by Jan Hubicka when processing the Bash grammar; see:
16749 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
16750
16751 Use new @ escapes consistently. Represent brackets with @{ and @}
16752 rather than @<:@ and @:>@, since this works a bit better with dumb
16753 editors like vi. Represent @ with @@, since @ is now consistently
16754 an escape. Use @oline@ and @ofile@ rather than __oline__ and
16755 __ofile__, to avoid unexpected expansions. Similarly, use @output
16756 rather than #output.
16757
16758 * data/c.m4 (b4_copyright): Omit file name from comment, since
16759 the file name could contain "*/".
16760 (b4_synclines_flag): Don't quote the 2nd argument; it should already
16761 be quoted. All uses changed.
16762
16763 * data/glr.c: Use new @ escapes consistently.
16764 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
16765 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
16766 Remove, since they couldn't handle arbitrary characters in file
16767 names.
16768 * data/lalr1.cc: Likewise.
16769 * data/yacc.c: Likewise.
16770
16771 * src/files.c (output_infix): Remove; all uses removed.
16772 * src/files.h: Likewise.
16773
16774 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
16775 mishandled funny characters in file names, and anyway it isn't
16776 needed any more.
16777 * data/yacc.c: Likewise.
16778 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
16779
16780 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
16781 * data/yacc.c: Likewise.
16782
16783 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
16784 strings now.
16785 (muscle_init): Quote filename as a C string.
16786 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
16787 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
16788 * src/output.c (escaped_file_name_output): New function.
16789 (prepare_symbols): Quote tokens for M4.
16790 (prepare): Don't insert output_infix, output_prefix,
16791 output_parser_name, output_header_name; this is now down by scan-skel.
16792 Insert skeleton as a C string.
16793
16794 * src/output.c (user_actions_output, symbol_destructors_output,
16795 symbol_printers_output): Quote filenames for C and M4.
16796 * src/reader.c (prologue_augment, epilogue_set): Likewise.
16797
16798 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
16799 escapes other than \\ and \'; this simplifies the code.
16800 (<SC_STRING>): Likewise, for \\ and \".
16801 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
16802 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
16803 Use new escapes @{ and @} for [ and ].
16804
16805 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
16806 them with auto vars.
16807 Switch to new escape scheme, where @ is the escape character uniformly.
16808 Abort if a stray escape character is found. Avoid unbounded input
16809 buffer when parsing non-escaped text.
16810
16811 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
16812 __oline__, #output, $@, and @{ do not have unintended meanings.
16813
16814 2002-11-09 Paul Eggert <eggert@twinsun.com>
16815
16816 Fix the test failure due to GCC warnings described in
16817 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
16818 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
16819 evaluate to 0 if it's impossible for NINF to be in the respective
16820 table.
16821 (yygetLRActions, yyrecoverParseError): Use them.
16822
16823 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
16824 counted in the token inserted at end of file. Now takes
16825 location_t *, not location_t, so that the location can be
16826 adjusted. All uses changed.
16827
16828 * tests/regression.at (Invalid inputs): Adjust wording in
16829 diagnostic to match the new behavior.
16830
16831 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
16832 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
16833 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
16834 abort ();'. This reduces the runtime of the "Many lookaheads"
16835 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
16836 GCC 3.2.
16837
16838 2002-11-07 Paul Eggert <eggert@twinsun.com>
16839
16840 * src/parse-gram.y (CHARACTER): Remove unused token.
16841 All uses removed.
16842
16843 * src/scan-gram.l: Remove stack option. We no longer use the
16844 stack, since the stack was never deeper than 1; instead, use the
16845 new auto var c_context to record the stacked value.
16846
16847 Remove nounput option. At an unexpected end of file, we now unput
16848 the minimal input necessary to end cleanly; this simplifies the
16849 code.
16850
16851 Avoid unbounded token sizes where this is easy.
16852
16853 (unexpected_end_of_file): New function.
16854 Use it to systematize the error message on unexpected EOF.
16855 (last-string): Now auto, not static.
16856 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
16857 (scanner_last_string_free): Remove; not used.
16858 (percent_percent_count): Move decl to just before use.
16859 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
16860 not the (never otherwised-used) CHARACTER.
16861
16862 2002-11-07 Akim Demaille <akim@epita.fr>
16863
16864 Let yyerror always receive the msg as last argument, so that
16865 yyerror can be variadic.
16866
16867 * data/yacc.c (b4_yyerror_args): New.
16868 Use it when calling yyerror.
16869 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
16870 Use it when calling yyerror.
16871 * doc/bison.texinfo (Error Reporting): Adjust.
16872 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
16873 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
16874
16875 2002-11-06 Akim Demaille <akim@epita.fr>
16876
16877 #line should have quoted strings.
16878 Ideally, this should be done by m4_quotearg.
16879
16880 * src/scan-skel.l: Include quotearg.h.
16881 Quote __ofile__.
16882 * src/output.c (symbol_printers_output)
16883 (symbol_destructors_output): Quote the file name.
16884
16885 2002-11-06 Akim Demaille <akim@epita.fr>
16886
16887 * tests/regression.at (Invalid inputs): Adjust to the recent
16888 messages.
16889
16890 2002-11-06 Akim Demaille <akim@epita.fr>
16891
16892 Restore --no-lines.
16893 Reported by Jim Kent.
16894
16895 * data/c.m4 (b4_syncline): New.
16896 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
16897 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
16898 * src/output.c (user_actions_output): Likewise.
16899 (prepare): Define 'b4_synclines_flag'.
16900 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
16901
16902 2002-11-06 Akim Demaille <akim@epita.fr>
16903
16904 * src/main.c (main): Free `infile'.
16905 * src/scan-gram.l (handle_syncline): New.
16906 Recognize `#line'.
16907 * src/output.c (user_actions_output, symbol_destructors_output)
16908 (symbol_printers_output): Use the location's file name, not
16909 infile.
16910 * src/reader.c (prologue_augment, epilogue_set): Likewise.
16911
16912 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16913
16914 * src/tables.c (matching_state): Don't allow states to match if
16915 either has GLR conflict entries.
16916
16917 2002-11-05 Paul Eggert <eggert@twinsun.com>
16918
16919 * src/scan-gram.l: Use more accurate diagnostics, e.g.
16920 "integer out of range" rather than "invalid value".
16921 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
16922 accordingly.
16923
16924 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
16925 Also, remove one static variable in the scanner.
16926
16927 * src/scan-gram.l (braces_level): Now auto, not static.
16928 Initialize to zero if the compiler is being picky.
16929 (INITIAL): Clear braces_level instead of incrementing it.
16930 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
16931 as POSIX 1003.1-2001 requires.
16932 * src/system.h (IF_LINT): New macro, taken from coreutils.
16933 * configure.ac: Define "lint" if --enable-gcc-warnings.
16934
16935 2002-11-05 Akim Demaille <akim@epita.fr>
16936
16937 * src/scan-gram.l: When it starts with `%', complain about the
16938 whole directive, not just that `invalid character: %'.
16939
16940 2002-11-04 Akim Demaille <akim@epita.fr>
16941
16942 * Makefile.maint: Update from Autoconf.
16943 (update, cvs-update, po-update, do-po-update): New.
16944
16945 2002-11-04 Akim Demaille <akim@epita.fr>
16946
16947 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
16948 and yyerror.
16949 Have yyerror `use' its arguments.
16950 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
16951 returns true when location & yacc & pure & parse-param.
16952 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
16953
16954 2002-11-04 Akim Demaille <akim@epita.fr>
16955
16956 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
16957 clashes.
16958 * src/scan-gram.l: Use [\'] instead of ['] to pacify
16959 font-lock-mode.
16960 Use complain_at.
16961 Use quote, not quote_n since LOCATION_PRINT no longer uses the
16962 slot 0.
16963
16964 2002-11-03 Paul Eggert <eggert@twinsun.com>
16965
16966 * src/reader.c (get_merge_function, grammar_current_rule_check):
16967 Use consistent diagnostics for reporting type name clashes.
16968 Quote the types with <>, for consistency with Yacc.
16969 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
16970
16971 2002-11-03 Akim Demaille <akim@epita.fr>
16972
16973 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
16974 New.
16975 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
16976 (b4_parse_param): Remove.
16977 Use b4_identification.
16978 Propagate b4_pure_args where needed to pass them to yyerror.
16979 * data/glr.m4 (b4_parse_param): Remove.
16980 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
16981 (b4_lpure_formals): New.
16982 Use b4_identification.
16983 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
16984 b4_user_formals and b4_user_args.
16985 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
16986 (yyreportAmbiguity): When using a pure parser, also need
16987 the location, and the parse-params.
16988 Adjust callers.
16989 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
16990 When using a pure parser, also need the parse-params.
16991 Adjust callers.
16992 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
16993 (%pure-parser + %parse-param) LALR and GLR parsers.
16994 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
16995 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
16996 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
16997 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
16998 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
16999 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
17000 * doc/bison.texinfo: Untabify the whole file.
17001 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
17002 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
17003 (Error Reporting): Adjust to these new directives.
17004 Document %error-verbose, deprecate YYERROR_VERBOSE.
17005
17006 2002-11-03 Akim Demaille <akim@epita.fr>
17007
17008 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
17009 AT_CHECK_CALC_GLR invocations to use % directives, instead of
17010 command line options.
17011 * tests/cxx-type.at: Formatting changes.
17012
17013 2002-11-03 Paul Eggert <eggert@twinsun.com>
17014
17015 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
17016 to count columns correctly, and to check for invalid inputs.
17017
17018 Use mbsnwidth to count columns correctly. Account for tabs, too.
17019 Include mbswidth.h.
17020 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
17021 (extend_location): New function.
17022 (YY_LINES): Remove.
17023
17024 Handle CRLF in C code rather than in Lex code.
17025 (YY_INPUT): New macro.
17026 (no_cr_read): New function.
17027
17028 Scan UCNs, even though we don't fully handle them yet.
17029 (convert_ucn_to_byte): New function.
17030
17031 Handle backslash-newline correctly in C code.
17032 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
17033 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
17034 all uses changed.
17035 (tag, splice): New EREs. Do not allow NUL or newline in tags.
17036 Use {splice} wherever C allows backslash-newline.
17037 YY_STEP after space, newline, vertical-tab.
17038 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
17039
17040 (letter, id): Don't assume ASCII; e.g., spell out a-z.
17041
17042 ({int}, handle_action_dollar, handle_action_at): Check for integer
17043 overflow.
17044
17045 (YY_STEP): Omit trailing semicolon, so that it's more like C.
17046
17047 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
17048 as well as \000. Check for UCHAR_MAX, not 255.
17049 Allow \x with an arbitrary positive number of digits, as in C.
17050 Check for overflow here.
17051 Allow \? and UCNs, for compatibility with C.
17052
17053 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
17054 with quote slot used by complain_at.
17055
17056 * tests/input.at: Add tests for backslash-newline, m4 quotes
17057 in symbols, long literals, and funny escapes in strings.
17058
17059 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
17060 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
17061 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
17062 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
17063 * m4/mbswidth.m4: New file, from GNU coreutils.
17064
17065 * doc/bison.texinfo (Grammar Outline): Document // comments.
17066 (Symbols): Document that trigraphs have no special meaning in Bison,
17067 nor is backslash-newline allowed.
17068 (Actions): Document that trigraphs have no special meaning.
17069
17070 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
17071 no longer used.
17072
17073 2002-11-02 Paul Eggert <eggert@twinsun.com>
17074
17075 * src/reader.c: Don't include quote.h; not needed.
17076 (get_merge_function): Reword warning to be consistent with
17077 type clash diagnostic in grammar_current_rule_check.
17078
17079 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
17080 bug in trigraph handling.
17081
17082 * src/output.c (prepare_symbols): When printing token names,
17083 escape "[" as "@<:@" and likewise for "]".
17084
17085 * src/system.h (errno): Remove declaration, as we are now
17086 assuming C89 or better, and C89 guarantees errno.
17087
17088 2002-10-30 Paul Eggert <eggert@twinsun.com>
17089
17090 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
17091 Check for close failures.
17092 * src/files.h (xfclose): Return void, not int, since it always
17093 returned zero.
17094 * src/files.c (xfclose): Likewise. Report I/O error if ferror
17095 indicates one.
17096 * src/output.c (output_skeleton): Use xfclose rather than fclose
17097 and ferror. xfclose now checks ferror.
17098
17099 * data/glr.c (YYLEFTMOST_STATE): Remove.
17100 (yyreportTree): Use a stack-based leftmost state. This avoids
17101 our continuing battles with bogus warnings about initializers.
17102
17103 2002-10-30 Akim Demaille <akim@epita.fr>
17104
17105 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
17106 #if.
17107
17108 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17109
17110 * tests/glr-regr1.at: New test for reported regressions.
17111 * tests/testsuite.at: Add glr-regr1.at test.
17112 * tests/Makefile.am: Add glr-regr1.at test.
17113
17114 2002-10-24 Paul Eggert <eggert@twinsun.com>
17115
17116 Version 1.75a.
17117
17118 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
17119 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
17120 we use malloc. Don't assume 'A' through 'Z' are contiguous.
17121 Don't assume strdup exists; POSIX says its an XSI extension.
17122 Check for buffer overflow on input.
17123
17124 2002-10-24 Akim Demaille <akim@epita.fr>
17125
17126 * src/output.c (output_skeleton): Don't disable M4sugar comments
17127 too soon: it results in comments being expanded.
17128 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
17129 first output.
17130
17131 2002-10-24 Akim Demaille <akim@epita.fr>
17132
17133 * data/yacc.c (m4_int_type): New.
17134 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
17135 char' as only yacc.c wants K&R portability.
17136 * data/glr.c (yysigned_char): Remove.
17137 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
17138 Reported by Quoc Peyrot.
17139
17140 2002-10-23 Paul Eggert <eggert@twinsun.com>
17141
17142 * src/main.c (main): With --trace=time, report times even if a
17143 non-fatal error occurs. Formerly, the times were reported in some
17144 such cases but not in others.
17145 * src/reader.c (reader): Just return if a complaint has been issued,
17146 instead of exiting, so that 'main' can report times.
17147
17148 2002-10-22 Akim Demaille <akim@epita.fr>
17149
17150 * src/system.h: Include sys/types.
17151 Reported by Bert Deknuydt.
17152
17153 2002-10-23 Paul Eggert <eggert@twinsun.com>
17154
17155 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
17156 Suggested by Art Haas.
17157
17158 2002-10-22 Paul Eggert <eggert@twinsun.com>
17159
17160 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
17161 decl; not needed any more.
17162 * src/main.c (main): Use return to exit, undoing yesterday's change.
17163 The last OS that we could find where this wouldn't work is
17164 SunOS 3.5, and that's too old to worry about now.
17165
17166 * data/glr.c (struct yyltype): Define members even when not
17167 doing locations. This is more consistent with yacc.c, and it
17168 works around the following bug reports:
17169 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
17170 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
17171
17172 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
17173 @acronym consistently. Standardize on "Yacc" instead of "YACC",
17174 "Algol" instead of "ALGOL". Give a bit more history about BNF.
17175
17176 2002-10-22 Akim Demaille <akim@epita.fr>
17177
17178 * data/README: New.
17179
17180 2002-10-21 Paul Eggert <eggert@twinsun.com>
17181
17182 Be consistent about 'bool'; the old code used an enum in one
17183 module and an int in another, and this violates the C standard.
17184 * m4/stdbool.m4: New file, from coreutils 4.5.3.
17185 * configure.ac (AC_HEADER_STDBOOL): Add.
17186 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
17187 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
17188 * src/symtab.c (hash_compare_symbol_t): Likewise.
17189 * src/system.h (bool, false, true): Use a definition consistent
17190 with ../lib/hash.c. All uses changed.
17191
17192 * src/complain.c (warning_issued): Renamed from warn_message_count,
17193 so that we needn't worry about integer overflow (!).
17194 Now of type bool. All uses changed.
17195 (complaint_issued): Renamed from complain_message_count; likewise.
17196
17197 * src/main.c (main): Use exit to exit with failure.
17198
17199 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
17200 rather than 1 and 0.
17201 * src/main.c (main): Likewise.
17202 * src/getargs.c (getargs): Likewise.
17203 * src/reader.c (reader): Likewise.
17204
17205 * src/getarg.c (getargs): Remove duplicate code for
17206 "Try `bison --help'".
17207
17208 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
17209 What was that "2" for?
17210
17211 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
17212 * src/getargs.c (usage): Likewise.
17213
17214 * src/getargs.c (getargs): When there are too few operands, report
17215 the last one. When there are too many, report the first extra
17216 one. This is how diffutils does it.
17217
17218 2002-10-20 Paul Eggert <eggert@twinsun.com>
17219
17220 Remove K&R vestiges.
17221 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
17222 * src/complain.c (VA_START): Remove. Assume prototypes.
17223 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
17224 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
17225 fatal): Assume prototypes.
17226 * src/complain.h: Assume prototypes.
17227 * src/system.h (PARAMS): Remove.
17228 Include <limits.h> unconditionally, since it's guaranteeed even
17229 for a freestanding C89 compiler.
17230 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
17231 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
17232
17233 2002-10-20 Akim Demaille <akim@epita.fr>
17234
17235 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
17236 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
17237 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
17238 (yyresolveStates, yyresolveAction, yyresolveStack)
17239 (yyprocessOneStack): Use them.
17240 (yy_reduce_print): New.
17241 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
17242
17243 2002-10-20 Akim Demaille <akim@epita.fr>
17244
17245 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
17246 arguments and output `void'.
17247 (b4_c_function): Rename as...
17248 (b4_c_function_def): this.
17249 (b4_c_function_decl, b4_c_ansi_function_def)
17250 (b4_c_ansi_function_decl): New.
17251 Change the interpretation of the arguments: before `int, foo', now
17252 `int foo, foo'.
17253 * data/yacc.c (yyparse): Prototype and define thanks to these.
17254 Adjust b4_c_function_def uses.
17255 * data/glr.c (yyparse): Likewise, but ANSI only.
17256
17257 2002-10-20 Akim Demaille <akim@epita.fr>
17258
17259 * src/output.c (prepare): Move the definition of `tokens_number',
17260 `nterms_number', `undef_token_number', `user_token_number_max'
17261 to...
17262 (prepare_tokens): Here.
17263 (prepare_tokens): Rename as...
17264 (prepare_symbols): this.
17265 (prepare): Move the definition of `rules_number' to...
17266 (prepare_rules): here.
17267 (prepare): Move the definition of `last', `final_state_number',
17268 `states_number' to...
17269 (prepare_states): here.
17270 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
17271
17272 2002-10-20 Akim Demaille <akim@epita.fr>
17273
17274 * src/tables.h, src/tables.c, src/output.c: Comment changes.
17275
17276 2002-10-20 Akim Demaille <akim@epita.fr>
17277
17278 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
17279 * data/c.m4: here.
17280
17281 2002-10-20 Akim Demaille <akim@epita.fr>
17282
17283 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
17284 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
17285 `pair'.
17286 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
17287 `name' to...
17288 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
17289 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
17290 These.
17291
17292 2002-10-19 Paul Eggert <eggert@twinsun.com>
17293
17294 Do not create a temporary file, as that involves security and
17295 cleanup headaches. Instead, use a pair of pipes.
17296 Derived from a suggestion by Florian Krohm.
17297 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
17298 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
17299 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
17300 (BISON_PREREQ_SUBPIPE): Add.
17301 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
17302 Add subpipe.h, subpipe.c.
17303 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
17304 * po/POTFILES.in: Add lib/subpipe.c.
17305 * src/output.c: Include "subpipe.h".
17306 (m4_invoke): Remove decl.
17307 (scan_skel): New decl.
17308 (output_skeleton): Use pipe rather than temporary file for m4 input.
17309 Check that m4sugar.m4 is readable, to avoid deadlock.
17310 Check for pipe I/O error.
17311 * src/scan-skel.l (readpipe): Remove decl.
17312 (scan_skel): New function, to be used in place of m4_invoke.
17313 Read from stream rather than file.
17314
17315 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
17316 float, as this generates a warning on Solaris 8 + GCC 3.2 with
17317 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
17318 this generates a more-accurate value anyway.
17319
17320 * lib/timevar.c (timervar_accumulate): Rename locals to
17321 avoid confusion with similarly-named more-global.
17322 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
17323
17324 * src/output.c (prepare): Use xstrdup to convert char const *
17325 to char *, to avoid GCC warning.
17326
17327 2002-10-19 Akim Demaille <akim@epita.fr>
17328
17329 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
17330 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
17331 Use them to have `calc.y' ready for %pure-parser.
17332 * data/yacc.c (YYLEX): Pass a yylex return type to
17333 b4_c_function_call.
17334
17335 2002-10-19 Akim Demaille <akim@epita.fr>
17336
17337 Prototype support of %lex-param and %parse-param.
17338
17339 * src/parse-gram.y: Add the definition of the %lex-param and
17340 %parse-param tokens, plus their rules.
17341 Drop the `_' version of %glr-parser.
17342 Add the "," token.
17343 * src/scan-gram.l (INITIAL): Scan them.
17344 * src/muscle_tab.c: Comment changes.
17345 (muscle_insert, muscle_find): Rename `pair' as `probe'.
17346 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
17347 (muscle_entry_s): The `value' member is no longer const.
17348 Adjust all dependencies.
17349 * src/muscle_tab.c (muscle_init): Adjust: use
17350 MUSCLE_INSERT_STRING.
17351 Initialize the obstack earlier.
17352 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
17353 (muscle_pair_list_grow): New.
17354 * data/c.m4 (b4_c_function_call, b4_c_args): New.
17355 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
17356 * tests/calc.at: Use %locations, not --locations.
17357 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
17358
17359 2002-10-19 Akim Demaille <akim@epita.fr>
17360
17361 * src/getargs.c (usage): Take status as argument and exit
17362 accordingly.
17363 Report the traditional `Try ... --help' message when status != 0.
17364 (usage, version): Don't take a FILE * as arg, it is pointless.
17365 (getargs): When there is an incorrect number of arguments, make it
17366 an error, and report it GNUlically thanks to `usage ()'.
17367
17368 2002-10-18 Paul Eggert <eggert@twinsun.com>
17369
17370 * data/glr.c (yyreportParseError): Don't assume that sprintf
17371 yields the length of the printed string, as this is not true
17372 on SunOS 4.1.4. Reported by Peter Klein.
17373
17374 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
17375 * tests/conflicts.at (%nonassoc and eof): Likewise.
17376 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
17377
17378 2002-10-17 Akim Demaille <akim@epita.fr>
17379
17380 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
17381 * src/getargs.c (trace_types, trace_args): Adjust.
17382 * src/reader.c (grammar_current_rule_prec_set)
17383 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
17384 Standardize error messages.
17385 And s/@prec/%prec/!
17386 (reader): Use trace_flag to enable scanner/parser debugging,
17387 instead of an adhoc scheme.
17388 * src/scan-gram.l: Remove trailing debugging code.
17389
17390 2002-10-16 Paul Eggert <eggert@twinsun.com>
17391
17392 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
17393 MUSCLE_TAB_H.
17394
17395 * NEWS: Officially drop support for building Bison with K&R C,
17396 since it didn't work anyway and it's not worth worrying about.
17397 * Makefile.maint (wget_files): Remove ansi2knr.c.
17398 (ansi2knr.c-url_prefix): Remove.
17399 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
17400 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
17401 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
17402
17403 2002-10-15 Paul Eggert <eggert@twinsun.com>
17404
17405 Stop using the "enum_" trick for K&R-style function definitions;
17406 it confused me, and I was the author! Instead, assume that people
17407 who want to use K&R C compilers (when using these modules in GCC,
17408 perhaps?) will run ansi2knr.
17409
17410 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
17411 All uses of "enum_" changed to "enum ".
17412 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
17413 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
17414
17415 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
17416 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
17417 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
17418 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
17419 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
17420 abitset_not, abitset_ones, abitset_or, abitset_or_and,
17421 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
17422 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
17423 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
17424 Use function prototypes; this removes the need for declaring
17425 static functions simply to provide their prototypes.
17426 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
17427 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
17428 bitset_count_, bitset_create, bitset_dump, bitset_first,
17429 bitset_free, bitset_init, bitset_last, bitset_next,
17430 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
17431 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
17432 bitset_print, bitset_release_memory, bitset_toggle_,
17433 bitset_type_choose, bitset_type_get, bitset_type_name_get,
17434 debug_bitset): Likewise.
17435 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
17436 * lib/bitset_stats.c (bitset_log_histogram_print,
17437 bitset_percent_histogram_print, bitset_stats_and,
17438 bitset_stats_and_cmp, bitset_stats_and_or,
17439 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
17440 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
17441 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
17442 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
17443 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
17444 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
17445 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
17446 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
17447 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
17448 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
17449 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
17450 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
17451 bitset_stats_zero): Likewise.
17452 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
17453 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
17454 bitsetv_dump, debug_bitsetv): Likewise.
17455 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
17456 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
17457 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
17458 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
17459 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
17460 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
17461 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
17462 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
17463 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
17464 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
17465 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
17466 Likewise.
17467 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
17468 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
17469 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
17470 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
17471 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
17472 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
17473 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
17474 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
17475 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
17476 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
17477 lbitset_xor_cmp, lbitset_zero): Likewise.
17478
17479 2002-10-14 Akim Demaille <akim@epita.fr>
17480
17481 Version 1.75.
17482
17483 2002-10-14 Akim Demaille <akim@epita.fr>
17484
17485 * tests/Makefile.am (maintainer-check-posix): New.
17486
17487 2002-10-14 Akim Demaille <akim@epita.fr>
17488
17489 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
17490 member.
17491
17492 2002-10-14 Akim Demaille <akim@epita.fr>
17493
17494 * src/tables.c (table_ninf_remap): base -> tab.
17495 Reported by Matt Rosing.
17496
17497 2002-10-14 Paul Eggert <eggert@twinsun.com>
17498
17499 * tests/action.at, tests/calc.at, tests/conflicts.at,
17500 tests/cxx-type.at, tests/headers.at, tests/input.at,
17501 tests/regression.at, tests/synclines.at, tests/torture.at:
17502 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
17503 so that the tests still work even if POSIXLY_CORRECT is set.
17504 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
17505
17506 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
17507 for portability to K&R hosts. Fix typo: signed char is guaranteed
17508 only to 127, not to 128.
17509 * data/glr.c (yysigned_char): New type.
17510 * data/yacc.c (yysigned_char): Likewise.
17511 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
17512
17513 2002-10-13 Paul Eggert <eggert@twinsun.com>
17514
17515 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
17516 true due to limited range of data type" warning from GCC.
17517
17518 * data/c.m4 (b4_token_defines): Protect against double-inclusion
17519 by wrapping enum yytokentype's definition inside #ifndef
17520 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
17521
17522 2002-10-13 Akim Demaille <akim@epita.fr>
17523
17524 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
17525 Un yy- yyrhs to avoid the name clash with the global YYRHS.
17526
17527 2002-10-13 Akim Demaille <akim@epita.fr>
17528
17529 * Makefile.maint: Update from Autoconf 2.54.
17530 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
17531
17532 2002-10-13 Akim Demaille <akim@epita.fr>
17533
17534 * src/print.c (print_state): Separate the list of solved conflicts
17535 from the other items.
17536 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
17537
17538 2002-10-13 Akim Demaille <akim@epita.fr>
17539
17540 Let nondeterministic skeletons be usable with deterministic
17541 tables.
17542
17543 With the patch, GAWK compiled by GCC without -O2 passes its test
17544 suite using a GLR parser driven by LALR tables. It fails with -O2
17545 because `struct stat' gives two different answers on my machine:
17546 88 (definition of an auto var) and later 96 (memset on this var).
17547 Hence the stack is badly corrumpted. The headers inclusion is to
17548 blame: if I move the awk.h inclusion before GLR's system header
17549 inclusion, the two struct stat have the same size.
17550
17551 * src/tables.c (pack_table): Always create conflict_table.
17552 (token_actions): Always create conflict_list.
17553 * data/glr.c (YYFLAG): Remove, unused.
17554
17555 2002-10-13 Akim Demaille <akim@epita.fr>
17556
17557 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
17558 (O0FLAGS): New.
17559 (VALGRIND, GXX): New.
17560 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
17561 * tests/bison.in: Run $PREBISON a pre-command.
17562 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
17563 (maintainer-check-g++): New.
17564 * Makefile.am (maintainer-check): New.
17565
17566 2002-10-13 Akim Demaille <akim@epita.fr>
17567
17568 * data/glr.c: Formatting changes.
17569 Tweak some trace messages to match yacc.c's.
17570
17571 2002-10-13 Akim Demaille <akim@epita.fr>
17572
17573 GLR parsers sometimes raise parse errors instead of performing the
17574 default reduction.
17575 Reported by Charles-Henry de Boysson.
17576
17577 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
17578 check the length of the traces when %glr.
17579 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
17580 GLR's traces.
17581 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
17582 Test GLR parsers.
17583 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
17584 (yyltype): Remove the yy prefix from the member names.
17585 (yytable): Complete its comment.
17586 (yygetLRActions): Map error action number from YYTABLE from
17587 YYTABLE_NINF to 0.
17588 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
17589 (which was a bug: it should have been YYTABEL_NINF, and yet it was
17590 not satisfying as we could compare an YYACTION computed from
17591 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
17592 only value for error actions.
17593 (yyreportParseError): In verbose parse error messages, don't issue
17594 `error' in the list of expected tokens.
17595 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
17596 next action to perform to match glr.c's decoding.
17597 (yytable): Complete its comment.
17598
17599 2002-10-13 Paul Eggert <eggert@twinsun.com>
17600
17601 Fix problem reported by Henrik Grubbstroem in
17602 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
17603 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
17604 because the Bison parser reads the second action before reducing
17605 the first one.
17606 * src/scan-gram.l (rule_length): New static var.
17607 Use it to keep track of the rule length in the scanner, since
17608 we can't expect the parser to be in lock-step sync with the scanner.
17609 (handle_action_dollar, handle_action_at): Use this var.
17610 * tests/actions.at (Exotic Dollars): Test for the problem.
17611
17612 2002-10-12 Paul Eggert <eggert@twinsun.com>
17613
17614 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
17615 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
17616 Include <sys/time.h> when checking for clock_t and struct tms.
17617 Use same include order as source.
17618 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
17619 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
17620
17621 * lib/timevar.c: Update copyright date and clarify comments.
17622 (get_time) [IN_GCC]: Keep the GCC version for reference.
17623
17624 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
17625 GCC version as of today, then merge Bison's changes.
17626 Change "GCC" to "Bison" in copyright notice. timevar.def's
17627 author is Akim, so change that too.
17628
17629 * src/reader.c (grammar_current_rule_check):
17630 Don't worry about the default action if $$ is untyped.
17631 Prevents bogus warnings reported by Jim Gifford in
17632 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
17633
17634 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
17635 * data/glr.c, data/lalr1.cc, data/yacc.c:
17636 Output token definitions before the first part of user declarations.
17637 Fixes compatibility problem reported by Jim Gifford for kbd in
17638 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
17639
17640 2002-10-11 Paul Eggert <eggert@twinsun.com>
17641
17642 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
17643 (yyparse): here. This undoes some of the 2002-07-25 change.
17644 Compatibility problem reported by Ralf S. Engelschall with
17645 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
17646
17647 2002-10-11 Akim Demaille <akim@epita.fr>
17648
17649 * tests/regression.at Characters Escapes): New.
17650 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
17651 characters.
17652 Reported by Jan Nieuwenhuizen.
17653
17654 2002-10-11 Akim Demaille <akim@epita.fr>
17655
17656 * po/id.po: New.
17657
17658 2002-10-10 Paul Eggert <eggert@twinsun.com>
17659
17660 Portability fixes for bitsets; this also avoids several GCC
17661 warnings.
17662
17663 * lib/abitset.c: Include <stddef.h>, for offsetof.
17664 * lib/lbitset.c: Likewise.
17665
17666 * lib/abitset.c (abitset_bytes): Return a size that is aligned
17667 properly for vectors of objects. Do not assume that adding a
17668 header size to a multiple of a word size yields a value that is
17669 properly aligned for the whole union.
17670 * lib/bitsetv.c (bitsetv_alloc): Likewise.
17671
17672 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
17673 unique names for structures.
17674 * lib/ebitset.c (ebitset_bytes): Likewise.
17675 * lib/lbitset.c (lbitset_bytes): Likewise.
17676
17677 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
17678 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
17679 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
17680 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
17681 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
17682 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
17683 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
17684 to improve the type-checking that GCC can do.
17685 * lib/bitset.c (bitset_op4_cmp): Likewise.
17686 * lib/bitset_stats.c (bitset_stats_count,
17687 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
17688 bitset_stats_copy, bitset_stats_disjoint_p,
17689 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
17690 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
17691 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
17692 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
17693 bitset_stats_and_or_cmp, bitset_stats_andn_or,
17694 bitset_stats_andn_or_cmp, bitset_stats_or_and,
17695 bitset_stats_or_and_cmp): Likewise.
17696 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
17697 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
17698 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
17699 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
17700
17701 * lib/abitset.h: Include bitset.h, not bbitset.h.
17702 * lib/ebitset.h: Likewise.
17703 * lib/lbitset.h: Likewise.
17704
17705 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
17706 All instances of parameters of type enum bitset_opts are now of
17707 type enum_bitset_opts, to conform to the C Standard, and similarly
17708 for enum_bitset_type.
17709 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
17710 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
17711
17712 Do not use "struct bitset_struct" to mean different things in
17713 different modules. Not only is this confusing, it violates
17714 the C Standard, which requires that structure types in different
17715 modules must be compatible if one is to be passed to the other.
17716 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
17717 All instances of "struct bitset_struct *" replaced with "bitset".
17718 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
17719 (union bitset_union, struct abitset_struct, struct ebitset_struct,
17720 struct lbitset_struct, struct bitset_stats_struct): New types.
17721 All uses of struct bitset_struct changed to union bitset_union,
17722 etc.
17723 * lib/abitset.c (struct abitset_struct, abitset,
17724 struct bitset_struct): Remove.
17725 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
17726 struct bitset_struct): Remove.
17727 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
17728 bitset_struct): Remove.
17729 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
17730 Likewise.
17731
17732 Do not call a function of type T using a call that assumes the
17733 function is of a different type U. Standard C requires that a
17734 function must be called with a type that is compatible with its
17735 definition.
17736 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
17737 New decls.
17738 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
17739 New functions.
17740 * lib/ebitset.c (PFV): Remove.
17741 * lib/lbitset.c (PFV): Likewise.
17742 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
17743 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
17744 decls.
17745 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
17746 (ebitset_vtable): Use them.
17747 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
17748 lbitset_xor): New functions.
17749 (lbitset_vtable): Use them.
17750
17751 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
17752 Declare.
17753
17754 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
17755 GCC warning.
17756 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
17757 Use offsetof, for simplicity.
17758
17759 2002-10-06 Paul Eggert <eggert@twinsun.com>
17760
17761 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
17762 the same width as int. This reapplies a hunk of the 2002-08-12 patch
17763 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
17764 which was inadvertently undone by the 2002-09-30 patch.
17765 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
17766 the same width as int.
17767
17768 2002-10-04 Paul Eggert <eggert@twinsun.com>
17769
17770 Version 1.50.
17771
17772 * configure.ac (AC_INIT), NEWS: Increment version number.
17773
17774 * doc/bison.texinfo: Minor spelling, grammar, and white space
17775 fixes.
17776 (Symbols): Mention that any negative value returned from yylex
17777 signifies end-of-input. Warn about negative chars. Mention
17778 the portable Standard C character set.
17779
17780 The GNU coding standard says CFLAGS and YFLAGS are reserved
17781 for the installer to set.
17782 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
17783 * src/Makefile.am (AM_CFLAGS): Likewise.
17784 (AM_YFLAGS): Renamed from YFLAGS.
17785
17786 Fix some MAX and MIN problems.
17787 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
17788 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
17789 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
17790 * src/reader.c (reader): Use it.
17791
17792 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
17793 POSIX 1003.1-2001 has removed fgrep.
17794
17795 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
17796
17797 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
17798 interpreted as signed.
17799 * lib/ebitset.c (ebitset_list): Fix bug.
17800
17801 2002-10-01 Paul Eggert <eggert@twinsun.com>
17802
17803 More fixes for 64-bit hosts and large bitsets.
17804
17805 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
17806 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
17807 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
17808 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
17809 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
17810 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
17811 bitset_count_): Likewise.
17812 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
17813 bitset_first, bitset_last): Likewise.
17814 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
17815 bitset_stats_list_reverse, bitset_stats_size,
17816 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
17817 Likewise.
17818 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
17819 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
17820 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
17821 bitsetv_reflexive_transitive_closure): Likewise.
17822 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
17823 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
17824 Likewise.
17825 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
17826 Likewise.
17827
17828 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
17829 Use size_t, not unsigned int, to count bytes.
17830 * lib/abitset.h (abitset_bytes): Likewise.
17831 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
17832 Likewise.
17833 * lib/bitset.h (bitset_bytes): Likewise.
17834 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
17835 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
17836 * lib/bitsetv.c (bitsetv_alloc): Likewise.
17837 * lib/ebitset.c (ebitset_bytes): Likewise.
17838 * lib/ebitset.h (ebitset_bytes): Likewise.
17839 * lib/lbitset.c (lbitset_bytes): Likewise.
17840 * lib/lbitset.h (lbitset_bytes): Likewise.
17841
17842 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
17843 abitset_subset_p, abitset_disjoint_p, abitset_and,
17844 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
17845 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
17846 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
17847 abitset_or_and, abitset_or_and_cmp):
17848 Use bitset_windex instead of unsigned int.
17849 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
17850 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
17851 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
17852 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
17853 Likewise.
17854 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
17855
17856 * lib/bitset.c (bitset_print):
17857 Use proper printf formats for widths of integer types.
17858 * lib/bitset_stats.c (bitset_percent_histogram_print,
17859 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
17860 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
17861 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
17862 * lib/lbitset.c (lbitset_bytes): Likewise.
17863
17864 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
17865 BITSET_SIZE_MAX): New macros.
17866 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
17867 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
17868 to BITSET_WINDEX_MAX.
17869
17870 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
17871 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
17872 since we now return the bitset_bindex type (not int).
17873
17874 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
17875 when computing sizes.
17876 * lib/ebitset.c (ebitset_elts_grow): Likewise.
17877
17878 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
17879 and avoid cast to unsigned.
17880
17881 2002-09-30 Akim Demaille <akim@epita.fr>
17882
17883 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
17884 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
17885 Updates from Michael Hayes.
17886
17887 2002-09-30 Art Haas <ahaas@neosoft.com>
17888
17889 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
17890 invocations.
17891 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
17892 defined.
17893
17894 2002-09-27 Akim Demaille <akim@epita.fr>
17895
17896 Version 1.49c.
17897
17898 2002-09-27 Akim Demaille <akim@epita.fr>
17899
17900 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
17901 (Because of AC_LIBSOURCE).
17902
17903 2002-09-27 Akim Demaille <akim@epita.fr>
17904
17905 Playing with Autoscan.
17906
17907 * configure.ac: Remove the old LIBOBJ tweaks.
17908 (AC_REPLACE_FUNCS): Add strrchr and strtol.
17909 * lib/strrchr.c: New.
17910 * lib/strtol.c: New, from the Coreutils 4.5.1.
17911
17912 2002-09-27 Akim Demaille <akim@epita.fr>
17913
17914 Playing with Autoscan.
17915
17916 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
17917 * lib/Makefile.am (libbison_a_SOURCES): No longer include
17918 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
17919 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
17920 Coreutils 4.5.1.
17921
17922 2002-09-24 Akim Demaille <akim@epita.fr>
17923
17924 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
17925 (Frequently Asked Questions, Parser Stack Overflow): New.
17926
17927 2002-09-13 Akim Demaille <akim@epita.fr>
17928
17929 Playing with autoscan.
17930
17931 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
17932 * src/files.c (skeleton_find): Remove, unused.
17933 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
17934 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
17935
17936 2002-09-13 Akim Demaille <akim@epita.fr>
17937
17938 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
17939 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
17940
17941 2002-09-13 Akim Demaille <akim@epita.fr>
17942
17943 * configure.ac: Require 2.54.
17944 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
17945 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
17946 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
17947 Remove, provided by Autoconf macros.
17948
17949 2002-09-12 Akim Demaille <akim@epita.fr>
17950
17951 * m4/prereq.m4: Update, from Coreutils 4.5.1.
17952
17953 2002-09-12 Akim Demaille <akim@epita.fr>
17954
17955 * m4/prereq.m4: Update, from Fileutils 4.1.5.
17956 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
17957 Reported by Martin Mokrejs.
17958
17959 2002-09-10 Akim Demaille <akim@epita.fr>
17960
17961 * src/parse-gram.y: Associate a human readable string to each
17962 token type.
17963 * tests/regression.at (Invalid inputs): Adjust.
17964
17965 2002-09-10 Gary V. Vaughan <gary@gnu.org>
17966
17967 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
17968 with an Autoconf-2.5x style configure.ac.
17969
17970 2002-09-06 Paul Eggert <eggert@twinsun.com>
17971
17972 * doc/bison.texinfo (Conditions): Make explicit that the GPL
17973 exception applies only to yacc.c. This is a modification of a
17974 patch originally suggested by Akim Demaille.
17975
17976 2002-09-06 Akim Demaille <akim@epita.fr>
17977
17978 * data/c.m4 (b4_copyright): Move the GPL exception comment from
17979 here to...
17980 * data/yacc.c: here.
17981
17982 * data/lalr1.cc (struct yyltype): Don't define it, since we use
17983 LocationType.
17984 (b4_ltype): Default to yy::Location from location.hh.
17985
17986 2002-09-04 Jim Meyering <jim@meyering.net>
17987
17988 * data/yacc.c: Guard the declaration of yytoknum also with
17989 `#ifdef YYPRINT', so it is declared only when used.
17990
17991 2002-09-04 Akim Demaille <akim@epita.fr>
17992
17993 * configure.in: Rename as...
17994 * configure.ac: this.
17995 Bump to 1.49c.
17996
17997 2002-09-04 Akim Demaille <akim@epita.fr>
17998
17999 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
18000 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
18001 translate maintainer only messages.
18002
18003 2002-08-12 Paul Eggert <eggert@twinsun.com>
18004
18005 Version 1.49b.
18006
18007 * Makefile.am (SUBDIRS): Remove intl.
18008 (DISTCLEANFILES): Remove.
18009 * NEWS: Mention that GNU M4 is now required. Clarify what is
18010 meant by "larger grammars". Mention the pt_BR translation.
18011 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
18012 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
18013 Bump version from 0.11.2 to 0.11.5.
18014 (BISON_PREREQ_STAGE): Remove.
18015 (AM_GNU_GETTEXT): Use external gettext.
18016 (AC_OUTPUT): Remove intl/Makefile.
18017
18018 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
18019
18020 * data/glr.c: Include string.h, for strlen.
18021 (yyreportParseError): Use size_t for yysize.
18022 (yy_yypstack): No longer nested inside yypstates, as nested
18023 functions are not portable. Do not assume size_t is the
18024 same width as int.
18025 (yypstates): Do not assume that ptrdiff_t is the same width
18026 as int, and similarly for yyposn and YYINDEX.
18027
18028 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
18029
18030 * lib/Makefile.am (INCLUDES): Do not include from the intl
18031 directory, which has been removed.
18032 * src/Makefile.am (INCLUDES): Likewise.
18033
18034 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
18035 (bitsets_sources, additional_bitsets_sources, timevars_sources):
18036 New vars.
18037
18038 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
18039 * tests/Makefile.am (EXTRA_DIST): Likewise.
18040
18041 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
18042 Do not assume that bitset_windex is the same width as unsigned.
18043
18044 * lib/abitset.c (abitset_unused_clear): Do not assume that
18045 bitset_word is the same width as int.
18046 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
18047 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
18048 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
18049 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
18050 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
18051
18052 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
18053 portability to one's complement hosts!).
18054 * lib/ebitset.c (ebitset_op1): Likewise.
18055 * lib/lbitset.c (lbitset_op1): Likewise.
18056
18057 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
18058 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
18059 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
18060 Sync with fileutils.
18061 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
18062 lib/gettext.h: Sync with diffutils.
18063
18064 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
18065 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
18066
18067 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
18068 PROTOTYPES to check for prototypes, and "defined __STDC__" to
18069 check for void *.
18070
18071 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
18072 size_t; the old version tried to do this but casted improperly.
18073 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
18074 (bitset_test): Now returns int, not unsigned long.
18075
18076 * lib/bitset_stats.c: Include "gettext.h".
18077 (_): New macro.
18078 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
18079 name locals "index", as it generates unnecessary warnings on some
18080 hosts that have an "index" function.
18081
18082 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
18083 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
18084 they need translation.
18085 * src/LR0.c (state_list_append, new_itemsets, get_state,
18086 append_states, generate_states): Likewise.
18087 * src/assoc.c (assoc_to_string): Likewise.
18088 * src/closure.c (print_closure, set_firsts, closure): Likewise.
18089 * src/gram.c (grammar_dump): Likewise.
18090 * src/injections.c (injections_compute): Likewise.
18091 * src/lalr.c (lookaheads_print): Likewise.
18092 * src/relation.c (relation_transpose): Likewise.
18093 * src/scan-gram.l: Likewise.
18094 * src/tables.c (table_grow, pack_vector): Likewise.
18095
18096 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
18097 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
18098 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
18099 * m4/mbstate_t.m4: Sync with fileutils.
18100 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
18101
18102 * po/LINGUAS: Add pt_BR.
18103 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
18104 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
18105 lib/timevar.c.
18106 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
18107 manual recommends.
18108 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
18109
18110 * src/complain.c (strerror_r): Remove decl; not needed.
18111 (strerror): Use same pattern as ../lib/error.c.
18112
18113 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
18114
18115 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
18116
18117 * src/main.c (main): Cast result of bindtextdomain and textdomain
18118 to void, to avoid a GCC warning when --disable-nls is in effect.
18119
18120 * src/scan-gram.l: Use strings rather than escapes when possible,
18121 to minimize the number of warnings from xgettext.
18122 (handle_action_dollar, handle_action_at): Don't use isdigit,
18123 as it mishandles negative chars and it may not work as expected
18124 outside the C locale.
18125
18126 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
18127 this is a GCC extension and is not portable to other compilers.
18128
18129 * src/system.h (alloca): Use same pattern as ../lib/error.c.
18130 Do not include <ctype.h>; no longer needed.
18131 Do not include <malloc.h>; no longer needed (and generates
18132 warnings on OpenBSD 3.0).
18133
18134 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
18135 it's not portable.
18136
18137 * tests/regression.at: Do not use 'cc -c input.c -o input';
18138 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
18139
18140 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
18141 exit status as failure, not just exit status 1. Sun C exits
18142 with status 2 sometimes.
18143
18144 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
18145 Use it for the two large tests.
18146
18147 2002-08-02 Akim Demaille <akim@epita.fr>
18148
18149 * src/conflicts.c (conflicts_output): Don't output rules never
18150 reduced here, since anyway that computation doesn't work.
18151 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
18152 (rule_useless_p, rule_never_reduced_p): New.
18153 (grammar_rules_partial_print): Use a filter instead of a range.
18154 Display the title only if needed.
18155 (grammar_rules_print): Adjust.
18156 (grammar_rules_never_reduced_report): New.
18157 * src/tables.c (action_row): Move the computation of rules never
18158 reduced to...
18159 (token_actions): here.
18160 * src/main.c (main): Make the parser before making the report, so
18161 that rules never reduced are computed.
18162 Call grammar_rules_never_reduced_report.
18163 * src/print.c (print_results): Report rules never reduced.
18164 * tests/conflicts.at, tests/reduce.at: Adjust.
18165
18166 2002-08-01 Akim Demaille <akim@epita.fr>
18167
18168 Instead of attaching lookaheads and duplicating the rules being
18169 reduced by a state, attach the lookaheads to the reductions.
18170
18171 * src/state.h (state_t): Remove the `lookaheads',
18172 `lookaheads_rule' member.
18173 (reductions_t): Add a `lookaheads' member.
18174 Use a regular array for the `rules'.
18175 * src/state.c (reductions_new): Initialize the lookaheads member
18176 to 0.
18177 (state_rule_lookaheads_print): Adjust.
18178 * src/state.h, src/state.c (state_reductions_find): New.
18179 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
18180 (count_rr_conflicts): Adjust.
18181 * src/lalr.c (LArule): Remove.
18182 (add_lookback_edge): Adjust.
18183 (state_lookaheads_count): New.
18184 (states_lookaheads_initialize): Merge into...
18185 (initialize_LA): this.
18186 (lalr_free): Adjust.
18187 * src/main.c (main): Don't free nullable and derives too early: it
18188 is used by --verbose.
18189 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
18190
18191 2002-08-01 Akim Demaille <akim@epita.fr>
18192
18193 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
18194 `rule_number_t**'.
18195 (set_derives, free_derives): Rename as...
18196 (derives_compute, derives_free): this.
18197 Adjust all dependencies.
18198 * src/nullable.c (set_nullable, free_nullable): Rename as...
18199 (nullable_compute, nullable_free): these.
18200 (rule_list_t): Store rule_t *, not rule_number_t.
18201 * src/state.c (state_rule_lookaheads_print): Directly compare rule
18202 pointers, instead of their numbers.
18203 * src/main.c (main): Call nullable_free, and derives_free earlier,
18204 as they were lo longer used.
18205
18206 2002-08-01 Akim Demaille <akim@epita.fr>
18207
18208 * lib/timevar.c (get_time): Include children time.
18209 * src/lalr.h (LA, LArule): Don't export them: used with the
18210 state_t.
18211 * src/lalr.c (LA, LArule): Static.
18212 * src/lalr.h, src/lalr.c (lalr_free): New.
18213 * src/main.c (main): Call it.
18214 * src/tables.c (pack_vector): Check whether loc is >= to the
18215 table_size, not >.
18216 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
18217 (tables_generate): do it, since that's also it which allocates
18218 them.
18219 Don't free LA and LArule, main does.
18220
18221 2002-07-31 Akim Demaille <akim@epita.fr>
18222
18223 Separate parser tables computation and output.
18224
18225 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
18226 (conflict_list, conflict_list_cnt, table, check, table_ninf)
18227 (yydefgoto, yydefact, high): Move to...
18228 * src/tables.h, src/tables.c: here.
18229 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
18230 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
18231 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
18232 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
18233 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
18234 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
18235 (action_row, save_row, token_actions, save_column, default_goto)
18236 (goto_actions, sort_actions, matching_state, pack_vector)
18237 (table_ninf_remap, pack_table, prepare_actions): Move to...
18238 * src/tables.c: here.
18239 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
18240 * src/output.c (token_actions, output_base, output_conflicts)
18241 (output_check): Merge into...
18242 (prepare_actions): this.
18243 (actions_output): Rename as...
18244 (user_actions_output): this.
18245 * src/main.c (main): Call tables_generate and tables_free.
18246
18247 2002-07-31 Akim Demaille <akim@epita.fr>
18248
18249 Steal GCC's --time-report support.
18250
18251 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
18252 stolen/adjusted from GCC.
18253 * m4/stage.m4: Remove time related checks.
18254 * m4/timevar.m4: New.
18255 * configure.in: Adjust.
18256 * src/system.h: Adjust to using timevar.h.
18257 * src/getargs.h, src/getargs.c: Support trace_time for
18258 --trace=time.
18259 * src/main.c (stage): Remove.
18260 (main): Replace `stage' invocations with timevar calls.
18261 * src/output.c: Insert pertinent timevar calls.
18262
18263 2002-07-31 Akim Demaille <akim@epita.fr>
18264
18265 Let --trace have arguments.
18266
18267 * src/getargs.h (enum trace_e): New.
18268 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
18269 (long_options, short_options): --trace/-T takes an optional
18270 argument.
18271 Change all the uses of trace_flag to reflect the new flags.
18272 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
18273
18274 Strengthen `stage' portability.
18275
18276 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
18277 * configure.in: Use it.
18278 Don't check for malloc.h and sys/times.h.
18279 * src/system.h: Include them when appropriate.
18280 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
18281 times and struct tms are available.
18282
18283 2002-07-30 Akim Demaille <akim@epita.fr>
18284
18285 In verbose parse error message, don't report `error' as an
18286 expected token.
18287 * tests/actions.at (Printers and Destructors): Adjust.
18288 * tests/calc.at (Calculator $1): Adjust.
18289 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
18290 error message, do not report the parser accepts the error token in
18291 that state.
18292
18293 2002-07-30 Akim Demaille <akim@epita.fr>
18294
18295 Normalize conflict related messages.
18296
18297 * src/complain.h, src/complain.c (warn, complain): New.
18298 * src/conflicts.c (conflicts_print): Use them.
18299 (conflict_report_yacc): New, extracted from...
18300 (conflicts_print): here.
18301 * tests/conflicts.at, tests/existing.at: Adjust.
18302
18303 2002-07-30 Akim Demaille <akim@epita.fr>
18304
18305 Report rules which are never reduced by the parser: those hidden
18306 by conflicts.
18307
18308 * src/LR0.c (save_reductions): Don't make the final state too
18309 different: save its reduction (accept) instead of having a state
18310 without any action (no shift or goto, no reduce).
18311 Note: the final state is now a ``regular'' state, i.e., the
18312 parsers now contain `reduce 0' as default reduction.
18313 Nevertheless, since they decide to `accept' when yystate =
18314 final_state, they still will not reduce rule 0.
18315 * src/print.c (print_actions, print_reduction): Adjust.
18316 * src/output.c (action_row): Track reduced rules.
18317 (token_actions): Report rules never reduced.
18318 * tests/conflicts.at, tests/regression.at: Adjust.
18319
18320 2002-07-30 Akim Demaille <akim@epita.fr>
18321
18322 `stage' was accidently included in a previous patch.
18323 Initiate its autoconfiscation.
18324
18325 * configure.in: Look for malloc.h and sys/times.h.
18326 * src/main.c (stage): Adjust.
18327 Report only when trace_flag.
18328
18329 2002-07-29 Akim Demaille <akim@epita.fr>
18330
18331 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
18332 state_number_t.
18333 (errs_t): symbol_t*, not symbol_number_t.
18334 (reductions_t): rule_t*, not rule_number_t.
18335 (FOR_EACH_SHIFT): New.
18336 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
18337 * src/print.c, src/print_graph.c: Adjust.
18338
18339 2002-07-29 Akim Demaille <akim@epita.fr>
18340
18341 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
18342
18343 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
18344 (endtoken, accept): these.
18345 * src/reader.c (reader): Set endtoken's default tag to "$end".
18346 Set undeftoken's tag to "$undefined" instead of "$undefined.".
18347 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
18348 Adjust.
18349
18350 2002-07-29 Akim Demaille <akim@epita.fr>
18351
18352 * src/reduce.c (reduce_grammar): When the language is empty,
18353 complain about the start symbol, not the axiom.
18354 Use its location.
18355 * tests/reduce.at (Empty Language): New.
18356
18357 2002-07-26 Akim Demaille <akim@epita.fr>
18358
18359 * src/reader.h, src/reader.c (gram_error): ... can't get
18360 yycontrol without making too strong assumptions on the parser
18361 itself.
18362 * src/output.c (prepare_tokens): Use the real 0th value of
18363 token_translations instead of `0'.
18364 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
18365 visible here.
18366 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
18367 for the time being: %locations ought to provide it to yyerror.
18368
18369 2002-07-25 Akim Demaille <akim@epita.fr>
18370
18371 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
18372 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
18373 * tests/regression.at (Web2c Actions): Adjust.
18374
18375 2002-07-25 Akim Demaille <akim@epita.fr>
18376
18377 Stop storing rules from 1 to nrules + 1.
18378
18379 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
18380 * src/nullable.c, src/output.c, src/print.c, src/reader.c
18381 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
18382 Iterate from 0 to nrules.
18383 Use rule_number_as_item_number and item_number_as_rule_number.
18384 Adjust to `derive' now containing possibly 0.
18385 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
18386 Handle the `- 1' part in rule numbers from/to item numbers.
18387 * src/conflicts.c (log_resolution): Fix the message which reversed
18388 shift and reduce.
18389 * src/output.c (action_row): Initialize default_rule to -1.
18390 (token_actions): Adjust.
18391 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
18392 expected output.
18393 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
18394
18395 2002-07-25 Akim Demaille <akim@epita.fr>
18396
18397 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
18398 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
18399 (b4_c_knr_arg_decl): New.
18400 * data/yacc.c: Use it to define yysymprint, yydestruct, and
18401 yyreport_parse_error.
18402
18403 2002-07-25 Akim Demaille <akim@epita.fr>
18404
18405 * data/yacc.c (yyreport_parse_error): New, extracted from...
18406 (yyparse): here.
18407 (yydestruct, yysymprint): Move above yyparse.
18408 Be K&R compliant.
18409
18410 2002-07-25 Akim Demaille <akim@epita.fr>
18411
18412 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
18413 replace...
18414 (b4_sint_type, b4_uint_type): these.
18415 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
18416 * tests/regression.at (Web2c Actions): Adjust.
18417
18418 2002-07-25 Akim Demaille <akim@epita.fr>
18419
18420 * src/gram.h (TIEM_NUMBER_MAX): New.
18421 (item_number_of_rule_number, rule_number_of_item_number): Rename
18422 as...
18423 (rule_number_as_item_number, item_number_as_rule_number): these.
18424 Adjust dependencies.
18425 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
18426 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
18427 (symbol_number_to_vector_number): New.
18428 (order): Of vector_number_t* type.
18429 (base_t, BASE_MAX, BASE_MIN): New.
18430 (froms, tos, width, pos, check): Of base_t type.
18431 (action_number_t, ACTION_MIN, ACTION_MAX): New.
18432 (actrow): Of action_number_t type.
18433 (conflrow): Of unsigned int type.
18434 (table_ninf, base_ninf): New.
18435 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
18436 (muscle_insert_int_table, muscle_insert_base_table)
18437 (muscle_insert_rule_number_table): New.
18438 (prepare_tokens): Output `toknum' as int_table.
18439 (action_row): Returns a rule_number_t.
18440 Use ACTION_MIN, not SHRT_MIN.
18441 (token_actions): yydefact is rule_number_t*.
18442 (table_ninf_remap): New.
18443 (pack_table): Use it for `base' and `table'.
18444 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
18445 replaced with...
18446 (YYPACT_NINF, YYTABLE_NINF): these.
18447 (yypact, yytable): Compute their types instead of hard-coded
18448 `short'.
18449 * tests/regression.at (Web2c Actions): Adjust.
18450
18451 2002-07-19 Akim Demaille <akim@epita.fr>
18452
18453 * src/scan-gram.l (id): Can start with an underscore.
18454
18455 2002-07-16 Akim Demaille <akim@epita.fr>
18456
18457 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
18458 Adjust all former `associativity' dependencies.
18459 * src/symtab.c (symbol_new): Default associativity is `undef', not
18460 `right'.
18461 (symbol_check_alias_consistence): Adjust.
18462
18463 2002-07-09 Akim Demaille <akim@epita.fr>
18464
18465 * doc/bison.texinfo: Properly set the ``header'' part.
18466 Use @dircategory ``GNU programming tools'' as per Texinfo's
18467 documentation.
18468 Use @copying.
18469
18470 2002-07-09 Akim Demaille <akim@epita.fr>
18471
18472 * lib/quotearg.h: Protect against multiple inclusions.
18473 * src/location.h (location_t): Add a `file' member.
18474 (LOCATION_RESET, LOCATION_PRINT): Adjust.
18475 * src/complain.c (warn_at, complain_at, fatal_at): Drop
18476 `error_one_per_line' support.
18477
18478 2002-07-09 Akim Demaille <akim@epita.fr>
18479
18480 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
18481 * src/reader.c (lineno): Remove.
18482 Adjust all dependencies.
18483 (get_merge_function): Take a location and use complain_at.
18484 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
18485 * tests/regression.at (Invalid inputs, Mixing %token styles):
18486 Adjust.
18487
18488 2002-07-09 Akim Demaille <akim@epita.fr>
18489
18490 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
18491 recovery rule, and forbid extensions when --yacc.
18492 (gram_error): Use complain_at.
18493 * src/reader.c (reader): Exit if there were parse errors.
18494
18495 2002-07-09 Akim Demaille <akim@epita.fr>
18496
18497 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
18498 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
18499 Reported by R Blake <blakers@mac.com>.
18500
18501 2002-07-09 Akim Demaille <akim@epita.fr>
18502
18503 * data/yacc.c: Output the copyright notive in the header.
18504
18505 2002-07-03 Akim Demaille <akim@epita.fr>
18506
18507 * src/output.c (froms, tos): Are state_number_t.
18508 (save_column): sp, sp1, and sp2 are state_number_t.
18509 (prepare): Rename `final' as `final_state_number', `nnts' as
18510 `nterms_number', `nrules' as `rules_number', `nstates' as
18511 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
18512 unused.
18513 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
18514 * data/lalr1.cc (nsym_): Remove, unused.
18515
18516 2002-07-03 Akim Demaille <akim@epita.fr>
18517
18518 * src/lalr.h, src/lalr.c (goto_number_t): New.
18519 * src/lalr.c (goto_list_t): New.
18520 Propagate them.
18521 * src/nullable.c (rule_list_t): New.
18522 Propagate.
18523 * src/types.h: Remove.
18524
18525 2002-07-03 Akim Demaille <akim@epita.fr>
18526
18527 * src/closure.c (print_fderives): Use rule_rhs_print.
18528 * src/derives.c (print_derives): Use rule_rhs_print.
18529 (rule_list_t): New, replaces `shorts'.
18530 (set_derives): Add comments.
18531 * tests/sets.at (Nullable, Firsts): Adjust.
18532
18533 2002-07-03 Akim Demaille <akim@epita.fr>
18534
18535 * src/output.c (prepare_actions): Free `tally' and `width'.
18536 (prepare_actions): Allocate and free `order'.
18537 * src/symtab.c (symbols_free): Free `symbols'.
18538 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
18539 * src/output.c (m4_invoke): Move to...
18540 * src/scan-skel.l: here.
18541 (<<EOF>>): Close yyout, and free its name.
18542
18543 2002-07-03 Akim Demaille <akim@epita.fr>
18544
18545 Fix some memory leaks, and fix a bug: state 0 was examined twice.
18546
18547 * src/LR0.c (new_state): Merge into...
18548 (state_list_append): this.
18549 (new_states): Merge into...
18550 (generate_states): here.
18551 (set_states): Don't ensure a proper `errs' state member here, do it...
18552 * src/conflicts.c (conflicts_solve): here.
18553 * src/state.h, src/state.c: Comment changes.
18554 (state_t): Rename member `shifts' as `transitions'.
18555 Adjust all dependencies.
18556 (errs_new): For consistency, also take the values as argument.
18557 (errs_dup): Remove.
18558 (state_errs_set): New.
18559 (state_reductions_set, state_transitions_set): Assert that no
18560 previous value was assigned.
18561 (state_free): New.
18562 (states_free): Use it.
18563 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
18564 temporary storage: use `errs' and `nerrs' as elsewhere.
18565 (set_conflicts): Allocate and free this `errs'.
18566
18567 2002-07-02 Akim Demaille <akim@epita.fr>
18568
18569 * lib/libiberty.h: New.
18570 * lib: Update the bitset implementation from upstream.
18571 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
18572 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
18573 * src/main.c: Adjust bitset stats calls.
18574
18575 2002-07-01 Paul Eggert <eggert@twinsun.com>
18576
18577 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
18578 char, so that negative chars don't collide with $.
18579
18580 2002-06-30 Akim Demaille <akim@epita.fr>
18581
18582 Have the GLR tests be `warning' checked, and fix the warnings.
18583
18584 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
18585 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
18586 (yyremoveDeletes): `yyi' and `yyj' are size_t.
18587 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
18588 (yyaddDeferredAction): static.
18589 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
18590 (yyreportParseError): yyprefix is const.
18591 yytokenp is used only when verbose.
18592 (yy__GNUC__): Replace with __GNUC__.
18593 (yypdumpstack): yyi is size_t.
18594 (yypreference): Un-yy local variables and arguments, to avoid
18595 clashes with `yyr1'. Anyway, we are not in the user name space.
18596 (yytname_size): be an int, as is compared with ints.
18597 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
18598 Use them.
18599 * tests/cxx-gram.at: Use quotation to protect $1.
18600 Use AT_COMPILE to enable warnings hunts.
18601 Prototype yylex and yyerror.
18602 `Use' argc.
18603 Include `string.h', not `strings.h'.
18604 Produce and prototype stmtMerge only when used.
18605 yylex takes a location.
18606
18607 2002-06-30 Akim Demaille <akim@epita.fr>
18608
18609 We spend a lot of time in quotearg, in particular when --verbose.
18610
18611 * src/symtab.c (symbol_get): Store a quoted version of the key.
18612 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
18613 Adjust all callers.
18614
18615 2002-06-30 Akim Demaille <akim@epita.fr>
18616
18617 * src/state.h (reductions_t): Rename member `nreds' as num.
18618 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
18619 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
18620
18621 2002-06-30 Akim Demaille <akim@epita.fr>
18622
18623 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
18624 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
18625 (shifts_to): Rename as...
18626 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
18627 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
18628 (TRANSITION_IS_DISABLED, transitions_to): these.
18629
18630 2002-06-30 Akim Demaille <akim@epita.fr>
18631
18632 * src/print.c (print_shifts, print_gotos): Merge into...
18633 (print_transitions): this.
18634 (print_transitions, print_errs, print_reductions): Align the
18635 lookaheads columns.
18636 (print_core, print_transitions, print_errs, print_state,
18637 print_grammar): Output empty lines separator before, not after.
18638 (state_default_rule_compute): Rename as...
18639 (state_default_rule): this.
18640 * tests/conflicts.at (Defaulted Conflicted Reduction),
18641 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
18642 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
18643
18644 2002-06-30 Akim Demaille <akim@epita.fr>
18645
18646 Display items as we display rules.
18647
18648 * src/gram.h, src/gram.c (rule_lhs_print): New.
18649 * src/gram.c (grammar_rules_partial_print): Use it.
18650 * src/print.c (print_core): Likewise.
18651 * tests/conflicts.at (Defaulted Conflicted Reduction),
18652 (Unresolved SR Conflicts): Adjust.
18653 (Unresolved SR Conflicts): Adjust and rename as...
18654 (Resolved SR Conflicts): this, as was meant.
18655 * tests/regression.at (Web2c Report): Adjust.
18656
18657 2002-06-30 Akim Demaille <akim@epita.fr>
18658
18659 * src/print.c (state_default_rule_compute): New, extracted from...
18660 (print_reductions): here.
18661 Pessimize, but clarify the code.
18662 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
18663
18664 2002-06-30 Akim Demaille <akim@epita.fr>
18665
18666 * src/output.c (action_row): Let default_rule be always a rule
18667 number.
18668
18669 2002-06-30 Akim Demaille <akim@epita.fr>
18670
18671 * src/closure.c (print_firsts, print_fderives, closure):
18672 Use BITSET_EXECUTE.
18673 * src/lalr.c (lookaheads_print): Likewise.
18674 * src/state.c (state_rule_lookaheads_print): Likewise.
18675 * src/print_graph.c (print_core): Likewise.
18676 * src/print.c (print_reductions): Likewise.
18677 * src/output.c (action_row): Likewise.
18678 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
18679
18680 2002-06-30 Akim Demaille <akim@epita.fr>
18681
18682 * src/print_graph.c: Use report_flag.
18683
18684 2002-06-30 Akim Demaille <akim@epita.fr>
18685
18686 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
18687 to...
18688 * src/relation.h, src/relation.c (traverse, relation_digraph)
18689 (relation_print, relation_transpose): New.
18690
18691 2002-06-30 Akim Demaille <akim@epita.fr>
18692
18693 * src/state.h, src/state.c (shifts_to): New.
18694 * src/lalr.c (build_relations): Use it.
18695
18696 2002-06-30 Akim Demaille <akim@epita.fr>
18697
18698 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
18699 (item_number_of_rule_number, rule_number_of_item_number): New.
18700 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
18701 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
18702 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
18703 Propagate their use.
18704 Much remains to be done, in particular wrt `shorts' from types.h.
18705
18706 2002-06-30 Akim Demaille <akim@epita.fr>
18707
18708 * src/symtab.c (symbol_new): Initialize the `printer' member.
18709
18710 2002-06-30 Akim Demaille <akim@epita.fr>
18711
18712 * src/LR0.c (save_reductions): Remove, replaced by...
18713 * src/state.h, src/state.c (state_reductions_set): New.
18714 (reductions, errs): Rename as...
18715 (reductions_t, errs_t): these.
18716 Adjust all dependencies.
18717
18718 2002-06-30 Akim Demaille <akim@epita.fr>
18719
18720 * src/LR0.c (state_list_t, state_list_append): New.
18721 (first_state, last_state): Now symbol_list_t.
18722 (this_state): Remove.
18723 (new_itemsets, append_states, save_reductions): Take a state_t as
18724 argument.
18725 (set_states, generate_states): Adjust.
18726 (save_shifts): Remove, replaced by...
18727 * src/state.h, src/state.c (state_shifts_set): New.
18728 (shifts): Rename as...
18729 (shifts_t): this.
18730 Adjust all dependencies.
18731 * src/state.h (state_t): Remove the `next' member.
18732
18733 2002-06-30 Akim Demaille <akim@epita.fr>
18734
18735 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
18736 escaped in slot 0.
18737
18738 2002-06-30 Akim Demaille <akim@epita.fr>
18739
18740 Use hash.h for the state hash table.
18741
18742 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
18743 (allocate_storage): Use state_hash_new.
18744 (free_storage): Use state_hash_free.
18745 (new_state, get_state): Adjust.
18746 * src/lalr.h, src/lalr.c (states): Move to...
18747 * src/states.h (state_t): Remove the `link' member, no longer
18748 used.
18749 * src/states.h, src/states.c: here.
18750 (state_hash_new, state_hash_free, state_hash_lookup)
18751 (state_hash_insert, states_free): New.
18752 * src/states.c (state_table, state_compare, state_hash): New.
18753 * src/output.c (output_actions): Do not free states now, since we
18754 still need to know the final_state number in `prepare', called
18755 afterwards. Do it...
18756 * src/main.c (main): here: call states_free after `output'.
18757
18758 2002-06-30 Akim Demaille <akim@epita.fr>
18759
18760 * src/state.h, src/state.c (state_new): New, extracted from...
18761 * src/LR0.c (new_state): here.
18762 * src/state.h (STATE_ALLOC): Move to...
18763 * src/state.c: here.
18764 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
18765 * src/state.h, src/state.c: here.
18766
18767 2002-06-30 Akim Demaille <akim@epita.fr>
18768
18769 * src/reader.c (gensym): Rename as...
18770 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
18771 (getsym): Rename as...
18772 (symbol_get): this.
18773
18774 2002-06-30 Akim Demaille <akim@epita.fr>
18775
18776 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
18777 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
18778 * src/output.c, src/print.c, src/print_graph.c: Propagate.
18779 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
18780
18781 2002-06-30 Akim Demaille <akim@epita.fr>
18782
18783 Make the test suite pass with warnings checked.
18784
18785 * tests/actions.at (Printers and Destructors): Improve.
18786 Avoid unsigned vs. signed issues.
18787 * tests/calc.at: Don't exercise the scanner here, do it...
18788 * tests/input.at (Torturing the Scanner): here.
18789
18790 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18791
18792 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
18793 reorganize first lines parallel to yacc.c.
18794
18795 2002-06-28 Akim Demaille <akim@epita.fr>
18796
18797 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
18798 (b4_token_enum, b4_token_defines): New, factored from...
18799 * data/lalr1.cc, data/yacc.c, glr.c: here.
18800
18801 2002-06-28 Akim Demaille <akim@epita.fr>
18802
18803 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
18804 unused variables.
18805 * src/output.c (merger_output): static.
18806
18807 2002-06-28 Akim Demaille <akim@epita.fr>
18808
18809 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
18810 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
18811 pacify GCC.
18812 * src/output.c (save_row): Initialize all the variables to pacify GCC.
18813
18814 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18815
18816 Accumulated changelog for new GLR parsing features.
18817
18818 * src/conflicts.c (count_total_conflicts): Change name to
18819 conflicts_total_count.
18820 * src/conflicts.h: Ditto.
18821 * src/output.c (token_actions): Use the new name.
18822 (output_conflicts): Change conflp => conflict_list_heads, and
18823 confl => conflict_list for better readability.
18824 * data/glr.c: Use the new names.
18825 * NEWS: Add self to GLR announcement.
18826
18827 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
18828
18829 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
18830 Akim Demaille.
18831
18832 * data/bison.glr: Change name to glr.c
18833 * data/glr.c: Renamed from bison.glr.
18834 * data/Makefile.am: Add glr.c
18835
18836 * src/getargs.c:
18837
18838 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
18839 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
18840
18841 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18842
18843 * data/bison.glr: Be sure to restore the
18844 current #line when returning to the skeleton contents after having
18845 exposed the input file's #line.
18846
18847 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18848
18849 * data/bison.glr: Bring up to date with changes to bison.simple.
18850
18851 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18852
18853 * data/bison.glr: Correct definitions that use b4_prefix.
18854 Various reformatting.
18855 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
18856 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
18857 yytokenp argument; now part of stack.
18858 (yychar): Define to behave as documented.
18859 (yyclearin): Ditto.
18860
18861 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18862
18863 * src/reader.h: Add declaration for free_merger_functions.
18864
18865 * src/reader.c (merge_functions): New variable.
18866 (get_merge_function): New function.
18867 (free_merger_functions): New function.
18868 (readgram): Check for %prec that is not followed by a symbol.
18869 Handle %dprec and %merge declarations.
18870 (packgram): Initialize dprec and merger fields in rules array.
18871
18872 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
18873 conflict_list_cnt, conflict_list_free): New variables.
18874 (table_grow): Also grow conflict_table.
18875 (prepare_rules): Output dprec and merger tables.
18876 (conflict_row): New function.
18877 (action_row): Output conflict lists for GLR parser. Don't use
18878 default reduction in conflicted states for GLR parser so that there
18879 are spaces for the conflict lists.
18880 (save_row): Also save conflict information.
18881 (token_actions): Allocate conflict list.
18882 (merger_output): New function.
18883 (pack_vector): Pack conflict table, too.
18884 (output_conflicts): New function to output yyconflp and yyconfl.
18885 (output_check): Allocate conflict_tos.
18886 (output_actions): Output conflict tables, also.
18887 (output_skeleton): Output b4_mergers definition.
18888 (prepare): Output b4_max_rhs_length definition.
18889 Use 'bison.glr' as default skeleton for GLR parsers.
18890
18891 * src/gram.c (glr_parser): New flag.
18892 (grammar_free): Call free_merger_functions.
18893
18894 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
18895 all pairs of conflicting reductions, rather than just all tokens
18896 causing conflicts. Needed to size conflict tables.
18897 (conflicts_output): Modify call to count_rr_conflicts for new
18898 interface.
18899 (conflicts_print): Ditto.
18900 (count_total_conflicts): New function.
18901
18902 * src/reader.h (merger_list): New type.
18903 (merge_functions): New variable.
18904
18905 * src/lex.h (tok_dprec, tok_merge): New token types.
18906
18907 * src/gram.h (rule_s): Add dprec and merger fields.
18908 (glr_parser): New flag.
18909
18910 * src/conflicts.h (count_total_conflicts): New function.
18911
18912 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
18913
18914 * doc/bison.texinfo (Generalized LR Parsing): New section.
18915 (GLR Parsers): New section.
18916 (Language and Grammar): Mention GLR parsing.
18917 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
18918 Correct typo ("tge" -> "the").
18919
18920 * data/bison.glr: New skeleton for GLR parsing.
18921
18922 * tests/cxx-gram.at: New tests for GLR parsing.
18923
18924 * tests/testsuite.at: Include cxx-gram.at.
18925
18926 * tests/Makefile.am: Add cxx-gram.at.
18927
18928 * src/parse-gram.y:
18929
18930 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
18931
18932 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
18933
18934 2002-06-27 Akim Demaille <akim@epita.fr>
18935
18936 * src/options.h, src/options.c: Remove.
18937 * src/getargs.c (short_options, long_options): New.
18938
18939 2002-06-27 Akim Demaille <akim@epita.fr>
18940
18941 * data/bison.simple, data/bison.c++: Rename as...
18942 * data/yacc.c, data/lalr1.cc: these.
18943 * doc/bison.texinfo (Environment Variables): Remove.
18944
18945 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
18946
18947 * src/getargs.c (report_argmatch): Initialize strtok().
18948
18949 2002-06-20 Akim Demaille <akim@epita.fr>
18950
18951 * data/bison.simple (b4_symbol_actions): New, replaces...
18952 (b4_symbol_destructor, b4_symbol_printer): these.
18953 (yysymprint): Be sure to call YYPRINT only for tokens, and using
18954 user token numbers.
18955
18956 2002-06-20 Akim Demaille <akim@epita.fr>
18957
18958 * data/bison.simple (yydestructor): Rename as...
18959 (yydestruct): this.
18960
18961 2002-06-20 Akim Demaille <akim@epita.fr>
18962
18963 * src/symtab.h, src/symtab.c (symbol_type_set)
18964 (symbol_destructor_set, symbol_precedence_set): The location is
18965 the last argument.
18966 Adjust all callers.
18967
18968 2002-06-20 Akim Demaille <akim@epita.fr>
18969
18970 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
18971 internals.
18972 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
18973 Takes a location.
18974 * src/symtab.h, src/symtab.c (symbol_class_set)
18975 (symbol_user_token_number_set): Likewise.
18976 Adjust all callers.
18977 Promote complain_at.
18978 * tests/input.at (Type Clashes): Adjust.
18979
18980 2002-06-20 Akim Demaille <akim@epita.fr>
18981
18982 * data/bison.simple (YYLEX): Fix the declaration when
18983 %pure-parser.
18984
18985 2002-06-20 Akim Demaille <akim@epita.fr>
18986
18987 * data/bison.simple (yysymprint): Don't print the token number,
18988 just its name.
18989 * tests/actions.at (Destructors): Rename as...
18990 (Printers and Destructors): this.
18991 Also exercise %printer.
18992
18993 2002-06-20 Akim Demaille <akim@epita.fr>
18994
18995 * data/bison.simple (YYDSYMPRINT): New.
18996 Use it to remove many of the #if YYDEBUG/if (yydebug).
18997
18998 2002-06-20 Akim Demaille <akim@epita.fr>
18999
19000 * src/symtab.h, src/symtab.c (symbol_t): printer and
19001 printer_location are new members.
19002 (symbol_printer_set): New.
19003 * src/parse-gram.y (PERCENT_PRINTER): New token.
19004 Handle its associated rule.
19005 * src/scan-gram.l: Adjust.
19006 (handle_destructor_at, handle_destructor_dollar): Rename as...
19007 (handle_symbol_code_at, handle_symbol_code_dollar): these.
19008 * src/output.c (symbol_printers_output): New.
19009 (output_skeleton): Call it.
19010 * data/bison.simple (yysymprint): New. Cannot be named yyprint
19011 since there are already many grammar files with a user `yyprint'.
19012 Replace the calls to YYPRINT to calls to yysymprint.
19013 * tests/calc.at: Adjust.
19014 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
19015 taking advantage of parser very internal details (stack size!).
19016
19017 2002-06-20 Akim Demaille <akim@epita.fr>
19018
19019 * src/scan-gram.l: Complete the scanner with the missing patterns
19020 to pacify Flex.
19021 Use `quote' and `symbol_tag_get' where appropriate.
19022
19023 2002-06-19 Akim Demaille <akim@epita.fr>
19024
19025 * tests/actions.at (Destructors): Augment to test locations.
19026 * data/bison.simple (yydestructor): Pass it the current location
19027 if locations are enabled.
19028 Prototype only when __STDC__ or C++.
19029 Change the argument names to move into the yy name space: there is
19030 user code here.
19031
19032 2002-06-19 Akim Demaille <akim@epita.fr>
19033
19034 * data/bison.simple (b4_pure_if): New.
19035 Use it instead of #ifdef YYPURE.
19036
19037 2002-06-19 Akim Demaille <akim@epita.fr>
19038
19039 * data/bison.simple (b4_location_if): New.
19040 Use it instead of #ifdef YYLSP_NEEDED.
19041
19042 2002-06-19 Akim Demaille <akim@epita.fr>
19043
19044 Prepare @$ in %destructor, but currently don't bind it in the
19045 skeleton, as %location use is not cleaned up yet.
19046
19047 * src/scan-gram.l (handle_dollar, handle_destructor_at)
19048 (handle_action_at): New.
19049 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
19050 a braced_code_t and a location as additional arguments.
19051 (handle_destructor_dollar): Instead of requiring `b4_eval', just
19052 unquote one when outputting `b4_dollar_dollar'.
19053 Adjust callers.
19054 * data/bison.simple (b4_eval): Remove.
19055 (b4_symbol_destructor): Adjust.
19056 * tests/input.at (Invalid @n): Adjust.
19057
19058 2002-06-19 Zack Weinberg <zack@codesourcery.com>
19059
19060 * doc/bison.texinfo: Document ability to have multiple
19061 prologue sections.
19062
19063 2002-06-18 Akim Demaille <akim@epita.fr>
19064
19065 * src/files.c (compute_base_names): When computing the output file
19066 names from the input file name, strip the directory part.
19067
19068 2002-06-18 Akim Demaille <akim@epita.fr>
19069
19070 * data/bison.simple.new: Comment changes.
19071 Reported by Andreas Schwab.
19072
19073 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
19074
19075 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
19076 there are no `label `yyoverflowlab' defined but not used' warnings
19077 when yyoverflow is defined.
19078
19079 2002-06-18 Akim Demaille <akim@epita.fr>
19080
19081 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
19082 new member.
19083 (symbol_destructor_set): Adjust.
19084 * src/output.c (symbol_destructors_output): Output the destructor
19085 locations.
19086 Output the symbol name.
19087 * data/bison.simple (b4_symbol_destructor): Adjust.
19088
19089 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
19090 and Akim Demaille <akim@epita.fr>
19091
19092 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
19093 what's left on the stack when the error recovery hits EOF.
19094 * tests/actions.at (Destructors): Complete to exercise this case.
19095
19096 2002-06-17 Akim Demaille <akim@epita.fr>
19097
19098 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
19099 arguments is really empty, not only equal to `[]'.
19100 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
19101 member.
19102 (symbol_destructor_set): New.
19103 * src/output.c (symbol_destructors_output): New.
19104 * src/reader.h (brace_code_t, current_braced_code): New.
19105 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
19106 (handle_dollar): Rename as...
19107 (handle_action_dollar): this.
19108 (handle_destructor_dollar): New.
19109 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
19110 (grammar_declaration): Use it.
19111 * data/bison.simple (yystos): Is always defined.
19112 (yydestructor): New.
19113 * tests/actions.at (Destructors): New.
19114 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
19115
19116 2002-06-17 Akim Demaille <akim@epita.fr>
19117
19118 * src/symlist.h, src/symlist.c (symbol_list_length): New.
19119 * src/scan-gram.l (handle_dollar, handle_at): Compute the
19120 rule_length only when needed.
19121 * src/output.c (actions_output, token_definitions_output): Output
19122 the full M4 block.
19123 * src/symtab.c: Don't access directly to the symbol tag, use
19124 symbol_tag_get.
19125 * src/parse-gram.y: Use symbol_list_free.
19126
19127 2002-06-17 Akim Demaille <akim@epita.fr>
19128
19129 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
19130 (symbol_list_prepend, get_type_name): Move to...
19131 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
19132 (symbol_list_prepend, symbol_list_n_type_name_get): here.
19133 Adjust all callers.
19134 (symbol_list_free): New.
19135 * src/scan-gram.l (handle_dollar): Takes a location.
19136 * tests/input.at (Invalid $n): Adjust.
19137
19138 2002-06-17 Akim Demaille <akim@epita.fr>
19139
19140 * src/reader.h, src/reader.c (symbol_list_new): Export it.
19141 (symbol_list_prepend): New.
19142 * src/parse-gram.y (%union): `list' is a new member.
19143 (symbols.1): New, replaces...
19144 (terms_to_prec.1, nterms_to_type.1): these.
19145 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
19146 Take a location as additional argument.
19147 Adjust all callers.
19148
19149 2002-06-15 Akim Demaille <akim@epita.fr>
19150
19151 * src/parse-gram.y: Move %token in the declaration section so that
19152 we don't depend upon CVS Bison.
19153
19154 2002-06-15 Akim Demaille <akim@epita.fr>
19155
19156 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
19157 * src/print.c (print_core): Use it.
19158
19159 2002-06-15 Akim Demaille <akim@epita.fr>
19160
19161 * src/conflicts.c (log_resolution): Accept the rule involved in
19162 the sr conflicts instead of the lookahead number that points to
19163 that rule.
19164 (flush_reduce): Accept the current lookahead vector as argument,
19165 instead of the index in LA.
19166 (resolve_sr_conflict): Accept the current number of lookahead
19167 bitset to consider for the STATE, instead of the index in LA.
19168 (set_conflicts): Adjust.
19169 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
19170
19171 2002-06-15 Akim Demaille <akim@epita.fr>
19172
19173 * src/state.h (state_t): Replace the `lookaheadsp' member, a
19174 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
19175 Adjust all dependencies.
19176 * src/lalr.c (initialize_lookaheads): Split into...
19177 (states_lookaheads_count, states_lookaheads_initialize): these.
19178 (lalr): Adjust.
19179
19180 2002-06-15 Akim Demaille <akim@epita.fr>
19181
19182 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
19183 out of...
19184 (grammar_rules_print): here.
19185 * src/reduce.c (reduce_output): Use it.
19186 * tests/reduce.at (Useless Rules, Reduced Automaton)
19187 (Underivable Rules): Adjust.
19188
19189 2002-06-15 Akim Demaille <akim@epita.fr>
19190
19191 Copy BYacc's nice way to report the grammar.
19192
19193 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
19194 New.
19195 Don't print the rules' location, it is confusing and useless.
19196 (rule_print): Use grammar_rhs_print.
19197 * src/print.c (print_grammar): Use grammar_rules_print.
19198
19199 2002-06-15 Akim Demaille <akim@epita.fr>
19200
19201 Complete and rationalize `useless thing' warnings.
19202
19203 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
19204 (symbol_tag_print): New.
19205 Use them everywhere in place of accessing directly the tag member.
19206 * src/gram.h, src/gram.c (rule_print): New.
19207 Use it where a rule used to be printed `by hand'.
19208 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
19209 (reduce_grammar_tables): Report the useless rules.
19210 (reduce_print): Useless things are a warning, not an error.
19211 Report it as such.
19212 * tests/reduce.at (Useless Nonterminals, Useless Rules):
19213 (Reduced Automaton, Underivable Rules): Adjust.
19214 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
19215 * tests/conflicts.at (Unresolved SR Conflicts)
19216 (Solved SR Conflicts): Adjust.
19217
19218 2002-06-15 Akim Demaille <akim@epita.fr>
19219
19220 Let symbols have a location.
19221
19222 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
19223 (getsym): Adjust.
19224 Adjust all callers.
19225 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
19226 Use location_t, not int.
19227 * src/symtab.c (symbol_check_defined): Take advantage of the
19228 location.
19229 * tests/regression.at (Invalid inputs): Adjust.
19230
19231 2002-06-15 Akim Demaille <akim@epita.fr>
19232
19233 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
19234 (input): Don't try to initialize yylloc here, do it in the
19235 scanner.
19236 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
19237 * src/gram.h (rule_t): Change line and action_line into location
19238 and action_location, of location_t type.
19239 Adjust all dependencies.
19240 * src/location.h, src/location.c (empty_location): New.
19241 * src/reader.h, src/reader.c (grammar_start_symbol_set)
19242 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
19243 (grammar_current_rule_symbol_append)
19244 (grammar_current_rule_action_append): Expect a location as argument.
19245 * src/reader.c (grammar_midrule_action): Adjust to attach an
19246 action's location as dummy symbol location.
19247 * src/symtab.h, src/symtab.c (startsymbol_location): New.
19248 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
19249 the line numbers.
19250
19251 2002-06-14 Akim Demaille <akim@epita.fr>
19252
19253 Grammar declarations may be found in the grammar section.
19254
19255 * src/parse-gram.y (rules_or_grammar_declaration): New.
19256 (declarations): Each declaration may end with a semicolon, not
19257 just...
19258 (grammar_declaration): `"%union"'.
19259 (grammar): Branch to rules_or_grammar_declaration.
19260
19261 2002-06-14 Akim Demaille <akim@epita.fr>
19262
19263 * src/main.c (main): Invoke scanner_free.
19264
19265 2002-06-14 Akim Demaille <akim@epita.fr>
19266
19267 * src/output.c (m4_invoke): Extracted from...
19268 (output_skeleton): here.
19269 Free tempfile.
19270
19271 2002-06-14 Akim Demaille <akim@epita.fr>
19272
19273 * src/parse-gram.y (directives, directive, gram)
19274 (grammar_directives, precedence_directives, precedence_directive):
19275 Rename as...
19276 (declarations, declaration, grammar, grammar_declaration)
19277 (precedence_declaration, precedence_declarator): these.
19278 (symbol_declaration): New.
19279
19280 2002-06-14 Akim Demaille <akim@epita.fr>
19281
19282 * src/files.c (action_obstack): Remove, unused.
19283 (output_obstack): Remove it, and all its dependencies, as it is no
19284 longer needed.
19285 * src/reader.c (epilogue_set): Build the epilogue in the
19286 muscle_obstack.
19287 * src/output.h, src/output.c (muscle_obstack): Move to...
19288 * src/muscle_tab.h, src/muscle_tab.h: here.
19289 (muscle_init): Initialize muscle_obstack.
19290 (muscle_free): New.
19291 * src/main.c (main): Call it.
19292
19293 2002-06-14 Akim Demaille <akim@epita.fr>
19294
19295 * src/location.h: New, extracted from...
19296 * src/reader.h: here.
19297 * src/Makefile.am (noinst_HEADERS): Merge into
19298 (bison_SOURCES): this.
19299 Add location.h.
19300 * src/parse-gram.y: Use location_t instead of Bison's.
19301 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
19302 Use location_t instead of ints.
19303
19304 2002-06-14 Akim Demaille <akim@epita.fr>
19305
19306 * data/bison.simple, data/bison.c++: Be sure to restore the
19307 current #line when returning to the skeleton contents after having
19308 exposed the input file's #line.
19309
19310 2002-06-12 Akim Demaille <akim@epita.fr>
19311
19312 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
19313 eager.
19314 * tests/actions.at (Exotic Dollars): New.
19315
19316 2002-06-12 Akim Demaille <akim@epita.fr>
19317
19318 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
19319 ['"/] too eagerly.
19320 * tests/input.at (Torturing the Scanner): New.
19321
19322 2002-06-11 Akim Demaille <akim@epita.fr>
19323
19324 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
19325 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
19326 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
19327 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
19328 * src/reader.c (reader): Use it.
19329
19330 2002-06-11 Akim Demaille <akim@epita.fr>
19331
19332 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
19333 Adjust all callers.
19334 (scanner_last_string_free): New.
19335
19336 2002-06-11 Akim Demaille <akim@epita.fr>
19337
19338 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
19339 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
19340 (last_string, YY_OBS_FREE): New.
19341 Use them when returning an ID.
19342
19343 2002-06-11 Akim Demaille <akim@epita.fr>
19344
19345 Have Bison grammars parsed by a Bison grammar.
19346
19347 * src/reader.c, src/reader.h (prologue_augment): New.
19348 * src/reader.c (copy_definition): Remove.
19349
19350 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
19351 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
19352 (grammar_current_rule_prec_set, grammar_current_rule_check)
19353 (grammar_current_rule_symbol_append)
19354 (grammar_current_rule_action_append): Export.
19355 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
19356 (symbol_list_action_append): Remove.
19357 Hook the routines from reader.
19358 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
19359 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
19360
19361 * src/reader.c (read_declarations): Remove, unused.
19362
19363 * src/parse-gram.y: Handle the epilogue.
19364 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
19365 (grammar_start_symbol_set): this.
19366 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
19367 * src/reader.c (readgram): Remove, unused.
19368 (reader): Adjust to insert eoftoken and axiom where appropriate.
19369
19370 * src/reader.c (copy_dollar): Replace with...
19371 * src/scan-gram.h (handle_dollar): this.
19372 * src/parse-gram.y: Remove `%thong'.
19373
19374 * src/reader.c (copy_at): Replace with...
19375 * src/scan-gram.h (handle_at): this.
19376
19377 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
19378 New.
19379
19380 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
19381 time being.
19382
19383 * src/reader.h, src/reader.c (grammar_rule_end): New.
19384
19385 * src/parse.y (current_type, current_class): New.
19386 Implement `%nterm', `%token' support.
19387 Merge `%term' into `%token'.
19388 (string_as_id): New.
19389 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
19390 type name.
19391
19392 * src/parse-gram.y: Be sure to handle properly the beginning of
19393 rules.
19394
19395 * src/parse-gram.y: Handle %type.
19396 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
19397
19398 * src/parse-gram.y: More directives support.
19399 * src/options.c: No longer handle source directives.
19400
19401 * src/parse-gram.y: Fix %output.
19402
19403 * src/parse-gram.y: Handle %union.
19404 Use the prologue locations.
19405 * src/reader.c (parse_union_decl): Remove.
19406
19407 * src/reader.h, src/reader.c (epilogue_set): New.
19408 * src/parse-gram.y: Use it.
19409
19410 * data/bison.simple, data/bison.c++: b4_stype is now either not
19411 defined, then default to int, or to the contents of %union,
19412 without `union' itself.
19413 Adjust.
19414 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
19415
19416 * src/output.c (actions_output): Don't output braces, as they are
19417 already handled by the scanner.
19418
19419 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
19420 characters to themselves.
19421
19422 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
19423 that the epilogue has a proper #line.
19424
19425 * src/parse-gram.y: Handle precedence/associativity.
19426
19427 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
19428 a terminal.
19429 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
19430 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
19431 at all to define terminals that cannot be emitted.
19432
19433 * src/scan-gram.l: Escape M4 characters.
19434
19435 * src/scan-gram.l: Working properly with escapes in user
19436 strings/characters.
19437
19438 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
19439 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
19440 grammar.
19441 Use more modest sizes, as for the time being the parser does not
19442 release memory, and therefore the process swallows a huge amount
19443 of memory.
19444
19445 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
19446 stricter %token grammar.
19447
19448 * src/symtab.h (associativity): Add `undef_assoc'.
19449 (symbol_precedence_set): Do nothing when passed an undef_assoc.
19450 * src/symtab.c (symbol_check_alias_consistence): Adjust.
19451
19452 * tests/regression.at (Invalid %directive): Remove, as it is now
19453 meaningless.
19454 (Invalid inputs): Adjust to the new error messages.
19455 (Token definitions): The new grammar doesn't allow too many
19456 eccentricities.
19457
19458 * src/lex.h, src/lex.c: Remove.
19459 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
19460 (copy_character, copy_string2, copy_string, copy_identifier)
19461 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
19462 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
19463 (parse_action): Remove.
19464 * po/POTFILES.in: Adjust.
19465
19466 2002-06-11 Akim Demaille <akim@epita.fr>
19467
19468 * src/reader.c (parse_action): Don't store directly into the
19469 rule's action member: return the action as a string.
19470 Don't require `rule_length' as an argument: compute it.
19471 (grammar_current_rule_symbol_append)
19472 (grammar_current_rule_action_append): New, eved out from
19473 (readgram): here.
19474 Remove `action_flag', `rulelength', unused now.
19475
19476 2002-06-11 Akim Demaille <akim@epita.fr>
19477
19478 * src/reader.c (grammar_current_rule_prec_set).
19479 (grammar_current_rule_check): New, eved out from...
19480 (readgram): here.
19481 Remove `xaction', `first_rhs': useless.
19482 * tests/input.at (Type clashes): New.
19483 * tests/existing.at (GNU Cim Grammar): Adjust.
19484
19485 2002-06-11 Akim Demaille <akim@epita.fr>
19486
19487 * src/reader.c (grammar_midrule_action): New, Eved out from
19488 (readgram): here.
19489
19490 2002-06-11 Akim Demaille <akim@epita.fr>
19491
19492 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
19493 New.
19494 (readgram): Use them as replacement of inlined code, crule and
19495 crule1.
19496
19497 2002-06-11 Akim Demaille <akim@epita.fr>
19498
19499 * src/reader.c (grammar_end, grammar_symbol_append): New.
19500 (readgram): Use them.
19501 Make the use of `p' as local as possible.
19502
19503 2002-06-10 Akim Demaille <akim@epita.fr>
19504
19505 GCJ's parser requires the tokens to be defined before the prologue.
19506
19507 * data/bison.simple: Output the token definition before the user's
19508 prologue.
19509 * tests/regression.at (Braces parsing, Duplicate string)
19510 (Mixing %token styles): Check the output from bison.
19511 (Early token definitions): New.
19512
19513 2002-06-10 Akim Demaille <akim@epita.fr>
19514
19515 * src/symtab.c (symbol_user_token_number_set): Don't complain when
19516 assigning twice the same user number to a token, so that we can
19517 use it in...
19518 * src/lex.c (lex): here.
19519 Also use `symbol_class_set' instead of hand written code.
19520 * src/reader.c (parse_assoc_decl): Likewise.
19521
19522 2002-06-10 Akim Demaille <akim@epita.fr>
19523
19524 * src/symtab.c, src/symtab.c (symbol_class_set)
19525 (symbol_user_token_number_set): New.
19526 * src/reader.c (parse_token_decl): Use them.
19527 Use a switch instead of ifs.
19528 Use a single argument.
19529
19530 2002-06-10 Akim Demaille <akim@epita.fr>
19531
19532 Remove `%thong' support as it is undocumented, unused, duplicates
19533 `%token's job, and creates useless e-mail traffic with people who
19534 want to know what it is, why it is undocumented, unused, and
19535 duplicates `%token's job.
19536
19537 * src/reader.c (parse_thong_decl): Remove.
19538 * src/options.c (option_table): Remove "thong".
19539 * src/lex.h (tok_thong): Remove.
19540
19541 2002-06-10 Akim Demaille <akim@epita.fr>
19542
19543 * src/symtab.c, src/symtab.c (symbol_type_set)
19544 (symbol_precedence_set): New.
19545 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
19546 (value_components_used): Remove, unused.
19547
19548 2002-06-09 Akim Demaille <akim@epita.fr>
19549
19550 Move symbols handling code out of the reader.
19551
19552 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
19553 (axiom): Move to...
19554 * src/symtab.h, src/symtab.c: here.
19555
19556 * src/gram.c (start_symbol): Remove: use startsymbol->number.
19557 * src/reader.c (startval): Rename as...
19558 * src/symtab.h, src/symtab.c (startsymbol): this.
19559 * src/reader.c: Adjust.
19560
19561 * src/reader.c (symbol_check_defined, symbol_make_alias)
19562 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
19563 (token_translations_init)
19564 Move to...
19565 * src/symtab.c: here.
19566 * src/reader.c (packsymbols): Move to...
19567 * src/symtab.h, src/symtab.c (symbols_pack): here.
19568 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
19569 argument.
19570
19571 2002-06-03 Akim Demaille <akim@epita.fr>
19572
19573 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
19574 then statements.
19575
19576 2002-06-03 Akim Demaille <akim@epita.fr>
19577
19578 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
19579 structs with non literals.
19580 * src/scan-skel.l: never-interactive.
19581 * src/conflicts.c (enum conflict_resolution_e): No trailing
19582 comma.
19583 * src/getargs.c (usage): Split long literal strings.
19584 Reported by Hans Aberg.
19585
19586 2002-05-28 Akim Demaille <akim@epita.fr>
19587
19588 * data/bison.c++: Use C++ ostreams.
19589 (cdebug_): New member.
19590
19591 2002-05-28 Akim Demaille <akim@epita.fr>
19592
19593 * src/output.c (output_skeleton): Be sure to allocate enough room
19594 for `/' _and_ for `\0' in full_skeleton.
19595
19596 2002-05-28 Akim Demaille <akim@epita.fr>
19597
19598 * data/bison.c++: Catch up with bison.simple:
19599 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19600 and Paul Eggert <eggert@twinsun.com>: `error' handing.
19601 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
19602 and popping traces.
19603
19604 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19605
19606 * src/output.c (output_skeleton): Put an explicit path in front of
19607 the skeleton file name, rather than relying on the -I directory,
19608 to partially alleviate effects of having a skeleton file lying around
19609 in the current directory.
19610
19611 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19612
19613 * src/conflicts.c (log_resolution): Correct typo:
19614 obstack_printf should be obstack_fgrow1.
19615
19616 2002-05-26 Akim Demaille <akim@epita.fr>
19617
19618 * src/state.h (state_t): `solved_conflicts' is a new member.
19619 * src/LR0.c (new_state): Set it to 0.
19620 * src/conflicts.h, src/conflicts.c (print_conflicts)
19621 (free_conflicts, solve_conflicts): Rename as...
19622 (conflicts_print, conflicts_free, conflicts_solve): these.
19623 Adjust callers.
19624 * src/conflicts.c (enum conflict_resolution_e)
19625 (solved_conflicts_obstack): New, used by...
19626 (log_resolution): this.
19627 Adjust to attach the conflict resolution to each state.
19628 Complete the description with the precedence/associativity
19629 information.
19630 (resolve_sr_conflict): Adjust.
19631 * src/print.c (print_state): Output its solved_conflicts.
19632 * tests/conflicts.at (Unresolved SR Conflicts)
19633 (Solved SR Conflicts): Exercise --report=all.
19634
19635 2002-05-26 Akim Demaille <akim@epita.fr>
19636
19637 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
19638 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
19639 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
19640 (token_number_t, item_number_as_token_number)
19641 (token_number_as_item_number, muscle_insert_token_number_table):
19642 Rename as...
19643 (symbol_number_t, item_number_as_symbol_number)
19644 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
19645 these, since it is more appropriate.
19646
19647 2002-05-26 Akim Demaille <akim@epita.fr>
19648
19649 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
19650 `Error:' lines.
19651 * data/bison.simple (yystos) [YYDEBUG]: New.
19652 (yyparse) [YYDEBUG]: Display the symbols which are popped during
19653 error recovery.
19654 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
19655
19656 2002-05-25 Akim Demaille <akim@epita.fr>
19657
19658 * doc/bison.texinfo (Debugging): Split into...
19659 (Tracing): this new section, its former contents, and...
19660 (Understanding): this new section.
19661 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
19662 by...
19663 (report_flag): this.
19664 Adjust all dependencies.
19665 (report_args, report_types, report_argmatch): New.
19666 (usage, getargs): Report/support -r, --report.
19667 * src/options.h
19668 (struct option_table_struct): Rename as..,
19669 (struct option_table_s): this.
19670 Rename the `set_flag' member to `flag' to match with getopt_long's
19671 struct.
19672 * src/options.c (option_table): Split verbose into an entry for
19673 %verbose, and another for --verbose.
19674 Support --report/-r, so remove -r from the obsolete --raw.
19675 * src/print.c: Attach full item sets and lookaheads reports to
19676 report_flag instead of trace_flag.
19677 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
19678
19679 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19680 and Paul Eggert <eggert@twinsun.com>
19681
19682 * data/bison.simple (yyparse): Correct error handling to conform to
19683 POSIX and yacc. Specifically, after syntax error is discovered,
19684 do not reduce further before shifting the error token.
19685 Clean up the code a bit by removing the labels yyerrdefault,
19686 yyerrhandle, yyerrpop.
19687 * NEWS: Document the above.
19688
19689 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19690
19691 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
19692 type; it isn't always big enough, since it doesn't necessarily
19693 include non-terminals.
19694 (yytranslate): Expand definition of yy_token_number_type, so that
19695 the latter can be removed.
19696 (yy_token_number_type): Remove, only one use.
19697 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
19698 don't use TokenNumberType as element type.
19699
19700 * tests/regression.at: Modify expected output to agree with change
19701 to yyr1 and yytranslate.
19702
19703 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
19704
19705 * src/reader.c (parse_action): Use copy_character instead of
19706 obstack_1grow.
19707
19708 2002-05-13 Akim Demaille <akim@epita.fr>
19709
19710 * tests/regression.at (Token definitions): Prototype yylex and
19711 yyerror.
19712
19713 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19714
19715 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
19716 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
19717 32-bit arithmetic.
19718 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
19719
19720 2002-05-07 Akim Demaille <akim@epita.fr>
19721
19722 * tests/synclines.at: Be sure to prototype yylex and yyerror to
19723 avoid GCC warnings.
19724
19725 2002-05-07 Akim Demaille <akim@epita.fr>
19726
19727 Kill GCC warnings.
19728
19729 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
19730 over the RHS of each rule.
19731 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
19732 * src/state.h (state_t): Member `nitems' is unsigned short.
19733 * src/LR0.c (get_state): Adjust.
19734 * src/reader.c (packgram): Likewise.
19735 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
19736 `Type'.
19737 (muscle_insert_int_table): Remove, unused.
19738 (prepare_rules): Remove `max'.
19739
19740 2002-05-06 Akim Demaille <akim@epita.fr>
19741
19742 * src/closure.c (print_firsts): Display of the symbol tags.
19743 (bitmatrix_print): Move to...
19744 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
19745 here.
19746 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
19747
19748 2002-05-06 Akim Demaille <akim@epita.fr>
19749
19750 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
19751 hash_do_for_each.
19752
19753 2002-05-06 Akim Demaille <akim@epita.fr>
19754
19755 * src/LR0.c (new_state, get_state): Instead of using the global
19756 `kernel_size' and `kernel_base', have two new arguments:
19757 `core_size' and `core'.
19758 Adjust callers.
19759
19760 2002-05-06 Akim Demaille <akim@epita.fr>
19761
19762 * src/reader.c (packgram): No longer end `ritem' with a 0
19763 sentinel: it is not used.
19764
19765 2002-05-05 Akim Demaille <akim@epita.fr>
19766
19767 New experimental feature: display the lookaheads in the report and
19768 graph.
19769
19770 * src/print (print_core): When --trace-flag, display the rules
19771 lookaheads.
19772 * src/print_graph.c (print_core): Likewise.
19773 Swap the arguments.
19774 Adjust caller.
19775
19776 2002-05-05 Akim Demaille <akim@epita.fr>
19777
19778 * tests/torture.at (Many lookaheads): New test.
19779
19780 2002-05-05 Akim Demaille <akim@epita.fr>
19781
19782 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
19783 (GENERATE_MUSCLE_INSERT_TABLE): this.
19784 (output_int_table, output_unsigned_int_table, output_short_table)
19785 (output_token_number_table, output_item_number_table): Replace with...
19786 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
19787 (muscle_insert_short_table, muscle_insert_token_number_table)
19788 (muscle_insert_item_number_table): these.
19789 Adjust all callers.
19790 (prepare_tokens): Don't free `translations', since...
19791 * src/reader.h, src/reader.c (grammar_free): do it.
19792 Move to...
19793 * src/gram.h, src/gram.c (grammar_free): here.
19794 * data/bison.simple, data/bison.c++: b4_token_number_max is now
19795 b4_translate_max.
19796
19797 2002-05-05 Akim Demaille <akim@epita.fr>
19798
19799 * src/output.c (output_unsigned_int_table): New.
19800 (prepare_rules): `i' is unsigned.
19801 `prhs', `rline', `r2' are unsigned int.
19802 Rename muscle `rhs_number_max' as `rhs_max'.
19803 Output muscles `prhs_max', `rline_max', and `r2_max'.
19804 Free rline and r1.
19805 * data/bison.simple, data/bison.c++: Adjust to use these muscles
19806 to compute types instead of constant types.
19807 * tests/regression.at (Web2c Actions): Adjust.
19808
19809 2002-05-04 Akim Demaille <akim@epita.fr>
19810
19811 * src/symtab.h (SALIAS, SUNDEF): Rename as...
19812 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
19813 Adjust dependencies.
19814 * src/output.c (token_definitions_output): Be sure not to output a
19815 `#define 'a'' when fed with `%token 'a' "a"'.
19816 * tests/regression.at (Token definitions): New.
19817
19818 2002-05-03 Paul Eggert <eggert@twinsun.com>
19819
19820 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
19821 for K&R C.
19822
19823 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
19824
19825 * Makefile.am (SUBDIRS): Remove intl.
19826 (EXTRA_DIST): Add config/config.rpath.
19827
19828 2002-05-03 Akim Demaille <akim@epita.fr>
19829
19830 * data/bison.simple (m4_if): Don't output empty enums.
19831 And actually, output valid enum definitions :(.
19832
19833 2002-05-03 Akim Demaille <akim@epita.fr>
19834
19835 * configure.bat: Remove, completely obsolete.
19836 * Makefile.am (EXTRA_DIST): Adjust.
19837 Don't distribute config.rpath...
19838 * config/Makefile.am (EXTRA_DIST): Do it.
19839
19840 2002-05-03 Akim Demaille <akim@epita.fr>
19841
19842 * configure.in (GETTEXT_VERSION): New.
19843 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
19844
19845 2002-05-03 Akim Demaille <akim@epita.fr>
19846
19847 * data/bison.simple (b4_token_enum): New.
19848 (b4_token_defines): Use it to output tokens both as #define and
19849 enums.
19850 Suggested by Paul Eggert.
19851 * src/output.c (token_definitions_output): Don't output spurious
19852 white spaces.
19853
19854 2002-05-03 Akim Demaille <akim@epita.fr>
19855
19856 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
19857
19858 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
19859
19860 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
19861 Update the stack class, give a try to deque as the default container.
19862
19863 2002-05-02 Akim Demaille <akim@epita.fr>
19864
19865 * data/bison.simple (yyparse): Do not implement @$ = @1.
19866 (YYLLOC_DEFAULT): Adjust to do it.
19867 * doc/bison.texinfo (Location Default Action): Fix.
19868
19869 2002-05-02 Akim Demaille <akim@epita.fr>
19870
19871 * src/reader.c (parse_braces): Merge into...
19872 (parse_action): this.
19873
19874 2002-05-02 Akim Demaille <akim@epita.fr>
19875
19876 * configure.in (ALL_LINGUAS): Remove.
19877 * po/LINGUAS, hr.po: New.
19878
19879 2002-05-02 Akim Demaille <akim@epita.fr>
19880
19881 Remove the so called hairy (semantic) parsers.
19882
19883 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
19884 * src/gram.h, src/gram.c (semantic_parser): Remove.
19885 (rule_t): Remove the guard and guard_line members.
19886 * src/lex.h (token_t): remove tok_guard.
19887 * src/options.c (option_table): Remove %guard and %semantic_parser
19888 support.
19889 * src/output.c, src/output.h (guards_output): Remove.
19890 (prepare): Adjust.
19891 (token_definitions_output): Don't output the `T'
19892 tokens (???).
19893 (output_skeleton): Don't output the guards.
19894 * src/files.c, src/files.c (attrsfile): Remove.
19895 * src/reader.c (symbol_list): Remove the guard and guard_line
19896 members.
19897 Adjust dependencies.
19898 (parse_guard): Remove.
19899 * data/bison.hairy: Remove.
19900 * doc/bison.texinfo (Environment Variables): Remove occurrences of
19901 BISON_HAIRY.
19902
19903 2002-05-02 Akim Demaille <akim@epita.fr>
19904
19905 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
19906 (parse_guard): Rename the formal argument `stack_offset' as
19907 `rule_length', which is more readable.
19908 Adjust callers.
19909 (copy_at, copy_dollar): Instead of outputting the hard coded
19910 values of $$, $n and so forth, output invocation to b4_lhs_value,
19911 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
19912 Note: this patch partially drops `semantic-parser' support: it
19913 always does `rule_length - n', where semantic parsers ought to
19914 always use `-n'.
19915 * data/bison.simple, data/bison.c++ (b4_lhs_value)
19916 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
19917
19918 2002-05-02 Akim Demaille <akim@epita.fr>
19919
19920 * configure.in (AC_INIT): Bump to 1.49b.
19921 (AM_INIT_AUTOMAKE): Short invocation.
19922
19923 2002-05-02 Akim Demaille <akim@epita.fr>
19924
19925 Version 1.49a.
19926
19927 2002-05-01 Akim Demaille <akim@epita.fr>
19928
19929 * src/skeleton.h: Remove.
19930
19931 2002-05-01 Akim Demaille <akim@epita.fr>
19932
19933 * src/skeleton.h: Fix the #endif.
19934 Reported by Magnus Fromreide.
19935
19936 2002-04-26 Paul Eggert <eggert@twinsun.com>
19937
19938 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
19939 Define if we define YYSTYPE and YYLTYPE, respectively.
19940 (YYCOPY): Fix [] quoting problem in the non-GCC case.
19941
19942 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
19943
19944 * src/scan-skel.l: Postprocess quadrigraphs.
19945
19946 * src/reader.c (copy_character): New function, used to output
19947 single characters while replacing `[' and `]' with quadrigraphs, to
19948 avoid troubles with M4 quotes.
19949 (copy_comment): Output characters with copy_character.
19950 (read_additionnal_code): Likewise.
19951 (copy_string2): Likewise.
19952 (copy_definition): Likewise.
19953
19954 * tests/calc.at: Exercise M4 quoting.
19955
19956 2002-04-25 Akim Demaille <akim@epita.fr>
19957
19958 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
19959 between `!' and the command.
19960 Reported by Paul Eggert.
19961
19962 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
19963
19964 * tests/calc.at: Exercise prologue splitting.
19965
19966 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
19967 `b4_post_prologue' instead of `b4_prologue'.
19968
19969 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
19970 muscles.
19971 (output): Free pre_prologue_obstack and post_prologue_obstack.
19972 * src/files.h, src/files.c (attrs_obstack): Remove.
19973 (pre_prologue_obstack, post_prologue_obstack): New.
19974 * src/reader.c (copy_definition): Add a parameter to specify the
19975 obstack to fill, instead of using attrs_obstack unconditionally.
19976 (read_declarations): Pass pre_prologue_obstack to copy_definition if
19977 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
19978
19979 2002-04-23 Paul Eggert <eggert@twinsun.com>
19980
19981 * data/bison.simple: Remove unnecessary commentary and white
19982 space differences from 1_29-branch.
19983 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
19984
19985 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
19986 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
19987 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
19988 constructors or destructors.
19989
19990 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
19991
19992 2002-04-23 Akim Demaille <akim@epita.fr>
19993
19994 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
19995 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
19996 location with columns.
19997 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
19998 All reported by Paul Eggert.
19999
20000 2002-04-22 Akim Demaille <akim@epita.fr>
20001
20002 * src/reduce.c (dump_grammar): Move to...
20003 * src/gram.h, src/gram.c (grammar_dump): here.
20004 Be sure to separate long item numbers.
20005 Don't read the members of a rule's prec if its nil.
20006
20007 2002-04-22 Akim Demaille <akim@epita.fr>
20008
20009 * src/output.c (table_size, table_grow): New.
20010 (MAXTABLE): Remove, replace uses with table_size.
20011 (pack_vector): Instead of dying when the table is too big, grow it.
20012
20013 2002-04-22 Akim Demaille <akim@epita.fr>
20014
20015 * data/bison.simple (yyr1): Its type is that of a token number.
20016 * data/bison.c++ (r1_): Likewise.
20017 * tests/regression.at (Web2c Actions): Adjust.
20018
20019 2002-04-22 Akim Demaille <akim@epita.fr>
20020
20021 * src/reader.c (token_translations_init): 256 is now the default
20022 value for the error token, i.e., it will be assigned another
20023 number if the user assigned 256 to one of her tokens.
20024 (reader): Don't force 256 to error.
20025 * doc/bison.texinfo (Symbols): Adjust.
20026 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
20027 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
20028 etc. instead of 10, 20, 30 (which was used to `jump' over error
20029 (256) and undefined (2)).
20030
20031 2002-04-22 Akim Demaille <akim@epita.fr>
20032
20033 Propagate more token_number_t.
20034
20035 * src/gram.h (token_number_as_item_number)
20036 (item_number_as_token_number): New.
20037 * src/output.c (GENERATE_OUTPUT_TABLE): New.
20038 Use it to create output_item_number_table and
20039 output_token_number_table.
20040 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
20041 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
20042 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
20043 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
20044
20045 2002-04-22 Akim Demaille <akim@epita.fr>
20046
20047 * src/output.h, src/output.c (get_lines_number): Remove.
20048
20049 2002-04-19 Akim Demaille <akim@epita.fr>
20050
20051 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
20052 as Lex/Flex'.
20053 (Debugging): More details about enabling the debugging features.
20054 (Table of Symbols): Describe $$, $n, @$, and @n.
20055 Suggested by Tim Josling.
20056
20057 2002-04-19 Akim Demaille <akim@epita.fr>
20058
20059 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
20060
20061 2002-04-10 Akim Demaille <akim@epita.fr>
20062
20063 * src/system.h: Rely on HAVE_LIMITS_H.
20064 Suggested by Paul Eggert.
20065
20066 2002-04-09 Akim Demaille <akim@epita.fr>
20067
20068 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
20069 full stderr, and strip it according to the bison options, instead
20070 of composing the error message from different bits.
20071 This makes it easier to check for several error messages.
20072 Adjust all the invocations.
20073 Add an invocation exercising the error token.
20074 Add an invocation demonstrating a stupid error message.
20075 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
20076 Adjust the tests.
20077 Error message are for stderr, not stdout.
20078
20079 2002-04-09 Akim Demaille <akim@epita.fr>
20080
20081 * src/gram.h, src/gram.c (error_token_number): Remove, use
20082 errtoken->number.
20083 * src/reader.c (reader): Don't specify the user token number (2)
20084 for $undefined, as it uselessly prevents using it.
20085 * src/gram.h (token_number_t): Move to...
20086 * src/symtab.h: here.
20087 (state_t.number): Is a token_number_t.
20088 * src/print.c, src/reader.c: Use undeftoken->number instead of
20089 hard coded 2.
20090 (Even though this 2 is not the same as above: the number of the
20091 undeftoken remains being 2, it is its user token number which
20092 might not be 2).
20093 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
20094 `user_token_number_max'.
20095 Output `undef_token_number'.
20096 * data/bison.simple, data/bison.c++: Use them.
20097 Be sure to map invalid yylex return values to
20098 `undef_token_number'. This saves us from gratuitous SEGV.
20099
20100 * tests/conflicts.at (Solved SR Conflicts)
20101 (Unresolved SR Conflicts): Adjust.
20102 * tests/regression.at (Web2c Actions): Adjust.
20103
20104 2002-04-08 Akim Demaille <akim@epita.fr>
20105
20106 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
20107 Adding #line.
20108 Remove the duplicate `typedefs'.
20109 (RhsNumberType): Fix the declaration and various other typos.
20110 Use __ofile__.
20111 * data/bison.simple: Use __ofile__.
20112 * src/scan-skel.l: Handle __ofile__.
20113
20114 2002-04-08 Akim Demaille <akim@epita.fr>
20115
20116 * src/gram.h (item_number_t): New, the type of item numbers in
20117 RITEM. Note that it must be able to code symbol numbers as
20118 positive number, and the negation of rule numbers as negative
20119 numbers.
20120 Adjust all dependencies (pretty many).
20121 * src/reduce.c (rule): Remove this `short *' pointer: use
20122 item_number_t.
20123 * src/system.h (MINSHORT, MAXSHORT): Remove.
20124 Include `limits.h'.
20125 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
20126 (shortcpy): Remove.
20127 (MAXTABLE): Move to...
20128 * src/output.c (MAXTABLE): here.
20129 (prepare_rules): Use output_int_table to output rhs.
20130 * data/bison.simple, data/bison.c++: Adjust.
20131 * tests/torture.at (Big triangle): Move the limit from 254 to
20132 500.
20133 * tests/regression.at (Web2c Actions): Ajust.
20134
20135 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
20136 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
20137 passes, but produces negative #line number, once fixed, GCC is
20138 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
20139 C), it passes.
20140 * src/state.h (state_h): Code input lines on ints, not shorts.
20141
20142 2002-04-08 Akim Demaille <akim@epita.fr>
20143
20144 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
20145 and then the grammar.
20146
20147 2002-04-08 Akim Demaille <akim@epita.fr>
20148
20149 * src/system.h: No longer using strndup.
20150
20151 2002-04-07 Akim Demaille <akim@epita.fr>
20152
20153 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
20154 * src/output.c (output_table_data): Return the longest number.
20155 (prepare_tokens): Output `token_number_max').
20156 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
20157 New.
20158 Use them to define yy_token_number_type/TokenNumberType.
20159 Use this type for yytranslate.
20160 * tests/torture.at (Big triangle): Push the limit from 124 to
20161 253.
20162 * tests/regression.at (Web2c Actions): Adjust.
20163
20164 2002-04-07 Akim Demaille <akim@epita.fr>
20165
20166 * tests/torture.at (Big triangle): New.
20167 (GNU AWK Grammar, GNU Cim Grammar): Move to...
20168 * tests/existing.at: here.
20169
20170 2002-04-07 Akim Demaille <akim@epita.fr>
20171
20172 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
20173 nritems.
20174 Adjust dependencies.
20175
20176 2002-04-07 Akim Demaille <akim@epita.fr>
20177
20178 * src/reader.c: Normalize increments to prefix form.
20179
20180 2002-04-07 Akim Demaille <akim@epita.fr>
20181
20182 * src/reader.c, symtab.c: Remove debugging code.
20183
20184 2002-04-07 Akim Demaille <akim@epita.fr>
20185
20186 Rename all the `bucket's as `symbol_t'.
20187
20188 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
20189 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
20190 * src/symtab.c, src/symtab.h (bucket): Rename as...
20191 (symbol_t): this.
20192 (symbol_list_new, bucket_check_defined, bucket_make_alias)
20193 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
20194 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
20195 (buckets_new, buckets_free, buckets_do): Rename as...
20196 (symbol_list_new, symbol_check_defined, symbol_make_alias)
20197 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
20198 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
20199 (symbols_new, symbols_free, symbols_do): these.
20200
20201 2002-04-07 Akim Demaille <akim@epita.fr>
20202
20203 Use lib/hash for the symbol table.
20204
20205 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
20206 EOF.
20207 * src/lex.c (lex): Set the `number' member of new terminals.
20208 * src/reader.c (bucket_check_defined, bucket_make_alias)
20209 (bucket_check_alias_consistence, bucket_translation): New.
20210 (reader, grammar_free, readgram, token_translations_init)
20211 (packsymbols): Adjust.
20212 (reader): Number the predefined tokens.
20213 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
20214 for predefined tokens.
20215 * src/symtab.h (bucket): Remove all the hash table related
20216 members.
20217 * src/symtab.c (symtab): Replace by...
20218 (bucket_table): this.
20219 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
20220 (buckets_new, buckets_do): New.
20221
20222 2002-04-07 Akim Demaille <akim@epita.fr>
20223
20224 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
20225 (start_symbol, max_user_token_number, semantic_parser)
20226 (error_token_number): Initialize.
20227 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
20228 Initialize.
20229 (reader): Don't.
20230 (errtoken, eoftoken, undeftoken, axiom): Extern.
20231
20232 2002-04-07 Akim Demaille <akim@epita.fr>
20233
20234 * src/gram.h (rule_s): prec and precsym are now pointers
20235 to the bucket giving the priority/associativity.
20236 Member `associativity' removed: useless.
20237 * src/reduce.c, src/conflicts.c: Adjust.
20238
20239 2002-04-07 Akim Demaille <akim@epita.fr>
20240
20241 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
20242 Properly escape the symbols' TAG when outputting them.
20243
20244 2002-04-07 Akim Demaille <akim@epita.fr>
20245
20246 * src/lalr.h (LA): Is a bitsetv, not bitset*.
20247
20248 2002-04-07 Akim Demaille <akim@epita.fr>
20249
20250 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
20251 (LArule): this, which is an array to rule_t*.
20252 * src/print.c, src/conflicts.c: Adjust.
20253
20254 2002-04-07 Akim Demaille <akim@epita.fr>
20255
20256 * src/gram.h (rule_t): Rename `number' as `user_number'.
20257 `number' is a new member.
20258 Adjust dependencies.
20259 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
20260
20261 2002-04-07 Akim Demaille <akim@epita.fr>
20262
20263 As a result of the previous patch, it is no longer needed
20264 to reorder ritem itself.
20265
20266 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
20267
20268 2002-04-07 Akim Demaille <akim@epita.fr>
20269
20270 Be sure never to walk through RITEMS, but use only data related to
20271 the rules themselves. RITEMS should be banished.
20272
20273 * src/output.c (output_token_translations): Rename as...
20274 (prepare_tokens): this.
20275 In addition to `translate', prepare the muscles `tname' and
20276 `toknum', which were handled by...
20277 (output_rule_data): this.
20278 Remove, and move the remainder of its outputs into...
20279 (prepare_rules): this new routines, which also merges content from
20280 (output_gram): this.
20281 (prepare_rules): Be sure never to walk through RITEMS.
20282 (output_stos): Rename as...
20283 (prepare_stos): this.
20284 (output): Always invoke prepare_states, after all, just don't use it
20285 in the output if you don't need it.
20286
20287 2002-04-07 Akim Demaille <akim@epita.fr>
20288
20289 * src/LR0.c (new_state): Display `nstates' as the name of the
20290 newly created state.
20291 Adjust to initialize first_state and last_state if needed.
20292 Be sure to distinguish the initial from the final state.
20293 (new_states): Create the itemset of the initial state, and use
20294 new_state.
20295 * src/closure.c (closure): Now that the initial state has its
20296 items properly set, there is no need for a special case when
20297 creating `ruleset'.
20298
20299 As a result, now the rule 0, reducing to $axiom, is visible in the
20300 outputs. Adjust the test suite.
20301
20302 * tests/conflicts.at (Solved SR Conflicts)
20303 (Unresolved SR Conflicts): Adjust.
20304 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
20305 * tests/conflicts.at (S/R in initial): New.
20306
20307 2002-04-07 Akim Demaille <akim@epita.fr>
20308
20309 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
20310 the RHS of the rules.
20311 * src/output.c (output_gram): Likewise.
20312
20313 2002-04-07 Akim Demaille <akim@epita.fr>
20314
20315 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
20316 bucket.
20317 Adjust all dependencies.
20318 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
20319 `number' of the buckets too.
20320 * src/gram.h: Include `symtab.h'.
20321 (associativity): Move to...
20322 * src/symtab.h: here.
20323 No longer include `gram.h'.
20324
20325 2002-04-07 Akim Demaille <akim@epita.fr>
20326
20327 * src/gram.h, src/gram.c (rules_rhs_length): New.
20328 (ritem_longest_rhs): Use it.
20329 * src/gram.h (rule_t): `number' is a new member.
20330 * src/reader.c (packgram): Set it.
20331 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
20332 the end of `rules', and count them out of `nrules'.
20333 (reduce_output, dump_grammar): Adjust.
20334 * src/print.c (print_grammar): It is no longer needed to check for
20335 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
20336 * tests/reduce.at (Reduced Automaton): New test.
20337
20338 2002-04-07 Akim Demaille <akim@epita.fr>
20339
20340 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
20341 lacking `+ 1' to nrules, Bison reported as useless a token if it
20342 was used solely to set the precedence of the last rule...
20343
20344 2002-04-07 Akim Demaille <akim@epita.fr>
20345
20346 * data/bison.c++, data/bison.simple: Don't output the current file
20347 name in #line, to avoid useless diffs between two identical
20348 outputs under different names.
20349
20350 2002-04-07 Akim Demaille <akim@epita.fr>
20351
20352 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
20353 Normalize loops to using `< nrules + 1', not `<= nrules'.
20354
20355 2002-04-07 Akim Demaille <akim@epita.fr>
20356
20357 * TODO: Update.
20358
20359 2002-04-07 Akim Demaille <akim@epita.fr>
20360
20361 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
20362 bucket.value as bucket.number.
20363
20364 2002-04-07 Akim Demaille <akim@epita.fr>
20365
20366 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
20367 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
20368 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
20369 RHS, instead of being an index in RITEMS.
20370
20371 2002-04-04 Paul Eggert <eggert@twinsun.com>
20372
20373 * doc/bison.texinfo: Update copyright date.
20374 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
20375 (Symbols): Warn about running Bison in one character set,
20376 but compiling and/or running in an incompatible one.
20377 Warn about character code 256, too.
20378
20379 2002-04-03 Paul Eggert <eggert@twinsun.com>
20380
20381 * src/bison.data (YYSTACK_ALLOC): Depend on whether
20382 YYERROR_VERBOSE is nonzero, not whether it is defined.
20383
20384 Merge changes from bison-1_29-branch.
20385
20386 2002-03-20 Paul Eggert <eggert@twinsun.com>
20387
20388 Merge fixes from Debian bison_1.34-1.diff.
20389
20390 * configure.in (AC_PREREQ): 2.53.
20391
20392 2002-03-20 Akim Demaille <akim@epita.fr>
20393
20394 * src/conflicts.c (log_resolution): Argument `resolution' is const.
20395
20396 2002-03-19 Paul Eggert <eggert@twinsun.com>
20397
20398 * src/bison.simple (YYCOPY): New macro.
20399 (YYSTACK_RELOCATE): Use it.
20400 Remove Type arg; no longer needed. All callers changed.
20401 (yymemcpy): Remove; no longer needed.
20402
20403 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
20404 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
20405
20406 2002-03-19 Akim Demaille <akim@epita.fr>
20407
20408 Test and fix the #line outputs.
20409
20410 * tests/atlocal.at (GCC): New.
20411 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
20412 (Prologue synch line, %union synch line, Postprologue synch line)
20413 (Action synch line, Epilogue synch line): New tests.
20414 * src/reader.c (parse_union_decl): Define the muscle stype_line.
20415 * data/bison.simple, data/bison.c++: Use it.
20416
20417 2002-03-19 Akim Demaille <akim@epita.fr>
20418
20419 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
20420 (Solved SR Conflicts, %expect not enough, %expect right)
20421 (%expect too much): Move to...
20422 * tests/conflicts.at: this new file.
20423
20424 2002-03-19 Akim Demaille <akim@epita.fr>
20425
20426 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
20427 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
20428 that we can move to enums for instance.
20429 * src/output.c (token_definitions_output): Output a list of
20430 `token-name, token-number' instead of the #define.
20431 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
20432
20433 2002-03-14 Akim Demaille <akim@epita.fr>
20434
20435 Use Gettext 0.11.1.
20436
20437 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
20438
20439 * data/bison.c++: Make the user able to add members to the generated
20440 parser by subclassing.
20441
20442 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
20443
20444 * src/reader.c (read_additionnal_code): `c' should be an integer, not
20445 a character.
20446 Reported by Nicolas Tisserand and Nicolas Burrus.
20447
20448 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
20449
20450 * src/reader.c: Warn about lacking semi-colons, do not complain.
20451
20452 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
20453
20454 * data/bison.c++: Remove a debug line.
20455
20456 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
20457
20458 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
20459 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
20460 provide a default implementation.
20461
20462 2002-03-04 Akim Demaille <akim@epita.fr>
20463
20464 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
20465 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
20466 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
20467 * tests/semantic.at (Parsing Guards): Similarly.
20468 * src/reader.at (readgram): Complain if the last rule is not ended
20469 with a semi-colon.
20470
20471 2002-03-04 Akim Demaille <akim@epita.fr>
20472
20473 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
20474 * src/closure.c: here.
20475 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
20476 RTC.
20477 * src/warshall.h, src/warshall.c: Remove.
20478 * tests/sets.at (Broken Closure): Adjust.
20479
20480 2002-03-04 Akim Demaille <akim@epita.fr>
20481
20482 * src/output.c (output_skeleton): tempdir is const.
20483 bytes_read is unused.
20484
20485 2002-03-04 Akim Demaille <akim@epita.fr>
20486
20487 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
20488 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
20489 Update.
20490 From Michael Hayes.
20491
20492 2002-03-04 Akim Demaille <akim@epita.fr>
20493
20494 * src/closure.c (closure): `r' is unused.
20495
20496 2002-03-04 Akim Demaille <akim@epita.fr>
20497
20498 * tests/sets.at (Broken Closure): Add the ending `;'.
20499 * src/reader.at (readgram): Complain if a rule is not ended with a
20500 semi-colon.
20501
20502 2002-03-04 Akim Demaille <akim@epita.fr>
20503
20504 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
20505 (count_sr_conflicts): Use bitset_count.
20506 * src/reduce.c (inaccessable_symbols): Ditto.
20507 (bits_size): Remove.
20508 * src/warshall.h, src/warshall.c: Convert to bitsetv.
20509
20510 2002-03-04 Akim Demaille <akim@epita.fr>
20511
20512 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
20513 * src/reduce.c: Remove the `bitset_zero's following the
20514 `bitset_create's, as now it is performed by the latter.
20515
20516 2002-03-04 Akim Demaille <akim@epita.fr>
20517
20518 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
20519 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
20520 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
20521 latest sources from Michael.
20522
20523 2002-03-04 Akim Demaille <akim@epita.fr>
20524
20525 * src/output.c (output): Don't free the grammar.
20526 * src/reader.c (grammar_free): New.
20527 * src/main.c (main): Call it and don't free symtab here.
20528
20529 2002-03-04 Akim Demaille <akim@epita.fr>
20530
20531 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
20532 before returning.
20533 Reported by Benoit Perrot.
20534
20535 2002-03-04 Akim Demaille <akim@epita.fr>
20536
20537 Use bitset operations when possible, not loops over bits.
20538
20539 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
20540 bitset_or.
20541 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
20542 * src/reduce.c (useless_nonterminals): Formatting changes.
20543 * src/warshall.c (TC): Use bitset_or.
20544
20545 2002-03-04 Akim Demaille <akim@epita.fr>
20546
20547 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
20548 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
20549 Ditto.
20550
20551 2002-03-04 Akim Demaille <akim@epita.fr>
20552
20553 * src/lalr.c (F): Now a bitset*.
20554 Adjust all dependencies.
20555
20556 2002-03-04 Akim Demaille <akim@epita.fr>
20557
20558 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
20559 Adjust all dependencies.
20560
20561 2002-03-04 Akim Demaille <akim@epita.fr>
20562
20563 * src/L0.c, src/LR0.h (nstates): Be size_t.
20564 Adjust comparisons (signed vs unsigned).
20565 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
20566 bitset*.
20567 Adjust all dependencies.
20568
20569 2002-03-04 Akim Demaille <akim@epita.fr>
20570
20571 * src/closure.c (firsts): Now, also a bitset.
20572 Adjust all dependencies.
20573 (varsetsize): Remove, now unused.
20574 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
20575
20576 2002-03-04 Akim Demaille <akim@epita.fr>
20577
20578 * src/print.c: Convert to use bitset.h, not hand coded iterations
20579 over ints.
20580
20581 2002-03-04 Akim Demaille <akim@epita.fr>
20582
20583 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
20584
20585 2002-03-04 Akim Demaille <akim@epita.fr>
20586
20587 * src/closure.c (ruleset): Be a bitset.
20588 (rulesetsize): Remove.
20589
20590 2002-03-04 Akim Demaille <akim@epita.fr>
20591
20592 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
20593 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
20594 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
20595 * src/closure.c (fderives): Be an array of bitsets.
20596
20597 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
20598
20599 * data/bison.c++: Merge the two generated headers. Insert a copyright
20600 notice in each output file.
20601
20602 2002-02-28 Akim Demaille <akim@epita.fr>
20603
20604 * data/bison.c++: Copy the prologue of bison.simple to fetch
20605 useful M4 definitions, such as b4_header_guard.
20606
20607 2002-02-25 Akim Demaille <akim@epita.fr>
20608
20609 * src/getargs.c (version): Give the name of the authors, and use a
20610 translator friendly scheme for the bgr
20611 copyright notice.
20612
20613 2002-02-25 Akim Demaille <akim@epita.fr>
20614
20615 * src/output.c (header_output): Remove, now handled completely via
20616 M4.
20617
20618 2002-02-25 Akim Demaille <akim@epita.fr>
20619
20620 * m4/m4.m4: New, from CVS Autoconf.
20621 * configure.in: Invoke it.
20622 * src/output.c (output_skeleton): Use its result instead of the
20623 hard coded name.
20624
20625 2002-02-25 Akim Demaille <akim@epita.fr>
20626
20627 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
20628 Fileutils 4.1.5.
20629 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
20630 * src/output.c (output_skeleton): Use mkstemp to create a real
20631 temporary file.
20632 Move the filling of `skeleton' and its muscle to...
20633 (prepare): here.
20634 (output): Move the definition of the prologue muscle to...
20635 (prepare): here.
20636 * src/system.h (DEFAULT_TMPDIR): New.
20637
20638 2002-02-14 Paul Eggert <eggert@twinsun.com>
20639
20640 Remove the support for C++ namespace cleanliness; it was
20641 causing more problems than it was curing, since it didn't work
20642 properly on some nonstandard C++ compilers. This can wait
20643 for a proper C++ parser.
20644
20645 * NEWS: Document this.
20646 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
20647 of C++, as it's treated like C now.
20648 * src/bison.simple (YYSTD): Remove.
20649 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
20650 Treat C++ just like Standard C instead of trying to support
20651 namespace cleanliness.
20652
20653 2002-02-14 Akim Demaille <akim@epita.fr>
20654
20655 * tests/regression.at (else): Adjust to Andreas' change.
20656
20657 2002-02-14 Akim Demaille <akim@epita.fr>
20658
20659 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
20660
20661 2002-02-13 Andreas Schwab <schwab@suse.de>
20662
20663 * src/output.c (output_rule_data): Don't output NULL, it might
20664 not be defined yet.
20665
20666 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
20667
20668 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
20669 (Copyright notice): Update.
20670
20671 2002-02-11 Akim Demaille <akim@epita.fr>
20672
20673 * tests/regression.at (%nonassoc and eof): Don't include
20674 nonportable headers.
20675
20676 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
20677
20678 * data/bison.c++: Correct error recovery. Make the user able to
20679 initialize the starting location.
20680
20681 2002-02-07 Akim Demaille <akim@epita.fr>
20682
20683 * tests/input.at: New.
20684
20685 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
20686
20687 * data/bison.c++: Replace some direct m4 expansions by constants. Be
20688 more consistent when naming methods and variables. Put preprocessor
20689 directives around tables only needed for debugging.
20690
20691 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
20692
20693 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
20694 C++ parsers.
20695 (yy::b4_name::parse): Use print_.
20696
20697 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
20698
20699 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
20700
20701 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
20702
20703 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
20704 C++ parsers.
20705 (yy::b4_name::parse): Build verbose error messages, and use error_.
20706
20707 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
20708
20709 * data/bison.c++: Fix m4 quoting in comments.
20710
20711 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
20712
20713 * data/bison.c++: Adjust the parser code. Fix some muscles that were
20714 not expanded by m4.
20715
20716 2002-02-05 Akim Demaille <akim@epita.fr>
20717
20718 * data/bison.c++: Adjust to the M4 back end.
20719 More is certainly needed.
20720
20721 2002-02-05 Akim Demaille <akim@epita.fr>
20722
20723 Give a try to M4 as a back end.
20724
20725 * lib/readpipe.c: New, from wdiff.
20726 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
20727 BISON_HAIRY.
20728 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
20729 specific values. Now it is m4 that performs the lookup.
20730 * src/parse-skel.y: Remove.
20731 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
20732 * src/output.c (actions_output, guards_output)
20733 (token_definitions_output): No longer keeps track of the output
20734 line number, hence remove the second argument.
20735 (guards_output): Check against the guard member of a rule, not the
20736 action member.
20737 Adjust callers.
20738 (output_skeleton): Don't look for the skeleton location, let m4 do
20739 that.
20740 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
20741 file will be used.
20742 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
20743 (prepare): Given that for the time being changesyntax is not
20744 usable in M4, rename the muscles using `-' to `_'.
20745 Define `defines_flag', `output_parser_name' and `output_header_name'.
20746 * src/output.h (actions_output, guards_output)
20747 (token_definitions_output): Adjust prototypes.
20748 * src/scan-skel.l: Instead of scanning the skeletons, it now
20749 processes the output of m4: `__oline__' and `#output'.
20750 * data/bison.simple: Adjust to be used by M4(sugar).
20751 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
20752 to date.
20753 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
20754 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
20755 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
20756 shamelessly stolen from CVS Autoconf.
20757
20758 2002-02-05 Akim Demaille <akim@epita.fr>
20759
20760 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
20761 * configure.in: Check for the declarations of free and malloc.
20762 * src/muscle_tab.c: Adjust.
20763
20764 2002-02-05 Akim Demaille <akim@epita.fr>
20765
20766 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
20767 which have no values.
20768
20769 2002-02-05 Akim Demaille <akim@epita.fr>
20770
20771 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
20772 * data/: here.
20773
20774 2002-01-29 Paul Eggert <eggert@twinsun.com>
20775
20776 * src/bison.simple (YYSIZE_T): Do not define merely because
20777 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
20778 On some platforms, <alloca.h> does not declare YYSTD (size_t).
20779
20780 2002-01-27 Akim Demaille <akim@epita.fr>
20781
20782 Fix `%nonassoc and eof'.
20783
20784 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
20785 which were not properly copied! Replace
20786 memcpy (res->errs, src->errs, src->nerrs);
20787 with
20788 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
20789 !!!
20790 * tests/regression.at (%nonassoc and eof): Adjust to newest
20791 Autotest: `.' is not in the PATH.
20792
20793 2002-01-27 Akim Demaille <akim@epita.fr>
20794
20795 * tests/sets.at (AT_EXTRACT_SETS): New.
20796 (Nullable): Use it.
20797 (Firsts): New.
20798
20799 2002-01-26 Akim Demaille <akim@epita.fr>
20800
20801 * tests/actions.at, tests/calc.at, tests/headers.at,
20802 * tests/torture.at: Adjust to the newest Autotest which no longer
20803 forces `.' in the PATH.
20804
20805 2002-01-25 Akim Demaille <akim@epita.fr>
20806
20807 * tests/regression.at (%nonassoc and eof): New.
20808 Suggested by Robert Anisko.
20809
20810 2002-01-24 Akim Demaille <akim@epita.fr>
20811
20812 Bison dumps core when trying to complain about broken input files.
20813 Reported by Cris van Pelt.
20814
20815 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
20816 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
20817 into...
20818 (Invalid inputs): Strengthen: exercise parse_percent_token.
20819
20820 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
20821
20822 * src/Makefile.am: Add bison.c++.
20823 * src/bison.c++: New skeleton.
20824
20825 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
20826
20827 * po/it.po: New.
20828
20829 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
20830
20831 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
20832
20833 2002-01-20 Marc Autret <marc@gnu.org>
20834
20835 * src/files.c (compute_output_file_names): Fix
20836
20837 2002-01-20 Marc Autret <marc@gnu.org>
20838
20839 * tests/output.at: New test.
20840 * src/files.c (compute_base_names): Don't map extensions when
20841 the YACC flag is set, use defaults.
20842 Reported by Evgeny Stambulchik.
20843
20844 2002-01-20 Marc Autret <marc@gnu.org>
20845
20846 * src/system.h: Need to define __attribute__ away for non-GCC
20847 compilers as well (i.e., the vendor C compiler).
20848 Suggested by Albert Chin-A-Young.
20849
20850 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
20851
20852 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
20853 canonical definition.
20854 * src/system.h: Use the canonical definition for PARAMS (avoids
20855 a conflict with the macro from lib/hash.h).
20856
20857 2002-01-11 Akim Demaille <akim@epita.fr>
20858
20859 * configure.in: Use AC_FUNC_STRNLEN.
20860 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
20861
20862 2002-01-09 Akim Demaille <akim@epita.fr>
20863
20864 * src/files.c, src/files.h (output_infix): New.
20865 (tab_extension): Remove.
20866 (compute_base_names): Compute the former, drop the latter.
20867 * src/output.c (prepare): Insert the muscles `output-infix', and
20868 `output-suffix'.
20869 * src/parse-skel.y (string, string.1): New.
20870 (section.header): Use it.
20871 (section.yacc): Remove.
20872 (prefix): Remove too.
20873 * src/scan-skel.l: Adjust.
20874 * src/bison.simple, src/bison.hairy: Adjust.
20875
20876 2002-01-09 Akim Demaille <akim@epita.fr>
20877
20878 * configure.in (WERROR_CFLAGS): Compute it.
20879 * src/Makefile.am (CFLAGS): Pass it.
20880 * tests/atlocal.in (CFLAGS): Idem.
20881 * src/files.c: Fix a few warnings.
20882 (get_extension_index): Remove, unused.
20883
20884 2002-01-08 Akim Demaille <akim@epita.fr>
20885
20886 * src/getargs.c (AS_FILE_NAME): New.
20887 (getargs): Use it to convert DOSish file names.
20888 * src/files.c (base_name): Rename as full_base_name to avoid
20889 clashes with `base_name ()'.
20890 (filename_split): New.
20891 (compute_base_names): N-th rewrite, using filename_split.
20892
20893 2002-01-08 Akim Demaille <akim@epita.fr>
20894
20895 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
20896 New, stolen from the Fileutils 4.1.
20897 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
20898 * configure.in: Check for the presence of memrchr, and of its
20899 prototype.
20900
20901 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
20902
20903 * lib/hash.h (__P): Added definition for this macro.
20904 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
20905 BUILT_SOURCES, to ensure they are generated first.
20906 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
20907 %error-verbose to allow bootstrapping with bison 1.30x.
20908
20909 2002-01-06 Akim Demaille <akim@epita.fr>
20910
20911 * src/reader.c (parse_braces): Don't fetch the next char, the
20912 convention is to fetch on entry.
20913 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
20914 'switch' without a following semicolon.
20915 * tests/regression.at (braces parsing): New.
20916
20917 2002-01-06 Akim Demaille <akim@epita.fr>
20918
20919 Bison is dead wrong in its RR conflict reports.
20920
20921 * tests/torture.at (GNU Cim Grammar): New.
20922 * src/conflicts.c (count_rr_conflicts): Fix.
20923
20924 2002-01-06 Akim Demaille <akim@epita.fr>
20925
20926 Creating package.m4 from configure.ac causes too many problems.
20927
20928 * tests/Makefile.am (package.m4): Create it by hand,
20929 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
20930
20931 2002-01-06 Akim Demaille <akim@epita.fr>
20932
20933 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
20934 skeleton.h.
20935
20936 2002-01-04 Paul Eggert <eggert@twinsun.com>
20937
20938 * doc/bison.texinfo (Debugging):
20939 Remove YYSTDERR; it's no longer defined or used.
20940 Also, s/cstdio.h/cstdio/.
20941
20942 2002-01-03 Akim Demaille <akim@epita.fr>
20943
20944 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
20945
20946 2002-01-03 Akim Demaille <akim@epita.fr>
20947
20948 * src/parse-skel.y (process_skeleton): Don't bind the parser's
20949 tracing code to --trace, wait for a better --trace option, with
20950 args.
20951
20952 2002-01-03 Akim Demaille <akim@epita.fr>
20953
20954 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
20955 The ISO C++ standard is extremely clear about it: stderr is
20956 considered a macro, not a regular symbol (see table 94 `Header
20957 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
20958 Therefore std:: does not apply to it. It still does with fprintf.
20959 Also, s/cstdio.h/cstdio/.
20960
20961 2002-01-03 Akim Demaille <akim@epita.fr>
20962
20963 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
20964 for non system headers.
20965
20966 2002-01-02 Akim Demaille <akim@epita.fr>
20967
20968 Equip the skeleton chain with location tracking, runtime trace,
20969 pure parser and scanner.
20970
20971 * src/parse-skel.y: Request a pure parser, locations, and prefix
20972 renaming.
20973 (%union): Having several members with the same type does not help
20974 type mismatches, simplify.
20975 (YYPRINT, yyprint): New.
20976 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
20977 (skel_error): this.
20978 Handle locations.
20979 * src/scan-skel.l: Adjust to these changes.
20980 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
20981 (LOCATION_PRINT, skel_control_t): New.
20982
20983 2001-12-30 Akim Demaille <akim@epita.fr>
20984
20985 * src/parse-skel.y: Get rid of the shift/reduce conflict:
20986 replace `gb' with BLANKS.
20987 * src/scan-skel.l: Adjust.
20988
20989 2001-12-30 Akim Demaille <akim@epita.fr>
20990
20991 * src/system.h: We don't need nor want bcopy.
20992 Throw away MS-DOS crap: we don't need getpid.
20993 * configure.in: We don't need strndup. It was even causing
20994 problems: because Flex includes the headers *before* us,
20995 _GNU_SOURCE is not defined by config.h, and therefore strndup was
20996 not visible.
20997 * lib/xstrndup.c: New.
20998 * src/scan-skel.l: Use it.
20999 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
21000 * src/parse-skel.y: Use %directives instead of #defines.
21001
21002 2001-12-30 Akim Demaille <akim@epita.fr>
21003
21004 * src/skeleton.h: New.
21005 * src/output.c (output_parser, output_master_parser): Remove, dead
21006 code.
21007 * src/output.h (get_lines_number, actions_output, guards_output)
21008 (token_definitions_output): Prototype them.
21009 * src/parse-skel.y: Add the license notice.
21010 Include output.h and skeleton.h.
21011 (process_skeleton): Returns void, and takes a single parameter.
21012 * src/scan-skel.l: Add the license notice.
21013 Include skeleton.h.
21014 Don't use %option yylineno: it seems that then Flex imagines
21015 REJECT has been used, and therefore it won't reallocate its
21016 buffers (which makes no other sense to me than a bug). It results
21017 in warnings for `unused: yy_flex_realloc'.
21018
21019 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
21020
21021 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
21022 (MUSCLE_INSERT_PREFIX): ...to there.
21023 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
21024 (MUSCLE_INSERT_PREFIX): Move from here...
21025
21026 * src/bison.hairy: Add a section directive. Put braces around muscle
21027 names. This parser skeleton is still broken, but Bison should not
21028 choke on a bad muscle 'syntax'.
21029 * src/bison.simple: Add a section directive. Put braces around muscle
21030 names.
21031
21032 * src/files.h (strsuffix, stringappend): Add declarations.
21033 (tab_extension): Add declaration.
21034 (short_base_name): Add declaration.
21035
21036 * src/files.c (strsuffix, stringappend): No longer static. These
21037 functions are used in the skeleton parser.
21038 (tab_extension): New.
21039 (compute_base_names): Use the computations done in this function
21040 to guess if the generated parsers should have '.tab' in their
21041 names.
21042 (short_base_name): No longer static.
21043
21044 * src/output.c (output_skeleton): New.
21045 (output): Disable call to output_master_parser, and give a try to
21046 a new skeleton handling system.
21047 (guards_output, actions_output): No longer static.
21048 (token_definitions_output, get_lines_number): No longer static.
21049
21050 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
21051
21052 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
21053 parse-skel.y.
21054
21055 * src/parse-skel.y: New file.
21056 * src/scan-skel.l: New file.
21057
21058 2001-12-29 Akim Demaille <akim@epita.fr>
21059
21060 %name-prefix is broken.
21061
21062 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
21063 Adjust all dependencies.
21064 * tests/headers.at (export YYLTYPE): Strengthen this test: use
21065 %name-prefix.
21066
21067 Renaming yylval but not yylloc is not consistent. Now we do.
21068
21069 * src/bison.simple: Prefix yylloc if used.
21070 * doc/bison.texinfo (Decl Summary): Document that.
21071
21072 2001-12-29 Akim Demaille <akim@epita.fr>
21073
21074 * doc/bison.texinfo: Promote `%long-directive' over
21075 `%long_directive'.
21076 Remove all references to fixed-output-files, yacc is enough.
21077
21078 2001-12-29 Akim Demaille <akim@epita.fr>
21079
21080 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
21081 user prologue. These are defaults.
21082 * tests/actions.at (Mid-rule actions): Make sure the user can
21083 define YYDEBUG and YYERROR_VERBOSE.
21084
21085 2001-12-29 Akim Demaille <akim@epita.fr>
21086
21087 * src/output.c (header_output): Don't forget to export YYLTYPE and
21088 yylloc.
21089 * tests/headers.at (export YYLTYPE): New, make sure it does.
21090 * tests/regression.at (%union and --defines, Invalid CPP headers):
21091 Move to...
21092 * tests/headers.at: here.
21093
21094 2001-12-29 Akim Demaille <akim@epita.fr>
21095
21096 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
21097
21098 2001-12-29 Akim Demaille <akim@epita.fr>
21099
21100 * tests/actions.at (Mid-rule actions): Output on a single line
21101 instead of several.
21102
21103 2001-12-29 Akim Demaille <akim@epita.fr>
21104
21105 * doc/bison.texinfo: Formatting changes.
21106
21107 2001-12-29 Akim Demaille <akim@epita.fr>
21108
21109 Don't store the token defs in a muscle, just be ready to output it
21110 on command. Now possible via `symbols'. Fixes a memory leak.
21111
21112 * src/output.c (token_definitions_output): New.
21113 (output_parser, header_output): Use it.
21114 * src/reader.c (symbols_save): Remove.
21115
21116 2001-12-29 Akim Demaille <akim@epita.fr>
21117
21118 * src/bison.simple: Do not provide a default for YYSTYPE and
21119 YYLTYPE before the user's prologue. Otherwise it's hardly... a
21120 default.
21121
21122 2001-12-29 Akim Demaille <akim@epita.fr>
21123
21124 Mid-rule actions are simply... ignored!
21125
21126 * src/reader.c (readgram): Be sure to attach mid-rule actions to
21127 the empty-rule associated to the dummy symbol, not to the host
21128 rule.
21129 * tests/actions.at (Mid-rule actions): New.
21130
21131 2001-12-29 Akim Demaille <akim@epita.fr>
21132
21133 Memory leak.
21134
21135 * src/reader.c (reader): Free grammar.
21136
21137 2001-12-29 Akim Demaille <akim@epita.fr>
21138
21139 Memory leak.
21140
21141 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
21142 since it allocates it for each state, although only one is needed.
21143 (allocate_storage): Do it here.
21144
21145 2001-12-29 Akim Demaille <akim@epita.fr>
21146
21147 * src/options.h, src/options.c (create_long_option_table): Rename
21148 as...
21149 (long_option_table_new): this, with a clearer prototype.
21150 (percent_table): Remove, unused,
21151 * src/getargs.c (getargs): Adjust.
21152
21153 2001-12-29 Akim Demaille <akim@epita.fr>
21154
21155 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
21156 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
21157 as states.
21158
21159 2001-12-29 Akim Demaille <akim@epita.fr>
21160
21161 * src/lalr.c (build_relations): Rename `states' as `states1'.
21162 Sorry, I don't understand exactly what it is, no better name...
21163
21164 2001-12-29 Akim Demaille <akim@epita.fr>
21165
21166 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
21167 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
21168 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
21169 as rules.
21170
21171 2001-12-29 Akim Demaille <akim@epita.fr>
21172
21173 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
21174 ago.
21175
21176 2001-12-29 Akim Demaille <akim@epita.fr>
21177
21178 * src/reader.c, src/reader.h (user_toknums): Remove.
21179 Adjust all users to use symbols[i]->user_token_number.
21180
21181 2001-12-29 Akim Demaille <akim@epita.fr>
21182
21183 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
21184 Adjust all users to use symbols[i]->prec or ->assoc.
21185
21186 2001-12-29 Akim Demaille <akim@epita.fr>
21187
21188 * src/reader.c, src/reader.h (tags): Remove.
21189 Adjust all users to use symbols[i]->tag.
21190
21191 2001-12-29 Akim Demaille <akim@epita.fr>
21192
21193 * src/gram.h, src/gram.c (symbols): New, similar to state_table
21194 and rule_table.
21195 * src/reader.c (packsymbols): Fill this table.
21196 Drop sprec.
21197 * src/conflicts.c (resolve_sr_conflict): Adjust.
21198 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
21199 single table.
21200 Use symbols[i]->tag instead of tags[i].
21201
21202 2001-12-29 Akim Demaille <akim@epita.fr>
21203
21204 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
21205 In addition, put a comment in there, to replace...
21206 * tests/regression.at (%union and C comments): Remove.
21207
21208 2001-12-29 Akim Demaille <akim@epita.fr>
21209
21210 * tests/regression.at (Web2c Actions): Blindly move the actual
21211 output as expected output. The contents *seem* right to me, but I
21212 can't pretend reading perfectly parser tables... Nonetheless, all
21213 the other tests pass correctly, the table look OK, even though the
21214 presence of `$axiom' is to be noted: AFAICS it is useless (but
21215 harmless).
21216
21217 2001-12-29 Akim Demaille <akim@epita.fr>
21218
21219 * src/reader.c (readgram): Don't add the rule 0 if there were no
21220 rules read. In other words, add it _after_ having performed
21221 grammar sanity checks.
21222 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
21223
21224 2001-12-29 Akim Demaille <akim@epita.fr>
21225
21226 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
21227 visible, and some states have now a different number.
21228
21229 2001-12-29 Akim Demaille <akim@epita.fr>
21230
21231 * src/reader.c (readgram): Bind the initial rule's lineno to that
21232 of the first rule.
21233 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
21234 (Solved SR Conflicts): Adjust rule 0's line number.
21235
21236 2001-12-29 Akim Demaille <akim@epita.fr>
21237
21238 Fix the `GAWK Grammar' failure.
21239
21240 * src/LR0.c (final_state): Initialize to -1 so that we do compute
21241 the reductions of the first state which was mistakenly confused
21242 with the final state because precisely final_state was initialized
21243 to 0.
21244 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
21245 now noticed by Bison.
21246 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
21247 have a reduction on $default.
21248
21249 2001-12-29 Akim Demaille <akim@epita.fr>
21250
21251 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
21252 rule line numbers.
21253 * src/closure.c (print_closure): Likewise.
21254 * src/derives.c (print_derives): Likewise.
21255 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
21256 now.
21257
21258 2001-12-29 Akim Demaille <akim@epita.fr>
21259
21260 * src/lalr.c (lookaheads_print): New.
21261 (lalr): Call it when --trace-flag.
21262 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
21263 are dumped.
21264
21265 2001-12-29 Akim Demaille <akim@epita.fr>
21266
21267 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
21268 when walking through ritem, even via rule->rhs.
21269 * src/reduce.c (dump_grammar, useful_production, reduce_output)
21270 (useful_production, useless_nonterminals): Likewise.
21271 (reduce_grammar_tables): Likewise, plus update nritems.
21272 * src/nullable.c (set_nullable): Likewise.
21273 * src/lalr.c (build_relations): Likewise.
21274 * tests/sets.at (Nullable): Adjust.
21275 Fortunately, now, the $axiom is no longer nullable.
21276
21277 2001-12-29 Akim Demaille <akim@epita.fr>
21278
21279 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
21280 the 0-sentinel.
21281 * src/gram.c (ritem_longest_rhs): Likewise.
21282 * src/reduce.c (nonterminals_reduce): Likewise.
21283 * src/print_graph.c (print_graph): Likewise.
21284 * src/output.c (output_rule_data): Likewise.
21285 * src/nullable.c (set_nullable): Likewise.
21286
21287 2001-12-29 Akim Demaille <akim@epita.fr>
21288
21289 * src/output.c: Comment changes.
21290
21291 2001-12-27 Paul Eggert <eggert@twinsun.com>
21292
21293 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
21294 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
21295 Sparc, as they were causing more porting problems than the
21296 (minor) performance improvement was worth.
21297
21298 Also, catch up with 1.31's YYSTD.
21299
21300 2001-12-27 Akim Demaille <akim@epita.fr>
21301
21302 * src/output.c (output_gram): Rely on nritems, not the
21303 0-sentinel. See below.
21304 Use -1 as separator, not 0.
21305 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
21306 Rely on -1 as separator in yyrhs, instead of 0.
21307 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
21308 twice `Now at end of input', therefore there are two lines less to
21309 expect.
21310
21311 2001-12-27 Akim Demaille <akim@epita.fr>
21312
21313 * tests/regression.at (Unresolved SR Conflicts):
21314 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
21315 below.
21316
21317 2001-12-27 Akim Demaille <akim@epita.fr>
21318
21319 * src/LR0.c (new_state): Recognize the final state by the fact it
21320 is reached by eoftoken.
21321 (insert_start_shifting_state, insert_eof_shifting_state)
21322 (insert_accepting_state, augment_automaton): Remove, since now
21323 these states are automatically computed from the initial state.
21324 (generate_states): Adjust.
21325 * src/print.c: When reporting a rule number to the user, substract
21326 1, so that the axiom rule is rule 0, and the first user rule is 1.
21327 * src/reduce.c: Likewise.
21328 * src/print_graph.c (print_core): For the time being, just as for
21329 the report, depend upon --trace-flags to dump the full set of
21330 items.
21331 * src/reader.c (readgram): Once the grammar read, insert the rule
21332 0: `$axiom: START-SYMBOL $'.
21333 * tests/set.at: Adjust: rule 0 is now displayed, and since the
21334 number of the states has changed (the final state is no longer
21335 necessarily the last), catch up.
21336
21337 2001-12-27 Akim Demaille <akim@epita.fr>
21338
21339 Try to make the use of the eoftoken valid. Given that its value
21340 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
21341 is used instead of > 0 where appropriate, (ii), depend upon nritems
21342 instead of the 0-sentinel.
21343
21344 * src/gram.h, src/gram.c (nritems): New.
21345 Expected to be duplication of nitems, but for the time being...
21346 * src/reader.c (packgram): Assert nritems and nitems are equal.
21347 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
21348 * src/closure.c (print_closure, print_fderives): Likewise.
21349 * src/gram.c (ritem_print): Likewise.
21350 * src/print.c (print_core, print_grammar): Likewise.
21351 * src/print_graph.c: Likewise.
21352
21353 2001-12-27 Akim Demaille <akim@epita.fr>
21354
21355 * src/main.c (main): If there are complains after grammar
21356 reductions, then output the report anyway if requested, then die.
21357 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
21358 * src/reader.c (eoftoken): New.
21359 (parse_token_decl): If the token being defined has value `0', it
21360 is the eoftoken.
21361 (packsymbols): No longer hack `tags' to insert `$' by hand.
21362 Be sure to preserve the value of the eoftoken.
21363 (reader): Make sure eoftoken is defined.
21364 Initialize nsyms to 0: now eoftoken is created just like the others.
21365 * src/print.c (print_grammar): Don't special case the eof token.
21366 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
21367 lie anyway, albeit pleasant.
21368 * tests/calc.at: Exercise error messages with eoftoken.
21369 Change the grammar so that empty input is invalid.
21370 Adjust expectations.
21371 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
21372
21373 2001-12-27 Akim Demaille <akim@epita.fr>
21374
21375 * configure.in: Check the protos of strchr ans strspn.
21376 Replace strchr if needed.
21377 * src/system.h: Provide the protos of strchr, strspn and memchr if
21378 missing.
21379 * lib/strchr.c: New.
21380 * src/reader.c (symbols_save): Use strchr.
21381
21382 2001-12-27 Akim Demaille <akim@epita.fr>
21383
21384 * src/print.c, src/print_graph.c (escape): New.
21385 Use it to quote the TAGS outputs.
21386 * src/print_graph.c (print_state): Now errors are in red, and
21387 reductions in green.
21388 Prefer high to wide: output the state number on a line of its own.
21389
21390 2001-12-27 Akim Demaille <akim@epita.fr>
21391
21392 * src/state.h, src/state.c (reductions_new): New.
21393 * src/LR0.c (set_state_table): Let all the states have a
21394 `reductions', even if reduced to 0.
21395 (save_reductions): Adjust.
21396 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
21397 * src/print.c (print_reductions, print_actions): Adjust.
21398 * src/output.c (action_row): Adjust.
21399
21400 2001-12-27 Akim Demaille <akim@epita.fr>
21401
21402 * src/state.h, src/state.c (errs_new, errs_dup): New.
21403 * src/LR0.c (set_state_table): Let all the states have an errs,
21404 even if reduced to 0.
21405 * src/print.c (print_errs, print_reductions): Adjust.
21406 * src/output.c (output_actions, action_row): Adjust.
21407 * src/conflicts.c (resolve_sr_conflict): Adjust.
21408
21409 2001-12-27 Akim Demaille <akim@epita.fr>
21410
21411 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
21412
21413 2001-12-27 Akim Demaille <akim@epita.fr>
21414
21415 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
21416 * src/print.c: here.
21417 (lookaheadset, shiftset): New, used as additional storage by
21418 print_reductions.
21419 (print_results): Adjust.
21420 (print_shifts, print_gotos, print_errs): New, extracted from...
21421 (print_actions): here.
21422 * src/print_graph.c (print_actions): Remove dead code.
21423
21424 2001-12-27 Akim Demaille <akim@epita.fr>
21425
21426 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
21427 `$n' and `@n'.
21428
21429 2001-12-27 Akim Demaille <akim@epita.fr>
21430
21431 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
21432 (build_relations): Adjust.
21433
21434 2001-12-27 Akim Demaille <akim@epita.fr>
21435
21436 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
21437 duplication.
21438
21439 2001-12-27 Akim Demaille <akim@epita.fr>
21440
21441 * src/reader.c (packgram): Catch nitems overflows.
21442
21443 2001-12-27 Akim Demaille <akim@epita.fr>
21444
21445 * src/files.c, src/files.h (guard_obstack): Remove.
21446 * src/output.c (output): Adjust.
21447 * src/reader.c (parse_braces): New, factoring...
21448 (copy_action, copy_guard): these two which are renamed as...
21449 (parse_action, parse_guard): these.
21450 As a voluntary consequence, using braces around guards is now
21451 mandatory.
21452
21453 2001-12-27 Akim Demaille <akim@epita.fr>
21454
21455 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
21456 * src/reader.c (symbol_list): `guard' and `guard_line' are new
21457 members.
21458 (symbol_list_new): Adjust.
21459 (copy_action): action_line is the first line, not the last.
21460 (copy_guard): Just as for actions, store the `action' only, not
21461 the switch/case/break flesh.
21462 Don't parse the user action that might follow the guard, let...
21463 (readgram): do it, i.e., now, there can be an action after a
21464 guard.
21465 In other words the guard is just explicitly optional.
21466 (packgram): Adjust.
21467 * src/output.c (guards_output): New.
21468 (output_parser): Call it when needed.
21469 (output): Also free the guard and attrs obstacks.
21470 * src/files.c, src/files.h (obstack_save): Remove.
21471 (output_files): Remove.
21472 As a result, if one needs the former `.act' file, using an
21473 appropriate skeleton which requires actions and guards is now
21474 required.
21475 * src/main.c (main): Adjust.
21476 * tests/semantic.at: New.
21477 * tests/regression.at: Use `input.y' as input file name.
21478 Avoid 8+3 problems by requiring input.c when the test needs the
21479 parser.
21480
21481 2001-12-27 Akim Demaille <akim@epita.fr>
21482
21483 * src/reader.c (symbol_list_new): Be sure to initialize all the
21484 fields.
21485
21486 2001-12-27 Akim Demaille <akim@epita.fr>
21487
21488 All the hacks using a final pseudo state are now useless.
21489
21490 * src/LR0.c (set_state_table): state_table holds exactly nstates.
21491 * src/lalr.c (nLA): New.
21492 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
21493 instead of lookaheadsp from the pseudo state (nstate + 1).
21494
21495 2001-12-27 Akim Demaille <akim@epita.fr>
21496
21497 * src/output.c (action_row, token_actions): Use a state_t instead
21498 of a integer, and nlookaheads instead of the following state's
21499 lookaheadsp.
21500
21501 2001-12-27 Akim Demaille <akim@epita.fr>
21502
21503 * src/conflicts.c (log_resolution, flush_shift)
21504 (resolve_sr_conflict, set_conflicts, solve_conflicts)
21505 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
21506 (conflicts_print, print_reductions): Use a state_t instead of an
21507 integer when referring to a state.
21508 As much as possible, depend upon nlookaheads, instead of the
21509 `lookaheadsp' member of the following state (since lookaheads of
21510 successive states are successive, the difference between state n + 1
21511 and n served as the number of lookaheads for state n).
21512 * src/lalr.c (add_lookback_edge): Likewise.
21513 * src/print.c (print_core, print_actions, print_state)
21514 (print_results): Likewise.
21515 * src/print_graph.c (print_core, print_actions, print_state)
21516 (print_graph): Likewise.
21517 * src/conflicts.h: Adjust.
21518
21519 2001-12-27 Akim Demaille <akim@epita.fr>
21520
21521 * src/bison.hairy: Formatting/comment changes.
21522 ANSIfy.
21523 Remove `register' indications.
21524 Add plenty of `static'.
21525
21526 2001-12-27 Akim Demaille <akim@epita.fr>
21527
21528 * src/output.c (prepare): Drop the muscle `ntbase' which
21529 duplicates ntokens.
21530 * src/bison.simple: Formatting/comment changes.
21531 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
21532 is an undocumented synonym.
21533
21534 2001-12-22 Akim Demaille <akim@epita.fr>
21535
21536 * src/output.c (output_table_data): Change the prototype to use
21537 `int' for array ranges: some invocations do pass an int, not a
21538 short.
21539 Reported by Wayne Green.
21540
21541 2001-12-22 Akim Demaille <akim@epita.fr>
21542
21543 Some actions of web2c.y are improperly triggered.
21544 Reported by Mike Castle.
21545
21546 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
21547 * tests/regression.at (Web2c): Rename as...
21548 (Web2c Report): this.
21549 (Web2c Actions): New.
21550
21551 2001-12-22 Akim Demaille <akim@epita.fr>
21552
21553 Reductions in web2c.y are improperly reported.
21554 Reported by Mike Castle.
21555
21556 * src/conflicts.c (print_reductions): Fix.
21557 * tests/regression.at (Web2c): New.
21558
21559 2001-12-18 Akim Demaille <akim@epita.fr>
21560
21561 Some host fail on `assert (!"foo")', which expands to
21562 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
21563 Reported by Nelson Beebee.
21564
21565 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
21566 `#define it_succeeded 0' and `assert (it_succeeded)'.
21567
21568 2001-12-17 Marc Autret <autret_m@epita.fr>
21569
21570 * src/bison.simple: Don't hard code the skeleton line and filename.
21571 * src/output.c (output_parser): Rename 'line' as 'output_line'.
21572 New line counter 'skeleton_line' (skeleton-line muscle).
21573
21574 2001-12-17 Paul Eggert <eggert@twinsun.com>
21575
21576 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
21577 YYDEBUG must be defined to a nonzero value.
21578
21579 * src/bison.simple (yytname): Do not assume that the user defines
21580 YYDEBUG to a properly parenthesized expression.
21581
21582 2001-12-17 Akim Demaille <akim@epita.fr>
21583
21584 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
21585 nlookaheads is a new member.
21586 Adjust all users.
21587 * src/lalr.h (nlookaheads): Remove this orphan declaration.
21588 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
21589 state.
21590
21591 2001-12-17 Akim Demaille <akim@epita.fr>
21592
21593 * src/files.h, src/files.c (open_files, close_files): Remove.
21594 * src/main.c (main): Don't open/close files, nor invoke lex_free,
21595 let...
21596 * src/reader.c (reader): Do it.
21597
21598 2001-12-17 Akim Demaille <akim@epita.fr>
21599
21600 * src/conflicts.c (print_reductions): Formatting changes.
21601
21602 2001-12-17 Akim Demaille <akim@epita.fr>
21603
21604 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
21605 (flush_reduce): New.
21606 (resolve_sr_conflict): Adjust.
21607
21608 2001-12-17 Akim Demaille <akim@epita.fr>
21609
21610 * src/output.c (output_obstack): Be static and rename as...
21611 (format_obstack): this, to avoid any confusion with files.c's
21612 output_obstack.
21613 * src/reader.h (muscle_obstack): Move to...
21614 * src/output.h: here, since it's defined in output.c.
21615
21616 2001-12-17 Akim Demaille <akim@epita.fr>
21617
21618 * src/output.c (action_row, save_column, default_goto)
21619 (sort_actions, matching_state, pack_vector): Better variable
21620 locality.
21621
21622 2001-12-17 Akim Demaille <akim@epita.fr>
21623
21624 * src/output.c: Various formatting changes.
21625
21626 2001-12-17 Akim Demaille <akim@epita.fr>
21627
21628 * src/files.c (output_files): Free the output_obstack.
21629 * src/main.c (main): Call print and print_graph conditionally.
21630 * src/print.c (print): Work unconditionally.
21631 * src/print_graph.c (print_graph): Work unconditionally.
21632 * src/conflicts.c (log_resolution): Output only if verbose_flag.
21633
21634 2001-12-16 Marc Autret <autret_m@epita.fr>
21635
21636 * src/output.c (actions_output): Fix. When we use %no-lines,
21637 there is one less line per action.
21638
21639 2001-12-16 Marc Autret <autret_m@epita.fr>
21640
21641 * src/bison.simple: Remove a useless #line directive.
21642 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
21643 * src/output.c (get_lines_number): New.
21644 (output_parser): Adjust, now takes care about the lines of a
21645 output muscles.
21646 Fix line numbering.
21647 (actions_output): Computes the number of lines taken by actions.
21648 (output_master_parser): Insert new skeleton which is the name of
21649 the output parser file name.
21650
21651 2001-12-15 Marc Autret <autret_m@epita.fr>
21652
21653 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
21654
21655 2001-12-15 Marc Autret <autret_m@epita.fr>
21656
21657 * src/output.c (output_gram): Keep track of the hairy one.
21658
21659 2001-12-15 Akim Demaille <akim@epita.fr>
21660
21661 Make `make distcheck' work.
21662
21663 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
21664 system.h which uses libgettext.h.
21665
21666 2001-12-15 Akim Demaille <akim@epita.fr>
21667
21668 * src/nullable.c (set_nullable): Useless rules must be skipped,
21669 otherwise, since we range over their symbols, we might look at a
21670 nonterminal which no longer ``exists'', i.e., it is not counted in
21671 `nvars', hence we overflow our arrays.
21672
21673 2001-12-15 Akim Demaille <akim@epita.fr>
21674
21675 The header can also be produced directly, without any obstack!
21676 Yahoo!
21677
21678 * src/files.c, src/files.h (defines_obstack): Remove.
21679 (compute_header_macro): Global.
21680 (defines_obstack_save): Remove.
21681 * src/reader.c (parse_union_decl): No longer output to
21682 defines_obstack: its content can be found in the `stype' muscle
21683 anyway.
21684 (output_token_translations): Merge into...
21685 (symbols_output): this.
21686 Rename as...
21687 (symbols_save): this.
21688 (reader): Adjust.
21689 * src/output.c (header_output): New.
21690 (output): Call it.
21691
21692 2001-12-15 Akim Demaille <akim@epita.fr>
21693
21694 * src/reader.c (parse_union_decl): Instead of handling two obstack
21695 simultaneously, use one to define the `stype' muscle, and use the
21696 value of the latter to fill defines_obstack.
21697 (copy_comment): Remove.
21698 (copy_comment2): Work for a single obstack.
21699 Rename as...
21700 (copy_comment): this.
21701
21702 2001-12-15 Akim Demaille <akim@epita.fr>
21703
21704 * src/lex.c, src/lex.h (xgetc): No longer static.
21705 * src/reader.c (parse_union_decl): Revamp.
21706
21707 2001-12-15 Akim Demaille <akim@epita.fr>
21708
21709 Still making progress in separating Bison into (i) input, (ii)
21710 process, (iii) output: now we can directly output the parser file
21711 without using table_obstack at all.
21712
21713 * src/files.c, src/files.h (table_obstack): Bye bye.
21714 (parser_file_name): New.
21715 * src/files.c (compute_output_file_names): Compute it.
21716 * src/output.c (actions_output, output_parser)
21717 (output_master_parser): To a file instead of an obstack.
21718
21719 2001-12-15 Akim Demaille <akim@epita.fr>
21720
21721 Attach actions to rules, instead of pre-outputting them to
21722 actions_obstack.
21723
21724 * src/gram.h (rule_t): action and action_line are new members.
21725 * src/reader.c (symbol_list): Likewise.
21726 (copy_action): Save the actions within the rule.
21727 (packgram): Save them in rule_table.
21728 * src/output.c (actions_output): New.
21729 (output_parser): Use it on `%%actions'.
21730 (output_rule_data): Don't free rule_table.
21731 (output): Do it.
21732 (prepare): Don't save the `action' muscle.
21733 * src/bison.simple: s/%%action/%%actions/.
21734
21735 2001-12-15 Akim Demaille <akim@epita.fr>
21736
21737 * src/reader.c (copy_action): When --yacc, don't append a `;'
21738 to the user action: let it fail if lacking.
21739 Suggested by Arnold Robbins and Tom Tromey.
21740
21741 2001-12-14 Akim Demaille <akim@epita.fr>
21742
21743 * src/lex.c (literalchar): Simply return the char you decoded, non
21744 longer mess around with obstacks and int pointers.
21745 Adjust all callers.
21746
21747 2001-12-14 Akim Demaille <akim@epita.fr>
21748
21749 * src/lex.c (literalchar): Don't escape the special characters,
21750 just decode them, and keep them as char (before, eol was output as
21751 the 2 char string `\n' etc.).
21752 * src/output.c (output_rule_data): Use quotearg to output the
21753 token strings.
21754
21755 2001-12-13 Paul Eggert <eggert@twinsun.com>
21756
21757 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
21758 Do not infringe on the global user namespace when using C++.
21759 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
21760 All uses of `fprintf' and `stderr' changed.
21761
21762 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
21763
21764 2001-12-13 Akim Demaille <akim@epita.fr>
21765
21766 The computation of nullable is broken: it doesn't handle empty
21767 RHS's properly.
21768
21769 * tests/torture.at (GNU AWK Grammar): New.
21770 * tests/sets.at (Nullable): New.
21771 * src/nullable.c (set_nullable): Instead of blindly looping over
21772 `ritems', loop over the rules, and then over their rhs's.
21773
21774 Work around Autotest bugs.
21775
21776 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
21777 frame, because Autotest understand lines starting with a `+' as
21778 traces from the shell. Then, they are not processed properly.
21779 Admittedly an Autotest bug, but we don't have time to wait for
21780 Autotest to catch up.
21781 * tests/regression.at (Broken Closure): Adjust to the new table
21782 frames.
21783 Move to...
21784 * tests/sets.at: here.
21785
21786 2001-12-13 Akim Demaille <akim@epita.fr>
21787
21788 * src/closure.c (closure): Use nrules instead of playing tricks
21789 with BITS_PER_WORD.
21790
21791 2001-12-13 Akim Demaille <akim@epita.fr>
21792
21793 * src/print.c (print_actions): Output the handling of `$' as the
21794 traces do: shifting the token EOF. Before EOF was treated as a
21795 nonterminal.
21796 * tests/regression.at: Adjust some tests.
21797 * src/print_graph.c (print_core): Complete the set of items via
21798 closure. The next-to-final and final states are still unsatisfying,
21799 but that's to be addressed elsewhere.
21800 No longer output the rule numbers, but do output the state number.
21801 A single loop for the shifts + gotos is enough, but picked a
21802 distinct color for each.
21803 (print_graph): Initialize and finalize closure.
21804
21805 2001-12-13 Akim Demaille <akim@epita.fr>
21806
21807 * src/reader.c (readgram): Remove dead code, an strip useless
21808 braces.
21809 (get_type): Remove, unused.
21810
21811 2001-12-12 Akim Demaille <akim@epita.fr>
21812
21813 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
21814 on that of lib/error.c.
21815
21816 2001-12-12 Akim Demaille <akim@epita.fr>
21817
21818 Some hosts don't like `/' in includes.
21819
21820 * src/system.h: Include libgettext.h without qualifying the path.
21821 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
21822 $(top_srcdir).
21823
21824 2001-12-11 Marc Autret <autret_m@epita.fr>
21825
21826 * src/output.c (output_parser): Remove useless muscle.
21827
21828 2001-12-11 Marc Autret <autret_m@epita.fr>
21829
21830 * src/bison.simple: Remove #line just before %%epilogue. It
21831 is now handled in ...
21832 * src/reader.c (read_additionnal_code): Add the output of a
21833 #line for the epilogue.
21834
21835 2001-12-10 Marc Autret <autret_m@epita.fr>
21836
21837 * src/reader.c (copy_definition): Re-use CPP-outed code which
21838 replace precedent remove.
21839 * src/bison.simple: Remove #line before %%prologue because
21840 %%input-line is wrong at this time.
21841
21842 2001-12-10 Marc Autret <autret_m@epita.fr>
21843
21844 * src/reader.c (symbols_output): Clean up.
21845 * src/output.c (output_gram, output): Clean up.
21846
21847 2001-12-10 Akim Demaille <akim@epita.fr>
21848
21849 * src/lalr.c (initialize_lookaheads): New. Extracted from...
21850 * src/LR0.c (set_state_table): here.
21851 * src/lalr.c (lalr): Call it.
21852
21853 2001-12-10 Akim Demaille <akim@epita.fr>
21854
21855 * src/state.h (shifts): Remove the `number' member: shifts are
21856 attached to state, hence no longer need to be labelled with a
21857 state number.
21858
21859 2001-12-10 Akim Demaille <akim@epita.fr>
21860
21861 Now that states have a complete set of members, the linked list of
21862 shifts is useless: just fill directly the state's shifts member.
21863
21864 * src/state.h (shifts): Remove the `next' member.
21865 * src/LR0.c (first_state, last_state): Remove.
21866 Adjust the callers.
21867 (augment_automaton): Don't look for the shifts that must be added
21868 a shift on EOF: it is those of the state we looked for! But now,
21869 since shifts are attached, it is no longer needed to looking
21870 merely by its id: its number.
21871
21872 2001-12-10 Akim Demaille <akim@epita.fr>
21873
21874 * src/LR0.c (augment_automaton): Better variable locality.
21875 Remove an impossible branch: if there is a state corresponding to
21876 the start symbol being shifted, then there is shift for the start
21877 symbol from the initial state.
21878
21879 2001-12-10 Akim Demaille <akim@epita.fr>
21880
21881 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
21882 only when appropriate: when insert_start_shifting_state' is not
21883 invoked.
21884 * tests/regression.at (Rule Line Numbers): Adjust.
21885
21886 2001-12-10 Akim Demaille <akim@epita.fr>
21887
21888 * src/LR0.c (augment_automaton): Now that all states have shifts,
21889 merge the two cases addition shifts to the initial state.
21890
21891 2001-12-10 Akim Demaille <akim@epita.fr>
21892
21893 * src/lalr.c (set_state_table): Move to...
21894 * src/LR0.c: here.
21895 * src/lalr.c (lalr): Don't call it...
21896 * src/LR0.c (generate_states): do it.
21897 * src/LR0.h (first_state): Remove, only the table is used.
21898
21899 2001-12-10 Akim Demaille <akim@epita.fr>
21900
21901 * src/LR0.h (first_shift, first_reduction): Remove.
21902 * src/lalr.c: Don't use first_shift: find shifts through the
21903 states.
21904
21905 2001-12-10 Akim Demaille <akim@epita.fr>
21906
21907 * src/LR0.c: Attach shifts to states as soon as they are
21908 computed.
21909 * src/lalr.c (set_state_table): Instead of assigning shifts to
21910 state, just assert that the mapping was properly done.
21911
21912 2001-12-10 Akim Demaille <akim@epita.fr>
21913
21914 * src/LR0.c (insert_start_shift): Rename as...
21915 (insert_start_shifting_state): this.
21916 (insert_eof_shifting_state, insert_accepting_state): New.
21917 (augment_automaton): Adjust.
21918 Better locality of the variables.
21919 When looking if the start_symbol is shifted from the initial
21920 state, using `while (... symbol != start_symbol ...)' sounds
21921 better than `while (... symbol < start_symbol ...)': If fail
21922 to see how the order between symbols could be relevant!
21923
21924 2001-12-10 Akim Demaille <akim@epita.fr>
21925
21926 * src/getargs.h: Don't declare `spec_name_prefix' and
21927 `spec_file_prefix', declared by src/files.h.
21928 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
21929 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
21930 * src/output.c (prepare): Adjust.
21931 * src/reader.c (symbols_output): Likewise.
21932 * src/vmsgetargs.c: Vaguely adjust, but who cares?
21933
21934 2001-12-10 Akim Demaille <akim@epita.fr>
21935
21936 * src/muscle_tab.c (muscle_init): NULL is a better default than
21937 `"0"'.
21938
21939 2001-12-10 Akim Demaille <akim@epita.fr>
21940
21941 * src/reader.c (reader): Calling symbols_output once is enough.
21942
21943 2001-12-10 Akim Demaille <akim@epita.fr>
21944
21945 Now that states have a complete set of members, the linked list of
21946 reductions is useless: just fill directly the state's reductions
21947 member.
21948
21949 * src/state.h (struct reductions): Remove member `number' and
21950 `next'.
21951 * src/LR0.c (first_reduction, last_reduction): Remove.
21952 (save_reductions): Don't link the new reductions, store them in
21953 this_state.
21954 * src/lalr.c (set_state_table): No need to attach reductions to
21955 states, it's already done.
21956 * src/output.c (output_actions): No longer free the shifts, then
21957 the reductions, then the states: free all the states and their
21958 members.
21959
21960 2001-12-10 Akim Demaille <akim@epita.fr>
21961
21962 * src/options.c (OPTN, DRTV, BOTH): New.
21963 (option_table): Use them.
21964
21965 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
21966 the job of system.h.
21967 * src/options.c: Don't include stdio.h and xalloc.h for the same
21968 reasons.
21969
21970 2001-12-10 Akim Demaille <akim@epita.fr>
21971
21972 * src/output.c (output, prepare): Make sure the values of the
21973 muscles `action' and `prologue' are 0-terminated.
21974
21975 2001-12-10 Akim Demaille <akim@epita.fr>
21976
21977 Clean up GCC warnings.
21978
21979 * src/reader.c (copy_action): `buf' is not used.
21980 (parse_skel_decl): Be static.
21981 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
21982 * src/options.h (create_long_option_table): Have a real prototype.
21983 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
21984 (hash_delete_at): Return const void *.
21985 Adjust casts to preserve the const.
21986
21987 2001-12-10 Akim Demaille <akim@epita.fr>
21988
21989 * configure.in: Require 2.52g.
21990 M4 is not needed, but AUTOM4TE is.
21991 * m4/m4.m4: Remove.
21992 * tests/Makefile.am: Adjust.
21993
21994 2001-12-10 Akim Demaille <akim@epita.fr>
21995
21996 One structure for states is enough, even though theoretically
21997 there are LR(0) states and LALR(1) states.
21998
21999 * src/lalr.h (state_t): Remove.
22000 (state_table): Be state_t **, not state_t *.
22001 * src/state.h (core, CORE_ALLOC): Rename as...
22002 (state_t, STATE_ALLOC): this.
22003 Add the LALR(1) members: shifts, reductions, errs.
22004 * src/LR0.c (state_table): Rename as...
22005 (state_hash): this, to avoid name clashes with the global
22006 `state_table'.
22007 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
22008 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
22009
22010 2001-12-10 Akim Demaille <akim@epita.fr>
22011
22012 Bison dumps core on bash.y.
22013 Reported by Pascal Bart.
22014
22015 * src/warshall.c (bitmatrix_print): New.
22016 (TC): Use it.
22017 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
22018 j must be the outer loop.
22019 * tests/regression.at (Broken Closure): New.
22020
22021 2001-12-05 Akim Demaille <akim@epita.fr>
22022
22023 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
22024 its argument.
22025 Reported by Peter Hamorsky.
22026
22027 2001-12-05 Akim Demaille <akim@epita.fr>
22028
22029 * src/conflicts.c (err_table): Remove.
22030 (resolve_sr_conflict): Adjust.
22031 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
22032 Rename as...
22033 (state_t.reductions, state_t.shifts): this.
22034
22035 2001-12-05 Akim Demaille <akim@epita.fr>
22036
22037 * src/reduce.c (reduce_grammar_tables): No longer disable the
22038 removal of useless rules via CPP but via `if (0)', so that the
22039 compiler still check the code is valid.
22040 For instance, it should have noticed `rline' no longer exists: use
22041 the `line' member of rule_t.
22042 * src/gram.c (dummy, rline): Remove, unused.
22043
22044 2001-12-05 Akim Demaille <akim@epita.fr>
22045
22046 * src/output.c (pack_vector): Use assert, not berror.
22047 * src/main.c (berror): Remove, unused.
22048
22049 2001-12-05 Akim Demaille <akim@epita.fr>
22050
22051 New experimental feature: if --verbose --trace output all the
22052 items of a state, not only its kernel.
22053
22054 * src/print.c (print_core): If `trace_flag', then invoke closure
22055 before outputting the items of the state (print_core is no longer
22056 a correct name them).
22057 (print_results): Invoke new_closure/free_closure if needed.
22058
22059 2001-12-05 Akim Demaille <akim@epita.fr>
22060
22061 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
22062 * src/closure.c, src/closure.h (itemsetsize): Rename as...
22063 (nitemset): for consistency with the rest of the project.
22064
22065 2001-12-05 Akim Demaille <akim@epita.fr>
22066
22067 * src/closure.c (print_closure): Improve.
22068 (closure): Use it for printing input and output.
22069
22070 2001-12-05 Akim Demaille <akim@epita.fr>
22071
22072 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
22073 indexed by nonterminals.
22074
22075 2001-12-05 Akim Demaille <akim@epita.fr>
22076
22077 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
22078 what it was!).
22079 * src/warshall.h: Remove accidental duplication of the content.
22080
22081 2001-12-05 Akim Demaille <akim@epita.fr>
22082
22083 * src/closure.c (set_fderives): De-obfuscate.
22084
22085 2001-12-05 Akim Demaille <akim@epita.fr>
22086
22087 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
22088
22089 2001-12-05 Akim Demaille <akim@epita.fr>
22090
22091 * src/closure.c (set_firsts): De-obfuscate.
22092
22093 2001-12-05 Akim Demaille <akim@epita.fr>
22094
22095 * src/output.c (action_row): De-obfuscate
22096 using the good o' techniques: arrays not pointers, variable
22097 locality, BITISSET, RESETBIT etc.
22098
22099 2001-12-05 Akim Demaille <akim@epita.fr>
22100
22101 Pessimize the code to simplify it: from now on, all the states
22102 have a valid SHIFTS, which NSHIFTS is possibly 0.
22103
22104 * src/LR0.c (shifts_new): Be global and move to..
22105 * src/state.c, src/state.h: here.
22106 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
22107 * src/print_graph: Adjust.
22108
22109 2001-12-05 Akim Demaille <akim@epita.fr>
22110
22111 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
22112 * src/conflicts.c: Use it.
22113 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
22114 incorrectly ``simplified''.
22115
22116 2001-12-05 Akim Demaille <akim@epita.fr>
22117
22118 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
22119 using the good o' techniques: arrays not pointers, variable
22120 locality, BITISSET, RESETBIT etc.
22121
22122 2001-12-05 Akim Demaille <akim@epita.fr>
22123
22124 * src/state.h (SHIFT_SYMBOL): New.
22125 * src/conflicts.c: Use it to deobfuscate.
22126
22127 2001-12-05 Akim Demaille <akim@epita.fr>
22128
22129 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
22130 (print_reductions): De-obfuscate using the good o' techniques:
22131 arrays not pointers, variable locality, BITISSET.
22132
22133 2001-12-05 Akim Demaille <akim@epita.fr>
22134
22135 * src/conflicts.c (print_reductions): Arrays, not pointers.
22136 Use BITISSET.
22137
22138 2001-12-05 Akim Demaille <akim@epita.fr>
22139
22140 * src/conflicts.c (print_reductions): Pessimize, but clarify.
22141
22142 2001-12-05 Akim Demaille <akim@epita.fr>
22143
22144 * src/conflicts.c (print_reductions): Improve variable locality.
22145
22146 2001-12-05 Akim Demaille <akim@epita.fr>
22147
22148 * src/conflicts.c (print_reductions): Pessimize, but clarify.
22149
22150 2001-12-05 Akim Demaille <akim@epita.fr>
22151
22152 * src/conflicts.c (print_reductions): Improve variable locality.
22153
22154 2001-12-05 Akim Demaille <akim@epita.fr>
22155
22156 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
22157 * src/lalr.c: Use them.
22158
22159 2001-12-05 Akim Demaille <akim@epita.fr>
22160
22161 * src/LR0.c (augment_automaton): Formatting changes.
22162 Better variable locality.
22163
22164 2001-12-05 Akim Demaille <akim@epita.fr>
22165
22166 * src/lalr.c (matrix_print): New.
22167 (transpose): Use it.
22168 Use arrays instead of pointers.
22169
22170 2001-12-05 Akim Demaille <akim@epita.fr>
22171
22172 * src/lalr.c (maxrhs): Move to...
22173 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
22174 * src/lalr.c (build_relations): Adjust.
22175
22176 2001-12-05 Akim Demaille <akim@epita.fr>
22177
22178 * src/lalr.c (transpose): Free the memory allocated to the
22179 argument, as it is replaced by the results by the unique caller.
22180 (build_relations): Merely invoke transpose: it handles the memory
22181 deallocation.
22182 Improve variable locality.
22183 Avoid variables used as mere abbreviations.
22184 (compute_lookaheads): Use arrays instead of pointers.
22185
22186 2001-12-05 Akim Demaille <akim@epita.fr>
22187
22188 * src/lalr.c (initialize_F): Improve variable locality.
22189 Avoid variables used as mere abbreviations.
22190
22191 2001-12-05 Akim Demaille <akim@epita.fr>
22192
22193 * src/derives.c (print_derives): Display the ruleno.
22194 * src/lalr.c (initialize_F, transpose): Better variable locality
22195 to improve readability.
22196 Avoid variables used as mere abbreviations.
22197
22198 2001-12-05 Akim Demaille <akim@epita.fr>
22199
22200 * src/lalr.c (traverse): Use arrays instead of pointers.
22201
22202 2001-12-05 Akim Demaille <akim@epita.fr>
22203
22204 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
22205 the handling of squeue.
22206 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
22207
22208 2001-12-05 Akim Demaille <akim@epita.fr>
22209
22210 Because useless nonterminals are now kept alive (instead of being
22211 `destroyed'), we now sometimes examine them, and store information
22212 related to them. Hence we need to know their number, and adjust
22213 memory allocations.
22214
22215 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
22216 static.
22217 * src/LR0.c (allocate_itemsets): The memory allocated to
22218 `symbol_count' was used for two different purpose: once to count
22219 the number of occurrences of each symbol, and later reassigned to
22220 `shift_symbol', containing the symbol that can be shifted from a
22221 given state.
22222 Deobfuscate, i.e., allocate, use and free `symbol_count' here
22223 only, and...
22224 (new_itemsets): Allocate `shift_symbol' here.
22225 (allocate_itemsets): symbol_count includes useless nonterminals.
22226 Make room for them.
22227 (free_storage): Use `free', not `XFREE', for pointers that cannot
22228 be null.
22229
22230 2001-12-05 Akim Demaille <akim@epita.fr>
22231
22232 * src/nullable.c (set_nullable): Deobfuscate the handling of
22233 ritem.
22234 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
22235
22236 2001-12-05 Akim Demaille <akim@epita.fr>
22237
22238 * src/gram.c, src/gram.h (ritem_print): New.
22239 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
22240 (This useless function was defined only to work around VMS linkers
22241 that can't handle compilation units with variables only).
22242 * src/reduce.c (dump_grammar): Use it to trace the construction of
22243 ritem.
22244
22245 2001-12-04 Paul Eggert <eggert@twinsun.com>
22246
22247 * src/bison.simple (union yyalloc): Change member names
22248 to be the same as the stack names.
22249 (yyparse): yyptr is now union yyalloc *, not char *.
22250 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
22251 and may generate better code on some machines.
22252 (yystpcpy): Use prototype if __STDC__ is defined, not just
22253 if __cplusplus is defined.
22254
22255 2001-11-30 Akim Demaille <akim@epita.fr>
22256
22257 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
22258 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
22259 Gettext doesn't compile cleanly, and dies with -Werror.
22260 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
22261 Include WARNING_CFLAGS here.
22262 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
22263 before being defined.
22264
22265 2001-11-27 Paul Eggert <eggert@twinsun.com>
22266
22267 * lib/quotearg.h (quotearg_n, quotearg_n_style):
22268 First arg is int, not unsigned.
22269 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
22270 (SIZE_MAX, UINT_MAX): New macros.
22271 (quotearg_n_options): Abort if N is negative.
22272 Avoid overflow check on hosts where size_t is 64 bits and int
22273 is 32 bits, as overflow is impossible there.
22274 Fix off-by-one typo that caused unnecessary reallocation.
22275
22276 2001-11-29 Paul Eggert <eggert@twinsun.com>
22277
22278 Name space cleanup in generated parser.
22279
22280 * doc/bison.texinfo (Bison Parser): Discuss system headers
22281 and their effect on the user name space.
22282
22283 * src/bison.simple:
22284 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
22285 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
22286 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
22287
22288 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
22289 on user names when possible.
22290
22291 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
22292 Simplify test for whather <alloca.h> exists.
22293
22294 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
22295
22296 (<stdio.h>): Include if YYDEBUG.
22297
22298 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
22299 ! defined (yyoverflow) && ! defined (yymemcpy).
22300
22301 (yymemcpy, yyparse): Rename local variables as needed so that
22302 they all begin with 'yy'.
22303
22304 (yystrlen, yystpcpy): New functions.
22305
22306 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
22307 All uses changed.
22308
22309 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
22310 instead of relying on string.h functions. Use YYSTACK_ALLOC
22311 and YYSTACK_FREE instead of malloc and free.
22312
22313 2001-11-30 Akim Demaille <akim@epita.fr>
22314
22315 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
22316 before their first uses.
22317 (YYBISON, YYPURE): Move to the top of the output.
22318
22319 2001-11-30 Akim Demaille <akim@epita.fr>
22320
22321 * tests/reduce.at (Useless Nonterminals): Fix.
22322
22323 2001-11-30 Akim Demaille <akim@epita.fr>
22324
22325 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
22326 if body instead of `;' to pacify GCC's warnings.
22327
22328 2001-11-30 Akim Demaille <akim@epita.fr>
22329
22330 Instead of mapping the LHS of unused rules to -1, keep the LHS
22331 valid, but flag the rules as invalid.
22332
22333 * src/gram.h (rule_t): `useful' is a new member.
22334 * src/print.c (print_grammar): Adjust.
22335 * src/derives.c (set_derives): Likewise.
22336 * src/reader.c (packgram, reduce_output): Likewise.
22337 * src/reduce.c (reduce_grammar_tables): Likewise.
22338 * tests/reduce.at (Underivable Rules, Useless Rules): New.
22339
22340 2001-11-30 Akim Demaille <akim@epita.fr>
22341
22342 * src/reduce.c (reduce_output): Formatting changes.
22343 * src/print.c (print_results, print_grammar): Likewise.
22344 * tests/regression.at (Rule Line Numbers)
22345 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
22346
22347 2001-11-30 Akim Demaille <akim@epita.fr>
22348
22349 * src/reduce.c (nonterminals_reduce): Instead of throwing away
22350 useless nonterminals, move them at the end of the symbol arrays.
22351 (reduce_output): Adjust.
22352 * tests/reduce.at (Useless Nonterminals): Adjust.
22353
22354 2001-11-30 Akim Demaille <akim@epita.fr>
22355
22356 * src/reduce.c: Various comment/formatting changes.
22357 (nonterminals_reduce): New, extracted from...
22358 (reduce_grammar_tables): here.
22359 (reduce_grammar): Call nonterminals_reduce.
22360
22361 2001-11-29 Paul Eggert <eggert@twinsun.com>
22362
22363 * src/bison.simple (YYSTACK_REALLOC): Remove.
22364 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
22365 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
22366 New macros.
22367 (union yyalloc): New type.
22368 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
22369 an arbitrary restriction on hosts where size_t is wider than int.
22370
22371 (yyparse): Don't dump core if alloca or malloc fails; instead, report
22372 a parser stack overflow. Allocate just one block of memory for all
22373 three stacks, instead of allocating three blocks; this typically is
22374 faster and reduces fragmentation.
22375
22376 Do not limit the number of items in the stack to a value that fits
22377 in 'int', as this is an arbitrary limit on hosts with 64-bit
22378 size_t and 32-bit int.
22379
22380 2001-11-29 Marc Autret <autret_m@epita.fr>
22381
22382 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
22383 of defining YYERROR_VERBOSE.
22384 [AT_DATA]: $4 is now out of C declarations in the prologue.
22385
22386 2001-11-28 Marc Autret <autret_m@epita.fr>
22387
22388 * src/reader.c (parse_dquoted_param): New.
22389 (parse_skel_decl): Use it.
22390 * src/lex.h: Add its prototype.
22391 * src/lex.c (literalchar): Become not static.
22392
22393 2001-11-28 Marc Autret <autret_m@epita.fr>
22394
22395 * src/output.h: And put its extern declaration here.
22396 * src/output.c (error_verbose): Define here.
22397 (prepare): Echo name modification.
22398 * src/getargs.h: Clean its extern declaration.
22399 * src/getargs.c (error_verbose_flag): Remove.
22400 (getargs): Remove case 'e'.
22401 * src/options.c (option_table): 'error-verbose' is now seen as simple
22402 percent option.
22403 Include output.h.
22404
22405 * src/reader.c (read_declarations): Remove case tok_include.
22406 (parse_include_decl): Remove.
22407 * src/lex.h (token_t): Remove tok_include.
22408 * src/options.c (option_table): 'include' is now a simple command line
22409 option.
22410
22411 2001-11-28 Marc Autret <autret_m@epita.fr>
22412
22413 * src/bison.simple: Adjust muscle names.
22414 * src/muscle_tab.c (muscle_init): Also rename the muscles.
22415 * src/output.c (prepare): s/_/-/ for the muscles names.
22416 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
22417
22418 2001-11-28 Marc Autret <autret_m@epita.fr>
22419
22420 * src/bison.simple: Fix debug.
22421 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
22422
22423 2001-11-28 Akim Demaille <akim@epita.fr>
22424
22425 * src/LR0.c (shifts_new): New.
22426 (save_shifts, insert_start_shift, augment_automaton): Use it.
22427
22428 2001-11-28 Akim Demaille <akim@epita.fr>
22429
22430 * src/closure.c (closure): `b' and `ruleno' denote the same value:
22431 keep ruleno only.
22432
22433 2001-11-28 Akim Demaille <akim@epita.fr>
22434
22435 * src/closure.c (closure): Instead of looping over word in array
22436 then bits in words, loop over bits in array.
22437
22438 2001-11-28 Akim Demaille <akim@epita.fr>
22439
22440 * src/closure.c (closure): No longer optimize the special case
22441 where all the bits of `ruleset[r]' are set to 0, to make the code
22442 clearer.
22443
22444 2001-11-28 Akim Demaille <akim@epita.fr>
22445
22446 * src/closure.c (closure): `r' and `c' are new variables, used to
22447 de-obfuscate accesses to RULESET and CORE.
22448
22449 2001-11-28 Akim Demaille <akim@epita.fr>
22450
22451 * src/reduce.c (reduce_print): Use ngettext.
22452 (dump_grammar): Improve the trace accuracy.
22453
22454 2001-11-28 Akim Demaille <akim@epita.fr>
22455
22456 * src/reduce.c (dump_grammar): Don't translate trace messages.
22457
22458 2001-11-28 Akim Demaille <akim@epita.fr>
22459
22460 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
22461 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
22462 as all tags are free'ed afterwards.
22463 From Enrico Scholz.
22464
22465 2001-11-27 Paul Eggert <eggert@twinsun.com>
22466
22467 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
22468 use alloca when we didn't want to, and vice versa.
22469
22470 2001-11-27 Marc Autret <autret_m@epita.fr>
22471
22472 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
22473 initialization.
22474 * src/output.c (prepare): Remove its update.
22475
22476 2001-11-27 Marc Autret <autret_m@epita.fr>
22477
22478 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
22479 Use %error-verbose.
22480
22481 2001-11-27 Marc Autret <autret_m@epita.fr>
22482
22483 * src/bison.simple: Remove YYERROR_VERBOSE using.
22484 Use %%error_verbose.
22485 (yyparse): Likewise.
22486 * src/output.c (prepare): Give its final value.
22487 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
22488 * src/getargs.h: Add its extern declaration.
22489 * src/getargs.c (error_verbose_flag): New int.
22490 (getargs): Update to catch new case.
22491 * src/options.c (option_table): 'error-verbose' is a new option.
22492 (shortopts): Update.
22493
22494 2001-11-27 Akim Demaille <akim@epita.fr>
22495
22496 * src/system.h: Use intl/libgettext.h.
22497 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
22498
22499 2001-11-27 Akim Demaille <akim@epita.fr>
22500
22501 * tests/torture.at (Exploding the Stack Size with Malloc):
22502 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
22503
22504 2001-11-27 Akim Demaille <akim@epita.fr>
22505
22506 * src/files.c: Include error.h.
22507 Reported by Hans Aberg.
22508
22509 2001-11-26 Marc Autret <autret_m@epita.fr>
22510
22511 * src/reader.c (parse_include_decl): New, not yet implemented.
22512 (read_declarations): Add case tok_include.
22513 * src/getargs.h (include): Add its extern definition.
22514 * src/getargs.c (include): New const char *.
22515 (getargs): Add case '-I'.
22516 * src/options.c (option_table): Add include as command line and
22517 percent option.
22518 * src/lex.h (token_t): Add tok_include.
22519
22520 2001-11-26 Akim Demaille <akim@epita.fr>
22521
22522 * src/reader.c (readgram): Make sure rules for mid-rule actions
22523 have a lineno equal to that of their host rule.
22524 Reported by Hans Aberg.
22525 * tests/regression.at (Rule Line Numbers): New.
22526
22527 2001-11-26 Akim Demaille <akim@epita.fr>
22528
22529 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
22530 size_ts.
22531
22532 2001-11-26 Akim Demaille <akim@epita.fr>
22533
22534 * src/complain.c, src/complain.h (error): Remove, provided by
22535 lib/error.[ch].
22536
22537 2001-11-26 Akim Demaille <akim@epita.fr>
22538
22539 * src/reader.c (read_declarations): Don't abort on tok_illegal,
22540 issue an error message.
22541 * tests/regression.at (Invalid %directive): New.
22542 Reported by Hans Aberg.
22543
22544 2001-11-26 Akim Demaille <akim@epita.fr>
22545
22546 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
22547 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
22548
22549 2001-11-26 Akim Demaille <akim@epita.fr>
22550
22551 * src/conflicts.c (conflicts_print): Don't complain at all when
22552 there are no reduce/reduce conflicts, and as many shift/reduce
22553 conflicts as expected.
22554 * tests/regression.at (%expect right): Adjust.
22555
22556 2001-11-23 Akim Demaille <akim@epita.fr>
22557
22558 * lib/alloca.c: Update, from fileutils.
22559
22560 2001-11-23 Akim Demaille <akim@epita.fr>
22561
22562 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
22563
22564 2001-11-23 Akim Demaille <akim@epita.fr>
22565
22566 * src/system.h: Include alloca.h.
22567 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
22568
22569 2001-11-23 Akim Demaille <akim@epita.fr>
22570
22571 * src/print_graph.c (print_actions): Remove `rule', unused.
22572 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
22573 pacify GCC's signed < unsigned warnings.
22574 * src/closure.c (itemsetsize): Likewise.
22575 * src/reader.c (symbol_list_new): Static.
22576
22577 2001-11-23 Akim Demaille <akim@epita.fr>
22578
22579 Attaching lineno to buckets is stupid, since only one copy of each
22580 symbol is kept, only the line of the first occurrence is kept too.
22581
22582 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
22583 * src/reader.c (rline_allocated): Remove, unused.
22584 (symbol_list): Have a `line' member.
22585 (symbol_list_new): New.
22586 (readgram): Use it.
22587 * src/print.c (print_grammar): Output the rule line numbers.
22588 * tests/regression.at (Solved SR Conflicts)
22589 (Unresolved SR Conflicts): Adjust.
22590 Reported by Hans Aberg.
22591
22592 2001-11-22 Marc Autret <autret_m@epita.fr>
22593
22594 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
22595
22596 2001-11-22 Marc Autret <autret_m@epita.fr>
22597
22598 * src/muscle_tab.c (muscle_init): Remove initialization of
22599 skeleton muscle.
22600 * src/output.c (output_master_parser): Do it here.
22601
22602 2001-11-20 Akim Demaille <akim@epita.fr>
22603
22604 * po/sv.po: New.
22605 * configure.in (ALL_LINGUAS): Adjust.
22606 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
22607 longer contains strings to translate.
22608
22609 2001-11-19 Akim Demaille <akim@epita.fr>
22610
22611 * src/conflicts.c (conflicts_print): Add a missing \n.
22612
22613 2001-11-19 Akim Demaille <akim@epita.fr>
22614
22615 * src/nullable.c (nullable_print): New.
22616 (set_nullable): Call it when tracing.
22617 Better locality of variables.
22618
22619 2001-11-19 Akim Demaille <akim@epita.fr>
22620
22621 * src/print.c (print_actions): Better locality of variables.
22622
22623 2001-11-19 Akim Demaille <akim@epita.fr>
22624
22625 * src/derives.c (print_derives): Fix and enrich.
22626 * src/closure.c (print_fderives): Likewise.
22627
22628 2001-11-19 Akim Demaille <akim@epita.fr>
22629
22630 * src/closure.c (itemsetend): Remove, replaced with...
22631 (itemsetsize): new.
22632
22633 2001-11-19 Akim Demaille <akim@epita.fr>
22634
22635 * src/LR0.c (kernel_end): Remove, replaced with...
22636 (kernel_size): new.
22637
22638 2001-11-19 Akim Demaille <akim@epita.fr>
22639
22640 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
22641 to clarify.
22642
22643 2001-11-19 Akim Demaille <akim@epita.fr>
22644
22645 * src/closure.c (closure): Use arrays instead of pointers to clarify.
22646
22647 2001-11-19 Akim Demaille <akim@epita.fr>
22648
22649 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
22650 trace messages.
22651 * src/LR0.c: Likewise.
22652 (allocate_itemsets): Use arrays instead of pointers to clarify.
22653
22654 2001-11-19 Akim Demaille <akim@epita.fr>
22655
22656 * src/getargs.c (statistics_flag): Replace with...
22657 (trace_flag): New.
22658 (longopts): Accept --trace instead of --statistics.
22659 * src/getargs.h, src/options.c: Adjust.
22660 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
22661 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
22662
22663 2001-11-19 Akim Demaille <akim@epita.fr>
22664
22665 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
22666 pointers to clarify the code.
22667 (save_reductions, save_shifts): Factor common parts of alternatives.
22668
22669 2001-11-19 Akim Demaille <akim@epita.fr>
22670
22671 * src/LR0.c (new_state, get_state): Complete TRACE code.
22672 * src/closure.c: Include `reader.h' to get `tags', needed by the
22673 trace code.
22674 Rename the conditional DEBUG as TRACE.
22675 Output consistently TRACEs to stderr, not stdout.
22676 * src/derives.c: Likewise.
22677 * src/reduce.c: (inaccessable_symbols): Using if is better style
22678 than goto.
22679 Use `#if TRACE' instead of `#if 0' for tracing code.
22680
22681 2001-11-19 Akim Demaille <akim@epita.fr>
22682
22683 * src/system.h (LIST_FREE, shortcpy): New.
22684 * src/LR0.c: Use them.
22685 * src/output.c (free_itemsets, free_reductions, free_shifts):
22686 Remove, replaced by LIST_FREE.
22687
22688 2001-11-19 Akim Demaille <akim@epita.fr>
22689
22690 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
22691 (REDUCTIONS_ALLOC): New.
22692 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
22693 allocation.
22694
22695 2001-11-19 Akim Demaille <akim@epita.fr>
22696
22697 * src/LR0.c (new_state): Complete trace code.
22698 * src/nullable.c (set_nullable): Don't translate traces.
22699
22700 2001-11-19 Akim Demaille <akim@epita.fr>
22701
22702 * src/print_graph.c (print_core): Better locality of variables.
22703 * src/print.c (print_core): Likewise.
22704
22705 2001-11-19 Akim Demaille <akim@epita.fr>
22706
22707 * src/vcg.c: You do the output, so you are responsible of the
22708 handling of VCG syntax, in particular: use quotearg.
22709 * src/print_graph.c: Don't.
22710 (print_actions): Don't output the actions as part of the nodes,
22711 since that's the job of the edges.
22712 (print_state): Don't output by hand: fill the node description,
22713 and ask for its output.
22714
22715 2001-11-19 Akim Demaille <akim@epita.fr>
22716
22717 * src/bison.simple (yyparse): When verbosely reporting an error,
22718 no longer put additional quotes around token names.
22719 * tests/calc.at: Adjust.
22720
22721 2001-11-19 Akim Demaille <akim@epita.fr>
22722
22723 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
22724 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
22725 * src/output.c: Adjust.
22726
22727 2001-11-19 Akim Demaille <akim@epita.fr>
22728
22729 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
22730 (rule_t): this.
22731 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
22732
22733 2001-11-19 Akim Demaille <akim@epita.fr>
22734
22735 * src/gram.h (rule_t): New.
22736 (rule_table): New.
22737 (rrhs, rlhs): Remove, part of state_t.
22738 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
22739 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
22740 * src/reader.c, src/reduce.c: Adjust.
22741
22742 2001-11-19 Akim Demaille <akim@epita.fr>
22743
22744 * src/reader.c (symbols_output): New, extracted from...
22745 (packsymbols): Here.
22746 (reader): Call it.
22747
22748 2001-11-19 Akim Demaille <akim@epita.fr>
22749
22750 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
22751 (maxrhs): this new function.
22752
22753 2001-11-19 Akim Demaille <akim@epita.fr>
22754
22755 * src/lalr.c (F): New macro to access the variable F.
22756 Adjust.
22757
22758 2001-11-19 Akim Demaille <akim@epita.fr>
22759
22760 * src/lalr.h (LA): New macro to access the variable LA.
22761 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
22762 * src/lalr.c: Adjust.
22763
22764 2001-11-19 Akim Demaille <akim@epita.fr>
22765
22766 * src/lalr.c (initialize_LA): Only initialize LA. Let...
22767 (set_state_table): handle the `lookaheads' members.
22768
22769 2001-11-19 Akim Demaille <akim@epita.fr>
22770
22771 * src/lalr.h (lookaheads): Removed array, whose contents is now
22772 a member of...
22773 (state_t): this structure.
22774 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
22775 Adjust.
22776
22777 2001-11-19 Akim Demaille <akim@epita.fr>
22778
22779 * src/lalr.h (consistent): Removed array, whose contents is now
22780 a member of...
22781 (state_t): this structure.
22782 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
22783 Adjust.
22784
22785 2001-11-19 Akim Demaille <akim@epita.fr>
22786
22787 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
22788 contents are now members of...
22789 (state_t): this structure.
22790 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
22791 Adjust.
22792
22793 2001-11-19 Akim Demaille <akim@epita.fr>
22794
22795 * src/lalr.h (state_t): New.
22796 (state_table): Be a state_t * instead of a core **.
22797 (accessing_symbol): Remove, part of state_t.
22798 * src/lalr.c: Adjust.
22799 (set_accessing_symbol): Merge into...
22800 (set_state_table): this.
22801 * src/print_graph.c, src/conflicts.c: Adjust.
22802
22803 2001-11-14 Akim Demaille <akim@epita.fr>
22804
22805 * tests/calc.at, tests/output.at, tests/regression.at,
22806 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
22807 now the tests are run in private dirs, therefore AC_CLEANUP and
22808 family can be simplified to 0-ary.
22809 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
22810 use abs. path to find config.h.
22811 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
22812 stderr, there can be way too much random noise.
22813 Instead pass -Werror to GCC and rely on the exit status.
22814 Reported by Wolfram Wagner.
22815
22816 2001-11-14 Akim Demaille <akim@epita.fr>
22817
22818 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
22819 defined only if yyoverflow is defined, to avoid `warning: unused
22820 variable `yyvs1''.
22821 Reported by The Test Suite.
22822
22823 2001-11-14 Akim Demaille <akim@epita.fr>
22824
22825 * src/print.c: Include reduce.h.
22826 Reported by Hans Aberg.
22827
22828 2001-11-14 Akim Demaille <akim@epita.fr>
22829
22830 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
22831 Revert a previous patch: these are really const.
22832 * src/conflicts.c (conflict_report): Additional useless pair of
22833 braces to pacify GCC's warnings for `if () if () {} else {}'.
22834 * src/lex.c (parse_percent_token): Replace equal_offset with
22835 arg_offset.
22836 arg is const.
22837 Be sure to strdup `arg' when used, since there is no reason for
22838 token_buffer not to change.
22839
22840 2001-11-14 Akim Demaille <akim@epita.fr>
22841
22842 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
22843 definition.
22844 * src/main.c (main): Use them.
22845 Suggested by Hans Aberg.
22846
22847 2001-11-12 Akim Demaille <akim@epita.fr>
22848
22849 * src/system.h (ngettext): Now that we use ngettext, be sure to
22850 provide a default definition when NLS are not used.
22851
22852 2001-11-12 Akim Demaille <akim@epita.fr>
22853
22854 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
22855 Use @kbd to denote user input.
22856 (Language and Grammar): ANSIfy the example.
22857 Adjust its layout for info/notinfo.
22858 (Location Tracking Calc): Output error messages to stderr.
22859 Output locations in a more GNUtically correct way.
22860 Fix a couple of Englishos.
22861 Adjust @group/@end group pairs.
22862
22863 2001-11-12 Akim Demaille <akim@epita.fr>
22864
22865 %expect was not functioning at all.
22866
22867 * src/conflicts.c (expected_conflicts): Set to -1.
22868 (conflict_report): Use ngettext.
22869 (conflicts_print): Check %expect and make its violation an error.
22870 * doc/bison.texinfo (Expect Decl): Adjust.
22871 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
22872 * tests/regression.at (%expect not enough, %expect right)
22873 (%expect too much): New.
22874
22875 2001-11-12 Akim Demaille <akim@epita.fr>
22876
22877 * tests/regression.at (Conflicts): Rename as...
22878 (Unresolved SR Conflicts): this.
22879 (Solved SR Conflicts): New.
22880
22881 2001-11-12 Akim Demaille <akim@epita.fr>
22882
22883 * src/reduce.c (print_results): Rename as...
22884 (reduce_output): This.
22885 Output to OUT, passed as argument, instead of output_obstack.
22886 (dump_grammar): Likewise.
22887 (reduce_free): New.
22888 Also free V1.
22889 (reduce_grammar): No longer call reduce_output, since...
22890 * src/print.c (print_results): do it.
22891 * src/main.c (main): Call reduce_free;
22892
22893 2001-11-12 Akim Demaille <akim@epita.fr>
22894
22895 * src/conflicts.c (print_reductions): Accept OUT as argument.
22896 Output to it, not to output_obstack.
22897 * src/print.c (print_actions): Adjust.
22898
22899 2001-11-12 Akim Demaille <akim@epita.fr>
22900
22901 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
22902 the result instead of using...
22903 (src_total, rrc_total, src_count, rrc_count): Remove.
22904 (any_conflicts): Remove.
22905 (print_conflicts): Split into...
22906 (conflicts_print, conflicts_output): New.
22907 * src/conflicts.h: Adjust.
22908 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
22909 * src/print.c (print_grammar): Issue `\n' between two rules.
22910 * tests/regression.at (Conflicts): New.
22911 Reported by Tom Lane.
22912
22913 2001-11-12 Akim Demaille <akim@epita.fr>
22914
22915 * tests/regression.at (Invalid input): Remove, duplicate with
22916 ``Invalid input: 1''.
22917
22918 2001-11-12 Akim Demaille <akim@epita.fr>
22919
22920 * tests/torture.at (AT_DATA_STACK_TORTURE)
22921 (Exploding the Stack Size with Alloca)
22922 (Exploding the Stack Size with Malloc): New.
22923
22924 2001-11-12 Akim Demaille <akim@epita.fr>
22925
22926 * src/bison.simple (YYSTACK_REALLOC): New.
22927 (yyparse) [!yyoverflow]: Use it and free the old stack.
22928 Reported by Per Allansson.
22929
22930 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
22931
22932 * src/bison.simple: Define type yystype instead of YYSTYPE, and
22933 define CPP macro, which substitute YYSTYPE by yystype.
22934 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
22935 with yyltype/YYLTYPE. This allows inclusion of the generated
22936 header within the parser if the compiler, such as GGC, accepts
22937 multiple equivalent #defines.
22938 From Akim.
22939
22940 2001-11-05 Akim Demaille <akim@epita.fr>
22941
22942 * src/reader.c (symbols_output): New, extracted from...
22943 (packsymbols): here.
22944 (reader): Adjust.
22945
22946 2001-11-05 Akim Demaille <akim@epita.fr>
22947
22948 * src/lex.c (parse_percent_token): s/quotearg/quote/.
22949
22950 2001-11-05 Akim Demaille <akim@epita.fr>
22951
22952 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
22953 pattern.
22954
22955 2001-11-05 Akim Demaille <akim@epita.fr>
22956
22957 * src/options.h (struct option_table_struct): set_flags is void*.
22958 * src/options.c (longopts): Support `--output' and `%output'.
22959 (usage): Adjust.
22960 * src/lex.h (tok_setopt): Remove, replaced with...
22961 (tok_intopt, tok_stropt): these new guys.
22962 * src/lex.c (getopt.h): Not needed.
22963 (token_buffer, unlexed_token_buffer): Not const.
22964 (percent_table): Promote `-' over `_' in directive names.
22965 Active `%name-prefix', `file-prefix', and `output'.
22966 (parse_percent_token): Accept possible arguments to directives.
22967 Promote `-' over `_' in directive names.
22968
22969 2001-11-04 Akim Demaille <akim@epita.fr>
22970
22971 * doc/bison.texinfo (Decl Summary): Split the list into
22972 `directives for grammars' and `directives for bison'.
22973 Sort'em.
22974 Add description of `%name-prefix', `file-prefix', and `output'.
22975 Promote `-' over `_' in directive names.
22976 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
22977 Simplify the description of `--name-prefix'.
22978 Promote `-' over `_' in directive names.
22979 Promote `--output' over `--output-file'.
22980 Fix the description of `--defines'.
22981 * tests/output.at: Exercise %file-prefix and %output.
22982
22983 2001-11-02 Akim Demaille <akim@epita.fr>
22984
22985 * doc/refcard.tex: Update.
22986
22987 2001-11-02 Akim Demaille <akim@epita.fr>
22988
22989 * src/symtab.h (SUNDEF): New.
22990 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
22991 stand for `uninitialized', instead of 0.
22992 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
22993 * src/lex.c (lex): Adjust.
22994
22995 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
22996 Number it 0.
22997 Let yylex return it instead of a plain 0.
22998 Reported by Dick Streefland.
22999
23000 2001-11-02 Akim Demaille <akim@epita.fr>
23001
23002 * tests/regression.at (Mixing %token styles): New test.
23003
23004 2001-11-02 Akim Demaille <akim@epita.fr>
23005
23006 * src/reader.c (parse_thong_decl): Formatting changes.
23007 (token_translations_init): New, extracted from...
23008 (packsymbols): Here.
23009 Adjust.
23010
23011 2001-11-01 Akim Demaille <akim@epita.fr>
23012
23013 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
23014 Check that `9foo.y' produces correct cpp guards.
23015 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
23016 guards.
23017 Reported by Wwp.
23018
23019 2001-11-01 Akim Demaille <akim@epita.fr>
23020
23021 * tests/regression.at (Invalid input: 2): New.
23022 * src/lex.c (unlexed_token_buffer): New.
23023 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
23024 too.
23025 Reported by Wwp.
23026
23027 2001-11-01 Akim Demaille <akim@epita.fr>
23028
23029 * tests/calc.at: Catch up with 1.30.
23030 * configure.in: Bump to 1.49a.
23031 Adjust to newer Autotest.
23032
23033 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
23034
23035 * src/conflicts.c: Move global variables rrc_total and src_total ...
23036 (print_conflicts): here.
23037 * src/output.c (output): Free global variable user_toknums.
23038 * src/lex.c (token_obstack): Become static.
23039
23040 2001-10-18 Akim Demaille <akim@epita.fr>
23041
23042 * tests/atlocal.in (GCC): Add.
23043 * tests/calc.at: s/m4_match/m4_bmatch/.
23044 s/m4_patsubst/m4_bpatsubst/.
23045 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
23046 * configure.in: AC_SUBST(GCC).
23047
23048 2001-10-14 Marc Autret <autret_m@epita.fr>
23049
23050 * src/options.c (create_long_option_table): Fix.
23051
23052 2001-10-10 Akim Demaille <akim@epita.fr>
23053
23054 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
23055
23056 2001-10-04 Akim Demaille <akim@epita.fr>
23057
23058 * src/reader.c (parse_union_decl): Push the caracters in
23059 union_obstack, not attrs_obstack.
23060
23061 2001-10-04 Akim Demaille <akim@epita.fr>
23062
23063 Merge in the branch 1.29.
23064
23065 * src/reader.c (packsymbols): Use a temporary obstack for
23066 `%%tokendef', since output_stack is already used elsewhere.
23067
23068 2001-10-02 Akim Demaille <akim@epita.fr>
23069
23070 Bump 1.29d.
23071
23072 2001-10-02 Akim Demaille <akim@epita.fr>
23073
23074 Version 1.29c.
23075
23076 2001-10-02 Akim Demaille <akim@epita.fr>
23077
23078 * tests/regression.at (Invalid CPP headers): New.
23079 From Alexander Belopolsky.
23080 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
23081
23082 2001-10-02 Akim Demaille <akim@epita.fr>
23083
23084 * tests/regression.at (Invalid input): New.
23085 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
23086 Reported by Shura.
23087
23088 2001-10-02 Akim Demaille <akim@epita.fr>
23089
23090 * tests/calc.at: Now that --debug works, the tests must be adjusted.
23091
23092 2001-10-02 Akim Demaille <akim@epita.fr>
23093
23094 * src/output.c (output_parser): Assert `skeleton'.
23095 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
23096 systems.
23097 From Shura.
23098
23099 2001-10-01 Marc Autret <autret_m@epita.fr>
23100
23101 * src/lex.h: Echo modifications.
23102 * src/lex.c (unlex): Parameter is now token_t.
23103 From Hans Aberg.
23104
23105 2001-10-01 Marc Autret <autret_m@epita.fr>
23106
23107 * src/main.c: Include lex.h.
23108 From Hans Aberg.
23109
23110 2001-09-29 Akim Demaille <akim@epita.fr>
23111
23112 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
23113
23114 2001-09-28 Akim Demaille <akim@epita.fr>
23115
23116 * tests/testsuite.at: Update to newer Autotest.
23117 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
23118
23119 2001-09-27 Akim Demaille <akim@epita.fr>
23120
23121 Position independent wrapper.
23122
23123 * tests/bison: Remove.
23124 * tests/bison.in: New.
23125 * configure.in: Adjust.
23126
23127 2001-09-27 Paul Eggert <eggert@twinsun.com>
23128
23129 Port quotearg fixes from tar 1.13.24.
23130
23131 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
23132 tm to be declared.
23133 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
23134 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
23135
23136 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
23137 * m4/mbrtowc.m4: New file.
23138 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
23139 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
23140
23141 2001-09-27 Akim Demaille <akim@epita.fr>
23142
23143 Bump to 1.29c.
23144
23145 2001-09-27 Akim Demaille <akim@epita.fr>
23146
23147 Version 1.29b.
23148
23149 2001-09-25 Akim Demaille <akim@epita.fr>
23150
23151 * src/system.h: Include `xalloc.h'.
23152 Remove it from the C files.
23153 * src/files.c (output_files): Free the obstacks.
23154 * src/lex.c (init_lex): Rename as...
23155 (lex_init): this.
23156 (lex_free): New.
23157 * src/main.c (main): Use it.
23158
23159 2001-09-24 Marc Autret <autret_m@epita.fr>
23160
23161 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
23162 to output informations in fout (FILE*).
23163 (open_graph, close_graph): Likewise.
23164 (output_graph, output_edge, output_node): Likewise.
23165 * src/vcg.h: Update function prototypes.
23166 * src/print_graph.c (print_graph): Open output graph file.
23167 (print_actions): Adjust.
23168 * src/files.h: Remove extern declaration.
23169 * src/files.c: Remove graph_obstack declaration.
23170 (open_files): Remove graph_obstack initialization.
23171 (output_files): Remove graph_obstack saving.
23172
23173 2001-09-24 Marc Autret <autret_m@epita.fr>
23174
23175 * src/files.c (compute_output_file_names): Fix.
23176
23177 2001-09-24 Marc Autret <autret_m@epita.fr>,
23178 Akim Demaille <akim@epita.fr>
23179
23180 * src/reader.c (reader): Remove call to free_symtab ().
23181 * src/main.c (main): Call it here.
23182 Include symtab.h.
23183 * src/conflicts.c (initialize_conflicts): Rename as...
23184 (solve_conflicts): this.
23185 * src/print.c (print_core, print_actions, print_state)
23186 (print_grammar): Dump to a file instead a `output_obstack'.
23187 (print_results): Dump `output_obstack', and then proceed with the
23188 FILE *.
23189 * src/files.c (compute_output_file_names, close_files): New.
23190 (output_files): Adjust.
23191 * src/main.c (main): Adjust.
23192
23193 2001-09-23 Marc Autret <autret_m@epita.fr>
23194
23195 * src/files.c (compute_header_macro): Computes header macro name
23196 from spec_defines_file when given.
23197
23198 2001-09-23 Marc Autret <autret_m@epita.fr>
23199
23200 * src/files.c (output_files): Add default extensions.
23201
23202 2001-09-22 Akim Demaille <akim@epita.fr>
23203
23204 * src/conflicts.c (finalize_conflicts): Rename as...
23205 (free_conflicts): this.
23206
23207 2001-09-22 Akim Demaille <akim@epita.fr>
23208
23209 * src/gram.c (gram_free): Rename back as...
23210 (dummy): this.
23211 (output_token_translations): Free `token_translations'.
23212 * src/symtab.c (free_symtab): Free the tag field.
23213
23214 2001-09-22 Akim Demaille <akim@epita.fr>
23215
23216 Remove `translations' as it is always set to true.
23217
23218 * src/gram.h: Adjust.
23219 * src/reader.c (packsymbols, parse_token_decl): Adjust
23220 * src/print.c (print_grammar): Adjust.
23221 * src/output.c (output_token_translations): Adjust.
23222 * src/lex.c (lex): Adjust.
23223 * src/gram.c: Be sure the set pointers to NULL.
23224 (dummy): Rename as...
23225 (gram_free): this.
23226
23227 2001-09-22 Akim Demaille <akim@epita.fr>
23228
23229 * configure.in: Invoke AM_LIB_DMALLOC.
23230 * src/system.h: Use dmalloc.
23231 * src/LR0.c: Be sure to have pointers initialized to NULL.
23232 (allocate_itemsets): Allocate kernel_items only if needed.
23233
23234 2001-09-22 Akim Demaille <akim@epita.fr>
23235
23236 * configure.in: Bump to 1.29b.
23237 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
23238 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
23239 need xmalloc.c in calc.y.
23240 From Pascal Bart.
23241
23242 2001-09-21 Akim Demaille <akim@epita.fr>
23243
23244 Version 1.29a.
23245 * Makefile.maint, config/config.guess, config/config.sub,
23246 * config/missing: Update from masters.
23247 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
23248 upon package.m4.
23249 * configure.in (ALL_LINGUAS): Add `tr'.
23250
23251 2001-09-21 Akim Demaille <akim@epita.fr>
23252
23253 * tests/Makefile.am (package.m4): Move to...
23254 ($(srcdir)/$(TESTSUITE)): here.
23255
23256 2001-09-20 Akim Demaille <akim@epita.fr>
23257
23258 * src/complain.c: No longer try to be standalone: use system.h.
23259 Don't assume __STDC__ is defined to 1. Just test if it is defined.
23260 * src/complain.h: Likewise.
23261 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
23262 Remove the unused variable `n'.
23263 From Albert Chin-A-Young.
23264
23265 2001-09-18 Marc Autret <autret_m@epita.fr>
23266
23267 * doc/bison.1: Update.
23268 * doc/bison.texinfo (Bison Options): Update --defines and --graph
23269 descriptions.
23270 (Option Cross Key): Update.
23271 Add --graph.
23272
23273 2001-09-18 Marc Autret <autret_m@epita.fr>
23274
23275 * tests/regression.at: New test (comment in %union).
23276
23277 2001-09-18 Marc Autret <autret_m@epita.fr>
23278
23279 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
23280 do that.
23281 Reported by Keith Browne.
23282
23283 2001-09-18 Marc Autret <autret_m@epita.fr>
23284
23285 * tests/output.at: Add tests for --defines and --graph.
23286
23287 2001-09-18 Marc Autret <autret_m@epita.fr>
23288
23289 * tests/output.at: Removes tests of %{header,src}_extension features.
23290
23291 2001-09-18 Akim Demaille <akim@epita.fr>
23292
23293 * tests/Makefile.am (package.m4): New.
23294 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
23295 (_AT_CHECK_CALC_ERROR): Likewise.
23296 Factor the `, ' part of verbose error messages.
23297
23298 2001-09-18 Marc Autret <autret_m@epita.fr>
23299
23300 * src/getargs.c (longopts): Declare --defines and --graph as options
23301 with optional arguments.
23302 * src/files.h: Add extern declarations.
23303 * src/files.c (spec_graph_file, spec_defines_file): New.
23304 (output_files): Update.
23305 Remove CPP-outed code.
23306
23307 2001-09-18 Marc Autret <autret_m@epita.fr>
23308
23309 Turn off %{source,header}_extension feature.
23310
23311 * src/files.c (compute_exts_from_gf): Update.
23312 (compute_exts_from_src): Update.
23313 (output_files): CPP-out useless code.
23314 * src/files.h: Remove {header,source}_extension extern declarations.
23315 * src/reader.c (parse_dquoted_param): CPP-out.
23316 (parse_header_extension_decl): Remove.
23317 (parse_source_extension_decl): Remove.
23318 (read_declarations): Remove cases tok_{hdrext,srcext}.
23319 * src/lex.c (percent_table): Remove {header,source}_extension entries.
23320 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
23321
23322 2001-09-10 Akim Demaille <akim@epita.fr>
23323
23324 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
23325 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
23326 (AT_CHECK_OUTPUT): this.
23327 Merely check ls' exit status, its output is useless.
23328
23329 2001-09-10 Akim Demaille <akim@epita.fr>
23330
23331 * tests/calc.at: Use m4_match.
23332 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
23333
23334 2001-09-10 Marc Autret <autret_m@epita.fr>,
23335 Akim Demaille <akim@epita.fr>
23336
23337 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
23338 enum color_e.
23339 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
23340 to `normal'.
23341 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
23342 * src/lex.h: Adjust prototype.
23343 (token_t): Add `tok_undef'.
23344 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
23345 (parse_percent_token): Now returns token_t.
23346 Add default statement in switch.
23347 (lex): Separate `c' as an input variable, from the token_t result
23348 part.
23349 (unlexed): Is a token_t.
23350
23351 2001-09-10 Akim Demaille <akim@epita.fr>
23352
23353 * configure.in: Bump to 1.29a.
23354
23355 2001-09-07 Akim Demaille <akim@epita.fr>
23356
23357 Version 1.29.
23358
23359 2001-08-30 Akim Demaille <akim@epita.fr>
23360
23361 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
23362 * m4/atconfig.m4: Remove.
23363 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
23364 * tests/bison: New.
23365 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
23366 m4_if, m4_patsubst, and m4_regexp.
23367 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
23368 `input' file instead of echo.
23369
23370 2001-08-29 Akim Demaille <akim@epita.fr>
23371
23372 Bump to 1.28e.
23373
23374 2001-08-29 Akim Demaille <akim@epita.fr>
23375
23376 Version 1.28d.
23377
23378 2001-08-29 Paul Eggert <eggert@twinsun.com>
23379
23380 * src/bison.simple (yyparse): Don't take the address of an
23381 item before the start of an array, as that doesn't conform to
23382 the C Standard.
23383
23384 2001-08-29 Robert Anisko <anisko_r@epita.fr>
23385
23386 * doc/bison.texinfo (Location Tracking Calc): New node.
23387
23388 2001-08-29 Paul Eggert <eggert@twinsun.com>
23389
23390 * src/output.c (output): Do not define const, as this now
23391 causes more problems than it cures.
23392
23393 2001-08-29 Akim Demaille <akim@epita.fr>
23394
23395 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
23396 the nodes.
23397 Be sure to tag the `detailmenu'.
23398
23399 2001-08-29 Akim Demaille <akim@epita.fr>
23400
23401 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
23402 download in a tmp dir.
23403
23404 2001-08-28 Marc Autret <autret_m@epita.fr>
23405
23406 * config/depcomp: New file.
23407
23408 2001-08-28 Marc Autret <autret_m@epita.fr>
23409
23410 * doc/bison.1 (mandoc): Adjust.
23411 From Juan Manuel Guerrero.
23412
23413 2001-08-28 Marc Autret <autret_m@epita.fr>
23414
23415 * src/print_graph.c (print_state): Fix.
23416
23417 2001-08-27 Marc Autret <autret_m@epita.fr>
23418
23419 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
23420 char * members.
23421 Echo modifications to the functions prototypes.
23422 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
23423
23424 2001-08-27 Marc Autret <autret_m@epita.fr>
23425
23426 * src/vcg.c: Include `xalloc.h'.
23427 (add_colorentry): New.
23428 (add_classname): New.
23429 (add_infoname): New.
23430 * src/vcg.h: Add new prototypes.
23431
23432 2001-08-27 Akim Demaille <akim@epita.fr>
23433
23434 * Makefile.maint: Sync. again with CVS Autoconf.
23435
23436 2001-08-27 Akim Demaille <akim@epita.fr>
23437
23438 * Makefile.maint: Formatting changes.
23439 (po-update, cvs-update, update): New targets.
23440 (AMTAR): Remove.
23441
23442 2001-08-27 Akim Demaille <akim@epita.fr>
23443
23444 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
23445 * Makefile.maint: Sync. with CVS Autoconf.
23446
23447 2001-08-27 Marc Autret <autret_m@epita.fr>
23448
23449 * src/vcg.h (struct infoname_s): New.
23450 (struct colorentry_s): New.
23451 (graph_s): New fields {vertical,horizontal}_order in structure.
23452 Add `infoname' field.
23453 Add `colorentry' field;
23454 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
23455 (G_HORIZONTAL_ORDER): New.
23456 (G_INFONAME): New.
23457 (G_COLORENTRY): New.
23458 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
23459 Add output of `infoname'.
23460 Add output of `colorentry'.
23461
23462 2001-08-27 Marc Autret <autret_m@epita.fr>
23463
23464 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
23465 This one shadowed a global parameter.
23466
23467 2001-08-24 Marc Autret <autret_m@epita.fr>
23468
23469 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
23470 instead of `unsigned'.
23471 (print_state): Do not call obstack_object_size () in obstack_grow ()
23472 to avoid macro variables shadowing.
23473
23474 2001-08-23 Marc Autret <autret_m@epita.fr>
23475
23476 * src/lex.c (percent_table): Typo: s/naem/name/.
23477 Add graph option.
23478 Normalize new options declarations.
23479
23480 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
23481
23482 * tests/suite.at: Exercise %header_extension and %source_extension.
23483
23484 2001-08-16 Marc Autret <autret_m@epita.fr>
23485
23486 * src/reader.c (parse_dquoted_param): New.
23487 (parse_header_extension_decl): Use it.
23488 (parse_source_extension_decl): Likewise.
23489
23490 2001-08-16 Marc Autret <autret_m@epita.fr>
23491
23492 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
23493 (get_xxxx_str): Use assert () instead of complain ().
23494 Remove return invokations in default cases.
23495 (get_decision_str): Modify default behaviour. Remove second argument.
23496 Echo modifications on calls.
23497 (output_graph): Fix.
23498
23499 2001-08-16 Marc Autret <autret_m@epita.fr>
23500
23501 * src/getargs.c (usage): Update with ``-g, --graph''.
23502
23503 2001-08-16 Marc Autret <autret_m@epita.fr>
23504
23505 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
23506 (Option Cross Key): Likewise.
23507 * doc/bison.1: Update.
23508
23509 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
23510
23511 * src/output.c (output_master_parser): Don't finish action_obstack.
23512 (output_parser): Don't care about the muscle action, here.
23513 (prepare): Copy the action_obstack in the action muscle.
23514 (output): Free action_obstack.
23515
23516 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
23517
23518 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
23519 will contain `%union' declaration.
23520 (parse_union_decl): Delete #line directive output.
23521 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
23522 informations about %union.
23523 (parse_union_decl): Copy the union_obstack in the muscle stype.
23524 * src/bison.simple: Add new #line directive.
23525 Add typdef %%stype YYSTYPE.
23526
23527 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
23528
23529 * src/bison.simple: Add new `#line' directive.
23530
23531 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
23532
23533 * src/bison.simple: New `#line' directive.
23534 * src/output.c (output_parser): Support new dynamic muscle input_line.
23535
23536 2001-09-22 Marc Autret <autret_m@epita.fr>
23537
23538 * src/output.c (output_master_parser): New.
23539 (output_parser): Be more re-entrant.
23540
23541 2001-09-21 Marc Autret <autret_m@epita.fr>
23542
23543 * src/reader.c (copy_definition, parse_union_decl): Update and use
23544 `linef' muscle.
23545 (copy_action): Likewise.
23546 Use obstack_1grow ().
23547 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
23548
23549 2001-09-21 Marc Autret <autret_m@epita.fr>
23550
23551 * src/options.c (option_table): Adjust.
23552 * src/lex.c (parse_percent_token): Fix.
23553
23554 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
23555
23556 * src/options.c (symtab.h): Include it, need by lex.h.
23557
23558 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
23559
23560 * src/lex.c (parse_percent_token): Change type of variable `tx', which
23561 is now an option_table_struct*.
23562 (option_strcmp): New function option_strcmp.
23563 (parse_percent_token): Call option_strcmp.
23564 * src/getargs.c (xalloc.h, options.h): Include it.
23565 (getargs): Call create_long_option_table.
23566 (getargs): Free longopts at the end of the function.
23567 (shortopts): Move in options.c.
23568 * src/options.c (create_long_option_table): New function. Convert
23569 information from option_table to option structure.
23570 * src/reader.c (options.h): Include it.
23571
23572 * src/Makefile.am: Adjust.
23573 * src/options.c (option_table): Create from longopts and percent_table.
23574 * src/getargs.c (longopts): Delete.
23575 * src/lex.c (struct percent_table_struct): Delete.
23576 (percent_table): Delete.
23577 (options.h): Include it.
23578 * src/options.c: Create.
23579 * src/options.h: Create.
23580 Declare enum opt_access_e.
23581 Define struct option_table_struct.
23582
23583 2001-09-20 Marc Autret <autret_m@epita.fr>
23584
23585 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
23586 sections of Bison.
23587
23588 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
23589
23590 * src/bison.simple: s/%%filename/%%skeleton.
23591 * src/muscle_tab.c (getargs.h): Include it.
23592 (muscle_init): Insert new muscle skeleton.
23593
23594 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
23595
23596 * src/output.c (output_parser): Delete unused variable actions_dumped.
23597
23598 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
23599
23600 * src/output.c (output): Delete call to reader_output_yylsp.
23601 * src/reader.c (reader): Likewise.
23602 * src/reader.h: Delete declaration of reader_output_yylsp.
23603
23604 2001-09-02 Marc Autret <autret_m@epita.fr>
23605
23606 * src/reader.c: Include muscle_tab.h.
23607 (parse_union_decl): Update.
23608 (parse_macro_decl): Rename parse_muscle_decl.
23609 Update to use renamed functions and variable.
23610 (read_declarations, copy_action, read_additionnal_code, : Updated
23611 with correct variables and functions names.
23612 (packsymbols, reader): Likewise.
23613
23614 * src/reader.h (muscle_obstack): Extern declaration update.
23615
23616 * src/output.c: Include muscle_tab.h
23617 In all functions using macro_insert, change by using muscle_insert ().
23618 (macro_obstack): Rename muscle_obstack.
23619 Echo modifications in the whole file.
23620 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
23621 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
23622 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
23623
23624 * src/muscle_tab.h: Update double inclusion macros.
23625 (macro_entry_s): Rename muscle_entry_s.
23626 Update prototypes.
23627
23628 * src/muscle_tab.c: Include muscle_tab.h.
23629 Rename macro_tabble to muscle_table.
23630 (mhash1, mhash2, mcmp): Use muscle_entry.
23631 (macro_init): Rename muscle_init. Update.
23632 (macro_insert): Rename muscle_insert. Update.
23633 (macro_find): Rename muscle_find. Update.
23634
23635 * src/main.c: Include muscle_tab.h.
23636 (main): Call muscle_init ().
23637 * src/Makefile.am (bison_SOURCES): Echo modifications.
23638
23639 2001-09-02 Marc Autret <autret_m@epita.fr>
23640
23641 Now the files macro_tab.[ch] are named muscle_tab.[ch].
23642
23643 * src/muscle_tab.c, src/muscle_tab.h: Add files.
23644
23645 2001-09-02 Marc Autret <autret_m@epita.fr>
23646
23647 * src/macrotab.c, src/macrotab.h: Remove.
23648
23649 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
23650
23651 * src/reader.c (copy_guard): Use muscle to specify the `#line'
23652 filename.
23653
23654 2001-09-01 Marc Autret <autret_m@epita.fr>
23655
23656 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
23657 to an explicit value to activate the feature. We do it here.
23658
23659 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
23660
23661 * src/output.c (prepare): Delete the `filename' muscule insertion.
23662 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
23663 (parse_union_decl): Likewise.
23664 * src/macrotab.c (macro_init): Initialize filename by infile.
23665
23666 2001-08-31 Marc Autret <autret_m@epita.fr>
23667
23668 * src/bison.simple (YYLSP_NEEDED): New definition.
23669 * src/output.c (prepare): Add macro insertion of `locations_flag'
23670
23671 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
23672
23673 * src/output.c (prepare): Delete insertion of previous muscles,
23674 and insert the `prefix' muscles.
23675 * src/macrotab.c (macro_init): Likewise.
23676 (macro_init): Initialization prefix directive by `yy'.
23677 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
23678 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
23679 yylval, yydebug, yyerror, yynerrs and yyparse.
23680 New directive `#define' to substitute yydebug, ... with option
23681 name_prefix.
23682
23683 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
23684
23685 * src/main.c (main): Standardize.
23686 * src/output.c (output_table_data, output_parser): Likewise.
23687 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
23688
23689 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
23690
23691 * src/reader.c (read_additionnal_code): Rename %%user_code to
23692 %%epilogue.
23693 * src/output.c (output): Rename %%declarations to %%prologue.
23694 * src/bison.simple: Echo modifications.
23695
23696 2001-08-31 Marc Autret <autret_m@epita.fr>
23697
23698 * src/reader.c (readgram): CleanUp.
23699 (output_token_defines): Likewise.
23700 (packsymbols): Likewise.
23701 (reader): Likewise.
23702 * src/output.c (output): CPP-out useless code.
23703
23704 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
23705
23706 * src/reader.c (reader): Delete obsolete call to function
23707 output_trailers and output_headers.
23708 * src/output.h: Remove obsolete functions prototypes of output_headers
23709 and output_trailers.
23710
23711 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
23712
23713 * src/main.c: Include macrotab.h.
23714 * src/macrotab.h (macro_entry_s): Constify fields.
23715 Adjust functions prototypes.
23716 * src/macrotab.c (macro_insert): Constify key and value.
23717 (macro_find): Constify key.
23718 (macro_insert): Include 'xalloc.h'
23719 (macro_insert): Use XMALLOC.
23720 (macro_find): Constify return value.
23721 * src/output.c (output_table_data): Rename table to table_data.
23722 (output_parser): Constify macro_key, macro_value.
23723
23724 2001-08-30 Marc Autret <autret_m@epita.fr>
23725
23726 * src/reader.c (parse_skel_decl): New.
23727 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
23728 * src/lex.h (token_t): New token `tok_skel'.
23729 * src/lex.c (percent_table): Add skeleton option entry.
23730 Standardize.
23731
23732 2001-08-29 Marc Autret <autret_m@epita.fr>
23733
23734 * src/bison.simple: Add %%user_code directive at the end.
23735 * src/reader.c (read_additionnal_code): New.
23736 (reader): Use it.
23737 * src/output.c (output_program): Remove.
23738 (output): Update.
23739
23740 2001-08-28 Marc Autret <autret_m@epita.fr>
23741
23742 * src/output.c (output_actions): Clean up.
23743 (output_gram): CPP-out useless code.
23744 * src/reader.c (reader): Clean up, CPP-out useless code.
23745
23746 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
23747
23748 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
23749 directive.
23750 * src/bison.simple: Add `%%definitions'.
23751
23752 2001-08-28 Marc Autret <autret_m@epita.fr>
23753
23754 * config/depcomp: New file.
23755
23756 2001-08-27 Paul Eggert <eggert@twinsun.com>
23757
23758 * src/bison.simple (yyparse): Don't take the address of an
23759 item before the start of an array, as that doesn't conform to
23760 the C Standard.
23761
23762 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
23763
23764 * src/output.c (output): Remove the initialization of the macro
23765 obstack. It was done too late here.
23766
23767 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
23768 completely wrong.
23769 (reader): Initialize the macro obstack here, since we need it to grow
23770 '%define' directives.
23771
23772 * src/reader.h: Declare the macro obstack as extern.
23773
23774 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
23775
23776 * src/output.c (output_parser): Fix. Store single '%' characters in
23777 the output obstack instead of throwing them away.
23778
23779 2001-08-27 Akim Demaille <akim@epita.fr>
23780
23781 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
23782
23783 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23784
23785 * lib/Makefile.am: Adjust.
23786
23787 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23788
23789 * src/bison.simple: Update and add '%%' directives.
23790
23791 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23792
23793 * src/reader.c (reader): Remove calls to 'output_headers' and
23794 'output_trailers'. Remove some C output.
23795 (readgram): Disable a piece of code that was writing a default
23796 definition for 'YYSTYPE'.
23797 (reader_output_yylsp): Remove.
23798 (packsymbols): Output token defintions to a macro.
23799 (copy_definition): Disable C output.
23800
23801 * src/reader.c (parse_macro_decl): New function used to parse macro
23802 declarations.
23803 (copy_string2): Put the body of copy_string into this new function.
23804 Add a parameter to let the caller choose whether he wants to copy the
23805 string delimiters or not.
23806 (copy_string): Be a simple call to copy_string2 with the last argument
23807 bound to true.
23808 (read_declarations): Add case for macro definition.
23809 (copy_identifier): New.
23810 (parse_macro_decl): Read macro identifiers using copy_identifier
23811 rather than lex.
23812
23813 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23814
23815 * src/output.c (prepare): Add prefixed names.
23816 (output_parser): Output semantic actions.
23817 (output_parser): Fix bug on '%%line' directives.
23818
23819 * src/output.c (output_headers): Remove. The C code printed by this
23820 function should now be in the skeletons.
23821 (output_trailers): Remove.
23822 (output): Disable call to 'reader_output_yylsp'.
23823 (output_rule_data): Do not output tables to the table obstack.
23824
23825 * src/output.c: Remove some C dedicated output.
23826 Improve the use of macro and output obstacks.
23827 (output_defines): Remove.
23828
23829 * src/output.c (output_token_translations): Associate 'translate'
23830 table with a macro. No output to the table obstack.
23831 (output_gram): Same for 'rhs' and 'prhs'.
23832 (output_stos): Same for 'stos'.
23833 (output_rule_data): Same for 'r1' and 'r2'.
23834 (token_actions): Same for 'defact'.
23835 (goto_actions): Same for 'defgoto'.
23836 (output_base): Same for 'pact' and 'pgoto'.
23837 (output_table): Same for 'table'.
23838 (output_check): Same for 'check'.
23839
23840 * src/output.c (output_table_data): New function.
23841 (output_short_table): Remove.
23842 (output_short_or_char_table): Remove.
23843
23844 * src/output.c (output_parser): Replace most of the skeleton copy code
23845 with something new. Skeletons are now processed character by character
23846 rather than line by line, and Bison looks for '%%' macros. This is the
23847 first step in making Bison's output process (a lot) more flexible.
23848 (output_parser): Use the macro table.
23849
23850 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23851
23852 * src/main.c (main): Initialize the macro table.
23853
23854 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23855
23856 * src/lex.c (percent_table): Add tok_define.
23857 * src/lex.h: Add tok_define.
23858
23859 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23860
23861 * src/macrotab.c: New file.
23862 * src/macrotab.h: New file.
23863 * src/Makefile.am: Update.
23864
23865 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23866
23867 * lib/hash.c: New file.
23868 * lib/hash.h: New file.
23869 * lib/Makefile.am: Update.
23870
23871 2001-08-15 Akim Demaille <akim@epita.fr>
23872
23873 Version 1.28c.
23874
23875 2001-08-15 Marc Autret <autret_m@epita.fr>
23876
23877 * src/reader.c (readgram): Indent output macro YYSTYPE.
23878 (packsymbols): Likewise.
23879 (output_token_defines): Likewise.
23880 * src/files.c: Standardize.
23881 (compute_header_macro): New.
23882 (defines_obstack_save): New. Use compute_header_macro.
23883 (output_files): Update. Use defines_obstack_save.
23884
23885 2001-08-15 Akim Demaille <akim@epita.fr>
23886
23887 * doc/bison.texinfo (Table of Symbols): Document
23888 YYSTACK_USE_ALLOCA.
23889
23890 2001-08-15 Akim Demaille <akim@epita.fr>
23891
23892 * missing: Update from CVS Automake.
23893 * config/config.guess, config/config.sub, config/texinfo.tex:
23894 Update from gnu.org.
23895
23896 2001-08-15 Akim Demaille <akim@epita.fr>
23897
23898 * Makefile.maint: Sync with CVS Autoconf.
23899
23900 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
23901
23902 * doc/bison.texinfo: Include GNU Free Documentation License from
23903 `fdl.texi'.
23904 * doc/fdl.texi: Add to package.
23905
23906 2001-08-14 Marc Autret <autret_m@epita.fr>
23907
23908 Turn on %{source,header}_extension features.
23909
23910 * src/lex.c (percent_table): Un-CPP out header_extension and
23911 source_extension.
23912 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
23913 (compute_exts_from_src): Remove conditions. It restores priorities
23914 between options.
23915
23916 2001-08-14 Marc Autret <autret_m@epita.fr>
23917
23918 * src/files.c (compute_base_names): Add extensions computing when
23919 `--file-prefix' used.
23920 Standardize function calls.
23921
23922 2001-08-13 Marc Autret <autret_m@epita.fr>
23923
23924 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
23925 defining it (defined but null disables alloca).
23926
23927 2001-08-13 Marc Autret <autret_m@epita.fr>
23928
23929 * src/bison.simple (_yy_memcpy): CPP reformat.
23930
23931 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
23932
23933 * tests/atconfig.in (CPPFLAGS): Fix.
23934
23935 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
23936
23937 * doc/bison.texinfo: Include GNU General Public License from
23938 `gpl.texi'.
23939 * doc/gpl.texi: Add to package.
23940
23941 2001-08-10 Marc Autret <autret_m@epita.fr>
23942
23943 * src/print_graph.h: Fix.
23944 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
23945
23946 2001-08-10 Akim Demaille <akim@epita.fr>
23947
23948 * src/system.h: Provide default declarations for stpcpy, strndup,
23949 and strnlen.
23950
23951 2001-08-10 Robert Anisko <anisko_r@epita.fr>
23952
23953 * doc/bison.texinfo (Locations): Update @$ stuff.
23954
23955 2001-08-09 Robert Anisko <anisko_r@epita.fr>
23956
23957 * src/bison.simple (YYLLOC_DEFAULT): Update.
23958 (yyparse): Adjust.
23959
23960 2001-08-08 Marc Autret <autret_m@epita.fr>
23961
23962 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
23963 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
23964 Reported by Fabrice Bauzac.
23965
23966 2001-08-08 Marc Autret <autret_m@epita.fr>
23967
23968 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
23969 * src/vcg.c (output_node): Fix.
23970 * src/vcg.h: Cleanup.
23971 * src/print_graph.c: Add comments.
23972 (node_output_size): New global variable. Simplify the formatting of
23973 the VCG graph output.
23974 (print_actions): Unused code is now used. It notifies the final state
23975 and no action states in the VCG graph. It also give the reduce actions.
23976 The `shift and goto' edges are red and the `go to state' edges are
23977 blue.
23978 Get the current node name and node_obstack by argument.
23979 (node_obstack): New variable.
23980 (print_state): Manage node_obstack.
23981 (print_core): Use node_obstack given by argument.
23982 A node is not only computed here but in print_actions also.
23983 (print_graph): CPP out useless code instead of commenting it.
23984
23985 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
23986
23987 * tests/atconfig.in (CPPFLAGS): Fix.
23988
23989 2001-08-07 Akim Demaille <akim@epita.fr>
23990
23991 * src/print_graph.c (quote): New.
23992 (print_core): Use it.
23993
23994 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
23995
23996 * src/vcg.c (complain.h): Include it.
23997 Unepitaize `return' invocations.
23998 [NDEBUG] (main): Remove.
23999 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
24000 * src/files.c (open_files): Initialize graph_obstack.
24001 * src/print_graph.c (print_actions): CPP out useless code.
24002 (print_core): Don't output the last `\n' in labels.
24003 Use `quote'.
24004 * src/files.c (output_files): Output the VCG file.
24005 * src/main.c (main): Invoke print_graph ();
24006
24007 2001-08-06 Marc Autret <autret_m@epita.fr>
24008
24009 Automaton VCG graph output.
24010 Using option ``-g'' or long option ``--graph'', you can generate
24011 a gram_filename.vcg file containing a VCG description of the LALR (1)
24012 automaton of your grammar.
24013
24014 * src/main.c: Call to print_graph() function.
24015 * src/getargs.h: Update.
24016 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
24017 (graph_flag): New flag.
24018 (longopts): Update.
24019 (getargs): Add case `g'.
24020 * src/files.c (graph_obstack): New obstack struct.
24021 (open_files): Initialize new obstack.
24022 (output_files): Saves graph_obstack if required.
24023 * src/files.h (graph_obstack): New extern declaration.
24024 * src/Makefile.am: Add new source files.
24025
24026 2001-08-06 Marc Autret <autret_m@epita.fr>
24027
24028 * src/print_graph.c, src/print_graph.h (graph): New.
24029 * src/vcg.h: New file.
24030 * src/vcg.c: New file, VCG graph handling.
24031
24032 2001-08-06 Marc Autret <autret_m@epita.fr>
24033
24034 Add of %source_extension and %header_extension which specify
24035 the source or/and the header output file extension.
24036
24037 * src/files.c (compute_base_names): Remove initialisation of
24038 src_extension and header_extension.
24039 (compute_exts_from_gf): Update.
24040 (compute_exts_from_src): Update.
24041 (output_files): Update.
24042 * src/reader.c (parse_header_extension_decl): New.
24043 (parse_source_extension_decl): New.
24044 (read_declarations): New case statements for the new tokens.
24045 * src/lex.c (percent_table): Add entries for %source_extension
24046 and %header_extension.
24047 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
24048
24049 2001-08-06 Marc Autret <autret_m@epita.fr>
24050
24051 * configure.in: Bump to 1.28c.
24052 * doc/bison.texinfo: Texinfo thingies.
24053
24054 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
24055
24056 * tests/atconfig.in (CPPFLAGS): Add.
24057 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
24058
24059 2001-08-03 Akim Demaille <akim@epita.fr>
24060
24061 Version 1.28b.
24062
24063 2001-08-03 Akim Demaille <akim@epita.fr>
24064
24065 * tests/Makefile.am (check-local): Ship testsuite.
24066 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
24067 Include `string.h'.
24068
24069 2001-08-03 Akim Demaille <akim@epita.fr>
24070
24071 * configure.in: Try using -Wformat when compiling.
24072
24073 2001-08-03 Akim Demaille <akim@epita.fr>
24074
24075 * configure.in: Bump to 1.28b.
24076
24077 2001-08-03 Akim Demaille <akim@epita.fr>
24078
24079 * src/complain.c: Adjust strerror_r portability issues.
24080
24081 2001-08-03 Akim Demaille <akim@epita.fr>
24082
24083 Version 1.28a.
24084
24085 2001-08-03 Akim Demaille <akim@epita.fr>
24086
24087 * src/getargs.c, src/getarg.h (skeleton)): Constify.
24088 * src/lex.c (literalchar): Avoid name clashes on `buf'.
24089 * src/getargs.c: Include complain.h.
24090 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
24091 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
24092
24093 2001-08-03 Akim Demaille <akim@epita.fr>
24094
24095 * src/reader.c (readgram): Display hidden chars in error messages.
24096
24097 2001-08-03 Akim Demaille <akim@epita.fr>
24098
24099 Update to gettext 0.10.39.
24100
24101 2001-08-03 Akim Demaille <akim@epita.fr>
24102
24103 * lib/strspn.c: New.
24104
24105 2001-08-01 Marc Autret <autret_m@epita.fr>
24106
24107 * doc/bison.texinfo: Update.
24108 * doc/bison.1 (mandoc): Update.
24109 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
24110 * src/files.c: Support output files extensions computing.
24111 (src_extension): New static variable.
24112 (header_extension): New static variable.
24113 (tr): New function.
24114 (get_extension_index): New function, gets the index of an extension
24115 filename in a string.
24116 (compute_exts_from_gf): New function, computes extensions from the
24117 grammar file extension.
24118 (compute_exts_from_src): New functions, computes extensions from the
24119 C source file extension, file given by ``-o'' option.
24120 (compute_base_names): Update.
24121 (output_files): Update.
24122
24123 2001-08-01 Robert Anisko <anisko_r@epita.fr>
24124
24125 * doc/bison.texi: Document @$.
24126 (Locations): New section.
24127
24128 2001-07-18 Akim Demaille <akim@epita.fr>
24129
24130 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
24131 * config/prev-version.txt, config/move-if-change: New.
24132 * Makefile.am: Adjust.
24133
24134 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
24135
24136 * src/bison.simple (yyparse): Suppress warning `comparaison
24137 between signed and unsigned'.
24138
24139 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
24140
24141 * src/getargs.h (raw_flag): Remove.
24142 * src/getargs.c: Die on `-r'/`--raw'.
24143 * src/lex.c (parse_percent_token): Die on `%raw'.
24144 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
24145 * tests/calc.at: Suppress test with option `--raw'.
24146
24147 2001-07-14 Akim Demaille <akim@epita.fr>
24148
24149 * config/: New.
24150 * configure.in: Require Autoconf 2.50.
24151 Update to gettext 0.10.38.
24152
24153 2001-03-16 Akim Demaille <akim@epita.fr>
24154
24155 * doc/bison.texinfo: ANSIfy the examples.
24156
24157 2001-03-16 Akim Demaille <akim@epita.fr>
24158
24159 * getargs.c (skeleton): New variable.
24160 (longopts): --skeleton is a new option.
24161 (shortopts, getargs): -S is a new option.
24162 * getargs.h: Declare skeleton.
24163 * output.c (output_parser): Use it.
24164
24165 2001-03-16 Akim Demaille <akim@epita.fr>
24166
24167 * m4/strerror_r.m4: New.
24168 * m4/error.m4: Run AC_FUNC_STRERROR_R.
24169 * lib/error.h, lib/error.c: Update.
24170
24171 2001-03-16 Akim Demaille <akim@epita.fr>
24172
24173 * src/getargs.c (longopts): Clean up.
24174
24175 2001-02-21 Akim Demaille <akim@epita.fr>
24176
24177 * src/reader.c (gensym): `gensym_count' is your own.
24178 Use a static buf to create the symbol name, as token_buffer is no
24179 longer a buffer.
24180
24181 2001-02-08 Akim Demaille <akim@epita.fr>
24182
24183 * src/conflicts.c (conflict_report): Be sure not to append to res
24184 between two calls, which could happen if both first sprintf were
24185 skipped, but not the first cp += strlen.
24186
24187 2001-02-08 Akim Demaille <akim@epita.fr>
24188
24189 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
24190 New, from fileutils 4.0.37.
24191 * configure.in: Require Autoconf 2.49c. I took some time before
24192 making this decision. This is the only way out for portability
24193 issues in Bison, it would mean way too much duplicate effort to
24194 import in Bison features implemented in 2.49c since 2.13.
24195 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
24196
24197 2001-02-02 Akim Demaille <akim@epita.fr>
24198
24199 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
24200 * lib/xalloc.h, lib/xmalloc.c: Update.
24201
24202 2001-01-19 Akim Demaille <akim@epita.fr>
24203
24204 Get rid of the ad hoc handling of token_buffer in the scanner: use
24205 the obstacks.
24206
24207 * src/lex.c (token_obstack): New.
24208 (init_lex): Initialize it. No longer call...
24209 (grow_token_buffer): this. Remove it.
24210 Adjust all the places which used it to use the obstack.
24211
24212 2001-01-19 Akim Demaille <akim@epita.fr>
24213
24214 * src/lex.h: Rename all the tokens:
24215 s/\bENDFILE\b/tok_eof/g;
24216 s/\bIDENTIFIER\b/tok_identifier/g;
24217 etc.
24218 Let them be enums, not #define, to ease debugging.
24219 Adjust all the code.
24220
24221 2001-01-18 Akim Demaille <akim@epita.fr>
24222
24223 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
24224 * src/lex.c (maxtoken, grow_token_buffer): Static.
24225
24226 2001-01-18 Akim Demaille <akim@epita.fr>
24227
24228 Since we now use obstacks, more % directives can be enabled.
24229
24230 * src/lex.c (percent_table): Also accept `%yacc',
24231 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
24232 `%debug'.
24233 Handle the actions for `%semantic_parser' and `%pure_parser' here,
24234 instead of returning a token.
24235 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
24236 * src/reader.c (read_declarations): Adjust.
24237 * src/files.c (open_files): Don't call `compute_base_names', don't
24238 compute `attrsfile' since they depend upon data which might be
24239 *in* the input file now.
24240 (output_files): Do it here.
24241 * src/output.c (output_headers): Document the fact that this patch
24242 introduces a guaranteed SEGV for semantic parsers.
24243 * doc/bison.texinfo: Document them.
24244 * tests/suite.at: Exercise these %options.
24245
24246 2000-12-20 Akim Demaille <akim@epita.fr>
24247
24248 Also handle the output file (--verbose) with obstacks.
24249
24250 * files.c (foutput): Remove.
24251 (output_obstack): New.
24252 Adjust all dependencies.
24253 * src/conflicts.c: Return a string.
24254 * src/system.h (obstack_grow_string): Rename as...
24255 (obstack_sgrow): this. Be ready to work with non literals.
24256 (obstack_fgrow4): New.
24257
24258 2000-12-20 Akim Demaille <akim@epita.fr>
24259
24260 * src/files.c (open_files): Fix the computation of short_base_name
24261 in the case of `-o foo.tab.c'.
24262
24263 2000-12-20 Akim Demaille <akim@epita.fr>
24264
24265 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
24266 (copy_dollar): Now that everything uses obstacks, get rid of the
24267 FILE * parameters.
24268
24269 2000-12-20 Akim Demaille <akim@epita.fr>
24270
24271 * src/files.c (open_files): Actually the `.output' file is based
24272 on the short_base_name, not base_name.
24273 * tests/suite.at (Checking output file names): Adjust.
24274
24275 2000-12-20 Akim Demaille <akim@epita.fr>
24276
24277 * src/bison.s1: Remove, we now use directly...
24278 * src/bison.simple: this.
24279 * src/Makefile.am: Use pkgdata instead of data.
24280
24281 2000-12-20 Akim Demaille <akim@epita.fr>
24282
24283 * src/files.c (guard_obstack): New.
24284 (open_files): Initialize it.
24285 (output_files): Dump it...
24286 * src/files.h: Export it.
24287 * src/reader.c (copy_guard): Use it.
24288
24289 2000-12-19 Akim Demaille <akim@epita.fr>
24290
24291 * src/files.c (outfile, defsfile, actfile): Removed as global
24292 vars.
24293 (open_files): Don't compute them.
24294 (output_files): Adjust.
24295 (base_name, short_base_name): Be global.
24296 Adjust dependencies.
24297
24298 2000-12-19 Akim Demaille <akim@epita.fr>
24299
24300 * src/files.c (strsuffix): New.
24301 (stringappend): Be just like strcat but allocate.
24302 (base_names): Eve out from open_files.
24303 Try to simplify the rather hairy computation of base_name and
24304 short_base_name.
24305 (open_files): Use it.
24306 * tests/suite.at (Checking output file names): New test.
24307
24308 2000-12-19 Akim Demaille <akim@epita.fr>
24309
24310 * src/system.h (obstack_grow_literal_string): Rename as...
24311 (obstack_grow_string): this.
24312 * src/output.c (output_parser): Recognize `%% actions' instead of
24313 `$'.
24314 * src/bison.s1: s/$/%% actions/.
24315 * src/bison.hairy: Likewise.
24316
24317 2000-12-19 Akim Demaille <akim@epita.fr>
24318
24319 * src/output.c (output_parser): Compute the `#line' lines when
24320 there are.
24321 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
24322 Suggested by Hans Aberg.
24323
24324 2000-12-19 Akim Demaille <akim@epita.fr>
24325
24326 Let the handling of the skeleton files be local to the procedures
24327 that use it.
24328
24329 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
24330 longer static.
24331 (fparser, open_extra_files): Remove.
24332 (open_files, output_files): Don't take care of fparser.
24333 * src/files.h: Adjust.
24334 * src/output.c (output_parser): Open and close the file to the
24335 skeleton.
24336 * src/reader.c (read_declarations): When %semantic_parser, open
24337 fguard.
24338
24339 2000-12-19 Akim Demaille <akim@epita.fr>
24340
24341 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
24342 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
24343
24344 2000-12-19 Akim Demaille <akim@epita.fr>
24345
24346 * src/files.c (open_files): Yipee! We no longer need all the code
24347 looking for `/tmp' since we have no tmp file.
24348
24349 2000-12-19 Akim Demaille <akim@epita.fr>
24350
24351 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
24352 New macros.
24353 * src/files.c (open_files): Less dependency on MSDOS etc.
24354
24355 2000-12-14 Akim Demaille <akim@epita.fr>
24356
24357 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
24358 Provide a default definition.
24359 Use it when executing the default @ action.
24360 * src/reader.c (reader_output_yylsp): No longer include
24361 `timestamp' and `text' in the default YYLTYPE.
24362
24363 2000-12-12 Akim Demaille <akim@epita.fr>
24364
24365 * src/reader.c (copy_definition, parse_union_decl, copy_action)
24366 (copy_guard): Quote the file names.
24367 Reported by Laurent Mascherpa.
24368
24369 2000-12-12 Akim Demaille <akim@epita.fr>
24370
24371 * src/output.c (output_headers, output_program, output): Be sure
24372 to escape special characters when outputting filenames.
24373 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
24374 (output_headers): Don't depend on them, Use ACTSTR.
24375
24376 2000-11-17 Akim Demaille <akim@epita.fr>
24377
24378 * lib/obstack.h: Formatting changes.
24379 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
24380 prevents type checking.
24381 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
24382 cast the value to (void *): assigning a `foo *' to a `void *'
24383 variable is valid.
24384 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
24385 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
24386 append characters.
24387
24388 2000-11-17 Akim Demaille <akim@epita.fr>
24389
24390 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
24391 as...
24392 (suite.m4, regression.m4, calc.m4): these.
24393 * tests/atgeneral.m4: Update from CVS Autoconf.
24394
24395 2000-11-17 Akim Demaille <akim@epita.fr>
24396
24397 * tests/regression.m4 (%union and --defines): New test,
24398 demonstrating a current bug in the obstack implementation.
24399
24400 2000-11-17 Akim Demaille <akim@epita.fr>
24401
24402 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
24403 macros.
24404 Use them to declare the variables which are global or local to
24405 `yyparse'.
24406
24407 2000-11-17 Akim Demaille <akim@epita.fr>
24408
24409 * acconfig.h: Remove, no longer used.
24410
24411 2000-11-07 Akim Demaille <akim@epita.fr>
24412
24413 * src: s/Copyright (C)/Copyright/g.
24414
24415 2000-11-07 Akim Demaille <akim@epita.fr>
24416
24417 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
24418 defining.
24419 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
24420
24421 2000-11-07 Akim Demaille <akim@epita.fr>
24422
24423 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
24424 Merge in a single CPP if/else.
24425
24426 2000-11-07 Akim Demaille <akim@epita.fr>
24427
24428 * src/output.c (output): Remove useless variables.
24429 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
24430 argument `data' for consistency with the prototypes.
24431 Qualify it `const'.
24432 (obstack_copy, obstack_copy0): Rename the second argument as
24433 `address' for consistency. Qualify it `const'.
24434 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
24435 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
24436 `const' their input argument (`data' or `address').
24437 Adjust the corresponding macros to include `const' in casts.
24438
24439 2000-11-03 Akim Demaille <akim@epita.fr>
24440
24441 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
24442 s/PFILE1/BISON_HAIRY/.
24443 Adjust dependencies.
24444
24445 2000-11-03 Akim Demaille <akim@epita.fr>
24446
24447 For some reason, this was not applied.
24448
24449 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
24450 `unlink': it's no longer used.
24451
24452 2000-11-03 Akim Demaille <akim@epita.fr>
24453
24454 * src/files.c (skeleton_find): New function, eved out of...
24455 (open_files, open_extra_files): here.
24456
24457 2000-11-03 Akim Demaille <akim@epita.fr>
24458
24459 Don't use `atexit'.
24460
24461 * src/files.c (obstack_save): New function.
24462 (done): Rename as...
24463 (output_files): this.
24464 Use `obstack_save'.
24465 * src/main.c (main): Don't use `atexit' to register `done', since
24466 it no longer has to remove tmp files, just call `output_files'
24467 when there are no errors.
24468
24469 2000-11-02 Akim Demaille <akim@epita.fr>
24470
24471 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
24472 `unlink': it's no longer used.
24473 * src/files.h: Formatting changes.
24474
24475 2000-11-02 Akim Demaille <akim@epita.fr>
24476
24477 Remove the last uses of mktemp and unlink/delete.
24478
24479 * src/files.c (fdefines, ftable): Removed.
24480 (defines_ostack, table_obstack): New.
24481 Adjust dependencies of the former into uses of the latter.
24482 * src/output.c (output_short_or_char_table, output_short_table):
24483 Convert to using obstacks.
24484 * src/reader.c (copy_comment2): Accept one FILE * and two
24485 obstacks.
24486 (output_token_defines, reader_output_yylsp): Use obstacks.
24487 * src/system.h (obstack_fgrow3): New.
24488 * po/POTFILES.in: Adjust.
24489
24490 2000-11-01 Akim Demaille <akim@epita.fr>
24491
24492 Change each use of `fattrs' into a use of `attrs_obstack'.
24493
24494 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
24495 * src/files.c (fattrs): Remove.
24496 (attrs_obstack): New.
24497 Adjust all dependencies.
24498 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
24499
24500 2000-11-01 Akim Demaille <akim@epita.fr>
24501
24502 Introduce obstacks.
24503 Change each use of `faction' into a use of `action_obstack'.
24504
24505 * lib/obstack.h, lib/obstack.c: New files.
24506 * src/files.c (faction): Remove.
24507 (action_obstack): New.
24508 Adjust all dependencies.
24509
24510 2000-10-20 Akim Demaille <akim@epita.fr>
24511
24512 * lib/quote.h (PARAMS): New macro. Use it.
24513
24514 2000-10-16 Akim Demaille <akim@epita.fr>
24515
24516 * src/output.c (output_short_or_char_table): New function.
24517 (output_short_table, output_token_translations): Use it.
24518 (goto_actions): Use output_short_table.
24519
24520 2000-10-16 Akim Demaille <akim@epita.fr>
24521
24522 * src/symtab.c (bucket_new): New function.
24523 (getsym): Use it.
24524
24525 * src/output.c (output_short_table): New argument to display the
24526 comment associated with the table.
24527 Adjust dependencies.
24528 (output_gram): Use it.
24529 (output_rule_data): Nicer output layout for YYTNAME.
24530
24531 2000-10-16 Akim Demaille <akim@epita.fr>
24532
24533 * src/lex.c (read_typename): New function.
24534 (lex): Use it.
24535 * src/reader.c (copy_dollar): Likewise.
24536
24537 2000-10-16 Akim Demaille <akim@epita.fr>
24538
24539 * src/reader.c (copy_comment2): Expect the input stream to be on
24540 the `/' which is suspected to open a comment, instead of being
24541 called after `//' or `/*' was read.
24542 (copy_comment, copy_definition, parse_union_decl, copy_action)
24543 (copy_guard): Adjust.
24544
24545 2000-10-16 Akim Demaille <akim@epita.fr>
24546
24547 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
24548 `read_signed_integer'.
24549
24550 2000-10-16 Akim Demaille <akim@epita.fr>
24551
24552 * src/reader.c (copy_dollar): New function.
24553 (copy_guard, copy_action): Use it.
24554
24555 2000-10-16 Akim Demaille <akim@epita.fr>
24556
24557 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
24558 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
24559 New files, from Fileutils 4.0.27.
24560 * src/main.c (printable_version): Remove.
24561 * src/lex.c, src/reader.c: Use `quote'.
24562
24563 2000-10-04 Akim Demaille <akim@epita.fr>
24564
24565 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
24566
24567 2000-10-04 Akim Demaille <akim@epita.fr>
24568
24569 * doc/bison.texinfo: Various typos spotted by Neil Booth.
24570
24571 2000-10-04 Akim Demaille <akim@epita.fr>
24572
24573 When a literal string is used to define two different tokens,
24574 `bison -v' segfaults.
24575 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
24576
24577 * tests/regression.m4: New file.
24578 Include the core of the sample provided by Piotr Gackiewicz.
24579 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
24580 properly.
24581
24582 2000-10-04 Akim Demaille <akim@epita.fr>
24583
24584 * src/reader.c (parse_expect_decl): Keep `count' within the size
24585 of `buffer'.
24586 From Neil Booth.
24587
24588 2000-10-02 Paul Eggert <eggert@twinsun.com>
24589
24590 * bison.s1 (yyparse): Assign the default value
24591 unconditionally, to avoid a GCC warning and make the parser a
24592 tad smaller.
24593
24594 2000-10-02 Akim Demaille <akim@epita.fr>
24595
24596 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
24597 options.
24598
24599 2000-10-02 Akim Demaille <akim@epita.fr>
24600
24601 * src/derives.c, src/print.c, src/reduce.c: To ease the
24602 translation, move some `\n' out of the translated strings.
24603
24604 2000-10-02 Akim Demaille <akim@epita.fr>
24605
24606 The location tracking mechanism is precious for parse error
24607 messages. Nevertheless, it is enabled only when `@n' is used in
24608 the grammar, which is a different issue (you can use it in error
24609 message, but not in the grammar per se). Therefore, there should
24610 be another means to enable it.
24611
24612 * src/getargs.c (getargs): Support `--locations'.
24613 (usage): Report it.
24614 * src/getargs.h (locationsflag): Export it.
24615 * src/lex.c (percent_table): Support `%locations'.
24616 * src/reader.c (yylsp_needed): Remove this variable, now replaced
24617 with `locationsflag'.
24618 * doc/bison.texinfo: Document `--locations' and `%locations'.
24619 Sort the options.
24620 * tests/calc.m4: Test it.
24621
24622 For regularity of the names, replace each
24623 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
24624 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
24625 In addition replace each `flag' with `_flag'.
24626
24627 2000-10-02 Akim Demaille <akim@epita.fr>
24628
24629 Also test parse error messages, including with YYERROR_VERBOSE.
24630
24631 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
24632 associative).
24633 Use it to check the computations.
24634 Use it to check `nonassoc' is honored.
24635 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
24636 `--yyerror-verbose'.
24637 (_AT_CHECK_CALC): Adjust to this option.
24638 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
24639
24640 2000-10-02 Akim Demaille <akim@epita.fr>
24641
24642 Test also `--verbose', `--defines' and `--name-prefix'. Testing
24643 the latter demonstrates a flaw in the handling of non debugging
24644 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
24645 was used in order to simplify:
24646
24647 #if YYDEBUG
24648 if (yydebug)
24649 {
24650 ...
24651 }
24652 #endif
24653
24654 into
24655
24656 if (yydebug)
24657 {
24658 ...
24659 }
24660
24661 unfortunately this leads to a CPP conflict when
24662 `--name-prefix=foo' is used since it produces `#define yydebug
24663 foodebug'.
24664
24665 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
24666 (YYDPRINTF): New macro.
24667 Spread its use.
24668 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
24669 the bison options.
24670 Also test `--verbose', `--defines' and `--name-prefix'.
24671
24672 2000-10-02 Akim Demaille <akim@epita.fr>
24673
24674 Improve the readability of the produced parsers.
24675
24676 * src/bison.s1: Formatting changes.
24677 Improve the comment related to the `$' mark.
24678 (yydefault): Don't fall through to `yyresume': `goto' there.
24679 * src/output.c (output_parser): When the `$' is met, skip the end
24680 of its line.
24681 New variable, `number_of_dollar_signs', to check there's exactly
24682 one `$' in the parser skeleton.
24683
24684 2000-10-02 Akim Demaille <akim@epita.fr>
24685
24686 * lib/xstrdup.c: New file, from the fileutils.
24687 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
24688 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
24689 instead of strlen + xmalloc + strcpy.
24690 * src/symtab.c (copys): Remove, use xstrdup instead.
24691
24692 2000-10-02 Akim Demaille <akim@epita.fr>
24693
24694 * src/gram.h (associativity): New enum type which replaces the
24695 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
24696 `right_assoc', `left_assoc' and `non_assoc'.
24697 Adjust all dependencies.
24698 * src/reader.c: Formatting changes.
24699 (LTYPESTR): Don't define it, use it as a literal in
24700 `reader_output_yylsp'.
24701 * src/symtab.h (symbol_class): New enum type which replaces the
24702 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
24703 `sunknown', `stoken and `snterm'.
24704
24705 2000-10-02 Akim Demaille <akim@epita.fr>
24706
24707 * src/getargs.c (fixed_outfiles): Rename as...
24708 (yaccflag): for consistency and accuracy.
24709 Adjust dependencies.
24710
24711 2000-10-02 Akim Demaille <akim@epita.fr>
24712
24713 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
24714 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
24715 difficult and introduced a lot of core dump. It turns out that
24716 Bison used an implementation of `xmalloc' based on `calloc', and
24717 at various places it does depend upon the initialization to 0. I
24718 have not tried to isolate the pertinent places, and all the former
24719 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
24720 someone should address this issue.
24721
24722 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
24723 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
24724 files.
24725 Adjust dependencies.
24726 * src/warshall.h: New file.
24727 Propagate.
24728
24729 2000-10-02 Akim Demaille <akim@epita.fr>
24730
24731 Various anti-`extern in *.c' changes.
24732
24733 * src/system.h: Include `assert.h'.
24734
24735 2000-10-02 Akim Demaille <akim@epita.fr>
24736
24737 * src/state.h (nstates, final_state, first_state, first_shift)
24738 (first_reduction): Move their exportation from here...
24739 * src/LR0.h: to here.
24740 Adjust dependencies.
24741 * src/getargs.c (statisticsflag): New variable.
24742 Add support for `--statistics'.
24743 Adjust dependencies.
24744
24745 Remove a lot of now useless `extern' statements in most files.
24746
24747 2000-10-02 Akim Demaille <akim@epita.fr>
24748
24749 * src/LR0.h: New file.
24750 Propagate its use.
24751
24752 2000-10-02 Akim Demaille <akim@epita.fr>
24753
24754 * src/print.h: New file.
24755 Propagate its use.
24756 * src/print.c: Formatting and ordering changes.
24757 (verbose, terse): Replace with...
24758 (print_results): this new function.
24759 Adjust dependencies.
24760
24761 2000-10-02 Akim Demaille <akim@epita.fr>
24762
24763 * src/conflicts.c (conflict_report): New function.
24764 (conflict_log, verbose_conflict_log): Replace with...
24765 (print_conflicts): this function.
24766 Adjust dependencies.
24767 * src/conflicts.h: New file.
24768 Propagate its inclusion.
24769
24770 2000-10-02 Akim Demaille <akim@epita.fr>
24771
24772 * src/nullable.h: New file.
24773 Propagate its inclusion.
24774 * src/nullable.c: Formatting changes.
24775
24776 2000-10-02 Akim Demaille <akim@epita.fr>
24777
24778 * src/reduce.h: New file.
24779 Propagate its inclusion.
24780 * src/reduce.c: Topological sort and other formatting changes.
24781 (bool, TRUE, FALSE): Move their definition to...
24782 * src/system.h: here.
24783
24784 2000-10-02 Akim Demaille <akim@epita.fr>
24785
24786 * src/files.c: Formatting changes.
24787 (tryopen, tryclose, openfiles): Rename as...
24788 (xfopen, xfclose, open_files): this.
24789 (stringappend): static.
24790 * src/files.h: Complete the list of exported symbols.
24791 Propagate its use.
24792
24793 2000-10-02 Akim Demaille <akim@epita.fr>
24794
24795 * src/reader.h: New file.
24796 Propagate its use instead of tedious list of `extern' and
24797 prototypes.
24798 * src/reader.c: Formatting changes, topological sort,
24799 s/register//.
24800
24801 2000-10-02 Akim Demaille <akim@epita.fr>
24802
24803 * src/lex.h: Prototype `lex.c' exported functions.
24804 * src/reader.c: Adjust.
24805 * src/lex.c: Formatting changes.
24806 (safegetc): Rename as...
24807 (xgetc): this.
24808
24809 2000-10-02 Akim Demaille <akim@epita.fr>
24810
24811 * src/lalr.h: New file.
24812 Propagate its inclusion instead of prototypes and `extern'.
24813 * src/lalr.c: Formatting changes, topological sorting etc.
24814
24815 2000-10-02 Akim Demaille <akim@epita.fr>
24816
24817 * src/output.c (token_actions): Introduce a temporary array,
24818 YYDEFACT, that makes it possible for this function to use
24819 output_short_table.
24820
24821 2000-10-02 Akim Demaille <akim@epita.fr>
24822
24823 `user_toknums' is output as a `short[]' in `output.c', while it is
24824 defined as a `int[]' in `reader.c'. For consistency with the
24825 other output tables, `user_toknums' is now defined as a table of
24826 shorts.
24827
24828 * src/reader.c (user_toknums): Be a short table instead of an int
24829 table.
24830 Adjust dependencies.
24831
24832 Factor the short table outputs.
24833
24834 * src/output.c (output_short_table): New function.
24835 * src/output.c (output_gram, output_stos, output_rule_data)
24836 (output_base, output_table, output_check): Use it.
24837
24838 2000-10-02 Akim Demaille <akim@epita.fr>
24839
24840 * src/output.c (output): Topological sort of the functions, in
24841 order to get rid of the `static' prototypes.
24842 No longer use `register'.
24843 * src/output.h: New file.
24844 Propagate its inclusion in files explicitly prototyping functions
24845 from output.c.
24846
24847 2000-09-21 Akim Demaille <akim@epita.fr>
24848
24849 * src/atgeneral.m4: Update from Autoconf.
24850
24851 2000-09-21 Akim Demaille <akim@epita.fr>
24852
24853 * src/closure.h: New file.
24854 * src/closure.c: Formatting changes, topological sort over the
24855 functions, use of closure.h.
24856 (initialize_closure, finalize_closure): Rename as...
24857 (new_closure, free_closure): these. Adjust dependencies.
24858 * src/LR0.c: Formatting changes, topological sort, use of
24859 cloture.h.
24860 (initialize_states): Rename as...
24861 (new_states): this.
24862 * src/Makefile.am (noinst_HEADERS): Adjust.
24863
24864 2000-09-20 Akim Demaille <akim@epita.fr>
24865
24866 * src/acconfig.h: Don't protect config.h against multiple
24867 inclusion.
24868 Don't define PARAMS.
24869 * src/system.h: Define PARAMS.
24870 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
24871 purpose of config.h. system.h must not try to fix wrong
24872 definitions in config.h.
24873
24874 2000-09-20 Akim Demaille <akim@epita.fr>
24875
24876 * src/derives.h: New file.
24877 * src/main.c, src/derives.h: Use it.
24878 Formatting changes.
24879 * src/Makefile.am (noinst_HEADERS): Adjust.
24880
24881 2000-09-20 Akim Demaille <akim@epita.fr>
24882
24883 * tests/atgeneral.m4: Update from Autoconf.
24884 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
24885 (AT_CHECK_CALC): New macros.
24886 Use these macros to test bison with options `', `--raw',
24887 `--debug', `--yacc', `--yacc --debug'.
24888
24889 2000-09-19 Akim Demaille <akim@epita.fr>
24890
24891 * src/output.c: Formatting changes.
24892 * src/machine.h: Remove, leaving its contents in...
24893 * src/system.h: here.
24894 Include stdio.h.
24895 Adjust all dependencies on stdio.h and machine.h.
24896 * src/getargs.h: New file.
24897 Let all `extern' declarations about getargs.c be replaced with
24898 inclusion of `getargs.h'.
24899 * src/Makefile.am (noinst_HEADERS): Adjust.
24900
24901 * tests/calc.m4 (yyin): Be initialized in main, not on the global
24902 scope.
24903 (yyerror): Returns void, not int.
24904 * doc/bison.texinfo: Formatting changes.
24905
24906 2000-09-19 Akim Demaille <akim@epita.fr>
24907
24908 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
24909 portable.
24910
24911 2000-09-18 Akim Demaille <akim@epita.fr>
24912
24913 * configure.in: Append WARNING_CFLAGS to CFLAGS.
24914 * src/Makefile.am (INCLUDES): Don't.
24915 Be ready to fetch headers in lib/.
24916
24917 2000-09-18 Akim Demaille <akim@epita.fr>
24918
24919 * doc/bison.texinfo: Update the copyright.
24920 ANSIfy and GNUify the examples.
24921 Remove the old menu.
24922
24923 2000-09-18 Akim Demaille <akim@epita.fr>
24924
24925 First set of tests: use the `calc' example from the documentation.
24926
24927 * src/bison.s1 (yyparse): Condition the code using `yytname' which
24928 is defined only when YYDEBUG is.
24929 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
24930 * src/files.c (tryopen, tryclose): Formatting changes.
24931 Move to the top and be static.
24932 * src/reader.c (read_signed_integer): Likewise.
24933 * tests/calc.m4: New file.
24934 * Makefile.am, suite.m4: Adjust.
24935 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
24936
24937 2000-09-18 Akim Demaille <akim@epita.fr>
24938
24939 Add support for an Autotest test suite for Bison.
24940
24941 * m4/m4.m4, m4/atconfig.m4: New files.
24942 * m4/Makefile.am (EXTRA_DIST): Adjust.
24943 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
24944 files.
24945 * src/getargs.c: Display a more standard --version message.
24946 * src/reader.c (reader): Formatting changes.
24947 No longer depend upon VERSION_STRING.
24948 * configure.in: No longer use `dnl'.
24949 Set up the test suite and the new directory `tests/.
24950 (VERSION_STRING): Remove.
24951
24952 2000-04-14 Akim Demaille <akim@epita.fr>
24953
24954 * src/reader.c (copy_comment2): New function, same as former
24955 `copy_comment', but outputs into two FILE *.
24956 (copy_comment): Use it.
24957 (parse_union_decl): Use it.
24958 (get_type, parse_start_decl): Use the same `invalid' message.
24959 (parse_start_decl, parse_union_decl): Use the same `multiple'
24960 message.
24961 (parse_union_decl, copy_guard, copy_action): Use the same
24962 `unmatched' message.
24963 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
24964
24965 2000-03-31 Akim Demaille <akim@epita.fr>
24966
24967 * src/files.c (tryopen, tryclose): Move to the top.
24968 Be static.
24969
24970 2000-03-31 Akim Demaille <akim@epita.fr>
24971
24972 * src/main.c (main): Don't call `done', exit does it.
24973
24974 2000-03-31 Akim Demaille <akim@epita.fr>
24975
24976 * allocate.c: s/return (foo)/return foo/.
24977 * lalr.c: Likewise.
24978 * LR0.c: Likewise.
24979 * output.c: Likewise.
24980 * reader.c: Likewise.
24981 * symtab.c: Likewise.
24982 * vmsgetargs.c: Likewise.
24983
24984 2000-03-31 Akim Demaille <akim@epita.fr>
24985
24986 Clean up the error reporting functions.
24987
24988 * src/report.c: New file.
24989 * src/report.h: Likewise.
24990 * src/Makefile.am: Adjust.
24991 * m4/error.m4: New file.
24992 * m4/Makefile.am: Adjust.
24993 * configure.in (jm_PREREQ_ERROR): Call it.
24994 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
24995 Remove.
24996 (fatal, fatals): Remove. All callers use complain.c::fatal.
24997 (warn, warni, warns, warnss, warnss): Remove. All callers use
24998 complain.c::complain.
24999 (toomany): Remove, use fatal instead.
25000 * src/files.c (done): No argument, use complain_message_count.
25001 * src/main.c (main): Register `done' to `atexit'.
25002
25003 * src/getargs.c (usage): More `fputs', less `fprintf'.
25004
25005 2000-03-28 Akim Demaille <akim@epita.fr>
25006
25007 * lib/: New directory.
25008 * Makefile.am (SUBDIRS): Adjust.
25009 * configure.in: Adjust.
25010 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
25011 useless.
25012 * src/alloca.c: Moved to lib/.
25013 * src/getopt.c: Likewise.
25014 * src/getopt1.c: Likewise.
25015 * src/getopt.h: Likewise.
25016 * src/ansi2knr.c: Likewise.
25017 * src/ansi2knr.1: Likewise.
25018 * src/Makefile.am: Adjust.
25019 * lib/Makefile.am: New file.
25020
25021 2000-03-28 Akim Demaille <akim@epita.fr>
25022
25023 * src/getargs.c (usage): Refresh the help message.
25024
25025 2000-03-17 Akim Demaille <akim@epita.fr>
25026
25027 * src/getopt1.c: Updated from textutils 2.0e
25028 * src/getopt.c: Likewise.
25029 * src/getopt.h: Likewise.
25030
25031 2000-03-17 Akim Demaille <akim@epita.fr>
25032
25033 * src/Makefile.am (bison.simple): Fix the awk program: quote only
25034 the file name, not the whole `#line LINE FILE'.
25035
25036 2000-03-17 Akim Demaille <akim@epita.fr>
25037
25038 On syntax errors, report the token on which we choked.
25039
25040 * src/bison.s1 (yyparse): In the label yyerrlab, when
25041 YYERROR_VERBOSE, add yychar in msg.
25042
25043 2000-03-17 Akim Demaille <akim@epita.fr>
25044
25045 * src/reader.c (copy_at): New function.
25046 (copy_guard): Use it.
25047 (copy_action): Use it.
25048
25049 2000-03-17 Akim Demaille <akim@epita.fr>
25050
25051 Be kind to translators, save some useless translations.
25052
25053 * src/main.c (banner): New function.
25054 (fatal_banner): Use it.
25055 (warn_banner): Use it.
25056
25057 2000-03-17 Akim Demaille <akim@epita.fr>
25058
25059 * src/reader.c (copy_definition): Use copy_string and
25060 copy_comment. Removed now unused `match', `ended',
25061 `cplus_comment'.
25062 (copy_comment, copy_string): Moved, to be visible from
25063 copy_definition.
25064
25065 2000-03-17 Akim Demaille <akim@epita.fr>
25066
25067 * src/reader.c (copy_string): Declare `static inline'. No
25068 problems with inline, since it is checked by configure.
25069 (copy_comment): Likewise.
25070
25071 2000-03-17 Akim Demaille <akim@epita.fr>
25072
25073 * src/reader.c (packsymbols): Formatting changes.
25074
25075 2000-03-17 Akim Demaille <akim@epita.fr>
25076
25077 * src/reader.c (copy_comment): New function, factored out from:
25078 (copy_action): Use it. Removed now unused `match', `ended',
25079 `cplus_comment'.
25080 (copy_guard): Likewise.
25081
25082 2000-03-17 Akim Demaille <akim@epita.fr>
25083
25084 * src/reader.c (copy_string): New function, factored out from:
25085 (copy_action): Use it.
25086 (copy_guard): Likewise.
25087
25088 2000-03-17 Akim Demaille <akim@epita.fr>
25089
25090 Change the handling of @s so that they behave exactly like $s.
25091 There is now a pseudo variable @$ (readble and writable), location
25092 of the lhs of the rule (by default ranging from the location of
25093 the first symbol of the rhs, to the location of the last symbol,
25094 or, if the rhs is empty, YYLLOC).
25095
25096 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
25097 yyval.
25098 (yyparse): When providing a default semantic action, provide a
25099 default location action.
25100 (after the $): No longer change `*YYLSP', just stack YYLOC the
25101 same way you stack YYVAL.
25102 * src/reader.c (read_declarations): Use warns.
25103 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
25104 (copy_action, case '@'): Likewise.
25105 Use a standard error message, to save useless work from
25106 translators.
25107
25108 2000-03-17 Akim Demaille <akim@epita.fr>
25109
25110 * src/bison.s1: Formatting and cosmetics changes.
25111 * src/reader.c: Likewise.
25112 Update the Copyright notice.
25113
25114 2000-03-17 Akim Demaille <akim@epita.fr>
25115
25116 * src/bison.s1 (#line): All set to `#line' only, since the
25117 Makefile now handles them.
25118
25119 2000-03-16 Akim Demaille <akim@epita.fr>
25120
25121 * src/output.c (output_rule_data): Output the documentation of
25122 some of the tables.
25123 (Copyright notice): Update.
25124 Formatting changes.
25125
25126 2000-03-16 Akim Demaille <akim@epita.fr>
25127
25128 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
25129 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
25130 One `#if YYDEBUG' remains, since it uses variables which are
25131 defined only if `YYDEBUG != 0'.
25132
25133 2000-03-16 Akim Demaille <akim@epita.fr>
25134
25135 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
25136 and related variables so that the similarities are highlighted.
25137
25138 2000-03-16 Akim Demaille <akim@epita.fr>
25139
25140 * src/bison.s1: Properly indent CPP directives.
25141
25142 2000-03-16 Akim Demaille <akim@epita.fr>
25143
25144 * src/bison.s1: Properly indent the `alloca' CPP section.
25145
25146 2000-03-16 Akim Demaille <akim@epita.fr>
25147
25148 Do not hard code values of directories in `configure.in'.
25149 Update the `configure' tool chain.
25150
25151 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
25152 src/makefile.am.
25153 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
25154 (AC_OUTPUT): Add m4/Makefile.
25155 Bump to bison 1.28a, 1.29 has never been released.
25156 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
25157 handled via src/Makefile.am.
25158 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
25159 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
25160 autoheader.
25161 * Makefile.am (SUBDIRS): Add m4.
25162 (ACLOCAL_AM_FLAGS): New variable.
25163 (AUTOMAKE_OPTIONS): Add check-news.
25164 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
25165 the proper line number and file name.
25166 (DEFS): Propagate the location of bison library files and of the
25167 locale files.
25168 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
25169 builddir.
25170 * acinclude.m4: Remove, replaced by the directory m4.
25171 * m4/Makefile.am (EXTRA_DIST): New variable.
25172 * m4/gettext.m4: New file, from the fileutils.
25173 * m4/lcmessage.m4: Likewise
25174 * m4/progtest.m4: Likewise.
25175 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
25176
25177 2000-03-10 Akim Demaille <akim@epita.fr>
25178
25179 * src/closure.c:
25180 Formatting changes of various comments.
25181 Respect the GNU coding standards at various places.
25182 Don't use `_()' when no translation is needed.
25183
25184 1999-12-13 Jesse Thilo <jthilo@gnu.org>
25185
25186 * src/files.c:
25187 OS/2 honors TMPDIR environment variable.
25188
25189 1999-12-13 Jesse Thilo <jthilo@gnu.org>
25190
25191 * doc/bison.texinfo: Tweaked spelling and grammar.
25192 Updated ISBN.
25193 Removed reference to price of printed copy.
25194 Mention BISON_SIMPLE and BISON_HAIRY.
25195
25196 1999-12-13 Jesse Thilo <jthilo@gnu.org>
25197
25198 * configure.in, NEWS:
25199 Bison 1.29 released.
25200
25201 1999-10-27 Jesse Thilo <jthilo@gnu.org>
25202
25203 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
25204 Added reference card.
25205
25206 1999-07-26 Jesse Thilo <jthilo@gnu.org>
25207
25208 * po/ru.po: Added Russian translation.
25209
25210 1999-07-26 Jesse Thilo <jthilo@gnu.org>
25211
25212 * configure.in: Added Russian translation.
25213
25214 1999-07-06 Jesse Thilo <jthilo@gnu.org>
25215
25216 * configure.in, NEWS, README:
25217 Released version 1.28.
25218
25219 1999-06-14 Jesse Thilo <jthilo@gnu.org>
25220
25221 * src/system.h:
25222 Squashed redefinition warning on some systems.
25223
25224 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
25225 Have configure build version string instead of relying on ANSI string
25226 concatentation.
25227
25228 1999-06-14 Jesse Thilo <jthilo@gnu.org>
25229
25230 * po/POTFILES.in: Got rid of version.c.
25231
25232 1999-06-14 Jesse Thilo <jthilo@gnu.org>
25233
25234 * acconfig.h, configure.in:
25235 Have configure build version string instead of relying on ANSI string
25236 concatentation.
25237
25238 1999-06-08 Jesse Thilo <jthilo@gnu.org>
25239
25240 * doc/bison.1:
25241 Dropped mention of `+' for long-named options.
25242
25243 1999-05-30 Jesse Thilo <jthilo@gnu.org>
25244
25245 * src/files.c: Added <unistd.h> for unlink().
25246
25247 * src/Makefile.am, src/system.h:
25248 I18n fixes.
25249
25250 1999-05-30 Jesse Thilo <jthilo@gnu.org>
25251
25252 * README: Added a FAQ list.
25253
25254 * configure.in, acconfig.h:
25255 I18n fixes.
25256
25257 1999-05-30 Jesse Thilo <jthilo@gnu.org>
25258
25259 * doc/FAQ, doc/Makefile.am:
25260 Added a FAQ list.
25261
25262 1999-05-19 Jesse Thilo <jthilo@gnu.org>
25263
25264 * src/alloc.h, src/symtab.h, src/version.c:
25265 Protected inclusion of "config.h" with HAVE_CONFIG_H.
25266
25267 1999-04-18 Jesse Thilo <jthilo@gnu.org>
25268
25269 * src/.cvsignore, src/Makefile.am:
25270 Reorganized: sources in `src', documentation in `doc'.
25271
25272 * src/lex.c (literalchar):
25273 fixed the code for escaping double quotes (thanks
25274 Jonathan Czisny.)
25275
25276 1999-04-18 Jesse Thilo <jthilo@gnu.org>
25277
25278 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
25279 Adjusted paths to reflect directory reorganization.
25280
25281 1999-04-18 Jesse Thilo <jthilo@gnu.org>
25282
25283 * doc/.cvsignore, doc/Makefile.am:
25284 Reorganized: sources in `src', documentation in `doc'.
25285
25286 1999-04-18 Jesse Thilo <jthilo@gnu.org>
25287
25288 * configure.in:
25289 Updated AC_INIT file to reflect directory reorganization.
25290
25291 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
25292 Reorganized: sources in `src', documentation in `doc'.
25293
25294 1999-04-13 Jesse Thilo <jthilo@gnu.org>
25295
25296 * src/allocate.c:
25297 Don't declare calloc() and realloc() if not necessary.
25298
25299 1999-04-13 Jesse Thilo <jthilo@gnu.org>
25300
25301 * configure.in, acconfig.h, acinclude.m4:
25302 Don't declare calloc() and realloc() if not necessary.
25303
25304 1999-03-23 Jesse Thilo <jthilo@gnu.org>
25305
25306 * po/.cvsignore: Added i18n support.
25307
25308 1999-03-23 Jesse Thilo <jthilo@gnu.org>
25309
25310 * acconfig.h, configure.in, Makefile.am:
25311 Added i18n support.
25312
25313 1999-03-22 Jesse Thilo <jthilo@gnu.org>
25314
25315 * src/bison.s1: Fixed #line numbers.
25316
25317 1999-03-15 Jesse Thilo <jthilo@gnu.org>
25318
25319 * po/es.po, po/fr.po, po/nl.po, po/de.po:
25320 Added PO files from Translation Project.
25321
25322 1999-03-03 Jesse Thilo <jthilo@gnu.org>
25323
25324 * Makefile.am:
25325 Added support for non-ANSI compilers (ansi2knr).
25326
25327 1999-02-16 Jesse Thilo <jthilo@gnu.org>
25328
25329 * configure.in: Bumped version number to 1.27.
25330
25331 * Makefile.am:
25332 Added `bison.simple' to list of files removed by `make distclean'.
25333
25334 1999-02-12 Jesse Thilo <jthilo@gnu.org>
25335
25336 * src/files.c, src/files.h:
25337 Defined locations of parser files in config.h instead of Makefile.
25338
25339 1999-02-12 Jesse Thilo <jthilo@gnu.org>
25340
25341 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
25342 Defined locations of parser files in config.h instead of Makefile.
25343
25344 1999-02-09 Jesse Thilo <jthilo@gnu.org>
25345
25346 * Makefile.am:
25347 Removed inappropriate use of $< macro.
25348
25349 1999-02-05 Jesse Thilo <jthilo@gnu.org>
25350
25351 * po/Makefile.in.in, po/POTFILES.in:
25352 Add `po' directory skeleton.
25353
25354 1999-01-27 Jesse Thilo <jthilo@gnu.org>
25355
25356 * README: Document help-bison list.
25357
25358 * configure.in: Add check for mkstemp().
25359
25360 1999-01-20 Jesse Thilo <jthilo@gnu.org>
25361
25362 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
25363 Hush a few compiler warnings.
25364
25365 * src/files.c:
25366 Add tryclose(), which verifies that fclose was successful.
25367 Hush a couple of compiler warnings.
25368
25369 1999-01-20 Jesse Thilo <jthilo@gnu.org>
25370
25371 * Makefile.am, OChangeLog:
25372 ChangeLog is now automatically generated. Include the old version as
25373 OChangeLog.
25374
25375 1999-01-14 Jesse Thilo <jthilo@gnu.org>
25376
25377 * 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:
25378 Update FSF address.
25379
25380 1999-01-14 Jesse Thilo <jthilo@gnu.org>
25381
25382 * doc/bison.texinfo: Fix formatting glitch.
25383
25384 * doc/bison.texinfo: Update FSF address.
25385
25386 1999-01-14 Jesse Thilo <jthilo@gnu.org>
25387
25388 * acconfig.h: Update FSF address.
25389
25390 1999-01-08 Jesse Thilo <jthilo@gnu.org>
25391
25392 * src/system.h:
25393 Don't define PACKAGE here, since config.h defines it.
25394
25395 1998-12-30 Jesse Thilo <jthilo@gnu.org>
25396
25397 * src/reader.c: Update copyright date.
25398
25399 * src/main.c:
25400 Ditch sprintf to statically-sized buffers in fatal/warn functions in
25401 favor of output directly to stderr (avoids buffer overruns).
25402
25403 * src/reader.c: Some checks for premature EOF.
25404
25405 * 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:
25406 Use prototypes if the compiler understands them.
25407
25408 * src/files.c: Honor TMPDIR on Unix hosts.
25409 Use prototypes if the compiler understands them.
25410
25411 * src/reader.c:
25412 Fix a couple of buffer overrun bugs.
25413 Use prototypes if the compiler understands them.
25414
25415 * src/system.h: Include unistd.h and ctype.h.
25416 Use #ifdef instead of #if for NLS symbols.
25417
25418 1998-12-30 Jesse Thilo <jthilo@gnu.org>
25419
25420 * doc/bison.texinfo:
25421 Delete comment "consider using @set for edition number, etc..." since
25422 we now are doing so.
25423
25424 1998-12-30 Jesse Thilo <jthilo@gnu.org>
25425
25426 * configure.in:
25427 Use prototypes if the compiler understands them.
25428
25429 * NEWS: Document 1.26 highlights.
25430
25431 * Makefile.am: Require Automake 1.3 or later.
25432
25433 * acconfig.h:
25434 Use prototypes if the compiler understands them.
25435
25436 1998-12-29 Jesse Thilo <jthilo@gnu.org>
25437
25438 * src/version.c:
25439 Use VERSION symbol from automake for version number.
25440
25441 1998-12-29 Jesse Thilo <jthilo@gnu.org>
25442
25443 * acconfig.h, configure.in, version.cin:
25444 Use VERSION symbol from automake for version number.
25445
25446 1998-11-28 Jesse Thilo <jthilo@gnu.org>
25447
25448 * Makefile.am:
25449 Distribute original version of simple parser (bison.s1), not built
25450 version (bison.simple).
25451
25452 1998-11-28 Jesse Thilo <jthilo@gnu.org>
25453
25454 * doc/bison.texinfo: Add info dir entry.
25455
25456 * doc/bison.texinfo:
25457 Let automake put version number into documentation.
25458
25459 1998-11-26 Jesse Thilo <jthilo@gnu.org>
25460
25461 * src/bison.cld, src/build.com, src/vmshlp.mar:
25462 Add non-RCS files from /gd/gnu/bison.
25463
25464 1998-11-26 Jesse Thilo <jthilo@gnu.org>
25465
25466 * doc/bison.1:
25467 Document the BISON_HAIRY and BISON_SIMPLE variables.
25468
25469 1998-11-25 Jesse Thilo <jthilo@gnu.org>
25470
25471 * src/version.c: Build version.c automatically.
25472
25473 * src/reader.c:
25474 Fix token numbering (used to start at 258, not 257).
25475
25476 * src/system.h: Include config.h.
25477
25478 * src/getargs.c: Update bug report address.
25479
25480 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
25481 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
25482
25483 1998-11-25 Jesse Thilo <jthilo@gnu.org>
25484
25485 * Makefile.am:
25486 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
25487
25488 * configure.in, version.cin:
25489 Build version.c automatically.
25490
25491 * AUTHORS: Add AUTHORS file.
25492
25493 * README: Update bug report address.
25494
25495 * bison.simple:
25496 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
25497
25498 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
25499 Add automake stuff.
25500
25501 1998-11-25 Jesse Thilo <jthilo@gnu.org>
25502
25503 * doc/bison.texinfo: Clean up some formatting.
25504
25505 1998-05-05 Richard Stallman <rms@gnu.org>
25506
25507 * doc/bison.texinfo:
25508 Explain better why to make a pure parser.
25509
25510 1998-01-05 Richard Stallman <rms@gnu.org>
25511
25512 * src/files.c (openfiles):
25513 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
25514 find a temporary directory, if possible. Do not unlink files while
25515 they are open.
25516
25517 1997-08-25 Richard Stallman <rms@gnu.org>
25518
25519 * src/reader.c (stack_offset;):
25520 Change some warni to warns.
25521
25522 * src/lex.c (literalchar): Use warns, not warni.
25523
25524 1997-06-28 Richard Stallman <rms@gnu.org>
25525
25526 * src/bison.s1: Add a Bison version comment.
25527
25528 * src/main.c (fatal, warn, berror):
25529 Use program_name.
25530
25531 1997-06-28 Richard Stallman <rms@gnu.org>
25532
25533 * Makefile.in (bison_version): New variable.
25534 (dist): Use that variable.
25535 (bison.s1): Substitute the Bison version into bison.simple.
25536
25537 * bison.simple: Add a Bison version comment.
25538
25539 1997-06-18 Richard Stallman <rms@gnu.org>
25540
25541 * src/main.c (fatal, warn, berror):
25542 Make error messages standard.
25543 (toomany): Improve error message text.
25544
25545 * 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:
25546 new.h renamed to alloc.h.
25547
25548 1997-06-18 Richard Stallman <rms@gnu.org>
25549
25550 * Makefile.in: new.h renamed to alloc.h.
25551
25552 1997-05-24 Richard Stallman <rms@gnu.org>
25553
25554 * src/lex.c (literalchar):
25555 Fix the code for escaping \, " and '.
25556
25557 (lex): Avoid trouble when there are many chars
25558 to discard in a char literal with just several chars in it.
25559
25560 1997-05-17 Richard Stallman <rms@gnu.org>
25561
25562 * src/bison.s1:
25563 Use malloc, if using alloca is troublesome.
25564 (YYSTACK_USE_ALLOCA): New flag macro.
25565 Define it for some systems and compilers.
25566 (YYSTACK_ALLOC): New macro.
25567 (yyparse): Use YYSTACK_ALLOC to allocate stack.
25568 If it was malloc'd, free it.
25569
25570 1997-05-17 Richard Stallman <rms@gnu.org>
25571
25572 * bison.simple:
25573 Use malloc, if using alloca is troublesome.
25574 (YYSTACK_USE_ALLOCA): New flag macro.
25575 Define it for some systems and compilers.
25576 (YYSTACK_ALLOC): New macro.
25577 (yyparse): Use YYSTACK_ALLOC to allocate stack.
25578 If it was malloc'd, free it.
25579
25580 1997-04-23 Richard Stallman <rms@gnu.org>
25581
25582 * src/bison.s1:
25583 (alloca) [__hpux]: Always define as __builtin_alloca.
25584
25585 1997-04-23 Richard Stallman <rms@gnu.org>
25586
25587 * bison.simple:
25588 (alloca) [__hpux]: Always define as __builtin_alloca.
25589
25590 1997-04-22 Richard Stallman <rms@gnu.org>
25591
25592 * src/bison.s1:
25593 [__hpux]: Include alloca.h (right for HPUX 10)
25594 instead of declaring alloca (right for HPUX 9).
25595
25596 * src/bison.s1 (__yy_memcpy):
25597 Declare arg `count' as unsigned int.
25598 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
25599
25600 1997-04-22 Richard Stallman <rms@gnu.org>
25601
25602 * bison.simple:
25603 [__hpux]: Include alloca.h (right for HPUX 10)
25604 instead of declaring alloca (right for HPUX 9).
25605
25606 * bison.simple (__yy_memcpy):
25607 Declare arg `count' as unsigned int.
25608 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
25609
25610 1997-01-03 Richard Stallman <rms@gnu.org>
25611
25612 * src/allocate.c: [__STDC__ or _MSC_VER]:
25613 Declare calloc and realloc to return void *.
25614
25615 1997-01-02 Richard Stallman <rms@gnu.org>
25616
25617 * src/system.h:
25618 [_MSC_VER]: Include stdlib.h and process.h.
25619 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
25620
25621 * src/main.c (main): Return FAILURE as a value.
25622 (printable_version): Declare arg as int, not char.
25623
25624 1997-01-02 Richard Stallman <rms@gnu.org>
25625
25626 * Makefile.in (dist):
25627 Explicitly check for symlinks, and copy them.
25628
25629 1996-12-19 Richard Stallman <rms@gnu.org>
25630
25631 * src/files.c:
25632 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
25633
25634 1996-12-18 Paul Eggert <eggert@gnu.org>
25635
25636 * src/bison.s1 (yyparse):
25637 If __GNUC__ and YYPARSE_PARAM are both defined,
25638 declare yyparse to have a void * argument.
25639
25640 1996-12-18 Paul Eggert <eggert@gnu.org>
25641
25642 * bison.simple (yyparse):
25643 If __GNUC__ and YYPARSE_PARAM are both defined,
25644 declare yyparse to have a void * argument.
25645
25646 1996-12-17 Richard Stallman <rms@gnu.org>
25647
25648 * src/reduce.c (nbits): Add some casts.
25649
25650 1996-08-12 Richard Stallman <rms@gnu.org>
25651
25652 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
25653
25654 1996-08-12 Richard Stallman <rms@gnu.org>
25655
25656 * bison.simple: Test _MSDOS as well as _MSDOS_.
25657
25658 1996-07-31 Richard Stallman <rms@gnu.org>
25659
25660 * src/bison.s1:
25661 [__sun && __i386]: Include alloca.h.
25662
25663 1996-07-31 Richard Stallman <rms@gnu.org>
25664
25665 * bison.simple:
25666 [__sun && __i386]: Include alloca.h.
25667
25668 1996-07-30 Richard Stallman <rms@gnu.org>
25669
25670 * src/bison.s1: Comment change.
25671
25672 * src/bison.s1: Test _MSDOS_, not MSDOS.
25673
25674 1996-07-30 Richard Stallman <rms@gnu.org>
25675
25676 * bison.simple: Comment change.
25677
25678 * bison.simple: Test _MSDOS_, not MSDOS.
25679
25680 1996-06-01 Richard Stallman <rms@gnu.org>
25681
25682 * 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:
25683 Insert `_' macro around many string constants.
25684
25685 * src/main.c:
25686 Insert `_' macro around many string constants.
25687
25688 (main): Call setlocale, bindtextdomain and textdomain.
25689
25690 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
25691 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
25692 [ENABLE_NLS]: Include libintl.h.
25693 [ENABLE_NLS] (gettext): Define.
25694 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
25695 (N_, PACKAGE, LOCALEDIR): New macros.
25696
25697 1996-06-01 Richard Stallman <rms@gnu.org>
25698
25699 * POTFILES.in: New file.
25700
25701 * Makefile.in (allocate.o):
25702 Define target explicitly.
25703
25704 * Makefile.in (CFLAGS): Set to @CFLAGS@.
25705 (LDFLAGS): Set to @LDFLAGS@.
25706 (configure): Run autoconf only if preceding `cd' succeeds.
25707 (bison.s1): Redirect output to temporary file then move the
25708 temporary to the target, rather than redirecting directly to bison.s1.
25709 (clean): Remove config.status and config.log.
25710 (distclean): Don't remove config.status here.
25711
25712 1996-05-12 Richard Stallman <rms@gnu.org>
25713
25714 * src/bison.s1:
25715 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
25716
25717 1996-05-12 Richard Stallman <rms@gnu.org>
25718
25719 * bison.simple:
25720 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
25721
25722 1996-05-11 Richard Stallman <rms@gnu.org>
25723
25724 * src/bison.s1 (__yy_memcpy):
25725 Really reorder the args, as was supposedly done on Feb 14 1995.
25726 (yyparse): Calls changed accordingly.
25727
25728 1996-05-11 Richard Stallman <rms@gnu.org>
25729
25730 * Makefile.in (dist): Don't use $(srcdir).
25731
25732 * bison.simple (__yy_memcpy):
25733 Really reorder the args, as was supposedly done on Feb 14 1995.
25734 (yyparse): Calls changed accordingly.
25735
25736 1996-01-27 Richard Stallman <rms@gnu.org>
25737
25738 * src/output.c (output_rule_data):
25739 Test YYERROR_VERBOSE in the conditional
25740 around the definition of ttyname.
25741
25742 1995-12-29 Richard Stallman <rms@gnu.org>
25743
25744 * src/bison.s1:
25745 Fix line numbers in #line commands.
25746
25747 1995-12-29 Richard Stallman <rms@gnu.org>
25748
25749 * bison.simple:
25750 Fix line numbers in #line commands.
25751
25752 1995-12-27 Richard Stallman <rms@gnu.org>
25753
25754 * src/bison.s1 (YYPARSE_PARAM_DECL):
25755 In C++, make it always null.
25756 (YYPARSE_PARAM_ARG): New macro.
25757 (yyparse): Use YYPARSE_PARAM_ARG.
25758
25759 1995-12-27 Richard Stallman <rms@gnu.org>
25760
25761 * bison.simple (YYPARSE_PARAM_DECL):
25762 In C++, make it always null.
25763 (YYPARSE_PARAM_ARG): New macro.
25764 (yyparse): Use YYPARSE_PARAM_ARG.
25765
25766 1995-11-29 Richard Stallman <rms@gnu.org>
25767
25768 * doc/bison.texinfo:
25769 Describe literal string tokens, %raw, %no_lines, %token_table.
25770
25771 1995-11-29 Daniel Hagerty <hag@gnu.org>
25772
25773 * doc/bison.texinfo: Fixed update date
25774
25775 1995-10-16 Richard Stallman <rms@gnu.org>
25776
25777 * src/version.c: Version 1.25.
25778
25779 1995-10-16 Richard Stallman <rms@gnu.org>
25780
25781 * NEWS: *** empty log message ***
25782
25783 1995-10-16 Richard Stallman <rms@gnu.org>
25784
25785 * doc/bison.1, doc/bison.rnh:
25786 Add new options.
25787
25788 1995-10-15 Richard Stallman <rms@gnu.org>
25789
25790 * src/vmsgetargs.c, src/getargs.c:
25791 Added -n, -k, and -raw switches.
25792 (noparserflag, toknumflag, rawtoknumflag): New variables.
25793
25794 * src/symtab.h (SALIAS):
25795 New #define for adding aliases to %token.
25796 (struct bucket): Added `alias' field.
25797
25798 * src/reduce.c (reduce_grammar):
25799 Revise error message.
25800 (print_notices): Remove final `.' from error message.
25801
25802 * src/reader.c (reader_output_yylsp):
25803 New function.
25804 (readgram): Use `#if 0' around code that accepted %command
25805 inside grammar rules: The documentation doesn't allow it,
25806 and it will fail since the %command processors scan for the next %.
25807 (parse_token_decl): Extended the %token
25808 declaration to allow a multi-character symbol as an alias.
25809 (parse_thong_decl): New function.
25810 (read_declarations): Added %thong declarations.
25811 (read_declarations): Handle NOOP to deal with allowing
25812 % declarations as another means to specify the flags.
25813 (readgram): Allow %prec prior to semantics embedded in a rule.
25814 (skip_to_char, read_declarations, copy_definition)
25815 (parse_token_decl, parse_start_decl, parse_type_decl)
25816 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
25817 (get_type_name, copy_guard, copy_action, readgram)
25818 (get_type, packsymbols): Revised most error messages.
25819 Changed `fatal' to `warnxxx' to avoid aborting for error.
25820 Revised and use multiple warnxxx functions to avoid using VARARGS1.
25821 (read_declarations): Improve the error message for
25822 an invalid character. Do not abort.
25823 (read_declarations, copy_guard, copy_action): Use
25824 printable_version to avoid unprintable characters in printed output.
25825 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
25826 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
25827 Allow the type of a non-terminal can be given
25828 more than once, as long as all specifications give the same type.
25829
25830 * src/output.c:
25831 (output_headers, output_trailers, output, output_gram)
25832 (output_rule_data): Implement noparserflag variable.
25833 Implement toknumflag variable.
25834 (output): Call reader_output_yylsp to output LTYPESTR.
25835
25836 * src/main.c (main):
25837 If reader sees an error, don't process the grammar.
25838 (fatals): Updated to not use VARARGS1.
25839 (printable_version, int_to_string, warn, warni, warns, warnss)
25840 (warnsss): New error reporting functions. Avoid abort for error.
25841
25842 * src/lex.h:
25843 Added THONG and NOOP for alias processing.
25844 Added SETOPT for the new code that allows setting options with %flags.
25845
25846 * src/lex.c:
25847 Include getopt.h. Add some extern decls.
25848 (safegetc): New function to deal with EOF gracefully.
25849 (literalchar); new function to deal with reading \ escapes.
25850 (lex): Use literalchar.
25851 (lex): Implemented "..." tokens.
25852 (literalchar, lex, parse_percent_token): Made tokenbuffer
25853 always contain the token. This includes growing the token
25854 buffer while reading an integer.
25855 (parse_percent_token): Replaced if-else statement with percent_table.
25856 (parse_percent_token): Added % declarations as another
25857 way to specify the flags -n, -l, and -r. Also added hooks for
25858 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
25859 major changes to files.c.
25860 (lex) Retain in the incoming stream a character following
25861 an incorrect '/'.
25862 (skip_white_space, lex): Revised most error messages
25863 and changed fatal to warn to avoid aborting.
25864 (percent_table): Added %thong declarations.
25865
25866 * src/gram.h: Comment changes.
25867
25868 * src/files.c (openfiles, open_extra_files, done):
25869 Add faction flag
25870 and actfile file. Handle noparserflag. Both for -n switch.
25871
25872 * src/conflicts.c (resolve_sr_conflict):
25873 Remove use of alloca.
25874
25875 1995-06-01 Jim Meyering <meyering@gnu.org>
25876
25877 * doc/bison.texinfo: *** empty log message ***
25878
25879 1995-05-06 Richard Stallman <rms@gnu.org>
25880
25881 * src/bison.s1: Comment change.
25882
25883 1995-05-06 Richard Stallman <rms@gnu.org>
25884
25885 * bison.simple: Comment change.
25886
25887 1995-05-03 Richard Stallman <rms@gnu.org>
25888
25889 * src/version.c: Version now 1.24.
25890
25891 * src/bison.s1: Change distribution terms.
25892
25893 * src/version.c: Version now 1.23.
25894
25895 1995-05-03 Richard Stallman <rms@gnu.org>
25896
25897 * doc/bison.texinfo:
25898 Rewrite "Conditions for Using Bison".
25899 Update version to 1.24.
25900
25901 1995-05-03 Richard Stallman <rms@gnu.org>
25902
25903 * bison.simple: Change distribution terms.
25904
25905 1995-02-23 Richard Stallman <rms@gnu.org>
25906
25907 * src/files.c: Test __VMS_POSIX as well as VMS.
25908
25909 1995-02-14 Jim Meyering <meyering@gnu.org>
25910
25911 * src/bison.s1 (__yy_memcpy):
25912 Renamed from __yy_bcopy to avoid
25913 confusion. Reverse FROM and TO arguments to be consistent with
25914 those of memcpy.
25915
25916 1995-02-14 Jim Meyering <meyering@gnu.org>
25917
25918 * bison.simple (__yy_memcpy):
25919 Renamed from __yy_bcopy to avoid
25920 confusion. Reverse FROM and TO arguments to be consistent with
25921 those of memcpy.
25922
25923 1994-11-10 David J. MacKenzie <djm@gnu.org>
25924
25925 * NEWS: reformat
25926
25927 * NEWS: New file.
25928
25929 * Makefile.in (DISTFILES): Include NEWS.
25930
25931 * Makefile.in (DISTFILES):
25932 Include install-sh, not install.sh.
25933
25934 * configure.in: Update to Autoconf v2 macro names.
25935
25936 1994-10-05 David J. MacKenzie <djm@gnu.org>
25937
25938 * Makefile.in: fix typo
25939
25940 * Makefile.in (prefix, exec_prefix):
25941 Let configure set them.
25942
25943 1994-09-28 David J. MacKenzie <djm@gnu.org>
25944
25945 * Makefile.in: Set datadir to $(prefix)/share.
25946
25947 1994-09-15 Richard Stallman <rms@gnu.org>
25948
25949 * src/bison.s1:
25950 Update copyright notice and GPL version.
25951
25952 1994-09-15 Richard Stallman <rms@gnu.org>
25953
25954 * bison.simple:
25955 Update copyright notice and GPL version.
25956
25957 1994-07-12 Richard Stallman <rms@gnu.org>
25958
25959 * src/reduce.c, src/reader.c:
25960 entered into RCS
25961
25962 1994-05-05 David J. MacKenzie <djm@gnu.org>
25963
25964 * Makefile.in: entered into RCS
25965
25966 1994-03-26 Richard Stallman <rms@gnu.org>
25967
25968 * src/bison.s1: entered into RCS
25969
25970 1994-03-26 Richard Stallman <rms@gnu.org>
25971
25972 * bison.simple: entered into RCS
25973
25974 1994-03-25 Richard Stallman <rms@gnu.org>
25975
25976 * src/main.c: entered into RCS
25977
25978 1994-03-24 Richard Stallman <rms@gnu.org>
25979
25980 * src/conflicts.c: entered into RCS
25981
25982 1994-01-02 Richard Stallman <rms@gnu.org>
25983
25984 * Makefile.in: *** empty log message ***
25985
25986 1993-11-21 Richard Stallman <rms@gnu.org>
25987
25988 * src/bison.s1: *** empty log message ***
25989
25990 1993-11-21 Richard Stallman <rms@gnu.org>
25991
25992 * doc/bison.texinfo: entered into RCS
25993
25994 * doc/bison.texinfo: *** empty log message ***
25995
25996 1993-11-21 Richard Stallman <rms@gnu.org>
25997
25998 * bison.simple: *** empty log message ***
25999
26000 1993-10-25 David J. MacKenzie <djm@gnu.org>
26001
26002 * doc/bison.texinfo: *** empty log message ***
26003
26004 1993-10-19 Richard Stallman <rms@gnu.org>
26005
26006 * src/bison.s1: *** empty log message ***
26007
26008 1993-10-19 Richard Stallman <rms@gnu.org>
26009
26010 * bison.simple: *** empty log message ***
26011
26012 1993-10-14 Richard Stallman <rms@gnu.org>
26013
26014 * src/bison.s1: *** empty log message ***
26015
26016 1993-10-14 Richard Stallman <rms@gnu.org>
26017
26018 * bison.simple: *** empty log message ***
26019
26020 1993-09-14 David J. MacKenzie <djm@gnu.org>
26021
26022 * doc/bison.texinfo: *** empty log message ***
26023
26024 1993-09-13 Noah Friedman <friedman@gnu.org>
26025
26026 * Makefile.in: *** empty log message ***
26027
26028 1993-09-10 Richard Stallman <rms@gnu.org>
26029
26030 * src/conflicts.c: *** empty log message ***
26031
26032 * src/system.h: entered into RCS
26033
26034 1993-09-10 Richard Stallman <rms@gnu.org>
26035
26036 * doc/bison.1: entered into RCS
26037
26038 1993-09-06 Noah Friedman <friedman@gnu.org>
26039
26040 * src/version.c: entered into RCS
26041
26042 1993-09-06 Noah Friedman <friedman@gnu.org>
26043
26044 * Makefile.in: *** empty log message ***
26045
26046 1993-07-30 David J. MacKenzie <djm@gnu.org>
26047
26048 * Makefile.in: *** empty log message ***
26049
26050 1993-07-24 Richard Stallman <rms@gnu.org>
26051
26052 * src/bison.s1: *** empty log message ***
26053
26054 1993-07-24 Richard Stallman <rms@gnu.org>
26055
26056 * bison.simple: *** empty log message ***
26057
26058 1993-07-08 David J. MacKenzie <djm@gnu.org>
26059
26060 * Makefile.in: *** empty log message ***
26061
26062 1993-07-04 Richard Stallman <rms@gnu.org>
26063
26064 * src/bison.s1: *** empty log message ***
26065
26066 1993-07-04 Richard Stallman <rms@gnu.org>
26067
26068 * bison.simple: *** empty log message ***
26069
26070 1993-06-26 David J. MacKenzie <djm@gnu.org>
26071
26072 * src/getargs.c: entered into RCS
26073
26074 1993-06-26 David J. MacKenzie <djm@gnu.org>
26075
26076 * doc/bison.texinfo: *** empty log message ***
26077
26078 * doc/bison.1: New file.
26079
26080 1993-06-25 Richard Stallman <rms@gnu.org>
26081
26082 * src/getargs.c: New file.
26083
26084 1993-06-16 Richard Stallman <rms@gnu.org>
26085
26086 * src/bison.s1: *** empty log message ***
26087
26088 1993-06-16 Richard Stallman <rms@gnu.org>
26089
26090 * bison.simple: *** empty log message ***
26091
26092 1993-06-03 Richard Stallman <rms@gnu.org>
26093
26094 * src/bison.s1: New file.
26095
26096 1993-06-03 Richard Stallman <rms@gnu.org>
26097
26098 * doc/bison.texinfo: *** empty log message ***
26099
26100 1993-06-03 Richard Stallman <rms@gnu.org>
26101
26102 * bison.simple: New file.
26103
26104 1993-05-19 Richard Stallman <rms@gnu.org>
26105
26106 * doc/bison.texinfo: New file.
26107
26108 1993-05-07 Noah Friedman <friedman@gnu.org>
26109
26110 * Makefile.in: *** empty log message ***
26111
26112 1993-04-28 Noah Friedman <friedman@gnu.org>
26113
26114 * src/reader.c: *** empty log message ***
26115
26116 1993-04-23 Noah Friedman <friedman@gnu.org>
26117
26118 * src/alloc.h: entered into RCS
26119
26120 1993-04-20 David J. MacKenzie <djm@gnu.org>
26121
26122 * src/version.c: *** empty log message ***
26123
26124 * src/files.c, src/allocate.c:
26125 entered into RCS
26126
26127 * src/reader.c: *** empty log message ***
26128
26129 * src/lex.c: entered into RCS
26130
26131 * src/conflicts.c: New file.
26132
26133 * src/symtab.c: entered into RCS
26134
26135 * src/alloc.h: New file.
26136
26137 * src/LR0.c: entered into RCS
26138
26139 1993-04-18 Noah Friedman <friedman@gnu.org>
26140
26141 * src/reader.c: New file.
26142
26143 * src/version.c: *** empty log message ***
26144
26145 1993-04-18 Noah Friedman <friedman@gnu.org>
26146
26147 * Makefile.in: *** empty log message ***
26148
26149 1993-04-17 Noah Friedman <friedman@gnu.org>
26150
26151 * Makefile.in: *** empty log message ***
26152
26153 1993-04-15 Richard Stallman <rms@gnu.org>
26154
26155 * src/main.c, src/files.c:
26156 New file.
26157
26158 1993-04-15 Noah Friedman <friedman@gnu.org>
26159
26160 * configure.in: entered into RCS
26161
26162 * configure.in: *** empty log message ***
26163
26164 * configure.in: New file.
26165
26166 1993-04-14 Richard Stallman <rms@gnu.org>
26167
26168 * Makefile.in: New file.
26169
26170 1993-04-13 Richard Stallman <rms@gnu.org>
26171
26172 * src/version.c: New file.
26173
26174 1993-03-25 Richard Stallman <rms@gnu.org>
26175
26176 * src/output.c: entered into RCS
26177
26178 1992-09-25 Richard Stallman <rms@gnu.org>
26179
26180 * configure.bat: entered into RCS
26181
26182 1992-06-22 Richard Stallman <rms@gnu.org>
26183
26184 * src/vmsgetargs.c: entered into RCS
26185
26186 1992-06-22 Richard Stallman <rms@gnu.org>
26187
26188 * doc/bison.rnh: entered into RCS
26189
26190 1992-04-20 David J. MacKenzie <djm@gnu.org>
26191
26192 * README: entered into RCS
26193
26194 1992-01-22 Richard Stallman <rms@gnu.org>
26195
26196 * src/machine.h: entered into RCS
26197
26198 1991-12-21 Richard Stallman <rms@gnu.org>
26199
26200 * src/lalr.c, src/closure.c:
26201 entered into RCS
26202
26203 1991-12-20 Richard Stallman <rms@gnu.org>
26204
26205 * src/state.h: entered into RCS
26206
26207 1991-12-18 Richard Stallman <rms@gnu.org>
26208
26209 * src/print.c, src/nullable.c, src/derives.c:
26210 entered into RCS
26211
26212 1991-11-03 David J. MacKenzie <djm@gnu.org>
26213
26214 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
26215 entered into RCS
26216
26217 1988-09-09 Richard Stallman <rms@gnu.org>
26218
26219 * src/bison.hairy: entered into RCS
26220
26221 1987-12-16 Richard Stallman <rms@gnu.org>
26222
26223 * REFERENCES: entered into RCS
26224
26225
26226 -----
26227
26228 Copyright (C) 1987-1988, 1991-2011 Free Software Foundation,
26229 Inc.
26230
26231 Copying and distribution of this file, with or without
26232 modification, are permitted provided the copyright notice and this
26233 notice are preserved.