1 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
4 resulting parsers are compilable with C++.
6 2003-12-23 Paul Eggert <eggert@twinsun.com>
8 * config/depcomp, config/install-sh: Sync with Automake 1.8.
9 * src/output.c (output_skeleton): Rename local var.
10 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
11 Bison tokens, as this runs afoul of the 2003-10-07 change that
12 disallowed NUL bytes in character constants or string literals.
14 * tests/local.at: Require Autoconf 2.59's Autotest.
15 * tests/testsuite.at: Don't include local.at, since we now assume
16 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
18 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
19 multiple inclusion warnings.
21 2003-12-02 Akim Demaille <akim@epita.fr>
23 * doc/bison.texinfo (How Can I Reset the Parser): More about start
27 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
29 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
31 2003-10-07 Paul Eggert <eggert@twinsun.com>
33 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
34 if testsuite doesn't exist.
36 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
37 literals, unfortunately.
38 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
39 Complain about NUL bytes in character constants or string literals.
41 2003-10-05 Paul Eggert <eggert@twinsun.com>
43 * NEWS: Don't document %no-default-prec, as it's still
45 * doc/bison.texinfo: Document %no-default-prec only if
46 the defaultprec flag is set. Normally it's not.
48 2003-10-04 Paul Eggert <eggert@twinsun.com>
50 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
51 non-modifiable lvalue, instead of a modifiable one.
52 * doc/bison.texinfo (Actions): Document that $$ can
53 be assigned to. Do not claim that $$ and $N are
54 array element references: user code should not rely on this.
56 2003-10-01 Paul Eggert <eggert@twinsun.com>
58 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
59 (grammar_declaration): Use it.
60 * src/scan-gram.l: New token %no-default-prec.
61 * tests/conflicts.at: Revamp tests to use %no-default-prec.
62 * NEWS, doc/bison.texinfo: Document the above.
64 2003-10-01 Akim Demaille <akim@epita.fr>
66 VCG no longer supports long_straight_phase.
68 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
69 * src/print_graph.c (print_graph): Adjust.
71 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
72 and Paul Eggert <eggert@twinsun.com>
74 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
75 Table of Symbols): Document %default-prec.
76 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
77 (grammar_declaration): Set default_prec on %default-prec.
78 * src/scan-gram.l (%default-prec): New token.
79 * src/reader.h (default_prec): New flag.
80 * src/reader.c: Likewise.
81 (packgram): Handle it.
82 * tests/conflicts.at (%default-prec without %prec,
83 %default-prec with %prec, %default-prec 1): New tests.
85 2003-09-30 Paul Eggert <eggert@twinsun.com>
87 * tests/testsuite.at: Include local.at, not input.at, fixing
88 a typo in the 2003-08-25 patch.
90 2003-08-27 Akim Demaille <akim@epita.fr>
92 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
95 2003-08-26 Akim Demaille <akim@epita.fr>
97 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
98 "<\#" to avoid magic from Gnus when posting parts of this script.
100 2003-08-26 Akim Demaille <akim@epita.fr>
102 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
103 (Parser::parse): here.
104 Adjust: nerrs and errstatus is now replaced by...
105 (Parser::nerrs_, Parser::errstatus_): New.
107 2003-08-25 Akim Demaille <akim@epita.fr>
109 * config/announce-gen, Makefile.cfg: New.
110 * Makefile.am: Adjust.
111 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
112 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
114 2003-08-25 Akim Demaille <akim@epita.fr>
116 When reducing initial empty rules, Bison parser read an initial
117 location that is not defined. This results in garbage, and that
118 affects Bison's own parser. Therefore we need (i) to extend Bison
119 to support a means to initialize this location, and (ii) to use
120 this CVS Bison to fix CVS Bison's parser.
122 * src/reader.h, reader.c (epilogue_augment): Remove, replace
124 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
125 * src/parse-gram.y: Adjust.
126 (%initial-action): New.
127 (%error-verbose): Since we require CVS Bison, there is no reason
129 * src/scan-gram.l: Adjust.
130 * src/Makefile.am (YACC): New, to make sure we use our own parser.
131 * data/yacc.c (yyparse): Use b4_initial_action.
133 2003-08-25 Akim Demaille <akim@epita.fr>
135 * doc/bison.texinfo: Don't promote stdout for error messages.
137 2003-08-25 Akim Demaille <akim@epita.fr>
139 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
140 From Alexandre Duret-Lutz.
142 2003-08-25 Akim Demaille <akim@epita.fr>
144 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
147 2003-08-25 Akim Demaille <akim@epita.fr>
149 * data/lalr1.cc (Parser::reduce_print_): New.
152 2003-08-25 Akim Demaille <akim@epita.fr>
154 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
155 error recovery loops. This patch is based on
156 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
157 Also, augment the similarity between lalr1.cc and yacc.c.
158 Note: the locations of error recovery rules are not correct yet.
160 * data/lalr1.cc: Comment changes to augment the similarity between
162 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
163 (yyerrlab1): Remove, but where it used to be (now the bottom part of
164 yyerrlab), when hitting EOF, pop the whole stack here instead of
165 merely falling thru the default error handling mechanism.
166 (yyerrorlab): New label, with the old contents of YYERROR,
167 plus the following change: pop the stack of rhs corresponding
168 to the production that invoked YYERROR. That is how Yacc
169 behaves (required by POSIX).
170 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
173 2003-08-25 Akim Demaille <akim@epita.fr>
175 Tune local.at so that people can "autom4te -l autotest calc.at -o
176 calc" for instance, to extract a sub test suite.
178 * tests/testsuite.at: Move the initialization, Autotest version
179 requirement, and AT_TESTED invocation into...
180 * tests/local.at: here.
181 * tests/testsuite.at: Include it for compatibility with Autoconf
183 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
186 2003-08-04 Paul Eggert <eggert@twinsun.com>
188 Rework code slightly to avoid gcc -Wtraditional warnings.
189 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
190 The returned value is now stored in *YY0. All callers changed.
191 * src/output.c (merge_output): Adjust to the above change.
193 2003-07-26 Paul Eggert <eggert@twinsun.com>
195 * data/glr.c (YYASSERT): New macro.
196 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
197 yyresolveStates, yyprocessOneStack):
198 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
199 Derived from a suggestion by Frank Heckenbach.
201 2003-07-25 Paul Eggert <eggert@twinsun.com>
203 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
204 for portability to K&R C (after ansi2knr, presumably). See
205 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
206 by Frank Heckenbach, though I have omitted the structure-initialization
207 part of his glr-knr.diff patch since I recall that the Portable
208 C Compiler didn't require that change.
210 Let the user specify how to allocate and free memory.
211 Derived from a suggestion by Frank Heckenbach in
212 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
213 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
214 All uses of free, malloc, realloc changed to use these macros,
215 and unnecessary casts removed.
216 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
218 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
220 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
221 use s.empty() rather than s == "" to test for empty string; see
222 <http://mail.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
225 2003-06-25 Akim Demaille <akim@epita.fr>
227 * config/depcomp, config/install-sh: Update from masters.
229 2003-06-20 Paul Eggert <eggert@twinsun.com>
231 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
232 and return properly parenthesized result.
233 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
234 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
235 Remove unnecessary parentheses from uses.
236 * doc/bison.texinfo (Location Default Action): Describe the
237 conventions for parentheses.
239 2003-06-19 Paul Eggert <eggert@twinsun.com>
241 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
242 yyreportTree): Do not assume that size_t is the same width as int,
243 when printing sizes. Print sizes using an unsigned format.
244 Problem reported by Frank Heckenbach in
245 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
247 Port to Forte Developer 7 C compiler.
248 * data/glr.c (struct YYLTYPE): If locations are not being used,
249 declare a single dummy member, as empty structs do not conform
251 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
252 the Forte Developer 7 C compiler complains that end-of-loop
255 2003-06-17 Paul Eggert <eggert@twinsun.com>
257 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
258 avoid warnings from picky compilers about redefinition of PARAMS.
260 2003-06-17 Paul Eggert <eggert@twinsun.com>
264 * NEWS: Document 1.875b.
266 * lib/bbitset.h: Do not include config.h; that's the includer's job.
267 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
268 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
269 Don't use 'index' in comments, as it's a builtin fn on some hosts.
270 * lib/bitset_stats.c: Include gettext.h unconditionally, as
271 per recent gettext manual's suggestion.
272 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
273 Use prototypes, not old-style definitions.
274 * lib/lbitset.c (lbitset_unused_clear): Likewise.
275 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
276 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
277 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
278 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
279 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
280 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
281 vbitset_or_and_cmp, vbitset_copy): Likewise.
283 * lib/libiberty.h: Do not include config.h; that's the includer's job.
284 Do not include <stdlib.h>.
285 (PARAMS): Define unconditionally for C89.
286 (ATTRIBUTE_NORETURN): Remove.
287 (ATTRIBUTE_UNUSED): Define unconditionally.
289 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
290 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
291 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
292 * lib/vbitset.c, lib/vbitset.h: New files.
293 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
294 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
297 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
298 `How Can I Reset @code{yyparse}', since texinfo does not allow
299 arbitrary @ in node names.
301 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
302 shouldn't be needed according to the gettext 0.12.1 documentation
303 but which seem to be needed anyway: codeset.m4 glibc21.m4
304 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
305 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
306 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
308 * lib/.cvsignore: Add stdbool.h.
309 * m4/.cvsignore: Add nls.m4, po.m4.
311 Upgrade to CVS gnulib.
312 * stdbool_.h: File renamed from stdbool.h.in.
313 * configure.ac (AM_STDBOOL_H): Invoke this instead of
315 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
316 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
317 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
318 (MOSTLYCLEANFILES): New var.
319 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
320 (stdbool.h): New rule.
321 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
322 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
323 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
324 m4/quote.m4: Upgrade to today's gnulib.
326 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
327 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
329 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
330 yyerror are declared before use; C99 requires this.
332 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
334 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
336 (yyrecoverSyntaxError): Correct the logic for setting and testing
338 Correct comment on handling EOF.
339 Allow states with only a default reduction, rather than failing
340 (I can't quite reconstruct why these were not allowed before).
342 Fixes to avoid problem that $-N rules in GLR parsers can cause
343 buffer overruns, corrupting state.
345 * src/output.c (prepare_rules): Output max_left_semantic_context
347 * src/reader.h (max_left_semantic_context): New variable declaration.
348 * src/scan-gram.l (max_left_semantic_context): Define.
349 (handle_action_dollar): Update max_left_semantic_context.
350 * data/glr.c (YYMAXLEFT): New definition.
351 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
352 (yyresolveAction): Ditto.
354 Fixes to problems with location handling in GLR parsers reported by
355 Frank Heckenbach (2003/06/05).
357 * data/glr.c (YYLTYPE): Make trivial if locations not used.
358 (YYRHSLOC): Add parentheses, and define only if locations used.
359 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
361 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
362 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
364 * tests/cxx-type.at: Exercise location information; update tests
365 to differentiate output with and without locations.
366 Remove forward declarations of yylex and yyerror---caused errors
367 because default YYLTYPE not yet defined.
368 Change semantic actions to compute strings, rather than printing
369 them directly (to test proper passing of semantics values). Change
370 output to prefix notation and update test data and expected results.
371 (yylex): Track locations.
372 (stmtMerge): Return value rather than printing, and include arguments
375 2003-06-03 Paul Eggert <eggert@twinsun.com>
377 Avoid warnings generated by GCC 2.95.4 when Bison is
378 configured with --enable-gcc-warnings.
379 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
380 yy::]b4_parser_class_name[::translate_,
381 yy::Stack::operator[] (unsigned),
382 yy::Stack::operator[] (unsigned) const,
383 yy::Slice::operator[] (unsigned),
384 yy::Slice::operator[] (unsigned) const):
385 Rename local vars to avoid warnings.
386 * tests/glr-regression.at (Improper handling of embedded actions
387 and $-N in GLR parsers): Remove unused local variable from yylex.
388 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
389 (void) as arg when not pure, since we now assume C89 when building
390 Bison. Pacify GCC by using parameter.
392 2003-06-02 Paul Eggert <eggert@twinsun.com>
394 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
395 yy::Location::lines, yy::Location::columns): Rename arguments
396 to avoid shadowing; this removes a warning generated by GCC 3.3.
398 2003-06-01 Paul Eggert <eggert@twinsun.com>
400 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
401 to g++, as GCC 3.3 complains if you do it.
402 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
403 everything that WARNING_CFLAGS has, except omit warnings
404 not suitable for C++.
405 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
406 * tests/atlocal.in (CXXFLAGS): New var.
407 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
409 Fix a GLR parser bug I reported in February; see
410 <http://mail.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
411 The problem was that GLR parsers did not conform to the C standard,
412 because actions like { $1 = $2 + $3; } expanded to expressions
413 that invoked YYFILL in separate subexpressions, and YYFILL assigned
414 to a local variable. The C standard says that expressions
415 like (var = f ()) + (var = f ()) have undefined behavior.
416 Another problem was that GCC sometimes issues warnings that
417 yyfill and its parameters are unused.
419 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
421 (yyfill): New function.
423 (yyuserAction): Change type of yynormal to bool, so that it matches
424 the new yyfill signature. Mark it as possibly unused.
427 Follow up on a bug I reported in February, where a Bison-generated
428 parser can loop. Provide a test case and a fix for yacc.c. I
429 don't have a fix for lalr1.cc or for glr.c, unfortunately.
430 The original bug report is in:
431 <http://mail.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
433 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
434 macro's size was becoming unwieldy.
435 (yyerrlab): Do not discard an empty lookahead symbol, as this
436 might destroy garbage.
437 (yyerrorlab): New label, with the old contents of YYERROR,
438 plus the following change: pop the stack of rhs corresponding
439 to the production that invoked YYERROR. That is how Yacc
440 behaves, and POSIX requires this behavior.
441 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
442 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
443 Define 'alarm' to do nothing if unistd.h is not available.
444 Add a new rule "exp: '-' error;" to test the above change to
445 data/yacc.c. Use 'alarm' to abort any test taking longer than
446 10 seconds, as it's probably looping.
447 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
448 Also, the new yacc.c generates two fewer diagnostics for an
451 2003-05-24 Paul Eggert <eggert@twinsun.com>
453 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
454 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
455 This fixes a problem reported by John Bowman when the Compaq/HP
456 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
458 * data/yacc.c (union yyalloc): Likewise.
459 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
461 Switch from 'int' to 'bool' where that makes sense.
463 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
464 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
465 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
466 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
467 Return or accept bool, not int. All callers changed.
468 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
469 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
470 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
471 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
472 bitset_or_and_cmp_): Likewise.
473 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
474 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
475 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
476 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
477 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
478 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
479 bitset_stats_or_and_cmp): Likewise.
480 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
481 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
482 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
483 ebitset_xor_cmp): Likewise.
484 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
485 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
486 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
487 lbitset_xor_cmp): Likewise.
488 * lib/bbitset.h: Include <stdbool.h>.
489 (struct bitset_vtable): The following members now return bool, not
490 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
491 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
493 * src/conflicts.c (count_rr_conflicts): Likewise.
494 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
496 * lib/ebitset.c (ebitset_obstack_init): Likewise.
497 * lib/lbitset.c (lbitset_obstack_init): Likewise.
498 * src/getargs.c (debug_flag, defines_flag, locations_flag,
499 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
500 graph_flag): Likewise.
501 * src/getargs.h (debug_flag, defines_flag, locations_flag,
502 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
503 graph_flag): Likewise.
504 * src/output.c (error_verbose): Likewise.
505 * src/output.h (error_verbose): Likewise.
506 * src/reader.c (start_flag, typed): Likewise.
507 * src/reader.h (typed): Likewise.
508 * src/getargs.c (LOCATIONS_OPTION): New constant.
509 (long_options, getargs): Use it.
510 * src/lalr.c (build_relations): Use bool, not int.
511 * src/nullable.c (nullable_compute): Likewise.
512 * src/print.c (print_reductions): Likewise.
513 * src/tables.c (action_row, pack_vector): Likewise.
514 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
515 * src/output.c (prepare): Use it.
516 * src/output.c (token_definitions_output,
517 symbol_destructors_output, symbol_destructors_output): Use string,
518 not boolean integer, to keep track of whether to output separator.
519 * src/print_graph.c (print_core): Likewise.
520 * src/state.c (state_rule_lookaheads_print): Likewise.
522 * config/install-sh: Sync from automake 1.7.5.
524 2003-05-14 Paul Eggert <eggert@twinsun.com>
526 * src/parse-gram.y (rules_or_grammar_declaration): Require a
527 semicolon after a grammar declaration, in the interest of possible
528 future changes to the Bison input language.
529 Do not allow a stray semicolon at the start of the grammar.
530 (rhses.1): Allow one or more semicolons after any rule, including
531 just before "|" as required by POSIX.
532 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
535 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
537 %parse-param support for lalr1.cc.
539 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
540 b4_cc_constructor_calls, b4_cc_constructor_call,
541 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
543 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
544 parse-param arguments.
545 (yy::b4_parser_class_name): Declare instance variables to
546 hold parse-param arguments.
547 * tests/calc.at: s/value/semantic_value/ because value clashes
548 with a member of yy::b4_parser_class_name. Adjust C++ code
549 to handle %parse-param. Enable %parse-param test in C++.
551 2003-05-12 Paul Eggert <eggert@twinsun.com>
553 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
554 English a bit. Fix fclose typo. Change "const char" to "char
555 const", and use ANSI C rather than K&R for "main". Suggest
556 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
557 and suggest yy_switch_to_buffer.
559 2003-05-05 Paul Eggert <eggert@twinsun.com>
561 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
562 C89. This avoids a diagnostic on compilers that define __STDC__
563 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
564 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
566 2003-05-03 Paul Eggert <eggert@twinsun.com>
568 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
569 Do not overrun array bounds.
570 This should fix a bug reported today by Olatunji Oluwabukunmi in
571 <http://mail.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
573 2003-04-29 Akim Demaille <akim@epita.fr>
575 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
576 * src/getargs.c, src/getargs.h: here, as bool, not int.
577 (nondeterministic_parser): New.
578 * src/parse-gram.y, src/scan-gram.l: Support
579 %nondeterministic-parser.
580 * src/output.c (prepare): Use nondeterministic_parser instead
581 of glr_parser where appropriate.
582 * src/tables.c (conflict_row, action_row, save_row)
583 (token_actions, token_actions, pack_vector): Ditto.
585 2003-04-29 Akim Demaille <akim@epita.fr>
587 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
589 2003-04-29 Akim Demaille <akim@epita.fr>
591 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
592 with %pure-parser and %locations to exercise the patch from Yakov
595 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
597 * data/yacc.c: (b4_lex_param): Corrected for the case where
598 %lex-param is provided and %pure-parser isn't.
600 2003-04-27 Paul Eggert <eggert@twinsun.com>
602 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
603 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
604 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
605 if it is not defined.
606 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
608 2003-04-26 Paul Eggert <eggert@twinsun.com>
610 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
611 Declare to be of type suitable for the ninf value itself, not of
612 type suitable for the corresponding table, since the latter might
613 be unsigned but the ninf value might be negative. This fixes a
614 bug reported by Alexandre Duret-Lutz in
615 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
617 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
618 invokes it. We shouldn't invoke it twice because it will attempt
619 to put error.o in the archive twice. This fixes a glitch reported
621 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
623 2003-04-21 Paul Eggert <eggert@twinsun.com>
625 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
628 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
630 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
631 Fix obvious typo that results in uncompilable GLR parsers
632 when both %pure-parser and %locations are used. (trivial change)
634 2003-04-17 Paul Eggert <eggert@twinsun.com>
636 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
637 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
638 Do not insert the expected token via unput, as this runs afoul
639 of a POSIX-compatibility bug in flex 2.5.31.
640 All uses changed to BEGIN the parent state,
641 since we no longer insert the expected token via unput.
642 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
643 that is no longer emitted after the above change.
645 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
646 the first one. This change is from Paul Hilfinger, and it fixes
647 regression reported by Werner Lemberg in
648 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
650 (resolve_sr_conflict): Don't invoke state_errs_set
651 unless one or more tokens have been explicitly made errors.
652 Otherwise, the above change causes Bison to abort.
654 * tests/existing.at (GNU pic Grammar): New test case, taken from
657 2003-03-31 Akim Demaille <akim@epita.fr>
659 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
661 2003-03-31 Akim Demaille <akim@epita.fr>
663 * src/output.c (prepare_symbols): Avoid trailing spaces in the
666 2003-03-31 Akim Demaille <akim@epita.fr>
668 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
671 2003-03-29 Akim Demaille <akim@epita.fr>
673 * m4/error.m4: Do not put under dynamic conditions some code which
674 expansion is under static control.
676 2003-03-29 Akim Demaille <akim@epita.fr>
678 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
680 2003-03-29 Akim Demaille <akim@epita.fr>
682 * doc/bison.texinfo (Strings are Destroyed): New.
684 2003-03-13 Paul Eggert <eggert@twinsun.com>
686 * .cvsignore: Add configure.lineno.
687 * src/.cvsignore: Add yacc.
688 * tests/.cvsignore: Add testsuite.log.
689 * doc/fdl.texi: Sync with latest FSF version.
691 2003-03-12 Paul Eggert <eggert@twinsun.com>
693 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
694 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
695 cursor, instead of leaving it undefined. This fixes a bug
696 reported by Tim Van Holder in
697 <http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
698 * tests/input.at (Torturing the Scanner): Test the scanner on
699 an empty input file, which was Tim Van Holder's test case.
701 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
702 <sys/resource.h> can be included, include sys/time.h and
703 sys/times.h first, if available. This works around the SunOS
704 4.1.4 porting bug reported by Bruce Becker in
705 <http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
707 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
708 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
711 Merge changes from gnulib. This was prompted because the CVS
712 snapshot didn't build on Solaris 7 due to strnlen problems.
714 These changes need to be merged back into gnulib:
715 * lib/hash.c: Include <stdbool.h> unconditionally.
716 * m4/onceonly.m4 (m4_quote): New macro.
717 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
718 Quote AC_FOREACH variable-expansions properly.
719 The 2003-01-03 obstack.h change also needs merging.
720 {end of changes requiring merging}
722 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
723 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
724 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
725 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
726 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
727 New files, imported from gnulib.
728 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
731 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
732 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
735 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
737 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
738 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
739 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
740 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
741 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
742 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
743 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
744 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
745 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
746 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
747 (jm_PREREQ_ARGMATCH): Remove.
748 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
749 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
751 * src/system.h: Include <stdbool.h> unconditionally.
753 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
754 assuming at least C89 in the bitset code for some time now.
756 2003-03-03 Akim Demaille <akim@epita.fr>
760 2003-03-02 Akim Demaille <akim@epita.fr>
762 * doc/bison.texinfo (Table of Symbols): Reactivate the
763 documentation for %lex-param, and %parse-param.
765 2003-03-02 Akim Demaille <akim@epita.fr>
767 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
768 generate verbose error messages.
769 Use the number of tokens as an upper bound in yytname, as it
770 cannot be a non terminal.
772 2003-03-02 Akim Demaille <akim@epita.fr>
774 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
777 2003-03-02 Akim Demaille <akim@epita.fr>
779 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
780 Use them to exercise yycheck overrun.
781 Based on Andrew Suffield's grammar.
783 2003-03-02 Akim Demaille <akim@epita.fr>
785 Create tests/local.at for Bison generic testing macros.
787 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
788 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
790 * tests/calc.at (AT_CHECK_CALC): Adjust.
791 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
792 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
793 * tests/local.at: here.
794 (AT_COMPILE_CXX): Tags the tests using it as c++.
795 Ignore the test if CXX is not functional.
797 2003-03-01 Paul Eggert <eggert@twinsun.com>
799 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
800 not loc->end, since loc->end might contain garbage and this leads
801 to undefined behavior on some platforms.
802 (id_loc, token_start): Use (IF_LINTed) initial values that do not
803 depend on *loc, so that the reader doesn't give the the false
804 impression that *loc is initialized.
805 (<INITIAL>"%%"): Do not bother setting code_start, since its value
806 does not survive the return.
808 2003-03-01 Akim Demaille <akim@epita.fr>
810 * src/scan-gram.l (code_start): Always initialize it when entering
811 into yylex, as SC_EPILOGUE is activated *before* the corresponding
812 yylex invocation. An alternative would be making it static, but
813 then it starts with the second %%'s beginning, instead of its end.
815 2003-02-28 Paul Eggert <eggert@twinsun.com>
817 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
818 around a UnixWare 7.1.1 porting bug reported by John Hughes in
819 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
821 2003-02-26 Paul Eggert <eggert@twinsun.com>
823 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
824 Remove Sequent/Pyramid discussion (nobody uses them any more).
825 Merge VMS and MS-DOS discussion; these ports may well be dead
826 but let's keep mentioning them for now. Put <> around email
827 addresses. Add copyright notice.
829 2003-02-24 Paul Eggert <eggert@twinsun.com>
831 * data/glr.c (yy_reduce_print): yylineno -> yylno,
832 to avoid collision with flex use of yylineno.
833 Problem reported by Bruce Lilly in
834 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
835 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
836 * data/yacc.c (yy_reduce_print): Likewise.
838 * config/depcomp: Sync with Automake 1.7.3.
840 2003-02-21 Akim Demaille <akim@epita.fr>
842 * data/lalr1.cc: Use temporary variables instead of casts to
843 change integer types.
844 Suggested by Paul Eggert.
846 2003-02-21 Akim Demaille <akim@epita.fr>
848 * doc/bison.texinfo: Use "location" consistently to refer to @n,
849 to avoid confusions with lalr1.cc's notion of Position.
850 Suggested by Paul Eggert.
852 2003-02-20 Akim Demaille <akim@epita.fr>
854 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
855 before initial_columns.
856 (location.hh): Use consistent variable names when defining the
858 Use "last" so that we subtract from Positions, not from unsigned.
860 2003-02-20 Akim Demaille <akim@epita.fr>
862 * data/lalr1.cc (position.hh): New subfile, including the extended
863 and Doxygen'ed documentation of class Position.
864 (location.hh): Use it.
865 Document a` la Doxygen.
866 With the help of Benoit Perrot.
868 2003-02-20 Akim Demaille <akim@epita.fr>
870 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
872 Redefine AT_YYERROR_SEES_LOC_IF using it.
873 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
875 Don't use the location in yy::Parser::error_ and
876 yy::Parser::print_ when not %locations.
877 Activate more lalr1.cc tests.
879 2003-02-19 Akim Demaille <akim@epita.fr>
881 * data/lalr1.cc: When displaying a line number, be sure to make it
884 2003-02-19 Akim Demaille <akim@epita.fr>
886 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
888 (YYABORT, YYACCEPT, YYERROR): New.
889 * tests/calc.at: Renable the lalr1.cc test.
891 2003-02-19 Akim Demaille <akim@epita.fr>
893 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
894 error recovery, mixing with/without pops and discarding of the
897 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
899 2003-02-17 Paul Eggert <eggert@twinsun.com>
901 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
902 * tests/testsuite.at (AT_COMPILE): Use them.
903 This fixes the testsuite problem reported by Robert Lentz in
904 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
906 2003-02-12 Paul Eggert <eggert@twinsun.com>
908 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
909 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
910 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
911 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
912 Check for malloc failure, for consistency with yacc.c.
913 (yytname_size): Remove, for consistency with yacc.c.
915 The bug still remains in data/lalr1.cc, as I didn't have time
918 2003-02-06 Akim Demaille <akim@epita.fr>
920 * configure.ac (GXX): Rename as...
921 (CXX): this, to keep the original Autoconf semantics.
923 * data/lalr1.cc: Fix b4_copyright invocations.
924 If YYDEBUG is not defined, don't depend upon name_ being defined.
925 (location.hh): Include string and iostream.
926 (Position::filename): New member.
927 (Position::Position ()): New.
928 (operator<< (Position)): New.
929 (operator- (Position, int)): New.
930 (Location::first, Location::last): Rename as...
931 (Location::begin, Location::end): these, to mock the conventional
933 (operator<< (Location)): New.
934 * tests/atlocal.in (CXX): New.
935 * tests/testsuite.at (AT_COMPILE_CXX): New.
936 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
937 locations in a more synthetic way.
938 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
940 Adjust the C locations to match those from Emacs: first column is
942 Change all the expected results.
943 Conform to the GCS: simplify the locations when applicable.
944 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
945 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
946 these CPP macros with the m4 macros new defined by...
947 (AT_CHECK_PUSHDEFS): this, i.e.:
948 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
949 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
951 (AT_CHECK_POPDEFS): Undefine them.
952 (AT_CHECK_CALC_LALR1_CC): New.
953 Use it for the first lalr1.cc test.
955 2003-02-04 Akim Demaille <akim@epita.fr>
957 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
958 Location as is defined.
960 2003-02-04 Akim Demaille <akim@epita.fr>
962 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
965 2003-02-03 Paul Eggert <eggert@twinsun.com>
967 * src/gram.h (start_symbol): Remove unused decl.
969 Use more-consistent naming conventions for local vars.
971 * src/derives.c (derives_compute): Change type of local var from
973 * src/gram.c (grammar_rules_partial_print): Likewise.
974 * src/print.c (print_core): Likewise.
975 * src/reduce.c (reduce_grammar_tables): Likewise.
977 * src/gram.c (grammar_dump): Change name of item_number *
978 local var from r to rp.
979 * src/nullable.c (nullable_compute): Likewise.
981 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
983 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
984 for symbol or symbol_number var.
985 * src/reader.c (grammar_start_symbol_set): Likewise.
986 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
988 * src/state.c (transitions_to): Likewise.
989 * src/state.h: Likewise.
990 * src/tables.c (symbol_number_to_vector_number): Likewise.
992 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
995 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
998 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
1001 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
1002 Use str, not s, for char * var. Use ch, not c, for character var.
1003 Use size for size var.
1005 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
1007 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
1009 * src/uniqstr.h: Likewise.
1011 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
1012 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
1013 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
1014 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
1015 param to have same name as that of enum, so that we don't use
1016 "s" to stand for a non-state.
1018 2003-02-02 Akim Demaille <akim@epita.fr>
1020 * src/scan-skel.l: Scan more than one inert character per yylex
1023 2003-02-01 Paul Eggert <eggert@twinsun.com>
1027 * po/LINGUAS: Add ms.
1029 2003-01-30 Akim Demaille <akim@epita.fr>
1031 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
1033 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1035 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
1038 Changes in response to error report by S. Eken: GLR mode does not
1039 handle negative $ indices or $ indices in embedded rules correctly.
1040 See <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
1042 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
1043 (b4_rhs_location): Ditto.
1044 (yyfill): New function to copy from stack tree into array
1046 (yyuserAction): Modify to allow incremental move of semantic values
1047 to rhs array when in GLR mode.
1048 Define YYFILL to use in user-defined actions to fill semantic array
1050 Remove dummy use of yystack, as there is now a guaranteed use.
1051 (yydoAction): Modify to allow incremental move of semantic values
1052 to rhs array when in GLR mode.
1053 (yyresolveAction): Ditto.
1054 (yyglrShiftDefer): Update comment.
1055 (yyresolveStates): Use X == NULL for pointers, not !X.
1056 (yyglrReduce): Ditto.
1059 * tests/glr-regr1.at: Rename to ...
1060 * tests/glr-regression.at: Add new regression test for the problems
1061 described above (adapted from S. Eken).
1062 Update copyright notice.
1063 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
1064 * tests/Makefile.am: Ditto.
1066 2003-01-28 Paul Eggert <eggert@twinsun.com>
1068 * data/lalr1.cc: Do not use @output_header_name@ unless
1069 b4_defines_flag is set. This fixes two bugs reported by
1071 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
1072 and <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
1074 2003-01-21 Paul Eggert <eggert@twinsun.com>
1076 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
1077 we don't need to worry about yyerrlab1 being reported as an
1078 "unused label" by non-GCC C compilers. The downside is that if
1079 locations are used then a couple of statements are duplicated each
1080 time YYERROR is invoked, but the upside is that the warnings
1082 (yyerrlab1): Move code to YERROR.
1083 (yyerrlab2): Remove. Change uses back to yyerrlab1.
1084 This reverts some of the 2002-12-27 change.
1086 2003-01-17 Paul Eggert <eggert@twinsun.com>
1088 * src/output.c (symbol_printers_output): Fix typo that led
1089 to core dump. Problem reported by Antonio Rus in
1090 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
1092 2003-01-13 Akim Demaille <akim@epita.fr>,
1093 Quoc Peyrot <chojin@lrde.epita.fr>,
1094 Robert Anisko <anisko_r@lrde.epita.fr>
1096 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
1097 when the stacks contain one element, as the loop would otherwise
1098 free the last state, and then use the top state (the one we just
1099 popped). This means that the initial elements will not be freed
1100 explicitly, as is the case in yacc.c; it is not a problem, as
1101 these elements have fake values.
1103 2003-01-11 Paul Eggert <eggert@twinsun.com>
1105 * NEWS: %expect-violations are now just warnings, reverting
1106 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
1107 bootstrapping problem reported by Matthias Klose; see
1108 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
1109 * src/conflicts.c (conflicts_print): Likewise.
1110 * tests/conflicts.at (%expect not enough, %expect too much,
1111 %expect with reduce conflicts): Likewise.
1112 * doc/bison.texinfo (Expect Decl): Document this. Also mention
1113 that the warning is enabled if the number of conflicts changes
1114 (not necessarily increases).
1116 * src/getargs.c (version): Update copyright year.
1118 2003-01-09 Akim Demaille <akim@epita.fr>
1120 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
1122 2003-01-08 Paul Eggert <eggert@twinsun.com>
1124 * Makefile.maint (WGETFLAGS):
1125 New macro, containing "-C off" to disable proxy caches.
1126 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
1127 (rel-check): Use $(WGET) instead of wget.
1129 2003-01-06 Paul Eggert <eggert@twinsun.com>
1131 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
1132 the GLR paper of Scott, Johnstone and Hussain.
1134 2003-01-04 Paul Eggert <eggert@twinsun.com>
1136 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
1137 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
1138 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
1139 (EXTRA_LIBRARIES): New var, for liby.a.
1140 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
1141 (EXTRA_SCRIPTS): New var, for yacc.
1143 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
1144 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
1145 Problem reported by Nelson H. F. Beebe.
1147 2003-01-03 Paul Eggert <eggert@twinsun.com>
1149 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
1150 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
1151 when compiling Bison 1.875's `bitset bset = obstack_alloc
1152 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
1154 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
1155 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
1156 grow to a huge size with typical invocation.
1158 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
1159 Use the pattern recommended by Autoconf 2.57, except also protect
1160 against double-definition.
1161 * src/system.h: Likewise.
1162 Portability issues reported by Nelson H. F. Beebe.
1164 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
1165 All uses changed. Provide a definition in both C and C++.
1166 (yytrue, yyfalse): Define even if defined (__cplusplus).
1168 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
1169 Reported by Nelson H. F. Beebe.
1171 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
1173 2003-01-02 Paul Eggert <eggert@twinsun.com>
1175 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
1176 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
1177 Bug reported by Nelson H. F. Beebe.
1179 2003-01-01 Paul Eggert <eggert@twinsun.com>
1183 2002-12-30 Paul Eggert <eggert@twinsun.com>
1185 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
1187 (<INITIAL>","): Here. This causes stray "," to be treated
1190 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
1191 last brace in braced code when not in Yacc mode, for compatibility
1192 with Bison 1.35. This resurrects the 2001-12-15 patch to
1195 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
1196 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
1198 2002-12-28 Paul Eggert <eggert@twinsun.com>
1200 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
1201 that of SYM's type. This fixes Debian bug 168069, reported by
1204 2002-12-28 Paul Eggert <eggert@twinsun.com>
1208 Switch back to the Yacc style of conflict reports, undoing some
1209 of the 2002-07-30 change.
1210 * doc/bison.texinfo (Understanding): Use Yacc style for
1211 conflict reports. Also, use new way of locating rules.
1212 * src/conflicts.c (conflict_report):
1213 Renamed from conflict_report_yacc, removing the old
1214 'conflict_report'. Translate the entire conflict report at once,
1215 so that we don't assume that "," has the same interpretation in
1217 (conflicts_output): Use Yacc-style conflict report for each state,
1218 instead of our more-complicated style.
1219 (conflicts_print): Use Yacc-style conflict report, except print
1220 the input file name when not emulating Yacc.
1221 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
1222 Conflicted Reduction, %expect not enough, %expect too much,
1223 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
1224 * tests/existing.at (GNU Cim Grammar): Likewise.
1225 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
1227 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
1228 fatal): Don't invoke fflush; it's not needed and it might even be
1229 harmful for stdout, as stdout might not be open.
1230 * src/reduce.c (reduce_print): Likewise.
1232 2002-12-27 Paul Eggert <eggert@twinsun.com>
1234 Fix a bug where error locations were not being recorded correctly.
1235 This problem was originally reported by Paul Hilfinger in
1236 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
1238 * data/yacc.c (yyparse): New local var yylerrsp, to record the
1239 top of the location stack's error locations.
1240 (yyerrlab): Set it. When discarding a token, push its location
1241 onto yylerrsp so that we don't lose track of the error's end.
1242 (yyerrlab1): Now is only the target of YYERROR, so that we can
1243 properly record the location of the action that failed. For GCC
1244 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
1245 GCC warning about yyerrlab1 being unused if YYERROR is unused.
1246 (yyerrlab2): New label, which yyerrlab now falls through to.
1247 Compute the error's location by applying YYLLOC_DEFAULT to
1248 the locations of all the symbols that went into the error.
1249 * doc/bison.texinfo (Location Default Action): Mention that
1250 YYLLOC_DEFAULT is also invoked for syntax errors.
1251 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
1252 Error locations include the locations of all the tokens that were
1253 discarded, not just the last token.
1255 2002-12-26 Paul Eggert <eggert@twinsun.com>
1257 * src/files.c: Include quote.h.
1258 (compute_output_file_names): Warn if we detect conflicting
1259 outputs to the same file. This should catch the misunderstanding
1260 exemplified by Debian Bug 165349, reported by Bruce Stephens..
1262 * src/conflicts.c (conflicts_print): If the user specifies
1263 "%expect N", report an error if there are any reduce/reduce
1264 conflicts. This is what the manual says should happen.
1265 This fixes Debian bug 130890, reported by Anthony DeRobertis.
1266 * tests/conflicts.at (%expect with reduce conflicts): New test.
1268 Don't use m4_include on relative file names, as it doesn't work as
1269 desired if there happens to be a file with that name under ".".
1271 * m4sugar/version.m4: Remove; it was included but it wasn't used.
1272 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
1273 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
1274 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
1275 * src/output.c (output_skeleton): Use full path names when
1276 specifying a file to include; don't rely on include path, as
1277 it's unreliable when the working file contains a file with
1280 2002-12-25 Paul Eggert <eggert@twinsun.com>
1282 Remove obsolete references to bison.simple and bison.hairy.
1283 Problem mentioned by Aubin Mahe in
1284 <http://mail.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
1285 * data/glr.c: Comment fix.
1286 * doc/bison.1: Remove references. Also, mention "yacc".
1288 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
1291 * src/parse-gram.y (declaration): Use enum "report_states" rather
1292 than its numeric value 1.
1294 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
1295 opening a new one. This fixes Debian bug 165349, reported by
1298 2002-12-24 Paul Eggert <eggert@twinsun.com>
1302 * Makefile.maint (cvs-update): Don't assume that the shell
1303 supports $(...), as Solaris sh doesn't.
1305 * src/parse-gram.y (lloc_default): Remove test for empty
1306 nonterminals at the end, since it didn't change the result.
1308 2002-12-24 Paul Eggert <eggert@twinsun.com>
1310 If the user does not define YYSTYPE as a macro, Bison now declares it
1311 using typedef instead of defining it as a macro. POSIX requires this.
1312 For consistency, YYLTYPE is also declared instead of defined.
1314 %union directives can now have a tag before the `{', e.g., the
1315 directive `%union foo {...}' now generates the C code
1316 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
1317 The default union tag is `YYSTYPE', for compatibility with Solaris 9
1318 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
1319 instead of `yyltype'.
1321 `yystype' and `yyltype' are now obsolescent macros instead of being
1322 typedefs or tags; they are no longer documented and will be
1323 withdrawn in a future release.
1325 * data/glr.c (b4_location_type): Remove.
1326 (YYSTYPE): Renamed from yystype.
1327 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
1328 (struct YYLTYPE): Renamed from struct yyltype.
1329 (YYLTYPE): Renamed from yyltype.
1330 (yyltype, yystype): New (and obsolescent) macros,
1331 for backward compatibility.
1332 * data/yacc.c: Likewise.
1334 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
1335 does not specify a union tag. This is for compatibility with
1338 * src/parse-gram.y (add_param): 2nd arg is now char * not char
1339 const *, since it is now modified by stripping surrounding { }.
1340 (current_braced_code): Remove.
1341 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
1342 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
1343 trailing " {...}". Now of type <chars>.
1344 (grammar_declaration): Adjust to bundled tokens.
1345 (code_content): Remove; stripping is now done by add_param.
1346 (print_token_value): Print contents of bundled tokens.
1347 (token_name): New function.
1349 * src/reader.h (braced_code, current_braced_code): Remove.
1350 (token_name): New decl.
1352 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
1353 token_type, not braced_code code_kind. All uses changed.
1354 (SC_PRE_CODE): New state, for scanning after a keyword that
1355 has (or usually has) an immediately-following braced code.
1356 (token_type): New local var, to keep track of which token type
1357 to return when scanning braced code.
1358 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
1359 <INITIAL>"%parse-param", <INITIAL>"%printer",
1360 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
1361 instead of returning a token type immediately.
1362 (<INITIAL>"{"): Set token type.
1363 (<SC_BRACED_CODE>"}"): Use it.
1364 (handle_action_dollar, handle_action_at): Now returns bool
1365 indicating success. Fail if ! current_rule; this prevents a core dump.
1366 (handle_symbol_code_dollar, handle_symbol_code_at):
1367 Remove; merge body into caller.
1368 (handle_dollar, handle_at): Complain in invalid contexts.
1370 * NEWS, doc/bison.texinfo: Document the above.
1371 * NEWS: Fix years and program names in copyright notice.
1373 2002-12-17 Paul Eggert <eggert@twinsun.com>
1375 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
1376 Reporting, Table of Symbols): Omit mentions of %lex-param and
1377 %parse-param from the documentation for now.
1379 2002-12-15 Paul Eggert <eggert@twinsun.com>
1381 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
1382 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
1383 lookahead symbol, and which sets yychar in parser actions) and it
1384 disagreed with the Bison documentation. Bug
1385 reported by Andrew Walrond.
1387 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
1388 as the caller now does that.
1389 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
1390 (YYEMPTY): Parenthesize right hand side, since others use it.
1391 (yyparse): Don't assume that our generated code is the only code
1394 2002-12-13 Paul Eggert <eggert@twinsun.com>
1398 POSIX requires a "yacc" command.
1399 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
1400 (MOSTLYCLEANFILES): Add yacc.
1402 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
1403 as an alias for bison y.
1405 * po/LINGUAS: Add da.
1407 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
1408 problem with latest <getopt.h>.
1409 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
1411 * doc/fdl.texi: Upgrade to 1.2.
1412 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
1413 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
1414 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
1416 * config/install-sh: Sync with autotools.
1418 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
1419 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
1420 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
1421 locations are requested.
1422 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
1423 locations are requested.
1425 2002-12-12 Paul Eggert <eggert@twinsun.com>
1427 Remove unportable casts and storage allocation tricks.
1428 While we're at it, remove almost all casts, since they
1429 usually aren't needed and are a sign of trouble.
1431 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
1433 * src/derives.c (derives_compute): Do not subtract NTOKENS from
1434 the pointer DSET returned by malloc; this isn't portable.
1435 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
1436 Similarly for DERIVES.
1437 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
1438 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
1439 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
1441 * src/derives.c (derives_compute): Do not bother invoking
1442 int_of_rule_number, since rule numbers are integers.
1444 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
1445 rather than XMALLOC (char, N).
1447 * src/files.c (filename_split): Rewrite to avoid cast.
1449 * src/gram.h (symbol_number_as_item_number,
1450 item_number_as_symbol_number, rule_number_as_item_number,
1451 item_number_as_rule_number):
1452 Now inline functions rather than macros, to avoid casts.
1453 * src/state.h (state_number_as_int): Likewise.
1454 * src/tables.c (state_number_to_vector_number,
1455 symbol_number_to_vector_number): Likewise.
1457 * src/gram.h (int_of_rule_number): Remove; no longer used.
1459 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
1460 since the resulting storage is always stored into.
1462 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
1465 * src/muscle_tab.c (muscle_m4_output):
1466 Now inline. Return bool, not int.
1467 * src/state.c (state_compare): Likewise.
1468 * src/symtab.c (symbol_check_defined,
1469 symbol_check_alias_consistency, symbol_pack, symbol_translation,
1470 hash_compare_symbol, hash_symbol):
1472 * src/uniqstr.c (uniqstr_print): Likewise.
1473 * src/muscle_tab.c (muscle_m4_output_processor):
1474 New function, to avoid casts.
1475 * src/state.c (state_comparator, stage_hasher): Likewise.
1476 * src/symtab.c (symbol_check_defined_processor,
1477 symbol_check_alias_consistency_processor, symbol_pack_processor,
1478 symbol_translation_processor, hash_symbol_comparator,
1479 hash_symbol_hasher): Likewise.
1480 * src/uniqstr.c (uniqstr_print_processor): Likewise.
1481 * src/muscle_tab.c (muscles_m4_output):
1482 Use new functions instead of casting old functions unportably.
1483 * src/state.c (state_hash_new): Likewise.
1484 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
1485 symbols_token_translations_init):
1487 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
1489 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
1490 var instead of casting to long, to avoid casts.
1491 (prepare_states): Use MALLOC rather than alloca, so that we don't
1492 have to worry about alloca.
1493 * src/state.c (state_hash_lookup): Likewise.
1495 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
1496 local var instead of casting to unsigned char, to avoid casts.
1498 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
1499 STATE_ALLOC): Remove.
1500 (transitions_new, errs_new, reductions_new, state_new): Use malloc
1501 rather than calloc, and use offsetof to avoid allocating slightly
1503 (state_new): Initialize all members.
1505 * src/state.c (state_hash): Use unsigned accumulator, not signed.
1507 * src/symtab.c (symbol_free): Remove; unused.
1508 (symbol_get): Remove cast in lhs of assignment.
1509 (symbols_do): Now static. Accept generic arguments, not
1510 hashing-related ones.
1512 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
1513 (symbol_processor): Remove.
1514 (symbols_do): Remove decl; now static.
1516 * src/system.h (alloca): Remove; decl no longer needed.
1517 (<stddef.h>): Include, for offsetof.
1518 (<inttypes.>, <stdint.h>): Include if available.
1519 (uintptr_t): New type, if system lacks it.
1520 (CALLOC, MALLOC, REALLOC): New macros.
1521 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
1524 * src/tables.c (table_size): Now int, to pacify GCC.
1525 (table_grow, table_ninf_remap): Use signed table size.
1526 (save_row): Don't bother initializing locals when not needed.
1527 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
1528 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
1530 * src/vcg.h: Correct misspellings.
1532 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
1535 * src/getargs.c (getargs): Don't assume EOF == -1.
1537 2002-12-09 Paul Eggert <eggert@twinsun.com>
1539 Change identifier spellings to avoid collisions with names
1540 that are reserved by POSIX.
1542 Don't use names ending in _t, since POSIX reserves them.
1543 For consistency, remove _e and _s endings -- they're weren't
1544 needed to remove ambiguity. All uses changed.
1545 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
1546 turn was just renamed from struniq_t.
1547 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
1548 which in turn was just renamed from struniq_processor_t.
1549 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
1550 in turn was renamed from hash_compare_struniq_t.
1551 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
1552 (state_list): Renamed from state_list_t.
1553 * src/assoc.h (assoc): Renamed from assoc_t.
1554 * src/conflicts.c (enum conflict_resolution): Renamed from
1555 enum conflict_resolution_e.
1556 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
1557 (rule_list): Renamed from rule_list_t.
1558 * src/getargs.h (enum trace): Renamed from enum trace_e.
1559 (enum report): Renamed from enum report_e.
1560 * src/gram.h (item_number): Renamed from item_number_t.
1561 (rule_number): Renamed from rule_number_t.
1562 (struct rule_s): Remove the "rule_s" part; not used.
1563 (rule): Renamed from rule_t.
1564 (rule_filter): Renamed from rule_filter_t.
1565 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
1566 (goto_list): Renamed from goto_list_t.
1567 * src/lalr.h (goto_number): Renamed from goto_number_t.
1568 * src/location.h (location): Renamed from location_t.
1569 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
1570 and moved here from:
1571 * src/muscle_tab.h (muscle_entry_t): here.
1572 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
1573 (rule_list): Renamed from rule_list_t.
1574 * src/print_graph.c (static_graph): Renamed from graph.
1575 * src/reader.h (braced_code): Renamed from braced_code_t.
1576 Remove brace_code_e tag.
1577 * src/relation.h (relation_node): Renamed from relation_node_t.
1578 (relation_nodes): Renamed from relation_nodes_t.
1579 (relation): Renamed from relation_t.
1580 * src/state.h (state_number): Renamed from state_number_t.
1581 (struct state): Renamed from struct state_s.
1582 (state): Renamed from state_t.
1583 (transitions): Renamed from transitions_t. Unused (and
1584 misspelled) transtion_s tag removed.
1585 (errs): Renamed from errs_t. Unused errs_s tag removed.
1586 (reductions): Renamed from reductions_t. Unused tag
1587 reductions_s removed.
1588 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
1589 (struct symbol_list): Renamed from struct symbol_list_s.
1590 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
1591 (struct symbol): Renamed from struct symbol_s.
1592 (symbol): Renamed from symbol_t.
1593 * src/tables.c (vector_number): Renamed from vector_number_t.
1594 (action_number): Renamed from action_t.
1595 * src/tables.h (base_number): Renamed from base_t.
1596 * src/vcg.h (enum color): Renamed from enum color_e.
1597 (enum textmode): Renamed from enum textmode_e.
1598 (enum shape): Renamed from enum shape_e.
1599 (struct colorentry): Renamed from struct colorentry_s.
1600 (struct classname): Renamed from struct classname_s.
1601 (struct infoname): Renamed from struct infoname_s.
1602 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
1603 (enum decision): Renamed from enum decision_e.
1604 (enum orientation): Renamed from enum orientation_e.
1605 (enum alignment): Renamed from enum alignment_e.
1606 (enum arrow_mode): Renamed from enum arrow_mode_e.
1607 (enum crossing_type): Renamed from enum crossing_type_e.
1608 (enum view): Renamed from enum view_e.
1609 (struct node): Renamed from struct node_s.
1610 (node): Renamed from node_t.
1611 (enum linestyle): Renamed from enum linestyle_e.
1612 (enum arrowstyle): Renamed from enum arrowstyle_e.
1613 (struct edge): Renamed from struct edge.
1614 (edge): Renamed from edge_t.
1615 (struct graph): Renamed from struct graph_s.
1616 (graph): Renamed from graph_t.
1617 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
1618 Rename value_t -> value.
1619 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
1620 value_t_as_yystype -> value_as_yystype.
1622 Don't include <errno.h> in the mainstream code, since it
1623 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
1624 * lib/get-errno.c, lib/get-errno.h: New files.
1625 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
1627 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
1628 * src/output.c (output_skeleton): Likewise.
1629 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
1631 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
1633 (handle_action_dollar, handle_action_at): Likewise.
1634 * src/system.h: Do not include <errno.h>.
1635 (TAB_EXT): Renamed from EXT_TAB.
1636 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
1638 Avoid str[a-z]*, since <string.h> reserves that name space.
1639 Change all instances of "struniq" in names to "uniqstr", and
1640 likewise for "STRUNIQ" and "UNIQSTR".
1641 * src/uniqstr.c: Renamed from src/struniq.c.
1642 * src/uniqstr.h: Renamed from src/struniq.h.
1643 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
1644 * src/files.c (strsuffix): Remove; unused.
1645 (concat2): Renamed from stringappend. Now static.
1646 * src/files.h (strsuffix, stringappend): Remove; unused.
1647 * src/parse-gram.y (<chars>): Renamed from <string>.
1648 (<uniqstr>): Renamed from <struniq>.
1649 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
1650 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
1651 (struct graph_s.expand): Renamed from struct graph_s.stretch.
1652 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
1653 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
1654 (N_EXPAND): Renamed from N_STRETCH.
1656 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
1657 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
1658 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
1660 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
1661 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
1662 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
1663 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
1664 (BASE_MAXIMUM): Renamed from BASE_MAX.
1665 (BASE_MINIMUM): Renamed from BASE_MIN.
1666 (ACTION_MAX): Remove; unused.
1667 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
1668 Unnecessary casts removed from above defines.
1671 Fix misspelling in names.
1672 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
1673 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
1677 * lib/timevar.c (timevar_report): Renamed from time_report,
1678 for consistency with other names.
1679 * lib/timevar.h (timevar_report): New decl.
1680 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
1683 Sort include-file uses.
1685 Reorder all include files under src to be in the order "system.h".
1686 then the ../lib include files in angle brackets (alphabetized),
1687 then the . include files in double-quotes (alphabetized). Fix
1688 dependency breakages encountered in this process, as follows:
1689 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
1690 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
1691 * src/state.h: Include "symtab.h".
1693 2002-12-08 Paul Eggert <eggert@twinsun.com>
1695 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
1696 since this causes problems when __file__ contains character
1697 sequences like "@" that are treated specially by src/scan-skel.l.
1698 Instead, just use the file's basename. This fixes the bug
1699 reported by Martin Mokrejs in
1700 <http://mail.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
1702 2002-12-06 Paul Eggert <eggert@twinsun.com>
1704 Add support for rules that do not have trailing semicolons, as
1705 POSIX requires. Improve the quality of locations in Bison
1708 * src/location.c: Include <quotearg.h>.
1709 (empty_location): Now const.
1710 (location_print): New function. Follow the recommendation of the
1711 GNU Coding Standards for locations that span file boundaries.
1712 * src/location.h: Do not include <quotearg.h>; no longer needed.
1713 (boundary): New type.
1714 (location_t): Use it. This allows locations to span file boundaries.
1715 All member uses changed: file -> start.file or end.file (as needed),
1716 first_line -> start.line, first_column -> start.column,
1717 last_line -> end.line, last_column -> end.column.
1718 (equal_boundaries): New function.
1719 (LOCATION_RESET, LOCATION_STEP): Remove.
1720 (LOCATION_PRINT): Remove. All callers changed to use location_print.
1721 (empty_location): Now const.
1722 (location_print): New decl.
1723 * src/parse-gram.y (lloc_default): New function, which handles
1724 empty locations more accurately.
1725 (YYLLOC_DEFAULT): Use it.
1726 (%token COLON): Remove.
1727 (%token ID_COLON): New token.
1729 (declarations, rules): Remove trailing semicolon.
1730 (declaration, rules_or_grammar_declaration):
1731 Allow empty (";") declaration.
1732 (symbol_def): Remove empty actions; no longer needed.
1733 (rules_or_grammar_declaration): Remove trailing semicolon.
1734 (semi_colon.opt): Remove.
1735 * src/reader.h: Include location.h.
1736 (scanner_cursor): New decl.
1737 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
1739 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
1741 (STEP): Remove. No longer needed, now that adjust_location does
1742 the work. All uses removed.
1743 (scanner_cursor): New var.
1744 (adjust_location): Renamed from extend_location. It now sets
1745 *loc and adjusts the scanner cursor. All uses changed.
1746 Don't bother testing for CR.
1747 (handle_syncline): Remove location arg; now updates scanner cursor.
1748 All callers changed.
1749 (unexpected_end_of_file): Now accepts start boundary of token or
1750 comment, not location. All callers changed. Update scanner cursor,
1752 (SC_AFTER_IDENTIFIER): New state.
1753 (context_state): Renamed from c_context. All uses changed.
1754 (id_loc, code_start, token_start): New local vars.
1755 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
1756 processing of Yacc white space and equivalents here.
1757 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
1758 instead of returning ID immediately, since we need to search for
1760 (<INITIAL>"'", "\""): Save token_start.
1761 (<INITIAL>"%{", "{", "%%"): Save code_start.
1762 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
1763 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
1764 BEGIN context_state at end, not INITIAL.
1765 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
1766 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
1767 Return correct token start.
1768 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
1769 the start of a character, string or multiline comment is found.
1770 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
1771 Reduction): Adjust reported locations to match the more-precise
1772 results now expected.
1773 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
1774 * tests/reduce.at (Useless Rules, Reduced Automaton,
1775 Underivable Rules): Likewise.
1776 * tests/regression.at (Invalid inputs): No longer `expecting ";"
1777 or "|"' now that so many other tokens are allowed by the new grammar.
1779 * src/complain.h (current_file): Remove duplicate decl;
1780 current_file is now owned by files.h.
1781 * src/complain.c, src/scan-gram.l: Include files.h.
1783 2002-12-06 Paul Eggert <eggert@twinsun.com>
1785 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
1786 promotes to int; it might be unsigned int.
1787 * data/yacc.c (yy_reduce_print): Likewise.
1789 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
1790 be #defined in the prologue, not in the Bison declarations.
1791 This fixes Debian Bug 102878, reported by Shaul Karl.
1793 2002-12-02 Paul Eggert <eggert@twinsun.com>
1795 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
1796 * lib/strtoul.c: New file, from gnulib.
1797 This fixes a porting bug reported by Peter Klein in
1798 <http://mail.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
1800 2002-11-30 Paul Eggert <eggert@twinsun.com>
1802 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
1803 and put only a forward declaration in the prologue. This is for
1804 consistency with the other scanner helper functions.
1806 Type clashes now generate warnings, not errors, since it
1807 appears that POSIX may allow some grammars with type clashes.
1808 * src/reader.c (grammar_current_rule_check): Warn about
1809 type clashes instead of complaining.
1810 * tests/input.at (Type Clashes): Expect warnings, not complaints.
1812 Add Yacc library, since POSIX requires it.
1813 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
1814 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
1815 * lib/main.c, lib/yyerror.c: New files.
1817 gram_error can be static; it need not be extern.
1818 * src/reader.h (gram_error): Remove decl.
1819 * src/parse-gram.y (gram_error): Now static. Add static decl.
1820 (print_token_value): Omit parameter names from forward decl,
1823 2002-11-29 Paul Eggert <eggert@twinsun.com>
1825 * doc/bison.texinfo: Emphasize that yylex and yyerror must
1826 be declared before being used. E.g., one should typically
1827 declare them in the prologue. Use GNU coding style in examples.
1828 Put "const" consistently after the type it modifies. Mention
1829 that C99 supports "inline". Mention that yyerror traditionally
1832 %parse-param and %lex-param now take just one argument, the
1833 declaration; the argument name is deduced from the declaration.
1835 * doc/bison.texinfo (Parser Function, Pure Calling, Error
1836 Reporting, Table of Symbols): Document this.
1837 * src/parse-gram.y (add_param): New function.
1839 (declaration): Implement new rule for %parse-param and %lex-param.
1840 * src/scan-gram.l: "," now elicits a warning, rather than being
1841 a token; this is more compatible with byacc.
1842 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
1844 2002-11-27 Paul Eggert <eggert@twinsun.com>
1846 Rename identifiers to avoid real and potential collisions.
1848 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
1849 to avoid collision with lex macro described by Bruce Lilly in
1850 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
1851 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
1852 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
1853 * src/parse-gram.y (print_token_value): Renamed from yyprint.
1855 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
1856 The name "yycontrol" violates the name space rules, and this stuff
1857 wasn't being used anyway.
1858 (input): Remove action; this stuff wasn't being used.
1859 (gram_error): Rename local variable yylloc -> loc.
1860 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
1861 (YY_DECL): Don't use "yy" at start of local variables.
1862 All uses changed, e.g., yylloc -> loc.
1863 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
1864 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
1865 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
1866 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
1868 * src/parse-gram.y (gram_error): loc is now const *.
1869 * src/reader.h (gram_error): Likewise.
1871 2002-11-24 Paul Eggert <eggert@twinsun.com>
1875 * tests/actions.at (Actions after errors): Use an output format
1876 more similar to that of the Printers and Destructors test.
1877 Test the position of the ';' token too.
1878 (Printers and Destructors): Likewise.
1879 (Printers and Destructors: %glr-parser): Remove for now, to avoid
1880 unnecessarily alarming people when the test fails.
1882 * data/yacc.c (yyerrlab1): Move this label down, so that the
1883 parser does not discard the lookahead token if the user code
1884 invokes YYERROR. This change is required for POSIX conformance.
1886 * lib/error.c: Sync with gnulib.
1888 2002-11-22 Paul Eggert <eggert@twinsun.com>
1890 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
1891 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
1892 * lib/xmalloc.c: Likewise.
1894 2002-11-20 Paul Eggert <eggert@twinsun.com>
1896 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
1898 2002-11-20 Paul Eggert <eggert@twinsun.com>
1900 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
1901 should use `if (! x) abort ();' rather than `assert (x);', and
1902 anyway it's one less thing to worry about configuring.
1904 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
1905 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
1906 and replace all instances of assert with abort.
1907 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
1908 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
1910 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
1911 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
1912 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
1913 hash_find_entry, hash_rehash, hash_insert): Likewise.
1914 * src/conflicts.c (resolve_sr_conflict): Likewise.
1915 * src/lalr.c (set_goto_map, map_goto): Likewise.
1916 * src/nullable.c (nullable_compute): Likewise.
1917 * src/output.c (prepare_rules, token_definitions_output): Likewise.
1918 * src/reader.c (packgram, reader): Likewise.
1919 * src/state.c (state_new, state_free, state_transitions_set,
1920 state_reduction_find): Likewise.
1921 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
1922 symbol_pack): Likewise.
1923 * src/tables.c (conflict_row, pack_vector): Likewise.
1924 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
1925 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
1926 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
1927 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
1929 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
1930 (ARGMATCH_CONSTRAINT): New macro.
1931 (ARGMATCH_ASSERT): Use it.
1933 * src/system.h (verify): New macro.
1934 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
1936 * src/tables.c (tables_generate): Likewise.
1938 * src/struniq.c (struniq_assert): Now returns void, and aborts
1939 if the assertion is false.
1940 (struniq_assert_p): Remove.
1941 * src/struniq.h: Likewise.
1943 2002-11-18 Paul Eggert <eggert@twinsun.com>
1945 * data/glr.c (yygetLRActions): Replace `yyindex' with
1946 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
1947 This fixes the regression with Sun ONE Studio 7 cc that I reported in
1948 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
1950 2002-11-18 Akim Demaille <akim@epita.fr>
1952 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
1954 From Tim Van Holder.
1956 2002-11-17 Paul Eggert <eggert@twinsun.com>
1958 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
1959 to "SyntaxError" for consistency with my 2002-11-15 change.
1961 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
1962 not define to {}, since this breaks the common use of `YYDPRINTF
1963 ((...));' if a single statement is desired (e.g. before `else').
1964 Work around GCC warnings by surrounding corresponding calls with
1966 (yyhasResolvedValue): Remove unused function.
1967 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
1969 (yyreportSyntaxError): Renamed from yyreportParseError.
1970 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
1972 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
1973 extern when possible. Remove unused initializations.
1975 2002-11-16 Akim Demaille <akim@epita.fr>
1977 Augment the similarity between GLR and LALR traces.
1979 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
1980 (YY_REDUCE_PRINT): New.
1981 (yyparse): Use them.
1982 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
1984 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
1985 state reached after the reduction/recovery, since...
1986 (yyparse, yyprocessOneStack): Report the state we are entering in.
1988 2002-11-16 Akim Demaille <akim@epita.fr>
1990 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
1991 Add support for --trace=skeleton.
1992 * src/scan-skel.l: %option debug.
1993 Scan strings of non-@ or \n instead of character by character.
1994 (scan_skel): Handle trace_skeleton.
1996 (@output_parser_name@, @output_header_name@): ``Restore'' their
1997 support (used to be M4 macros).
1998 * data/yacc.c: Quote larger chunks, a la glr.c.
1999 * data/lalr1.cc: Likewise.
2000 The header guards are no longer available, so use some other
2001 string than `YYLSP_NEEDED'.
2003 2002-11-16 Akim Demaille <akim@epita.fr>
2005 Make the ``Printers and Destructors'' test more verbose, taking
2006 `yacc.c''s behavior as (possibly wrong) reference.
2008 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
2009 instead of fprint on stdout.
2010 Set and report the last_line of the symbols.
2011 Consistently display values and locations.
2013 2002-11-16 Paul Eggert <eggert@twinsun.com>
2015 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
2017 2002-11-15 Paul Eggert <eggert@twinsun.com>
2019 * tests/actions.at (Actions after errors): New test case.
2021 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
2022 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
2023 tests/action.at, tests/calc.at, tests/conflicts.at,
2024 tests/cxx-type.at, tests/regression.at:
2025 "parse error" -> "syntax error" for POSIX compatibility.
2026 "parsing stack overflow..." -> "parser stack overflow" so
2027 that code matches Bison documentation.
2029 2002-11-15 Akim Demaille <akim@epita.fr>
2031 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
2032 take two BRACED_CODE, not two string_content.
2033 Free the scanner's obstack when we are done.
2034 (code_content): New.
2035 * tests/calc.at: Adjust.
2036 * doc/bison.texinfo: Adjust.
2037 Also, make sure to include the `,' for these declarations.
2039 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
2041 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
2042 definition; avoids potential autoreconf problems.
2044 2002-11-15 Akim Demaille <akim@epita.fr>
2046 Always check the value returned by yyparse.
2048 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
2049 returned by yyparse.
2050 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
2052 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
2053 returned by yyparse.
2055 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2057 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
2060 2002-11-14 Paul Eggert <eggert@twinsun.com>
2062 * src/output.c (output_skeleton): Call xfopen instead of
2063 duplicating xfopen's body.
2065 Fix bugs reported by Nelson H. F. Beebe in
2066 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
2068 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
2069 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
2070 Group compiler. Instead, use "$CC -E bar.c". Include the .h
2071 file twice in the grammar, as an extra check.
2073 * tests/input.at (Torturing the Scanner): Surround the
2074 backslash-newline tests with "#if 0", to make it less likely that
2075 we'll run into compiler bugs. Bring back solitary \ inside
2076 comment, but add a closing comment to work around HP C bug. Don't
2077 test backslash-newline in C character constant.
2079 2002-11-14 Akim Demaille <akim@epita.fr>
2081 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
2082 status of the compiler.
2083 Calling `exit 1' is no longer needed.
2084 Reported by Nelson H. F. Beebe.
2086 2002-11-14 Akim Demaille <akim@epita.fr>
2088 * tests/atlocal.in (CPPFLAGS): We have config.h.
2089 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
2091 * tests/actions.at, tests/calc.at, tests/conflicts.at,
2092 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
2093 * tests/regression.at, tests/torture.at: Use them for all the
2094 grammars that are to be compiled.
2095 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
2096 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
2097 * doc/bison.texinfo (GLR Parsers): Document `inline'.
2099 2002-11-14 Akim Demaille <akim@epita.fr>
2101 * doc/bison.texinfo: Various formatting changes (alignments in
2102 samples, additional @group/@end group, GCS in samples.
2103 Use @deffn instead of simple @table to define the directives,
2104 macros, variables etc.
2106 2002-11-13 Paul Eggert <eggert@twinsun.com>
2108 Fix some bugs reported by Albert Chin-A-Young in
2109 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
2111 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
2112 -o c"; the HP C compiler chatters during compilation.
2113 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
2114 * tests/headers.at (export YYLTYPE): Likewise.
2116 * tests/input.at (Torturing the Scanner): Remove lines containing
2117 solitary backslashes, as they tickle a bug in the HP C compiler.
2119 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
2120 comments, since they're not portable. Use GNU coding style.
2122 2002-11-13 Akim Demaille <akim@epita.fr>
2124 * data/yacc.c: Leave bigger chunks of quoted text.
2125 (YYDSYMPRINTF): New.
2126 Use it to report symbol activities.
2127 * data/glr.c (YYDSYMPRINTF): New.
2130 2002-11-12 Paul Eggert <eggert@twinsun.com>
2134 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
2135 (yyglrReduce): Return yyok, not 0.
2136 This should avoid the enumerated-type warnings reported
2137 by Nelson H. F. Beebe in
2138 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
2140 * lib/bbitset.h (BITSET_INLINE): Remove.
2141 * lib/bitset.h [! BITSET_INLINE]: Remove.
2142 (bitset_set, bitset_reset, bitset_test): Rename local vars
2143 to avoid shadowing warnings by GCC.
2145 * data/glr.c (inline): Remove #define. It's the user's
2146 responsibility to #define it away, just like 'const'.
2147 This fixes one of the bugs reported by Nelson H. F. Beebe in
2148 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
2150 * Makefile.maint (po-check): Scan .l and .y files instead of the
2151 .c and the .h files that they generate. This fixes the bug
2152 reported by Tim Van Holder in:
2153 <http://mail.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
2154 Look for N_ as well as for _. Try to avoid matching #define for
2156 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
2157 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
2158 * src/scan-gram.l: Revamp regular expressions so that " and '
2159 do not confuse xgettext.
2161 * src/struniq.h (struniq_new): Do not declare the return type
2162 to be 'const'; this violates the C standard.
2163 * src/struniq.c (struniq_new): Likewise.
2165 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
2167 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
2168 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
2171 2002-11-12 Akim Demaille <akim@epita.fr>
2173 * Makefile.maint: Sync with Autoconf:
2174 (local_updates): New.
2176 2002-11-12 Akim Demaille <akim@epita.fr>
2178 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
2180 2002-11-12 Akim Demaille <akim@epita.fr>
2182 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
2185 2002-11-12 Akim Demaille <akim@epita.fr>
2187 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
2190 2002-11-12 Akim Demaille <akim@epita.fr>
2192 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
2193 Use it to test the GLR parser.
2195 2002-11-12 Akim Demaille <akim@epita.fr>
2197 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
2199 * data/glr.c (yystos): New.
2200 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
2202 (yyval): Don't define it, it is handled via M4.
2203 (yyrecoverParseError): Free verbosely the discarded symbols.
2204 * data/yacc.c (yysymprint): Remove, rather...
2205 (b4_yysymprint_generate): invoke.
2206 * data/c.m4 (b4_yysymprint_generate): New.
2207 Accept pointers as arguments, as opposed to the version from
2209 (b4_yydestruct_generate): Likewise.
2210 * tests/cations.at (Printers and Destructors): Use Bison directives
2211 instead of CPP macros.
2212 Don't rely on internal details.
2214 2002-11-12 Akim Demaille <akim@epita.fr>
2216 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
2217 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
2218 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
2219 it against YYEMPTY and so forth), work on yytoken (i.e., set
2220 it to YYEMPTY etc.).
2221 (yydestruct): Replace with a b4_yydestruct_generate invocation.
2222 (b4_symbol_actions): Remove.
2223 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
2224 for 0, end-of-input.
2226 2002-11-12 Akim Demaille <akim@epita.fr>
2228 * doc/bison.texinfo (Destructor Decl): New.
2230 2002-11-12 Akim Demaille <akim@epita.fr>
2232 * src/tables.c (tables_generate): Use free for pointers that
2233 cannot be NULL, not XFREE.
2234 (pack_vector): Use assert, not fatal, for bound violations.
2235 * src/state.c (state_new): Likewise.
2236 * src/reader.c (reader): Likewise.
2237 * src/lalr.c (set_goto_map): Likewise.
2238 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
2241 2002-11-12 Akim Demaille <akim@epita.fr>
2243 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
2245 * src/scan-gram.l (last_string): Is global to the file, not to
2247 * src/parse-gram.y (input): Don't append the epilogue here,
2248 (epilogue.opt): do it here, and free the scanner's obstack.
2249 * src/reader.c (epilogue_set): Rename as...
2250 (epilogue_augment): this.
2251 * data/c.m4 (b4_epilogue): Defaults to empty.
2253 2002-11-12 Akim Demaille <akim@epita.fr>
2255 * src/getargs.c (long_options): Remove duplicates.
2256 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
2258 * doc/bison.rnh: Remove.
2259 * doc/bison.texinfo (VMS Invocation): Remove.
2261 2002-11-12 Akim Demaille <akim@epita.fr>
2263 * src/struniq.h, src/struniq.c (struniq_t): Is const.
2264 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
2266 Use struniq for symbols.
2268 * src/symtab.h (symbol_t): The tag member is a struniq.
2269 (symbol_type_set): Adjust.
2270 * src/symtab.c (symbol_new): Takes a struniq.
2271 (symbol_free): Don't free the tag member.
2272 (hash_compare_symbol_t, hash_symbol_t): Rename as...
2273 (hash_compare_symbol, hash_symbol): these.
2274 Use the fact that tags as struniqs.
2275 (symbol_get): Use struniq_new.
2276 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
2278 * src/reader.h (merger_list, grammar_currentmerge_set): The name
2279 and type members are struniqs.
2280 * src/reader.c (get_merge_function)
2281 (grammar_current_rule_merge_set): Adjust.
2282 (TYPE, current_type): Are struniq.
2284 Use struniq for file names.
2286 * src/files.h, src/files.c (infile): Split into...
2287 (grammar_file, current_file): these.
2288 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
2289 * src/reduce.c (reduce_print): Likewise.
2290 * src/getargs.c (getargs): Likewise.
2291 * src/complain.h, src/complain.c: Likewise.
2292 * src/main.c (main): Call struniqs_new early enough to use it for
2294 Don't free the input file name.
2296 2002-11-12 Akim Demaille <akim@epita.fr>
2298 * src/symtab.c (symbol_free): Remove dead deactivated code:
2299 type_name are properly removed.
2300 Don't use XFREE to free items that cannot be NULL.
2301 * src/struniq.h, src/struniq.c: New.
2302 * src/main.c (main): Initialize/free struniqs.
2303 * src/parse-gram.y (%union): Add astruniq member.
2305 * src/scan-gram.l (<{tag}>): Return a struniq.
2306 Free the obstack bit that used to store it.
2307 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
2309 2002-11-11 Paul Eggert <eggert@twinsun.com>
2311 Revamp to fix many (but not all) of the C- and M4-related quoting
2312 problems. Among other things, this fixes the Bison bug reported
2313 by Jan Hubicka when processing the Bash grammar; see:
2314 <http://mail.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
2316 Use new @ escapes consistently. Represent brackets with @{ and @}
2317 rather than @<:@ and @:>@, since this works a bit better with dumb
2318 editors like vi. Represent @ with @@, since @ is now consistently
2319 an escape. Use @oline@ and @ofile@ rather than __oline__ and
2320 __ofile__, to avoid unexpected expansions. Similarly, use @output
2321 rather than #output.
2323 * data/c.m4 (b4_copyright): Omit file name from comment, since
2324 the file name could contain "*/".
2325 (b4_synclines_flag): Don't quote the 2nd argument; it should already
2326 be quoted. All uses changed.
2328 * data/glr.c: Use new @ escapes consistently.
2329 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
2330 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
2331 Remove, since they couldn't handle arbitrary characters in file
2333 * data/lalr1.cc: Likewise.
2334 * data/yacc.c: Likewise.
2336 * src/files.c (output_infix): Remove; all uses removed.
2337 * src/files.h: Likewise.
2339 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
2340 mishandled funny characters in file names, and anyway it isn't
2342 * data/yacc.c: Likewise.
2343 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
2345 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
2346 * data/yacc.c: Likewise.
2348 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
2350 (muscle_init): Quote filename as a C string.
2351 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
2352 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
2353 * src/output.c (escaped_file_name_output): New function.
2354 (prepare_symbols): Quote tokens for M4.
2355 (prepare): Don't insert output_infix, output_prefix,
2356 output_parser_name, output_header_name; this is now down by scan-skel.
2357 Insert skeleton as a C string.
2359 * src/output.c (user_actions_output, symbol_destructors_output,
2360 symbol_printers_output): Quote filenames for C and M4.
2361 * src/reader.c (prologue_augment, epilogue_set): Likewise.
2363 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
2364 escapes other than \\ and \'; this simplifies the code.
2365 (<SC_STRING>): Likewise, for \\ and \".
2366 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
2367 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
2368 Use new escapes @{ and @} for [ and ].
2370 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
2371 them with auto vars.
2372 Switch to new escape scheme, where @ is the escape character uniformly.
2373 Abort if a stray escape character is found. Avoid unbounded input
2374 buffer when parsing non-escaped text.
2376 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
2377 __oline__, #output, $@, and @{ do not have unintended meanings.
2379 2002-11-09 Paul Eggert <eggert@twinsun.com>
2381 Fix the test failure due to GCC warnings described in
2382 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
2383 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
2384 evaluate to 0 if it's impossible for NINF to be in the respective
2386 (yygetLRActions, yyrecoverParseError): Use them.
2388 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
2389 counted in the token inserted at end of file. Now takes
2390 location_t *, not location_t, so that the location can be
2391 adjusted. All uses changed.
2393 * tests/regression.at (Invalid inputs): Adjust wording in
2394 diagnostic to match the new behavior.
2396 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
2397 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
2398 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
2399 abort ();'. This reduces the runtime of the "Many lookaheads"
2400 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
2403 2002-11-07 Paul Eggert <eggert@twinsun.com>
2405 * src/parse-gram.y (CHARACTER): Remove unused token.
2408 * src/scan-gram.l: Remove stack option. We no longer use the
2409 stack, since the stack was never deeper than 1; instead, use the
2410 new auto var c_context to record the stacked value.
2412 Remove nounput option. At an unexpected end of file, we now unput
2413 the minimal input necessary to end cleanly; this simplifies the
2416 Avoid unbounded token sizes where this is easy.
2418 (unexpected_end_of_file): New function.
2419 Use it to systematize the error message on unexpected EOF.
2420 (last-string): Now auto, not static.
2421 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
2422 (scanner_last_string_free): Remove; not used.
2423 (percent_percent_count): Move decl to just before use.
2424 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
2425 not the (never otherwised-used) CHARACTER.
2427 2002-11-07 Akim Demaille <akim@epita.fr>
2429 Let yyerror always receive the msg as last argument, so that
2430 yyerror can be variadic.
2432 * data/yacc.c (b4_yyerror_args): New.
2433 Use it when calling yyerror.
2434 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
2435 Use it when calling yyerror.
2436 * doc/bison.texinfo (Error Reporting): Adjust.
2437 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
2438 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
2440 2002-11-06 Akim Demaille <akim@epita.fr>
2442 #line should have quoted strings.
2443 Ideally, this should be done by m4_quotearg.
2445 * src/scan-skel.l: Include quotearg.h.
2447 * src/output.c (symbol_printers_output)
2448 (symbol_destructors_output): Quote the file name.
2450 2002-11-06 Akim Demaille <akim@epita.fr>
2452 * tests/regression.at (Invalid inputs): Adjust to the recent
2455 2002-11-06 Akim Demaille <akim@epita.fr>
2458 Reported by Jim Kent.
2460 * data/c.m4 (b4_syncline): New.
2461 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
2462 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
2463 * src/output.c (user_actions_output): Likewise.
2464 (prepare): Define 'b4_synclines_flag'.
2465 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
2467 2002-11-06 Akim Demaille <akim@epita.fr>
2469 * src/main.c (main): Free `infile'.
2470 * src/scan-gram.l (handle_syncline): New.
2472 * src/output.c (user_actions_output, symbol_destructors_output)
2473 (symbol_printers_output): Use the location's file name, not
2475 * src/reader.c (prologue_augment, epilogue_set): Likewise.
2477 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2479 * src/tables.c (matching_state): Don't allow states to match if
2480 either has GLR conflict entries.
2482 2002-11-05 Paul Eggert <eggert@twinsun.com>
2484 * src/scan-gram.l: Use more accurate diagnostics, e.g.
2485 "integer out of range" rather than "invalid value".
2486 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
2489 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
2490 Also, remove one static variable in the scanner.
2492 * src/scan-gram.l (braces_level): Now auto, not static.
2493 Initialize to zero if the compiler is being picky.
2494 (INITIAL): Clear braces_level instead of incrementing it.
2495 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
2496 as POSIX 1003.1-2001 requires.
2497 * src/system.h (IF_LINT): New macro, taken from coreutils.
2498 * configure.ac: Define "lint" if --enable-gcc-warnings.
2500 2002-11-05 Akim Demaille <akim@epita.fr>
2502 * src/scan-gram.l: When it starts with `%', complain about the
2503 whole directive, not just that `invalid character: %'.
2505 2002-11-04 Akim Demaille <akim@epita.fr>
2507 * Makefile.maint: Update from Autoconf.
2508 (update, cvs-update, po-update, do-po-update): New.
2510 2002-11-04 Akim Demaille <akim@epita.fr>
2512 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
2514 Have yyerror `use' its arguments.
2515 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
2516 returns true when location & yacc & pure & parse-param.
2517 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
2519 2002-11-04 Akim Demaille <akim@epita.fr>
2521 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
2523 * src/scan-gram.l: Use [\'] instead of ['] to pacify
2526 Use quote, not quote_n since LOCATION_PRINT no longer uses the
2529 2002-11-03 Paul Eggert <eggert@twinsun.com>
2531 * src/reader.c (get_merge_function, grammar_current_rule_check):
2532 Use consistent diagnostics for reporting type name clashes.
2533 Quote the types with <>, for consistency with Yacc.
2534 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
2536 2002-11-03 Akim Demaille <akim@epita.fr>
2538 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
2540 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
2541 (b4_parse_param): Remove.
2542 Use b4_identification.
2543 Propagate b4_pure_args where needed to pass them to yyerror.
2544 * data/glr.m4 (b4_parse_param): Remove.
2545 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
2546 (b4_lpure_formals): New.
2547 Use b4_identification.
2548 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
2549 b4_user_formals and b4_user_args.
2550 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
2551 (yyreportAmbiguity): When using a pure parser, also need
2552 the location, and the parse-params.
2554 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
2555 When using a pure parser, also need the parse-params.
2557 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
2558 (%pure-parser + %parse-param) LALR and GLR parsers.
2559 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
2560 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
2561 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
2562 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
2563 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
2564 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
2565 * doc/bison.texinfo: Untabify the whole file.
2566 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
2567 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
2568 (Error Reporting): Adjust to these new directives.
2569 Document %error-verbose, deprecate YYERROR_VERBOSE.
2571 2002-11-03 Akim Demaille <akim@epita.fr>
2573 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
2574 AT_CHECK_CALC_GLR invocations to use % directives, instead of
2575 command line options.
2576 * tests/cxx-type.at: Formatting changes.
2578 2002-11-03 Paul Eggert <eggert@twinsun.com>
2580 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
2581 to count columns correctly, and to check for invalid inputs.
2583 Use mbsnwidth to count columns correctly. Account for tabs, too.
2585 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
2586 (extend_location): New function.
2589 Handle CRLF in C code rather than in Lex code.
2590 (YY_INPUT): New macro.
2591 (no_cr_read): New function.
2593 Scan UCNs, even though we don't fully handle them yet.
2594 (convert_ucn_to_byte): New function.
2596 Handle backslash-newline correctly in C code.
2597 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
2598 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
2600 (tag, splice): New EREs. Do not allow NUL or newline in tags.
2601 Use {splice} wherever C allows backslash-newline.
2602 YY_STEP after space, newline, vertical-tab.
2603 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
2605 (letter, id): Don't assume ASCII; e.g., spell out a-z.
2607 ({int}, handle_action_dollar, handle_action_at): Check for integer
2610 (YY_STEP): Omit trailing semicolon, so that it's more like C.
2612 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
2613 as well as \000. Check for UCHAR_MAX, not 255.
2614 Allow \x with an arbitrary positive number of digits, as in C.
2615 Check for overflow here.
2616 Allow \? and UCNs, for compatibility with C.
2618 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
2619 with quote slot used by complain_at.
2621 * tests/input.at: Add tests for backslash-newline, m4 quotes
2622 in symbols, long literals, and funny escapes in strings.
2624 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
2625 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
2626 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
2627 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
2628 * m4/mbswidth.m4: New file, from GNU coreutils.
2630 * doc/bison.texinfo (Grammar Outline): Document // comments.
2631 (Symbols): Document that trigraphs have no special meaning in Bison,
2632 nor is backslash-newline allowed.
2633 (Actions): Document that trigraphs have no special meaning.
2635 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
2638 2002-11-02 Paul Eggert <eggert@twinsun.com>
2640 * src/reader.c: Don't include quote.h; not needed.
2641 (get_merge_function): Reword warning to be consistent with
2642 type clash diagnostic in grammar_current_rule_check.
2644 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
2645 bug in trigraph handling.
2647 * src/output.c (prepare_symbols): When printing token names,
2648 escape "[" as "@<:@" and likewise for "]".
2650 * src/system.h (errno): Remove declaration, as we are now
2651 assuming C89 or better, and C89 guarantees errno.
2653 2002-10-30 Paul Eggert <eggert@twinsun.com>
2655 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
2656 Check for close failures.
2657 * src/files.h (xfclose): Return void, not int, since it always
2659 * src/files.c (xfclose): Likewise. Report I/O error if ferror
2661 * src/output.c (output_skeleton): Use xfclose rather than fclose
2662 and ferror. xfclose now checks ferror.
2664 * data/glr.c (YYLEFTMOST_STATE): Remove.
2665 (yyreportTree): Use a stack-based leftmost state. This avoids
2666 our continuing battles with bogus warnings about initializers.
2668 2002-10-30 Akim Demaille <akim@epita.fr>
2670 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
2673 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2675 * tests/glr-regr1.at: New test for reported regressions.
2676 * tests/testsuite.at: Add glr-regr1.at test.
2677 * tests/Makefile.am: Add glr-regr1.at test.
2679 2002-10-24 Paul Eggert <eggert@twinsun.com>
2683 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
2684 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
2685 we use malloc. Don't assume 'A' through 'Z' are contiguous.
2686 Don't assume strdup exists; POSIX says its an XSI extension.
2687 Check for buffer overflow on input.
2689 2002-10-24 Akim Demaille <akim@epita.fr>
2691 * src/output.c (output_skeleton): Don't disable M4sugar comments
2692 too soon: it results in comments being expanded.
2693 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
2696 2002-10-24 Akim Demaille <akim@epita.fr>
2698 * data/yacc.c (m4_int_type): New.
2699 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
2700 char' as only yacc.c wants K&R portability.
2701 * data/glr.c (yysigned_char): Remove.
2702 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
2703 Reported by Quoc Peyrot.
2705 2002-10-23 Paul Eggert <eggert@twinsun.com>
2707 * src/main.c (main): With --trace=time, report times even if a
2708 non-fatal error occurs. Formerly, the times were reported in some
2709 such cases but not in others.
2710 * src/reader.c (reader): Just return if a complaint has been issued,
2711 instead of exiting, so that 'main' can report times.
2713 2002-10-22 Akim Demaille <akim@epita.fr>
2715 * src/system.h: Include sys/types.
2716 Reported by Bert Deknuydt.
2718 2002-10-23 Paul Eggert <eggert@twinsun.com>
2720 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
2721 Suggested by Art Haas.
2723 2002-10-22 Paul Eggert <eggert@twinsun.com>
2725 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
2726 decl; not needed any more.
2727 * src/main.c (main): Use return to exit, undoing yesterday's change.
2728 The last OS that we could find where this wouldn't work is
2729 SunOS 3.5, and that's too old to worry about now.
2731 * data/glr.c (struct yyltype): Define members even when not
2732 doing locations. This is more consistent with yacc.c, and it
2733 works around the following bug reports:
2734 http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
2735 http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
2737 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
2738 @acronym consistently. Standardize on "Yacc" instead of "YACC",
2739 "Algol" instead of "ALGOL". Give a bit more history about BNF.
2741 2002-10-22 Akim Demaille <akim@epita.fr>
2745 2002-10-21 Paul Eggert <eggert@twinsun.com>
2747 Be consistent about 'bool'; the old code used an enum in one
2748 module and an int in another, and this violates the C standard.
2749 * m4/stdbool.m4: New file, from coreutils 4.5.3.
2750 * configure.ac (AC_HEADER_STDBOOL): Add.
2751 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
2752 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
2753 * src/symtab.c (hash_compare_symbol_t): Likewise.
2754 * src/system.h (bool, false, true): Use a definition consistent
2755 with ../lib/hash.c. All uses changed.
2757 * src/complain.c (warning_issued): Renamed from warn_message_count,
2758 so that we needn't worry about integer overflow (!).
2759 Now of type bool. All uses changed.
2760 (complaint_issued): Renamed from complain_message_count; likewise.
2762 * src/main.c (main): Use exit to exit with failure.
2764 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
2765 rather than 1 and 0.
2766 * src/main.c (main): Likewise.
2767 * src/getargs.c (getargs): Likewise.
2768 * src/reader.c (reader): Likewise.
2770 * src/getarg.c (getargs): Remove duplicate code for
2771 "Try `bison --help'".
2773 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
2774 What was that "2" for?
2776 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
2777 * src/getargs.c (usage): Likewise.
2779 * src/getargs.c (getargs): When there are too few operands, report
2780 the last one. When there are too many, report the first extra
2781 one. This is how diffutils does it.
2783 2002-10-20 Paul Eggert <eggert@twinsun.com>
2785 Remove K&R vestiges.
2786 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
2787 * src/complain.c (VA_START): Remove. Assume prototypes.
2788 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
2789 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
2790 fatal): Assume prototypes.
2791 * src/complain.h: Assume prototypes.
2792 * src/system.h (PARAMS): Remove.
2793 Include <limits.h> unconditionally, since it's guaranteeed even
2794 for a freestanding C89 compiler.
2795 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
2796 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
2798 2002-10-20 Akim Demaille <akim@epita.fr>
2800 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
2801 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
2802 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
2803 (yyresolveStates, yyresolveAction, yyresolveStack)
2804 (yyprocessOneStack): Use them.
2805 (yy_reduce_print): New.
2806 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
2808 2002-10-20 Akim Demaille <akim@epita.fr>
2810 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
2811 arguments and output `void'.
2812 (b4_c_function): Rename as...
2813 (b4_c_function_def): this.
2814 (b4_c_function_decl, b4_c_ansi_function_def)
2815 (b4_c_ansi_function_decl): New.
2816 Change the interpretation of the arguments: before `int, foo', now
2818 * data/yacc.c (yyparse): Prototype and define thanks to these.
2819 Adjust b4_c_function_def uses.
2820 * data/glr.c (yyparse): Likewise, but ANSI only.
2822 2002-10-20 Akim Demaille <akim@epita.fr>
2824 * src/output.c (prepare): Move the definition of `tokens_number',
2825 `nterms_number', `undef_token_number', `user_token_number_max'
2827 (prepare_tokens): Here.
2828 (prepare_tokens): Rename as...
2829 (prepare_symbols): this.
2830 (prepare): Move the definition of `rules_number' to...
2831 (prepare_rules): here.
2832 (prepare): Move the definition of `last', `final_state_number',
2833 `states_number' to...
2834 (prepare_states): here.
2835 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
2837 2002-10-20 Akim Demaille <akim@epita.fr>
2839 * src/tables.h, src/tables.c, src/output.c: Comment changes.
2841 2002-10-20 Akim Demaille <akim@epita.fr>
2843 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
2846 2002-10-20 Akim Demaille <akim@epita.fr>
2848 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
2849 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
2851 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
2853 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
2854 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
2857 2002-10-19 Paul Eggert <eggert@twinsun.com>
2859 Do not create a temporary file, as that involves security and
2860 cleanup headaches. Instead, use a pair of pipes.
2861 Derived from a suggestion by Florian Krohm.
2862 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
2863 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
2864 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
2865 (BISON_PREREQ_SUBPIPE): Add.
2866 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
2867 Add subpipe.h, subpipe.c.
2868 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
2869 * po/POTFILES.in: Add lib/subpipe.c.
2870 * src/output.c: Include "subpipe.h".
2871 (m4_invoke): Remove decl.
2872 (scan_skel): New decl.
2873 (output_skeleton): Use pipe rather than temporary file for m4 input.
2874 Check that m4sugar.m4 is readable, to avoid deadlock.
2875 Check for pipe I/O error.
2876 * src/scan-skel.l (readpipe): Remove decl.
2877 (scan_skel): New function, to be used in place of m4_invoke.
2878 Read from stream rather than file.
2880 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
2881 float, as this generates a warning on Solaris 8 + GCC 3.2 with
2882 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
2883 this generates a more-accurate value anyway.
2885 * lib/timevar.c (timervar_accumulate): Rename locals to
2886 avoid confusion with similarly-named more-global.
2887 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
2889 * src/output.c (prepare): Use xstrdup to convert char const *
2890 to char *, to avoid GCC warning.
2892 2002-10-19 Akim Demaille <akim@epita.fr>
2894 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
2895 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
2896 Use them to have `calc.y' ready for %pure-parser.
2897 * data/yacc.c (YYLEX): Pass a yylex return type to
2900 2002-10-19 Akim Demaille <akim@epita.fr>
2902 Prototype support of %lex-param and %parse-param.
2904 * src/parse-gram.y: Add the definition of the %lex-param and
2905 %parse-param tokens, plus their rules.
2906 Drop the `_' version of %glr-parser.
2908 * src/scan-gram.l (INITIAL): Scan them.
2909 * src/muscle_tab.c: Comment changes.
2910 (muscle_insert, muscle_find): Rename `pair' as `probe'.
2911 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
2912 (muscle_entry_s): The `value' member is no longer const.
2913 Adjust all dependencies.
2914 * src/muscle_tab.c (muscle_init): Adjust: use
2915 MUSCLE_INSERT_STRING.
2916 Initialize the obstack earlier.
2917 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
2918 (muscle_pair_list_grow): New.
2919 * data/c.m4 (b4_c_function_call, b4_c_args): New.
2920 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
2921 * tests/calc.at: Use %locations, not --locations.
2922 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
2924 2002-10-19 Akim Demaille <akim@epita.fr>
2926 * src/getargs.c (usage): Take status as argument and exit
2928 Report the traditional `Try ... --help' message when status != 0.
2929 (usage, version): Don't take a FILE * as arg, it is pointless.
2930 (getargs): When there is an incorrect number of arguments, make it
2931 an error, and report it GNUlically thanks to `usage ()'.
2933 2002-10-18 Paul Eggert <eggert@twinsun.com>
2935 * data/glr.c (yyreportParseError): Don't assume that sprintf
2936 yields the length of the printed string, as this is not true
2937 on SunOS 4.1.4. Reported by Peter Klein.
2939 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
2940 * tests/conflicts.at (%nonassoc and eof): Likewise.
2941 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
2943 2002-10-17 Akim Demaille <akim@epita.fr>
2945 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
2946 * src/getargs.c (trace_types, trace_args): Adjust.
2947 * src/reader.c (grammar_current_rule_prec_set)
2948 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
2949 Standardize error messages.
2951 (reader): Use trace_flag to enable scanner/parser debugging,
2952 instead of an adhoc scheme.
2953 * src/scan-gram.l: Remove trailing debugging code.
2955 2002-10-16 Paul Eggert <eggert@twinsun.com>
2957 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
2960 * NEWS: Officially drop support for building Bison with K&R C,
2961 since it didn't work anyway and it's not worth worrying about.
2962 * Makefile.maint (wget_files): Remove ansi2knr.c.
2963 (ansi2knr.c-url_prefix): Remove.
2964 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
2965 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
2966 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
2968 2002-10-15 Paul Eggert <eggert@twinsun.com>
2970 Stop using the "enum_" trick for K&R-style function definitions;
2971 it confused me, and I was the author! Instead, assume that people
2972 who want to use K&R C compilers (when using these modules in GCC,
2973 perhaps?) will run ansi2knr.
2975 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
2976 All uses of "enum_" changed to "enum ".
2977 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
2978 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
2980 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
2981 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
2982 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
2983 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
2984 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
2985 abitset_not, abitset_ones, abitset_or, abitset_or_and,
2986 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
2987 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
2988 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
2989 Use function prototypes; this removes the need for declaring
2990 static functions simply to provide their prototypes.
2991 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
2992 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
2993 bitset_count_, bitset_create, bitset_dump, bitset_first,
2994 bitset_free, bitset_init, bitset_last, bitset_next,
2995 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
2996 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
2997 bitset_print, bitset_release_memory, bitset_toggle_,
2998 bitset_type_choose, bitset_type_get, bitset_type_name_get,
2999 debug_bitset): Likewise.
3000 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
3001 * lib/bitset_stats.c (bitset_log_histogram_print,
3002 bitset_percent_histogram_print, bitset_stats_and,
3003 bitset_stats_and_cmp, bitset_stats_and_or,
3004 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
3005 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
3006 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
3007 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
3008 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
3009 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
3010 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
3011 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
3012 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
3013 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
3014 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
3015 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
3016 bitset_stats_zero): Likewise.
3017 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
3018 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
3019 bitsetv_dump, debug_bitsetv): Likewise.
3020 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
3021 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
3022 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
3023 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
3024 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
3025 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
3026 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
3027 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
3028 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
3029 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
3030 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
3032 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
3033 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
3034 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
3035 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
3036 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
3037 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
3038 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
3039 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
3040 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
3041 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
3042 lbitset_xor_cmp, lbitset_zero): Likewise.
3044 2002-10-14 Akim Demaille <akim@epita.fr>
3048 2002-10-14 Akim Demaille <akim@epita.fr>
3050 * tests/Makefile.am (maintainer-check-posix): New.
3052 2002-10-14 Akim Demaille <akim@epita.fr>
3054 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
3057 2002-10-14 Akim Demaille <akim@epita.fr>
3059 * src/tables.c (table_ninf_remap): base -> tab.
3060 Reported by Matt Rosing.
3062 2002-10-14 Paul Eggert <eggert@twinsun.com>
3064 * tests/action.at, tests/calc.at, tests/conflicts.at,
3065 tests/cxx-type.at, tests/headers.at, tests/input.at,
3066 tests/regression.at, tests/synclines.at, tests/torture.at:
3067 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
3068 so that the tests still work even if POSIXLY_CORRECT is set.
3069 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
3071 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
3072 for portability to K&R hosts. Fix typo: signed char is guaranteed
3073 only to 127, not to 128.
3074 * data/glr.c (yysigned_char): New type.
3075 * data/yacc.c (yysigned_char): Likewise.
3076 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
3078 2002-10-13 Paul Eggert <eggert@twinsun.com>
3080 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
3081 true due to limited range of data type" warning from GCC.
3083 * data/c.m4 (b4_token_defines): Protect against double-inclusion
3084 by wrapping enum yytokentype's definition inside #ifndef
3085 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
3087 2002-10-13 Akim Demaille <akim@epita.fr>
3089 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
3090 Un yy- yyrhs to avoid the name clash with the global YYRHS.
3092 2002-10-13 Akim Demaille <akim@epita.fr>
3094 * Makefile.maint: Update from Autoconf 2.54.
3095 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
3097 2002-10-13 Akim Demaille <akim@epita.fr>
3099 * src/print.c (print_state): Separate the list of solved conflicts
3100 from the other items.
3101 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
3103 2002-10-13 Akim Demaille <akim@epita.fr>
3105 Let nondeterministic skeletons be usable with deterministic
3108 With the patch, GAWK compiled by GCC without -O2 passes its test
3109 suite using a GLR parser driven by LALR tables. It fails with -O2
3110 because `struct stat' gives two different answers on my machine:
3111 88 (definition of an auto var) and later 96 (memset on this var).
3112 Hence the stack is badly corrumpted. The headers inclusion is to
3113 blame: if I move the awk.h inclusion before GLR's system header
3114 inclusion, the two struct stat have the same size.
3116 * src/tables.c (pack_table): Always create conflict_table.
3117 (token_actions): Always create conflict_list.
3118 * data/glr.c (YYFLAG): Remove, unused.
3120 2002-10-13 Akim Demaille <akim@epita.fr>
3122 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
3124 (VALGRIND, GXX): New.
3125 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
3126 * tests/bison.in: Run $PREBISON a pre-command.
3127 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
3128 (maintainer-check-g++): New.
3129 * Makefile.am (maintainer-check): New.
3131 2002-10-13 Akim Demaille <akim@epita.fr>
3133 * data/glr.c: Formatting changes.
3134 Tweak some trace messages to match yacc.c's.
3136 2002-10-13 Akim Demaille <akim@epita.fr>
3138 GLR parsers sometimes raise parse errors instead of performing the
3140 Reported by Charles-Henry de Boysson.
3142 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
3143 check the length of the traces when %glr.
3144 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
3146 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
3148 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
3149 (yyltype): Remove the yy prefix from the member names.
3150 (yytable): Complete its comment.
3151 (yygetLRActions): Map error action number from YYTABLE from
3153 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
3154 (which was a bug: it should have been YYTABEL_NINF, and yet it was
3155 not satisfying as we could compare an YYACTION computed from
3156 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
3157 only value for error actions.
3158 (yyreportParseError): In verbose parse error messages, don't issue
3159 `error' in the list of expected tokens.
3160 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
3161 next action to perform to match glr.c's decoding.
3162 (yytable): Complete its comment.
3164 2002-10-13 Paul Eggert <eggert@twinsun.com>
3166 Fix problem reported by Henrik Grubbstroem in
3167 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
3168 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
3169 because the Bison parser reads the second action before reducing
3171 * src/scan-gram.l (rule_length): New static var.
3172 Use it to keep track of the rule length in the scanner, since
3173 we can't expect the parser to be in lock-step sync with the scanner.
3174 (handle_action_dollar, handle_action_at): Use this var.
3175 * tests/actions.at (Exotic Dollars): Test for the problem.
3177 2002-10-12 Paul Eggert <eggert@twinsun.com>
3179 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
3180 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
3181 Include <sys/time.h> when checking for clock_t and struct tms.
3182 Use same include order as source.
3183 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
3184 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
3186 * lib/timevar.c: Update copyright date and clarify comments.
3187 (get_time) [IN_GCC]: Keep the GCC version for reference.
3189 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
3190 GCC version as of today, then merge Bison's changes.
3191 Change "GCC" to "Bison" in copyright notice. timevar.def's
3192 author is Akim, so change that too.
3194 * src/reader.c (grammar_current_rule_check):
3195 Don't worry about the default action if $$ is untyped.
3196 Prevents bogus warnings reported by Jim Gifford in
3197 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
3199 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
3200 * data/glr.c, data/lalr1.cc, data/yacc.c:
3201 Output token definitions before the first part of user declarations.
3202 Fixes compatibility problem reported by Jim Gifford for kbd in
3203 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
3205 2002-10-11 Paul Eggert <eggert@twinsun.com>
3207 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
3208 (yyparse): here. This undoes some of the 2002-07-25 change.
3209 Compatibility problem reported by Ralf S. Engelschall with
3210 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
3212 2002-10-11 Akim Demaille <akim@epita.fr>
3214 * tests/regression.at Characters Escapes): New.
3215 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
3217 Reported by Jan Nieuwenhuizen.
3219 2002-10-11 Akim Demaille <akim@epita.fr>
3223 2002-10-10 Paul Eggert <eggert@twinsun.com>
3225 Portability fixes for bitsets; this also avoids several GCC
3228 * lib/abitset.c: Include <stddef.h>, for offsetof.
3229 * lib/lbitset.c: Likewise.
3231 * lib/abitset.c (abitset_bytes): Return a size that is aligned
3232 properly for vectors of objects. Do not assume that adding a
3233 header size to a multiple of a word size yields a value that is
3234 properly aligned for the whole union.
3235 * lib/bitsetv.c (bitsetv_alloc): Likewise.
3237 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
3238 unique names for structures.
3239 * lib/ebitset.c (ebitset_bytes): Likewise.
3240 * lib/lbitset.c (lbitset_bytes): Likewise.
3242 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
3243 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
3244 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
3245 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
3246 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
3247 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
3248 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
3249 to improve the type-checking that GCC can do.
3250 * lib/bitset.c (bitset_op4_cmp): Likewise.
3251 * lib/bitset_stats.c (bitset_stats_count,
3252 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
3253 bitset_stats_copy, bitset_stats_disjoint_p,
3254 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
3255 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
3256 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
3257 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
3258 bitset_stats_and_or_cmp, bitset_stats_andn_or,
3259 bitset_stats_andn_or_cmp, bitset_stats_or_and,
3260 bitset_stats_or_and_cmp): Likewise.
3261 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
3262 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
3263 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
3264 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
3266 * lib/abitset.h: Include bitset.h, not bbitset.h.
3267 * lib/ebitset.h: Likewise.
3268 * lib/lbitset.h: Likewise.
3270 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
3271 All instances of parameters of type enum bitset_opts are now of
3272 type enum_bitset_opts, to conform to the C Standard, and similarly
3273 for enum_bitset_type.
3274 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
3275 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
3277 Do not use "struct bitset_struct" to mean different things in
3278 different modules. Not only is this confusing, it violates
3279 the C Standard, which requires that structure types in different
3280 modules must be compatible if one is to be passed to the other.
3281 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
3282 All instances of "struct bitset_struct *" replaced with "bitset".
3283 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
3284 (union bitset_union, struct abitset_struct, struct ebitset_struct,
3285 struct lbitset_struct, struct bitset_stats_struct): New types.
3286 All uses of struct bitset_struct changed to union bitset_union,
3288 * lib/abitset.c (struct abitset_struct, abitset,
3289 struct bitset_struct): Remove.
3290 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
3291 struct bitset_struct): Remove.
3292 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
3293 bitset_struct): Remove.
3294 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
3297 Do not call a function of type T using a call that assumes the
3298 function is of a different type U. Standard C requires that a
3299 function must be called with a type that is compatible with its
3301 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
3303 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
3305 * lib/ebitset.c (PFV): Remove.
3306 * lib/lbitset.c (PFV): Likewise.
3307 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
3308 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
3310 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
3311 (ebitset_vtable): Use them.
3312 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
3313 lbitset_xor): New functions.
3314 (lbitset_vtable): Use them.
3316 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
3319 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
3321 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
3322 Use offsetof, for simplicity.
3324 2002-10-06 Paul Eggert <eggert@twinsun.com>
3326 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
3327 the same width as int. This reapplies a hunk of the 2002-08-12 patch
3328 <http://mail.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
3329 which was inadvertently undone by the 2002-09-30 patch.
3330 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
3331 the same width as int.
3333 2002-10-04 Paul Eggert <eggert@twinsun.com>
3337 * configure.ac (AC_INIT), NEWS: Increment version number.
3339 * doc/bison.texinfo: Minor spelling, grammar, and white space
3341 (Symbols): Mention that any negative value returned from yylex
3342 signifies end-of-input. Warn about negative chars. Mention
3343 the portable Standard C character set.
3345 The GNU coding standard says CFLAGS and YFLAGS are reserved
3346 for the installer to set.
3347 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
3348 * src/Makefile.am (AM_CFLAGS): Likewise.
3349 (AM_YFLAGS): Renamed from YFLAGS.
3351 Fix some MAX and MIN problems.
3352 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
3353 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
3354 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
3355 * src/reader.c (reader): Use it.
3357 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
3358 POSIX 1003.1-2001 has removed fgrep.
3360 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
3362 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
3363 interpreted as signed.
3364 * lib/ebitset.c (ebitset_list): Fix bug.
3366 2002-10-01 Paul Eggert <eggert@twinsun.com>
3368 More fixes for 64-bit hosts and large bitsets.
3370 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
3371 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
3372 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
3373 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
3374 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
3375 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
3376 bitset_count_): Likewise.
3377 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
3378 bitset_first, bitset_last): Likewise.
3379 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
3380 bitset_stats_list_reverse, bitset_stats_size,
3381 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
3383 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
3384 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
3385 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
3386 bitsetv_reflexive_transitive_closure): Likewise.
3387 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
3388 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
3390 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
3393 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
3394 Use size_t, not unsigned int, to count bytes.
3395 * lib/abitset.h (abitset_bytes): Likewise.
3396 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
3398 * lib/bitset.h (bitset_bytes): Likewise.
3399 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
3400 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
3401 * lib/bitsetv.c (bitsetv_alloc): Likewise.
3402 * lib/ebitset.c (ebitset_bytes): Likewise.
3403 * lib/ebitset.h (ebitset_bytes): Likewise.
3404 * lib/lbitset.c (lbitset_bytes): Likewise.
3405 * lib/lbitset.h (lbitset_bytes): Likewise.
3407 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
3408 abitset_subset_p, abitset_disjoint_p, abitset_and,
3409 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
3410 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
3411 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
3412 abitset_or_and, abitset_or_and_cmp):
3413 Use bitset_windex instead of unsigned int.
3414 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
3415 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
3416 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
3417 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
3419 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
3421 * lib/bitset.c (bitset_print):
3422 Use proper printf formats for widths of integer types.
3423 * lib/bitset_stats.c (bitset_percent_histogram_print,
3424 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
3425 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
3426 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
3427 * lib/lbitset.c (lbitset_bytes): Likewise.
3429 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
3430 BITSET_SIZE_MAX): New macros.
3431 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
3432 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
3433 to BITSET_WINDEX_MAX.
3435 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
3436 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
3437 since we now return the bitset_bindex type (not int).
3439 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
3440 when computing sizes.
3441 * lib/ebitset.c (ebitset_elts_grow): Likewise.
3443 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
3444 and avoid cast to unsigned.
3446 2002-09-30 Akim Demaille <akim@epita.fr>
3448 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
3449 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
3450 Updates from Michael Hayes.
3452 2002-09-30 Art Haas <ahaas@neosoft.com>
3454 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
3456 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
3459 2002-09-27 Akim Demaille <akim@epita.fr>
3463 2002-09-27 Akim Demaille <akim@epita.fr>
3465 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
3466 (Because of AC_LIBSOURCE).
3468 2002-09-27 Akim Demaille <akim@epita.fr>
3470 Playing with Autoscan.
3472 * configure.ac: Remove the old LIBOBJ tweaks.
3473 (AC_REPLACE_FUNCS): Add strrchr and strtol.
3474 * lib/strrchr.c: New.
3475 * lib/strtol.c: New, from the Coreutils 4.5.1.
3477 2002-09-27 Akim Demaille <akim@epita.fr>
3479 Playing with Autoscan.
3481 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
3482 * lib/Makefile.am (libbison_a_SOURCES): No longer include
3483 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
3484 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
3487 2002-09-24 Akim Demaille <akim@epita.fr>
3489 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
3490 (Frequently Asked Questions, Parser Stack Overflow): New.
3492 2002-09-13 Akim Demaille <akim@epita.fr>
3494 Playing with autoscan.
3496 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
3497 * src/files.c (skeleton_find): Remove, unused.
3498 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
3499 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
3501 2002-09-13 Akim Demaille <akim@epita.fr>
3503 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
3504 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
3506 2002-09-13 Akim Demaille <akim@epita.fr>
3508 * configure.ac: Require 2.54.
3509 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
3510 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
3511 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
3512 Remove, provided by Autoconf macros.
3514 2002-09-12 Akim Demaille <akim@epita.fr>
3516 * m4/prereq.m4: Update, from Coreutils 4.5.1.
3518 2002-09-12 Akim Demaille <akim@epita.fr>
3520 * m4/prereq.m4: Update, from Fileutils 4.1.5.
3521 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
3522 Reported by Martin Mokrejs.
3524 2002-09-10 Akim Demaille <akim@epita.fr>
3526 * src/parse-gram.y: Associate a human readable string to each
3528 * tests/regression.at (Invalid inputs): Adjust.
3530 2002-09-10 Gary V. Vaughan <gary@gnu.org>
3532 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
3533 with an Autoconf-2.5x style configure.ac.
3535 2002-09-06 Paul Eggert <eggert@twinsun.com>
3537 * doc/bison.texinfo (Conditions): Make explicit that the GPL
3538 exception applies only to yacc.c. This is a modification of a
3539 patch originally suggested by Akim Demaille.
3541 2002-09-06 Akim Demaille <akim@epita.fr>
3543 * data/c.m4 (b4_copyright): Move the GPL exception comment from
3545 * data/yacc.c: here.
3547 * data/lalr1.cc (struct yyltype): Don't define it, since we use
3549 (b4_ltype): Default to yy::Location from location.hh.
3551 2002-09-04 Jim Meyering <jim@meyering.net>
3553 * data/yacc.c: Guard the declaration of yytoknum also with
3554 `#ifdef YYPRINT', so it is declared only when used.
3556 2002-09-04 Akim Demaille <akim@epita.fr>
3558 * configure.in: Rename as...
3559 * configure.ac: this.
3562 2002-09-04 Akim Demaille <akim@epita.fr>
3564 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
3565 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
3566 translate maintainer only messages.
3568 2002-08-12 Paul Eggert <eggert@twinsun.com>
3572 * Makefile.am (SUBDIRS): Remove intl.
3573 (DISTCLEANFILES): Remove.
3574 * NEWS: Mention that GNU M4 is now required. Clarify what is
3575 meant by "larger grammars". Mention the pt_BR translation.
3576 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
3577 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
3578 Bump version from 0.11.2 to 0.11.5.
3579 (BISON_PREREQ_STAGE): Remove.
3580 (AM_GNU_GETTEXT): Use external gettext.
3581 (AC_OUTPUT): Remove intl/Makefile.
3583 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
3585 * data/glr.c: Include string.h, for strlen.
3586 (yyreportParseError): Use size_t for yysize.
3587 (yy_yypstack): No longer nested inside yypstates, as nested
3588 functions are not portable. Do not assume size_t is the
3590 (yypstates): Do not assume that ptrdiff_t is the same width
3591 as int, and similarly for yyposn and YYINDEX.
3593 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
3595 * lib/Makefile.am (INCLUDES): Do not include from the intl
3596 directory, which has been removed.
3597 * src/Makefile.am (INCLUDES): Likewise.
3599 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
3600 (bitsets_sources, additional_bitsets_sources, timevars_sources):
3603 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
3604 * tests/Makefile.am (EXTRA_DIST): Likewise.
3606 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
3607 Do not assume that bitset_windex is the same width as unsigned.
3609 * lib/abitset.c (abitset_unused_clear): Do not assume that
3610 bitset_word is the same width as int.
3611 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
3612 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
3613 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
3614 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
3615 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
3617 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
3618 portability to one's complement hosts!).
3619 * lib/ebitset.c (ebitset_op1): Likewise.
3620 * lib/lbitset.c (lbitset_op1): Likewise.
3622 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
3623 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
3624 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
3625 Sync with fileutils.
3626 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
3627 lib/gettext.h: Sync with diffutils.
3629 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
3630 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
3632 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
3633 PROTOTYPES to check for prototypes, and "defined __STDC__" to
3636 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
3637 size_t; the old version tried to do this but casted improperly.
3638 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
3639 (bitset_test): Now returns int, not unsigned long.
3641 * lib/bitset_stats.c: Include "gettext.h".
3643 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
3644 name locals "index", as it generates unnecessary warnings on some
3645 hosts that have an "index" function.
3647 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
3648 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
3649 they need translation.
3650 * src/LR0.c (state_list_append, new_itemsets, get_state,
3651 append_states, generate_states): Likewise.
3652 * src/assoc.c (assoc_to_string): Likewise.
3653 * src/closure.c (print_closure, set_firsts, closure): Likewise.
3654 * src/gram.c (grammar_dump): Likewise.
3655 * src/injections.c (injections_compute): Likewise.
3656 * src/lalr.c (lookaheads_print): Likewise.
3657 * src/relation.c (relation_transpose): Likewise.
3658 * src/scan-gram.l: Likewise.
3659 * src/tables.c (table_grow, pack_vector): Likewise.
3661 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
3662 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
3663 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
3664 * m4/mbstate_t.m4: Sync with fileutils.
3665 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
3667 * po/LINGUAS: Add pt_BR.
3668 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
3669 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
3671 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
3673 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
3675 * src/complain.c (strerror_r): Remove decl; not needed.
3676 (strerror): Use same pattern as ../lib/error.c.
3678 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
3680 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
3682 * src/main.c (main): Cast result of bindtextdomain and textdomain
3683 to void, to avoid a GCC warning when --disable-nls is in effect.
3685 * src/scan-gram.l: Use strings rather than escapes when possible,
3686 to minimize the number of warnings from xgettext.
3687 (handle_action_dollar, handle_action_at): Don't use isdigit,
3688 as it mishandles negative chars and it may not work as expected
3689 outside the C locale.
3691 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
3692 this is a GCC extension and is not portable to other compilers.
3694 * src/system.h (alloca): Use same pattern as ../lib/error.c.
3695 Do not include <ctype.h>; no longer needed.
3696 Do not include <malloc.h>; no longer needed (and generates
3697 warnings on OpenBSD 3.0).
3699 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
3702 * tests/regression.at: Do not use 'cc -c input.c -o input';
3703 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
3705 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
3706 exit status as failure, not just exit status 1. Sun C exits
3707 with status 2 sometimes.
3709 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
3710 Use it for the two large tests.
3712 2002-08-02 Akim Demaille <akim@epita.fr>
3714 * src/conflicts.c (conflicts_output): Don't output rules never
3715 reduced here, since anyway that computation doesn't work.
3716 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
3717 (rule_useless_p, rule_never_reduced_p): New.
3718 (grammar_rules_partial_print): Use a filter instead of a range.
3719 Display the title only if needed.
3720 (grammar_rules_print): Adjust.
3721 (grammar_rules_never_reduced_report): New.
3722 * src/tables.c (action_row): Move the computation of rules never
3724 (token_actions): here.
3725 * src/main.c (main): Make the parser before making the report, so
3726 that rules never reduced are computed.
3727 Call grammar_rules_never_reduced_report.
3728 * src/print.c (print_results): Report rules never reduced.
3729 * tests/conflicts.at, tests/reduce.at: Adjust.
3731 2002-08-01 Akim Demaille <akim@epita.fr>
3733 Instead of attaching lookaheads and duplicating the rules being
3734 reduced by a state, attach the lookaheads to the reductions.
3736 * src/state.h (state_t): Remove the `lookaheads',
3737 `lookaheads_rule' member.
3738 (reductions_t): Add a `lookaheads' member.
3739 Use a regular array for the `rules'.
3740 * src/state.c (reductions_new): Initialize the lookaheads member
3742 (state_rule_lookaheads_print): Adjust.
3743 * src/state.h, src/state.c (state_reductions_find): New.
3744 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
3745 (count_rr_conflicts): Adjust.
3746 * src/lalr.c (LArule): Remove.
3747 (add_lookback_edge): Adjust.
3748 (state_lookaheads_count): New.
3749 (states_lookaheads_initialize): Merge into...
3750 (initialize_LA): this.
3751 (lalr_free): Adjust.
3752 * src/main.c (main): Don't free nullable and derives too early: it
3753 is used by --verbose.
3754 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
3756 2002-08-01 Akim Demaille <akim@epita.fr>
3758 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
3760 (set_derives, free_derives): Rename as...
3761 (derives_compute, derives_free): this.
3762 Adjust all dependencies.
3763 * src/nullable.c (set_nullable, free_nullable): Rename as...
3764 (nullable_compute, nullable_free): these.
3765 (rule_list_t): Store rule_t *, not rule_number_t.
3766 * src/state.c (state_rule_lookaheads_print): Directly compare rule
3767 pointers, instead of their numbers.
3768 * src/main.c (main): Call nullable_free, and derives_free earlier,
3769 as they were lo longer used.
3771 2002-08-01 Akim Demaille <akim@epita.fr>
3773 * lib/timevar.c (get_time): Include children time.
3774 * src/lalr.h (LA, LArule): Don't export them: used with the
3776 * src/lalr.c (LA, LArule): Static.
3777 * src/lalr.h, src/lalr.c (lalr_free): New.
3778 * src/main.c (main): Call it.
3779 * src/tables.c (pack_vector): Check whether loc is >= to the
3781 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
3782 (tables_generate): do it, since that's also it which allocates
3784 Don't free LA and LArule, main does.
3786 2002-07-31 Akim Demaille <akim@epita.fr>
3788 Separate parser tables computation and output.
3790 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
3791 (conflict_list, conflict_list_cnt, table, check, table_ninf)
3792 (yydefgoto, yydefact, high): Move to...
3793 * src/tables.h, src/tables.c: here.
3794 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
3795 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
3796 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
3797 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
3798 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
3799 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
3800 (action_row, save_row, token_actions, save_column, default_goto)
3801 (goto_actions, sort_actions, matching_state, pack_vector)
3802 (table_ninf_remap, pack_table, prepare_actions): Move to...
3803 * src/tables.c: here.
3804 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
3805 * src/output.c (token_actions, output_base, output_conflicts)
3806 (output_check): Merge into...
3807 (prepare_actions): this.
3808 (actions_output): Rename as...
3809 (user_actions_output): this.
3810 * src/main.c (main): Call tables_generate and tables_free.
3812 2002-07-31 Akim Demaille <akim@epita.fr>
3814 Steal GCC's --time-report support.
3816 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
3817 stolen/adjusted from GCC.
3818 * m4/stage.m4: Remove time related checks.
3819 * m4/timevar.m4: New.
3820 * configure.in: Adjust.
3821 * src/system.h: Adjust to using timevar.h.
3822 * src/getargs.h, src/getargs.c: Support trace_time for
3824 * src/main.c (stage): Remove.
3825 (main): Replace `stage' invocations with timevar calls.
3826 * src/output.c: Insert pertinent timevar calls.
3828 2002-07-31 Akim Demaille <akim@epita.fr>
3830 Let --trace have arguments.
3832 * src/getargs.h (enum trace_e): New.
3833 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
3834 (long_options, short_options): --trace/-T takes an optional
3836 Change all the uses of trace_flag to reflect the new flags.
3837 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
3839 Strengthen `stage' portability.
3841 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
3842 * configure.in: Use it.
3843 Don't check for malloc.h and sys/times.h.
3844 * src/system.h: Include them when appropriate.
3845 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
3846 times and struct tms are available.
3848 2002-07-30 Akim Demaille <akim@epita.fr>
3850 In verbose parse error message, don't report `error' as an
3852 * tests/actions.at (Printers and Destructors): Adjust.
3853 * tests/calc.at (Calculator $1): Adjust.
3854 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
3855 error message, do not report the parser accepts the error token in
3858 2002-07-30 Akim Demaille <akim@epita.fr>
3860 Normalize conflict related messages.
3862 * src/complain.h, src/complain.c (warn, complain): New.
3863 * src/conflicts.c (conflicts_print): Use them.
3864 (conflict_report_yacc): New, extracted from...
3865 (conflicts_print): here.
3866 * tests/conflicts.at, tests/existing.at: Adjust.
3868 2002-07-30 Akim Demaille <akim@epita.fr>
3870 Report rules which are never reduced by the parser: those hidden
3873 * src/LR0.c (save_reductions): Don't make the final state too
3874 different: save its reduction (accept) instead of having a state
3875 without any action (no shift or goto, no reduce).
3876 Note: the final state is now a ``regular'' state, i.e., the
3877 parsers now contain `reduce 0' as default reduction.
3878 Nevertheless, since they decide to `accept' when yystate =
3879 final_state, they still will not reduce rule 0.
3880 * src/print.c (print_actions, print_reduction): Adjust.
3881 * src/output.c (action_row): Track reduced rules.
3882 (token_actions): Report rules never reduced.
3883 * tests/conflicts.at, tests/regression.at: Adjust.
3885 2002-07-30 Akim Demaille <akim@epita.fr>
3887 `stage' was accidently included in a previous patch.
3888 Initiate its autoconfiscation.
3890 * configure.in: Look for malloc.h and sys/times.h.
3891 * src/main.c (stage): Adjust.
3892 Report only when trace_flag.
3894 2002-07-29 Akim Demaille <akim@epita.fr>
3896 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
3898 (errs_t): symbol_t*, not symbol_number_t.
3899 (reductions_t): rule_t*, not rule_number_t.
3900 (FOR_EACH_SHIFT): New.
3901 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
3902 * src/print.c, src/print_graph.c: Adjust.
3904 2002-07-29 Akim Demaille <akim@epita.fr>
3906 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
3908 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
3909 (endtoken, accept): these.
3910 * src/reader.c (reader): Set endtoken's default tag to "$end".
3911 Set undeftoken's tag to "$undefined" instead of "$undefined.".
3912 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
3915 2002-07-29 Akim Demaille <akim@epita.fr>
3917 * src/reduce.c (reduce_grammar): When the language is empty,
3918 complain about the start symbol, not the axiom.
3920 * tests/reduce.at (Empty Language): New.
3922 2002-07-26 Akim Demaille <akim@epita.fr>
3924 * src/reader.h, src/reader.c (gram_error): ... can't get
3925 yycontrol without making too strong assumptions on the parser
3927 * src/output.c (prepare_tokens): Use the real 0th value of
3928 token_translations instead of `0'.
3929 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
3931 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
3932 for the time being: %locations ought to provide it to yyerror.
3934 2002-07-25 Akim Demaille <akim@epita.fr>
3936 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
3937 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
3938 * tests/regression.at (Web2c Actions): Adjust.
3940 2002-07-25 Akim Demaille <akim@epita.fr>
3942 Stop storing rules from 1 to nrules + 1.
3944 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
3945 * src/nullable.c, src/output.c, src/print.c, src/reader.c
3946 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
3947 Iterate from 0 to nrules.
3948 Use rule_number_as_item_number and item_number_as_rule_number.
3949 Adjust to `derive' now containing possibly 0.
3950 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
3951 Handle the `- 1' part in rule numbers from/to item numbers.
3952 * src/conflicts.c (log_resolution): Fix the message which reversed
3954 * src/output.c (action_row): Initialize default_rule to -1.
3955 (token_actions): Adjust.
3956 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
3958 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
3960 2002-07-25 Akim Demaille <akim@epita.fr>
3962 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
3963 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
3964 (b4_c_knr_arg_decl): New.
3965 * data/yacc.c: Use it to define yysymprint, yydestruct, and
3966 yyreport_parse_error.
3968 2002-07-25 Akim Demaille <akim@epita.fr>
3970 * data/yacc.c (yyreport_parse_error): New, extracted from...
3972 (yydestruct, yysymprint): Move above yyparse.
3975 2002-07-25 Akim Demaille <akim@epita.fr>
3977 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
3979 (b4_sint_type, b4_uint_type): these.
3980 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
3981 * tests/regression.at (Web2c Actions): Adjust.
3983 2002-07-25 Akim Demaille <akim@epita.fr>
3985 * src/gram.h (TIEM_NUMBER_MAX): New.
3986 (item_number_of_rule_number, rule_number_of_item_number): Rename
3988 (rule_number_as_item_number, item_number_as_rule_number): these.
3989 Adjust dependencies.
3990 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
3991 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
3992 (symbol_number_to_vector_number): New.
3993 (order): Of vector_number_t* type.
3994 (base_t, BASE_MAX, BASE_MIN): New.
3995 (froms, tos, width, pos, check): Of base_t type.
3996 (action_number_t, ACTION_MIN, ACTION_MAX): New.
3997 (actrow): Of action_number_t type.
3998 (conflrow): Of unsigned int type.
3999 (table_ninf, base_ninf): New.
4000 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
4001 (muscle_insert_int_table, muscle_insert_base_table)
4002 (muscle_insert_rule_number_table): New.
4003 (prepare_tokens): Output `toknum' as int_table.
4004 (action_row): Returns a rule_number_t.
4005 Use ACTION_MIN, not SHRT_MIN.
4006 (token_actions): yydefact is rule_number_t*.
4007 (table_ninf_remap): New.
4008 (pack_table): Use it for `base' and `table'.
4009 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
4011 (YYPACT_NINF, YYTABLE_NINF): these.
4012 (yypact, yytable): Compute their types instead of hard-coded
4014 * tests/regression.at (Web2c Actions): Adjust.
4016 2002-07-19 Akim Demaille <akim@epita.fr>
4018 * src/scan-gram.l (id): Can start with an underscore.
4020 2002-07-16 Akim Demaille <akim@epita.fr>
4022 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
4023 Adjust all former `associativity' dependencies.
4024 * src/symtab.c (symbol_new): Default associativity is `undef', not
4026 (symbol_check_alias_consistence): Adjust.
4028 2002-07-09 Akim Demaille <akim@epita.fr>
4030 * doc/bison.texinfo: Properly set the ``header'' part.
4031 Use @dircategory ``GNU programming tools'' as per Texinfo's
4035 2002-07-09 Akim Demaille <akim@epita.fr>
4037 * lib/quotearg.h: Protect against multiple inclusions.
4038 * src/location.h (location_t): Add a `file' member.
4039 (LOCATION_RESET, LOCATION_PRINT): Adjust.
4040 * src/complain.c (warn_at, complain_at, fatal_at): Drop
4041 `error_one_per_line' support.
4043 2002-07-09 Akim Demaille <akim@epita.fr>
4045 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
4046 * src/reader.c (lineno): Remove.
4047 Adjust all dependencies.
4048 (get_merge_function): Take a location and use complain_at.
4049 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
4050 * tests/regression.at (Invalid inputs, Mixing %token styles):
4053 2002-07-09 Akim Demaille <akim@epita.fr>
4055 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
4056 recovery rule, and forbid extensions when --yacc.
4057 (gram_error): Use complain_at.
4058 * src/reader.c (reader): Exit if there were parse errors.
4060 2002-07-09 Akim Demaille <akim@epita.fr>
4062 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
4063 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
4064 Reported by R Blake <blakers@mac.com>.
4066 2002-07-09 Akim Demaille <akim@epita.fr>
4068 * data/yacc.c: Output the copyright notive in the header.
4070 2002-07-03 Akim Demaille <akim@epita.fr>
4072 * src/output.c (froms, tos): Are state_number_t.
4073 (save_column): sp, sp1, and sp2 are state_number_t.
4074 (prepare): Rename `final' as `final_state_number', `nnts' as
4075 `nterms_number', `nrules' as `rules_number', `nstates' as
4076 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
4078 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
4079 * data/lalr1.cc (nsym_): Remove, unused.
4081 2002-07-03 Akim Demaille <akim@epita.fr>
4083 * src/lalr.h, src/lalr.c (goto_number_t): New.
4084 * src/lalr.c (goto_list_t): New.
4086 * src/nullable.c (rule_list_t): New.
4088 * src/types.h: Remove.
4090 2002-07-03 Akim Demaille <akim@epita.fr>
4092 * src/closure.c (print_fderives): Use rule_rhs_print.
4093 * src/derives.c (print_derives): Use rule_rhs_print.
4094 (rule_list_t): New, replaces `shorts'.
4095 (set_derives): Add comments.
4096 * tests/sets.at (Nullable, Firsts): Adjust.
4098 2002-07-03 Akim Demaille <akim@epita.fr>
4100 * src/output.c (prepare_actions): Free `tally' and `width'.
4101 (prepare_actions): Allocate and free `order'.
4102 * src/symtab.c (symbols_free): Free `symbols'.
4103 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
4104 * src/output.c (m4_invoke): Move to...
4105 * src/scan-skel.l: here.
4106 (<<EOF>>): Close yyout, and free its name.
4108 2002-07-03 Akim Demaille <akim@epita.fr>
4110 Fix some memory leaks, and fix a bug: state 0 was examined twice.
4112 * src/LR0.c (new_state): Merge into...
4113 (state_list_append): this.
4114 (new_states): Merge into...
4115 (generate_states): here.
4116 (set_states): Don't ensure a proper `errs' state member here, do it...
4117 * src/conflicts.c (conflicts_solve): here.
4118 * src/state.h, src/state.c: Comment changes.
4119 (state_t): Rename member `shifts' as `transitions'.
4120 Adjust all dependencies.
4121 (errs_new): For consistency, also take the values as argument.
4123 (state_errs_set): New.
4124 (state_reductions_set, state_transitions_set): Assert that no
4125 previous value was assigned.
4127 (states_free): Use it.
4128 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
4129 temporary storage: use `errs' and `nerrs' as elsewhere.
4130 (set_conflicts): Allocate and free this `errs'.
4132 2002-07-02 Akim Demaille <akim@epita.fr>
4134 * lib/libiberty.h: New.
4135 * lib: Update the bitset implementation from upstream.
4136 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
4137 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
4138 * src/main.c: Adjust bitset stats calls.
4140 2002-07-01 Paul Eggert <eggert@twinsun.com>
4142 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
4143 char, so that negative chars don't collide with $.
4145 2002-06-30 Akim Demaille <akim@epita.fr>
4147 Have the GLR tests be `warning' checked, and fix the warnings.
4149 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
4150 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
4151 (yyremoveDeletes): `yyi' and `yyj' are size_t.
4152 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
4153 (yyaddDeferredAction): static.
4154 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
4155 (yyreportParseError): yyprefix is const.
4156 yytokenp is used only when verbose.
4157 (yy__GNUC__): Replace with __GNUC__.
4158 (yypdumpstack): yyi is size_t.
4159 (yypreference): Un-yy local variables and arguments, to avoid
4160 clashes with `yyr1'. Anyway, we are not in the user name space.
4161 (yytname_size): be an int, as is compared with ints.
4162 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
4164 * tests/cxx-gram.at: Use quotation to protect $1.
4165 Use AT_COMPILE to enable warnings hunts.
4166 Prototype yylex and yyerror.
4168 Include `string.h', not `strings.h'.
4169 Produce and prototype stmtMerge only when used.
4170 yylex takes a location.
4172 2002-06-30 Akim Demaille <akim@epita.fr>
4174 We spend a lot of time in quotearg, in particular when --verbose.
4176 * src/symtab.c (symbol_get): Store a quoted version of the key.
4177 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
4180 2002-06-30 Akim Demaille <akim@epita.fr>
4182 * src/state.h (reductions_t): Rename member `nreds' as num.
4183 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
4184 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
4186 2002-06-30 Akim Demaille <akim@epita.fr>
4188 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
4189 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
4190 (shifts_to): Rename as...
4191 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
4192 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
4193 (TRANSITION_IS_DISABLED, transitions_to): these.
4195 2002-06-30 Akim Demaille <akim@epita.fr>
4197 * src/print.c (print_shifts, print_gotos): Merge into...
4198 (print_transitions): this.
4199 (print_transitions, print_errs, print_reductions): Align the
4201 (print_core, print_transitions, print_errs, print_state,
4202 print_grammar): Output empty lines separator before, not after.
4203 (state_default_rule_compute): Rename as...
4204 (state_default_rule): this.
4205 * tests/conflicts.at (Defaulted Conflicted Reduction),
4206 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
4207 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
4209 2002-06-30 Akim Demaille <akim@epita.fr>
4211 Display items as we display rules.
4213 * src/gram.h, src/gram.c (rule_lhs_print): New.
4214 * src/gram.c (grammar_rules_partial_print): Use it.
4215 * src/print.c (print_core): Likewise.
4216 * tests/conflicts.at (Defaulted Conflicted Reduction),
4217 (Unresolved SR Conflicts): Adjust.
4218 (Unresolved SR Conflicts): Adjust and rename as...
4219 (Resolved SR Conflicts): this, as was meant.
4220 * tests/regression.at (Web2c Report): Adjust.
4222 2002-06-30 Akim Demaille <akim@epita.fr>
4224 * src/print.c (state_default_rule_compute): New, extracted from...
4225 (print_reductions): here.
4226 Pessimize, but clarify the code.
4227 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
4229 2002-06-30 Akim Demaille <akim@epita.fr>
4231 * src/output.c (action_row): Let default_rule be always a rule
4234 2002-06-30 Akim Demaille <akim@epita.fr>
4236 * src/closure.c (print_firsts, print_fderives, closure):
4238 * src/lalr.c (lookaheads_print): Likewise.
4239 * src/state.c (state_rule_lookaheads_print): Likewise.
4240 * src/print_graph.c (print_core): Likewise.
4241 * src/print.c (print_reductions): Likewise.
4242 * src/output.c (action_row): Likewise.
4243 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
4245 2002-06-30 Akim Demaille <akim@epita.fr>
4247 * src/print_graph.c: Use report_flag.
4249 2002-06-30 Akim Demaille <akim@epita.fr>
4251 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
4253 * src/relation.h, src/relation.c (traverse, relation_digraph)
4254 (relation_print, relation_transpose): New.
4256 2002-06-30 Akim Demaille <akim@epita.fr>
4258 * src/state.h, src/state.c (shifts_to): New.
4259 * src/lalr.c (build_relations): Use it.
4261 2002-06-30 Akim Demaille <akim@epita.fr>
4263 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
4264 (item_number_of_rule_number, rule_number_of_item_number): New.
4265 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
4266 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
4267 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
4268 Propagate their use.
4269 Much remains to be done, in particular wrt `shorts' from types.h.
4271 2002-06-30 Akim Demaille <akim@epita.fr>
4273 * src/symtab.c (symbol_new): Initialize the `printer' member.
4275 2002-06-30 Akim Demaille <akim@epita.fr>
4277 * src/LR0.c (save_reductions): Remove, replaced by...
4278 * src/state.h, src/state.c (state_reductions_set): New.
4279 (reductions, errs): Rename as...
4280 (reductions_t, errs_t): these.
4281 Adjust all dependencies.
4283 2002-06-30 Akim Demaille <akim@epita.fr>
4285 * src/LR0.c (state_list_t, state_list_append): New.
4286 (first_state, last_state): Now symbol_list_t.
4287 (this_state): Remove.
4288 (new_itemsets, append_states, save_reductions): Take a state_t as
4290 (set_states, generate_states): Adjust.
4291 (save_shifts): Remove, replaced by...
4292 * src/state.h, src/state.c (state_shifts_set): New.
4293 (shifts): Rename as...
4295 Adjust all dependencies.
4296 * src/state.h (state_t): Remove the `next' member.
4298 2002-06-30 Akim Demaille <akim@epita.fr>
4300 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
4303 2002-06-30 Akim Demaille <akim@epita.fr>
4305 Use hash.h for the state hash table.
4307 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
4308 (allocate_storage): Use state_hash_new.
4309 (free_storage): Use state_hash_free.
4310 (new_state, get_state): Adjust.
4311 * src/lalr.h, src/lalr.c (states): Move to...
4312 * src/states.h (state_t): Remove the `link' member, no longer
4314 * src/states.h, src/states.c: here.
4315 (state_hash_new, state_hash_free, state_hash_lookup)
4316 (state_hash_insert, states_free): New.
4317 * src/states.c (state_table, state_compare, state_hash): New.
4318 * src/output.c (output_actions): Do not free states now, since we
4319 still need to know the final_state number in `prepare', called
4320 afterwards. Do it...
4321 * src/main.c (main): here: call states_free after `output'.
4323 2002-06-30 Akim Demaille <akim@epita.fr>
4325 * src/state.h, src/state.c (state_new): New, extracted from...
4326 * src/LR0.c (new_state): here.
4327 * src/state.h (STATE_ALLOC): Move to...
4328 * src/state.c: here.
4329 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
4330 * src/state.h, src/state.c: here.
4332 2002-06-30 Akim Demaille <akim@epita.fr>
4334 * src/reader.c (gensym): Rename as...
4335 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
4336 (getsym): Rename as...
4339 2002-06-30 Akim Demaille <akim@epita.fr>
4341 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
4342 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
4343 * src/output.c, src/print.c, src/print_graph.c: Propagate.
4344 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
4346 2002-06-30 Akim Demaille <akim@epita.fr>
4348 Make the test suite pass with warnings checked.
4350 * tests/actions.at (Printers and Destructors): Improve.
4351 Avoid unsigned vs. signed issues.
4352 * tests/calc.at: Don't exercise the scanner here, do it...
4353 * tests/input.at (Torturing the Scanner): here.
4355 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4357 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
4358 reorganize first lines parallel to yacc.c.
4360 2002-06-28 Akim Demaille <akim@epita.fr>
4362 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
4363 (b4_token_enum, b4_token_defines): New, factored from...
4364 * data/lalr1.cc, data/yacc.c, glr.c: here.
4366 2002-06-28 Akim Demaille <akim@epita.fr>
4368 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
4370 * src/output.c (merger_output): static.
4372 2002-06-28 Akim Demaille <akim@epita.fr>
4374 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
4375 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
4377 * src/output.c (save_row): Initialize all the variables to pacify GCC.
4379 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4381 Accumulated changelog for new GLR parsing features.
4383 * src/conflicts.c (count_total_conflicts): Change name to
4384 conflicts_total_count.
4385 * src/conflicts.h: Ditto.
4386 * src/output.c (token_actions): Use the new name.
4387 (output_conflicts): Change conflp => conflict_list_heads, and
4388 confl => conflict_list for better readability.
4389 * data/glr.c: Use the new names.
4390 * NEWS: Add self to GLR announcement.
4392 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
4394 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
4397 * data/bison.glr: Change name to glr.c
4398 * data/glr.c: Renamed from bison.glr.
4399 * data/Makefile.am: Add glr.c
4403 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
4404 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
4406 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4408 * data/bison.glr: Be sure to restore the
4409 current #line when returning to the skeleton contents after having
4410 exposed the input file's #line.
4412 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4414 * data/bison.glr: Bring up to date with changes to bison.simple.
4416 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4418 * data/bison.glr: Correct definitions that use b4_prefix.
4419 Various reformatting.
4420 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
4421 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
4422 yytokenp argument; now part of stack.
4423 (yychar): Define to behave as documented.
4426 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4428 * src/reader.h: Add declaration for free_merger_functions.
4430 * src/reader.c (merge_functions): New variable.
4431 (get_merge_function): New function.
4432 (free_merger_functions): New function.
4433 (readgram): Check for %prec that is not followed by a symbol.
4434 Handle %dprec and %merge declarations.
4435 (packgram): Initialize dprec and merger fields in rules array.
4437 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
4438 conflict_list_cnt, conflict_list_free): New variables.
4439 (table_grow): Also grow conflict_table.
4440 (prepare_rules): Output dprec and merger tables.
4441 (conflict_row): New function.
4442 (action_row): Output conflict lists for GLR parser. Don't use
4443 default reduction in conflicted states for GLR parser so that there
4444 are spaces for the conflict lists.
4445 (save_row): Also save conflict information.
4446 (token_actions): Allocate conflict list.
4447 (merger_output): New function.
4448 (pack_vector): Pack conflict table, too.
4449 (output_conflicts): New function to output yyconflp and yyconfl.
4450 (output_check): Allocate conflict_tos.
4451 (output_actions): Output conflict tables, also.
4452 (output_skeleton): Output b4_mergers definition.
4453 (prepare): Output b4_max_rhs_length definition.
4454 Use 'bison.glr' as default skeleton for GLR parsers.
4456 * src/gram.c (glr_parser): New flag.
4457 (grammar_free): Call free_merger_functions.
4459 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
4460 all pairs of conflicting reductions, rather than just all tokens
4461 causing conflicts. Needed to size conflict tables.
4462 (conflicts_output): Modify call to count_rr_conflicts for new
4464 (conflicts_print): Ditto.
4465 (count_total_conflicts): New function.
4467 * src/reader.h (merger_list): New type.
4468 (merge_functions): New variable.
4470 * src/lex.h (tok_dprec, tok_merge): New token types.
4472 * src/gram.h (rule_s): Add dprec and merger fields.
4473 (glr_parser): New flag.
4475 * src/conflicts.h (count_total_conflicts): New function.
4477 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
4479 * doc/bison.texinfo (Generalized LR Parsing): New section.
4480 (GLR Parsers): New section.
4481 (Language and Grammar): Mention GLR parsing.
4482 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
4483 Correct typo ("tge" -> "the").
4485 * data/bison.glr: New skeleton for GLR parsing.
4487 * tests/cxx-gram.at: New tests for GLR parsing.
4489 * tests/testsuite.at: Include cxx-gram.at.
4491 * tests/Makefile.am: Add cxx-gram.at.
4495 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
4497 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
4499 2002-06-27 Akim Demaille <akim@epita.fr>
4501 * src/options.h, src/options.c: Remove.
4502 * src/getargs.c (short_options, long_options): New.
4504 2002-06-27 Akim Demaille <akim@epita.fr>
4506 * data/bison.simple, data/bison.c++: Rename as...
4507 * data/yacc.c, data/lalr1.cc: these.
4508 * doc/bison.texinfo (Environment Variables): Remove.
4510 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
4512 * src/getargs.c (report_argmatch): Initialize strtok().
4514 2002-06-20 Akim Demaille <akim@epita.fr>
4516 * data/bison.simple (b4_symbol_actions): New, replaces...
4517 (b4_symbol_destructor, b4_symbol_printer): these.
4518 (yysymprint): Be sure to call YYPRINT only for tokens, and using
4521 2002-06-20 Akim Demaille <akim@epita.fr>
4523 * data/bison.simple (yydestructor): Rename as...
4526 2002-06-20 Akim Demaille <akim@epita.fr>
4528 * src/symtab.h, src/symtab.c (symbol_type_set)
4529 (symbol_destructor_set, symbol_precedence_set): The location is
4533 2002-06-20 Akim Demaille <akim@epita.fr>
4535 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
4537 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
4539 * src/symtab.h, src/symtab.c (symbol_class_set)
4540 (symbol_user_token_number_set): Likewise.
4542 Promote complain_at.
4543 * tests/input.at (Type Clashes): Adjust.
4545 2002-06-20 Akim Demaille <akim@epita.fr>
4547 * data/bison.simple (YYLEX): Fix the declaration when
4550 2002-06-20 Akim Demaille <akim@epita.fr>
4552 * data/bison.simple (yysymprint): Don't print the token number,
4554 * tests/actions.at (Destructors): Rename as...
4555 (Printers and Destructors): this.
4556 Also exercise %printer.
4558 2002-06-20 Akim Demaille <akim@epita.fr>
4560 * data/bison.simple (YYDSYMPRINT): New.
4561 Use it to remove many of the #if YYDEBUG/if (yydebug).
4563 2002-06-20 Akim Demaille <akim@epita.fr>
4565 * src/symtab.h, src/symtab.c (symbol_t): printer and
4566 printer_location are new members.
4567 (symbol_printer_set): New.
4568 * src/parse-gram.y (PERCENT_PRINTER): New token.
4569 Handle its associated rule.
4570 * src/scan-gram.l: Adjust.
4571 (handle_destructor_at, handle_destructor_dollar): Rename as...
4572 (handle_symbol_code_at, handle_symbol_code_dollar): these.
4573 * src/output.c (symbol_printers_output): New.
4574 (output_skeleton): Call it.
4575 * data/bison.simple (yysymprint): New. Cannot be named yyprint
4576 since there are already many grammar files with a user `yyprint'.
4577 Replace the calls to YYPRINT to calls to yysymprint.
4578 * tests/calc.at: Adjust.
4579 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
4580 taking advantage of parser very internal details (stack size!).
4582 2002-06-20 Akim Demaille <akim@epita.fr>
4584 * src/scan-gram.l: Complete the scanner with the missing patterns
4586 Use `quote' and `symbol_tag_get' where appropriate.
4588 2002-06-19 Akim Demaille <akim@epita.fr>
4590 * tests/actions.at (Destructors): Augment to test locations.
4591 * data/bison.simple (yydestructor): Pass it the current location
4592 if locations are enabled.
4593 Prototype only when __STDC__ or C++.
4594 Change the argument names to move into the yy name space: there is
4597 2002-06-19 Akim Demaille <akim@epita.fr>
4599 * data/bison.simple (b4_pure_if): New.
4600 Use it instead of #ifdef YYPURE.
4602 2002-06-19 Akim Demaille <akim@epita.fr>
4604 * data/bison.simple (b4_location_if): New.
4605 Use it instead of #ifdef YYLSP_NEEDED.
4607 2002-06-19 Akim Demaille <akim@epita.fr>
4609 Prepare @$ in %destructor, but currently don't bind it in the
4610 skeleton, as %location use is not cleaned up yet.
4612 * src/scan-gram.l (handle_dollar, handle_destructor_at)
4613 (handle_action_at): New.
4614 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
4615 a braced_code_t and a location as additional arguments.
4616 (handle_destructor_dollar): Instead of requiring `b4_eval', just
4617 unquote one when outputting `b4_dollar_dollar'.
4619 * data/bison.simple (b4_eval): Remove.
4620 (b4_symbol_destructor): Adjust.
4621 * tests/input.at (Invalid @n): Adjust.
4623 2002-06-19 Zack Weinberg <zack@codesourcery.com>
4625 * doc/bison.texinfo: Document ability to have multiple
4628 2002-06-18 Akim Demaille <akim@epita.fr>
4630 * src/files.c (compute_base_names): When computing the output file
4631 names from the input file name, strip the directory part.
4633 2002-06-18 Akim Demaille <akim@epita.fr>
4635 * data/bison.simple.new: Comment changes.
4636 Reported by Andreas Schwab.
4638 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
4640 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
4641 there are no `label `yyoverflowlab' defined but not used' warnings
4642 when yyoverflow is defined.
4644 2002-06-18 Akim Demaille <akim@epita.fr>
4646 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
4648 (symbol_destructor_set): Adjust.
4649 * src/output.c (symbol_destructors_output): Output the destructor
4651 Output the symbol name.
4652 * data/bison.simple (b4_symbol_destructor): Adjust.
4654 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
4655 and Akim Demaille <akim@epita.fr>
4657 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
4658 what's left on the stack when the error recovery hits EOF.
4659 * tests/actions.at (Destructors): Complete to exercise this case.
4661 2002-06-17 Akim Demaille <akim@epita.fr>
4663 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
4664 arguments is really empty, not only equal to `[]'.
4665 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
4667 (symbol_destructor_set): New.
4668 * src/output.c (symbol_destructors_output): New.
4669 * src/reader.h (brace_code_t, current_braced_code): New.
4670 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
4671 (handle_dollar): Rename as...
4672 (handle_action_dollar): this.
4673 (handle_destructor_dollar): New.
4674 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
4675 (grammar_declaration): Use it.
4676 * data/bison.simple (yystos): Is always defined.
4677 (yydestructor): New.
4678 * tests/actions.at (Destructors): New.
4679 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
4681 2002-06-17 Akim Demaille <akim@epita.fr>
4683 * src/symlist.h, src/symlist.c (symbol_list_length): New.
4684 * src/scan-gram.l (handle_dollar, handle_at): Compute the
4685 rule_length only when needed.
4686 * src/output.c (actions_output, token_definitions_output): Output
4688 * src/symtab.c: Don't access directly to the symbol tag, use
4690 * src/parse-gram.y: Use symbol_list_free.
4692 2002-06-17 Akim Demaille <akim@epita.fr>
4694 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
4695 (symbol_list_prepend, get_type_name): Move to...
4696 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
4697 (symbol_list_prepend, symbol_list_n_type_name_get): here.
4699 (symbol_list_free): New.
4700 * src/scan-gram.l (handle_dollar): Takes a location.
4701 * tests/input.at (Invalid $n): Adjust.
4703 2002-06-17 Akim Demaille <akim@epita.fr>
4705 * src/reader.h, src/reader.c (symbol_list_new): Export it.
4706 (symbol_list_prepend): New.
4707 * src/parse-gram.y (%union): `list' is a new member.
4708 (symbols.1): New, replaces...
4709 (terms_to_prec.1, nterms_to_type.1): these.
4710 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
4711 Take a location as additional argument.
4714 2002-06-15 Akim Demaille <akim@epita.fr>
4716 * src/parse-gram.y: Move %token in the declaration section so that
4717 we don't depend upon CVS Bison.
4719 2002-06-15 Akim Demaille <akim@epita.fr>
4721 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
4722 * src/print.c (print_core): Use it.
4724 2002-06-15 Akim Demaille <akim@epita.fr>
4726 * src/conflicts.c (log_resolution): Accept the rule involved in
4727 the sr conflicts instead of the lookahead number that points to
4729 (flush_reduce): Accept the current lookahead vector as argument,
4730 instead of the index in LA.
4731 (resolve_sr_conflict): Accept the current number of lookahead
4732 bitset to consider for the STATE, instead of the index in LA.
4733 (set_conflicts): Adjust.
4734 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
4736 2002-06-15 Akim Demaille <akim@epita.fr>
4738 * src/state.h (state_t): Replace the `lookaheadsp' member, a
4739 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
4740 Adjust all dependencies.
4741 * src/lalr.c (initialize_lookaheads): Split into...
4742 (states_lookaheads_count, states_lookaheads_initialize): these.
4745 2002-06-15 Akim Demaille <akim@epita.fr>
4747 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
4749 (grammar_rules_print): here.
4750 * src/reduce.c (reduce_output): Use it.
4751 * tests/reduce.at (Useless Rules, Reduced Automaton)
4752 (Underivable Rules): Adjust.
4754 2002-06-15 Akim Demaille <akim@epita.fr>
4756 Copy BYacc's nice way to report the grammar.
4758 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
4760 Don't print the rules' location, it is confusing and useless.
4761 (rule_print): Use grammar_rhs_print.
4762 * src/print.c (print_grammar): Use grammar_rules_print.
4764 2002-06-15 Akim Demaille <akim@epita.fr>
4766 Complete and rationalize `useless thing' warnings.
4768 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
4769 (symbol_tag_print): New.
4770 Use them everywhere in place of accessing directly the tag member.
4771 * src/gram.h, src/gram.c (rule_print): New.
4772 Use it where a rule used to be printed `by hand'.
4773 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
4774 (reduce_grammar_tables): Report the useless rules.
4775 (reduce_print): Useless things are a warning, not an error.
4777 * tests/reduce.at (Useless Nonterminals, Useless Rules):
4778 (Reduced Automaton, Underivable Rules): Adjust.
4779 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
4780 * tests/conflicts.at (Unresolved SR Conflicts)
4781 (Solved SR Conflicts): Adjust.
4783 2002-06-15 Akim Demaille <akim@epita.fr>
4785 Let symbols have a location.
4787 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
4790 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
4791 Use location_t, not int.
4792 * src/symtab.c (symbol_check_defined): Take advantage of the
4794 * tests/regression.at (Invalid inputs): Adjust.
4796 2002-06-15 Akim Demaille <akim@epita.fr>
4798 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
4799 (input): Don't try to initialize yylloc here, do it in the
4801 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
4802 * src/gram.h (rule_t): Change line and action_line into location
4803 and action_location, of location_t type.
4804 Adjust all dependencies.
4805 * src/location.h, src/location.c (empty_location): New.
4806 * src/reader.h, src/reader.c (grammar_start_symbol_set)
4807 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
4808 (grammar_current_rule_symbol_append)
4809 (grammar_current_rule_action_append): Expect a location as argument.
4810 * src/reader.c (grammar_midrule_action): Adjust to attach an
4811 action's location as dummy symbol location.
4812 * src/symtab.h, src/symtab.c (startsymbol_location): New.
4813 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
4816 2002-06-14 Akim Demaille <akim@epita.fr>
4818 Grammar declarations may be found in the grammar section.
4820 * src/parse-gram.y (rules_or_grammar_declaration): New.
4821 (declarations): Each declaration may end with a semicolon, not
4823 (grammar_declaration): `"%union"'.
4824 (grammar): Branch to rules_or_grammar_declaration.
4826 2002-06-14 Akim Demaille <akim@epita.fr>
4828 * src/main.c (main): Invoke scanner_free.
4830 2002-06-14 Akim Demaille <akim@epita.fr>
4832 * src/output.c (m4_invoke): Extracted from...
4833 (output_skeleton): here.
4836 2002-06-14 Akim Demaille <akim@epita.fr>
4838 * src/parse-gram.y (directives, directive, gram)
4839 (grammar_directives, precedence_directives, precedence_directive):
4841 (declarations, declaration, grammar, grammar_declaration)
4842 (precedence_declaration, precedence_declarator): these.
4843 (symbol_declaration): New.
4845 2002-06-14 Akim Demaille <akim@epita.fr>
4847 * src/files.c (action_obstack): Remove, unused.
4848 (output_obstack): Remove it, and all its dependencies, as it is no
4850 * src/reader.c (epilogue_set): Build the epilogue in the
4852 * src/output.h, src/output.c (muscle_obstack): Move to...
4853 * src/muscle_tab.h, src/muscle_tab.h: here.
4854 (muscle_init): Initialize muscle_obstack.
4856 * src/main.c (main): Call it.
4858 2002-06-14 Akim Demaille <akim@epita.fr>
4860 * src/location.h: New, extracted from...
4861 * src/reader.h: here.
4862 * src/Makefile.am (noinst_HEADERS): Merge into
4863 (bison_SOURCES): this.
4865 * src/parse-gram.y: Use location_t instead of Bison's.
4866 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
4867 Use location_t instead of ints.
4869 2002-06-14 Akim Demaille <akim@epita.fr>
4871 * data/bison.simple, data/bison.c++: Be sure to restore the
4872 current #line when returning to the skeleton contents after having
4873 exposed the input file's #line.
4875 2002-06-12 Akim Demaille <akim@epita.fr>
4877 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
4879 * tests/actions.at (Exotic Dollars): New.
4881 2002-06-12 Akim Demaille <akim@epita.fr>
4883 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
4885 * tests/input.at (Torturing the Scanner): New.
4887 2002-06-11 Akim Demaille <akim@epita.fr>
4889 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
4890 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
4891 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
4892 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
4893 * src/reader.c (reader): Use it.
4895 2002-06-11 Akim Demaille <akim@epita.fr>
4897 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
4899 (scanner_last_string_free): New.
4901 2002-06-11 Akim Demaille <akim@epita.fr>
4903 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
4904 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
4905 (last_string, YY_OBS_FREE): New.
4906 Use them when returning an ID.
4908 2002-06-11 Akim Demaille <akim@epita.fr>
4910 Have Bison grammars parsed by a Bison grammar.
4912 * src/reader.c, src/reader.h (prologue_augment): New.
4913 * src/reader.c (copy_definition): Remove.
4915 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
4916 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
4917 (grammar_current_rule_prec_set, grammar_current_rule_check)
4918 (grammar_current_rule_symbol_append)
4919 (grammar_current_rule_action_append): Export.
4920 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
4921 (symbol_list_action_append): Remove.
4922 Hook the routines from reader.
4923 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
4924 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
4926 * src/reader.c (read_declarations): Remove, unused.
4928 * src/parse-gram.y: Handle the epilogue.
4929 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
4930 (grammar_start_symbol_set): this.
4931 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
4932 * src/reader.c (readgram): Remove, unused.
4933 (reader): Adjust to insert eoftoken and axiom where appropriate.
4935 * src/reader.c (copy_dollar): Replace with...
4936 * src/scan-gram.h (handle_dollar): this.
4937 * src/parse-gram.y: Remove `%thong'.
4939 * src/reader.c (copy_at): Replace with...
4940 * src/scan-gram.h (handle_at): this.
4942 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
4945 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
4948 * src/reader.h, src/reader.c (grammar_rule_end): New.
4950 * src/parse.y (current_type, current_class): New.
4951 Implement `%nterm', `%token' support.
4952 Merge `%term' into `%token'.
4953 (string_as_id): New.
4954 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
4957 * src/parse-gram.y: Be sure to handle properly the beginning of
4960 * src/parse-gram.y: Handle %type.
4961 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
4963 * src/parse-gram.y: More directives support.
4964 * src/options.c: No longer handle source directives.
4966 * src/parse-gram.y: Fix %output.
4968 * src/parse-gram.y: Handle %union.
4969 Use the prologue locations.
4970 * src/reader.c (parse_union_decl): Remove.
4972 * src/reader.h, src/reader.c (epilogue_set): New.
4973 * src/parse-gram.y: Use it.
4975 * data/bison.simple, data/bison.c++: b4_stype is now either not
4976 defined, then default to int, or to the contents of %union,
4977 without `union' itself.
4979 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
4981 * src/output.c (actions_output): Don't output braces, as they are
4982 already handled by the scanner.
4984 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
4985 characters to themselves.
4987 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
4988 that the epilogue has a proper #line.
4990 * src/parse-gram.y: Handle precedence/associativity.
4992 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
4994 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
4995 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
4996 at all to define terminals that cannot be emitted.
4998 * src/scan-gram.l: Escape M4 characters.
5000 * src/scan-gram.l: Working properly with escapes in user
5003 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
5004 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
5006 Use more modest sizes, as for the time being the parser does not
5007 release memory, and therefore the process swallows a huge amount
5010 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
5011 stricter %token grammar.
5013 * src/symtab.h (associativity): Add `undef_assoc'.
5014 (symbol_precedence_set): Do nothing when passed an undef_assoc.
5015 * src/symtab.c (symbol_check_alias_consistence): Adjust.
5017 * tests/regression.at (Invalid %directive): Remove, as it is now
5019 (Invalid inputs): Adjust to the new error messages.
5020 (Token definitions): The new grammar doesn't allow too many
5023 * src/lex.h, src/lex.c: Remove.
5024 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
5025 (copy_character, copy_string2, copy_string, copy_identifier)
5026 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
5027 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
5028 (parse_action): Remove.
5029 * po/POTFILES.in: Adjust.
5031 2002-06-11 Akim Demaille <akim@epita.fr>
5033 * src/reader.c (parse_action): Don't store directly into the
5034 rule's action member: return the action as a string.
5035 Don't require `rule_length' as an argument: compute it.
5036 (grammar_current_rule_symbol_append)
5037 (grammar_current_rule_action_append): New, eved out from
5039 Remove `action_flag', `rulelength', unused now.
5041 2002-06-11 Akim Demaille <akim@epita.fr>
5043 * src/reader.c (grammar_current_rule_prec_set).
5044 (grammar_current_rule_check): New, eved out from...
5046 Remove `xaction', `first_rhs': useless.
5047 * tests/input.at (Type clashes): New.
5048 * tests/existing.at (GNU Cim Grammar): Adjust.
5050 2002-06-11 Akim Demaille <akim@epita.fr>
5052 * src/reader.c (grammar_midrule_action): New, Eved out from
5055 2002-06-11 Akim Demaille <akim@epita.fr>
5057 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
5059 (readgram): Use them as replacement of inlined code, crule and
5062 2002-06-11 Akim Demaille <akim@epita.fr>
5064 * src/reader.c (grammar_end, grammar_symbol_append): New.
5065 (readgram): Use them.
5066 Make the use of `p' as local as possible.
5068 2002-06-10 Akim Demaille <akim@epita.fr>
5070 GCJ's parser requires the tokens to be defined before the prologue.
5072 * data/bison.simple: Output the token definition before the user's
5074 * tests/regression.at (Braces parsing, Duplicate string)
5075 (Mixing %token styles): Check the output from bison.
5076 (Early token definitions): New.
5078 2002-06-10 Akim Demaille <akim@epita.fr>
5080 * src/symtab.c (symbol_user_token_number_set): Don't complain when
5081 assigning twice the same user number to a token, so that we can
5083 * src/lex.c (lex): here.
5084 Also use `symbol_class_set' instead of hand written code.
5085 * src/reader.c (parse_assoc_decl): Likewise.
5087 2002-06-10 Akim Demaille <akim@epita.fr>
5089 * src/symtab.c, src/symtab.c (symbol_class_set)
5090 (symbol_user_token_number_set): New.
5091 * src/reader.c (parse_token_decl): Use them.
5092 Use a switch instead of ifs.
5093 Use a single argument.
5095 2002-06-10 Akim Demaille <akim@epita.fr>
5097 Remove `%thong' support as it is undocumented, unused, duplicates
5098 `%token's job, and creates useless e-mail traffic with people who
5099 want to know what it is, why it is undocumented, unused, and
5100 duplicates `%token's job.
5102 * src/reader.c (parse_thong_decl): Remove.
5103 * src/options.c (option_table): Remove "thong".
5104 * src/lex.h (tok_thong): Remove.
5106 2002-06-10 Akim Demaille <akim@epita.fr>
5108 * src/symtab.c, src/symtab.c (symbol_type_set)
5109 (symbol_precedence_set): New.
5110 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
5111 (value_components_used): Remove, unused.
5113 2002-06-09 Akim Demaille <akim@epita.fr>
5115 Move symbols handling code out of the reader.
5117 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
5119 * src/symtab.h, src/symtab.c: here.
5121 * src/gram.c (start_symbol): Remove: use startsymbol->number.
5122 * src/reader.c (startval): Rename as...
5123 * src/symtab.h, src/symtab.c (startsymbol): this.
5124 * src/reader.c: Adjust.
5126 * src/reader.c (symbol_check_defined, symbol_make_alias)
5127 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
5128 (token_translations_init)
5130 * src/symtab.c: here.
5131 * src/reader.c (packsymbols): Move to...
5132 * src/symtab.h, src/symtab.c (symbols_pack): here.
5133 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
5136 2002-06-03 Akim Demaille <akim@epita.fr>
5138 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
5141 2002-06-03 Akim Demaille <akim@epita.fr>
5143 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
5144 structs with non literals.
5145 * src/scan-skel.l: never-interactive.
5146 * src/conflicts.c (enum conflict_resolution_e): No trailing
5148 * src/getargs.c (usage): Split long literal strings.
5149 Reported by Hans Aberg.
5151 2002-05-28 Akim Demaille <akim@epita.fr>
5153 * data/bison.c++: Use C++ ostreams.
5154 (cdebug_): New member.
5156 2002-05-28 Akim Demaille <akim@epita.fr>
5158 * src/output.c (output_skeleton): Be sure to allocate enough room
5159 for `/' _and_ for `\0' in full_skeleton.
5161 2002-05-28 Akim Demaille <akim@epita.fr>
5163 * data/bison.c++: Catch up with bison.simple:
5164 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5165 and Paul Eggert <eggert@twinsun.com>: `error' handing.
5166 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
5169 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5171 * src/output.c (output_skeleton): Put an explicit path in front of
5172 the skeleton file name, rather than relying on the -I directory,
5173 to partially alleviate effects of having a skeleton file lying around
5174 in the current directory.
5176 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5178 * src/conflicts.c (log_resolution): Correct typo:
5179 obstack_printf should be obstack_fgrow1.
5181 2002-05-26 Akim Demaille <akim@epita.fr>
5183 * src/state.h (state_t): `solved_conflicts' is a new member.
5184 * src/LR0.c (new_state): Set it to 0.
5185 * src/conflicts.h, src/conflicts.c (print_conflicts)
5186 (free_conflicts, solve_conflicts): Rename as...
5187 (conflicts_print, conflicts_free, conflicts_solve): these.
5189 * src/conflicts.c (enum conflict_resolution_e)
5190 (solved_conflicts_obstack): New, used by...
5191 (log_resolution): this.
5192 Adjust to attach the conflict resolution to each state.
5193 Complete the description with the precedence/associativity
5195 (resolve_sr_conflict): Adjust.
5196 * src/print.c (print_state): Output its solved_conflicts.
5197 * tests/conflicts.at (Unresolved SR Conflicts)
5198 (Solved SR Conflicts): Exercise --report=all.
5200 2002-05-26 Akim Demaille <akim@epita.fr>
5202 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
5203 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
5204 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
5205 (token_number_t, item_number_as_token_number)
5206 (token_number_as_item_number, muscle_insert_token_number_table):
5208 (symbol_number_t, item_number_as_symbol_number)
5209 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
5210 these, since it is more appropriate.
5212 2002-05-26 Akim Demaille <akim@epita.fr>
5214 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
5216 * data/bison.simple (yystos) [YYDEBUG]: New.
5217 (yyparse) [YYDEBUG]: Display the symbols which are popped during
5219 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
5221 2002-05-25 Akim Demaille <akim@epita.fr>
5223 * doc/bison.texinfo (Debugging): Split into...
5224 (Tracing): this new section, its former contents, and...
5225 (Understanding): this new section.
5226 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
5228 (report_flag): this.
5229 Adjust all dependencies.
5230 (report_args, report_types, report_argmatch): New.
5231 (usage, getargs): Report/support -r, --report.
5233 (struct option_table_struct): Rename as..,
5234 (struct option_table_s): this.
5235 Rename the `set_flag' member to `flag' to match with getopt_long's
5237 * src/options.c (option_table): Split verbose into an entry for
5238 %verbose, and another for --verbose.
5239 Support --report/-r, so remove -r from the obsolete --raw.
5240 * src/print.c: Attach full item sets and lookaheads reports to
5241 report_flag instead of trace_flag.
5242 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
5244 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5245 and Paul Eggert <eggert@twinsun.com>
5247 * data/bison.simple (yyparse): Correct error handling to conform to
5248 POSIX and yacc. Specifically, after syntax error is discovered,
5249 do not reduce further before shifting the error token.
5250 Clean up the code a bit by removing the labels yyerrdefault,
5251 yyerrhandle, yyerrpop.
5252 * NEWS: Document the above.
5254 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5256 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
5257 type; it isn't always big enough, since it doesn't necessarily
5258 include non-terminals.
5259 (yytranslate): Expand definition of yy_token_number_type, so that
5260 the latter can be removed.
5261 (yy_token_number_type): Remove, only one use.
5262 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
5263 don't use TokenNumberType as element type.
5265 * tests/regression.at: Modify expected output to agree with change
5266 to yyr1 and yytranslate.
5268 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
5270 * src/reader.c (parse_action): Use copy_character instead of
5273 2002-05-13 Akim Demaille <akim@epita.fr>
5275 * tests/regression.at (Token definitions): Prototype yylex and
5278 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5280 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
5281 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
5283 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
5285 2002-05-07 Akim Demaille <akim@epita.fr>
5287 * tests/synclines.at: Be sure to prototype yylex and yyerror to
5290 2002-05-07 Akim Demaille <akim@epita.fr>
5294 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
5295 over the RHS of each rule.
5296 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
5297 * src/state.h (state_t): Member `nitems' is unsigned short.
5298 * src/LR0.c (get_state): Adjust.
5299 * src/reader.c (packgram): Likewise.
5300 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
5302 (muscle_insert_int_table): Remove, unused.
5303 (prepare_rules): Remove `max'.
5305 2002-05-06 Akim Demaille <akim@epita.fr>
5307 * src/closure.c (print_firsts): Display of the symbol tags.
5308 (bitmatrix_print): Move to...
5309 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
5311 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
5313 2002-05-06 Akim Demaille <akim@epita.fr>
5315 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
5318 2002-05-06 Akim Demaille <akim@epita.fr>
5320 * src/LR0.c (new_state, get_state): Instead of using the global
5321 `kernel_size' and `kernel_base', have two new arguments:
5322 `core_size' and `core'.
5325 2002-05-06 Akim Demaille <akim@epita.fr>
5327 * src/reader.c (packgram): No longer end `ritem' with a 0
5328 sentinel: it is not used.
5330 2002-05-05 Akim Demaille <akim@epita.fr>
5332 New experimental feature: display the lookaheads in the report and
5335 * src/print (print_core): When --trace-flag, display the rules
5337 * src/print_graph.c (print_core): Likewise.
5341 2002-05-05 Akim Demaille <akim@epita.fr>
5343 * tests/torture.at (Many lookaheads): New test.
5345 2002-05-05 Akim Demaille <akim@epita.fr>
5347 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
5348 (GENERATE_MUSCLE_INSERT_TABLE): this.
5349 (output_int_table, output_unsigned_int_table, output_short_table)
5350 (output_token_number_table, output_item_number_table): Replace with...
5351 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
5352 (muscle_insert_short_table, muscle_insert_token_number_table)
5353 (muscle_insert_item_number_table): these.
5355 (prepare_tokens): Don't free `translations', since...
5356 * src/reader.h, src/reader.c (grammar_free): do it.
5358 * src/gram.h, src/gram.c (grammar_free): here.
5359 * data/bison.simple, data/bison.c++: b4_token_number_max is now
5362 2002-05-05 Akim Demaille <akim@epita.fr>
5364 * src/output.c (output_unsigned_int_table): New.
5365 (prepare_rules): `i' is unsigned.
5366 `prhs', `rline', `r2' are unsigned int.
5367 Rename muscle `rhs_number_max' as `rhs_max'.
5368 Output muscles `prhs_max', `rline_max', and `r2_max'.
5370 * data/bison.simple, data/bison.c++: Adjust to use these muscles
5371 to compute types instead of constant types.
5372 * tests/regression.at (Web2c Actions): Adjust.
5374 2002-05-04 Akim Demaille <akim@epita.fr>
5376 * src/symtab.h (SALIAS, SUNDEF): Rename as...
5377 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
5378 Adjust dependencies.
5379 * src/output.c (token_definitions_output): Be sure not to output a
5380 `#define 'a'' when fed with `%token 'a' "a"'.
5381 * tests/regression.at (Token definitions): New.
5383 2002-05-03 Paul Eggert <eggert@twinsun.com>
5385 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
5388 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
5390 * Makefile.am (SUBDIRS): Remove intl.
5391 (EXTRA_DIST): Add config/config.rpath.
5393 2002-05-03 Akim Demaille <akim@epita.fr>
5395 * data/bison.simple (m4_if): Don't output empty enums.
5396 And actually, output valid enum definitions :(.
5398 2002-05-03 Akim Demaille <akim@epita.fr>
5400 * configure.bat: Remove, completely obsolete.
5401 * Makefile.am (EXTRA_DIST): Adjust.
5402 Don't distribute config.rpath...
5403 * config/Makefile.am (EXTRA_DIST): Do it.
5405 2002-05-03 Akim Demaille <akim@epita.fr>
5407 * configure.in (GETTEXT_VERSION): New.
5408 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
5410 2002-05-03 Akim Demaille <akim@epita.fr>
5412 * data/bison.simple (b4_token_enum): New.
5413 (b4_token_defines): Use it to output tokens both as #define and
5415 Suggested by Paul Eggert.
5416 * src/output.c (token_definitions_output): Don't output spurious
5419 2002-05-03 Akim Demaille <akim@epita.fr>
5421 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
5423 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
5425 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
5426 Update the stack class, give a try to deque as the default container.
5428 2002-05-02 Akim Demaille <akim@epita.fr>
5430 * data/bison.simple (yyparse): Do not implement @$ = @1.
5431 (YYLLOC_DEFAULT): Adjust to do it.
5432 * doc/bison.texinfo (Location Default Action): Fix.
5434 2002-05-02 Akim Demaille <akim@epita.fr>
5436 * src/reader.c (parse_braces): Merge into...
5437 (parse_action): this.
5439 2002-05-02 Akim Demaille <akim@epita.fr>
5441 * configure.in (ALL_LINGUAS): Remove.
5442 * po/LINGUAS, hr.po: New.
5444 2002-05-02 Akim Demaille <akim@epita.fr>
5446 Remove the so called hairy (semantic) parsers.
5448 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
5449 * src/gram.h, src/gram.c (semantic_parser): Remove.
5450 (rule_t): Remove the guard and guard_line members.
5451 * src/lex.h (token_t): remove tok_guard.
5452 * src/options.c (option_table): Remove %guard and %semantic_parser
5454 * src/output.c, src/output.h (guards_output): Remove.
5456 (token_definitions_output): Don't output the `T'
5458 (output_skeleton): Don't output the guards.
5459 * src/files.c, src/files.c (attrsfile): Remove.
5460 * src/reader.c (symbol_list): Remove the guard and guard_line
5462 Adjust dependencies.
5463 (parse_guard): Remove.
5464 * data/bison.hairy: Remove.
5465 * doc/bison.texinfo (Environment Variables): Remove occurrences of
5468 2002-05-02 Akim Demaille <akim@epita.fr>
5470 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
5471 (parse_guard): Rename the formal argument `stack_offset' as
5472 `rule_length', which is more readable.
5474 (copy_at, copy_dollar): Instead of outputting the hard coded
5475 values of $$, $n and so forth, output invocation to b4_lhs_value,
5476 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
5477 Note: this patch partially drops `semantic-parser' support: it
5478 always does `rule_length - n', where semantic parsers ought to
5480 * data/bison.simple, data/bison.c++ (b4_lhs_value)
5481 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
5483 2002-05-02 Akim Demaille <akim@epita.fr>
5485 * configure.in (AC_INIT): Bump to 1.49b.
5486 (AM_INIT_AUTOMAKE): Short invocation.
5488 2002-05-02 Akim Demaille <akim@epita.fr>
5492 2002-05-01 Akim Demaille <akim@epita.fr>
5494 * src/skeleton.h: Remove.
5496 2002-05-01 Akim Demaille <akim@epita.fr>
5498 * src/skeleton.h: Fix the #endif.
5499 Reported by Magnus Fromreide.
5501 2002-04-26 Paul Eggert <eggert@twinsun.com>
5503 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
5504 Define if we define YYSTYPE and YYLTYPE, respectively.
5505 (YYCOPY): Fix [] quoting problem in the non-GCC case.
5507 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
5509 * src/scan-skel.l: Postprocess quadrigraphs.
5511 * src/reader.c (copy_character): New function, used to output
5512 single characters while replacing `[' and `]' with quadrigraphs, to
5513 avoid troubles with M4 quotes.
5514 (copy_comment): Output characters with copy_character.
5515 (read_additionnal_code): Likewise.
5516 (copy_string2): Likewise.
5517 (copy_definition): Likewise.
5519 * tests/calc.at: Exercise M4 quoting.
5521 2002-04-25 Akim Demaille <akim@epita.fr>
5523 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
5524 between `!' and the command.
5525 Reported by Paul Eggert.
5527 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
5529 * tests/calc.at: Exercise prologue splitting.
5531 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
5532 `b4_post_prologue' instead of `b4_prologue'.
5534 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
5536 (output): Free pre_prologue_obstack and post_prologue_obstack.
5537 * src/files.h, src/files.c (attrs_obstack): Remove.
5538 (pre_prologue_obstack, post_prologue_obstack): New.
5539 * src/reader.c (copy_definition): Add a parameter to specify the
5540 obstack to fill, instead of using attrs_obstack unconditionally.
5541 (read_declarations): Pass pre_prologue_obstack to copy_definition if
5542 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
5544 2002-04-23 Paul Eggert <eggert@twinsun.com>
5546 * data/bison.simple: Remove unnecessary commentary and white
5547 space differences from 1_29-branch.
5548 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
5550 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
5551 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
5552 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
5553 constructors or destructors.
5555 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
5557 2002-04-23 Akim Demaille <akim@epita.fr>
5559 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
5560 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
5561 location with columns.
5562 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
5563 All reported by Paul Eggert.
5565 2002-04-22 Akim Demaille <akim@epita.fr>
5567 * src/reduce.c (dump_grammar): Move to...
5568 * src/gram.h, src/gram.c (grammar_dump): here.
5569 Be sure to separate long item numbers.
5570 Don't read the members of a rule's prec if its nil.
5572 2002-04-22 Akim Demaille <akim@epita.fr>
5574 * src/output.c (table_size, table_grow): New.
5575 (MAXTABLE): Remove, replace uses with table_size.
5576 (pack_vector): Instead of dying when the table is too big, grow it.
5578 2002-04-22 Akim Demaille <akim@epita.fr>
5580 * data/bison.simple (yyr1): Its type is that of a token number.
5581 * data/bison.c++ (r1_): Likewise.
5582 * tests/regression.at (Web2c Actions): Adjust.
5584 2002-04-22 Akim Demaille <akim@epita.fr>
5586 * src/reader.c (token_translations_init): 256 is now the default
5587 value for the error token, i.e., it will be assigned another
5588 number if the user assigned 256 to one of her tokens.
5589 (reader): Don't force 256 to error.
5590 * doc/bison.texinfo (Symbols): Adjust.
5591 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
5592 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
5593 etc. instead of 10, 20, 30 (which was used to `jump' over error
5594 (256) and undefined (2)).
5596 2002-04-22 Akim Demaille <akim@epita.fr>
5598 Propagate more token_number_t.
5600 * src/gram.h (token_number_as_item_number)
5601 (item_number_as_token_number): New.
5602 * src/output.c (GENERATE_OUTPUT_TABLE): New.
5603 Use it to create output_item_number_table and
5604 output_token_number_table.
5605 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
5606 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
5607 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
5608 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
5610 2002-04-22 Akim Demaille <akim@epita.fr>
5612 * src/output.h, src/output.c (get_lines_number): Remove.
5614 2002-04-19 Akim Demaille <akim@epita.fr>
5616 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
5618 (Debugging): More details about enabling the debugging features.
5619 (Table of Symbols): Describe $$, $n, @$, and @n.
5620 Suggested by Tim Josling.
5622 2002-04-19 Akim Demaille <akim@epita.fr>
5624 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
5626 2002-04-10 Akim Demaille <akim@epita.fr>
5628 * src/system.h: Rely on HAVE_LIMITS_H.
5629 Suggested by Paul Eggert.
5631 2002-04-09 Akim Demaille <akim@epita.fr>
5633 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
5634 full stderr, and strip it according to the bison options, instead
5635 of composing the error message from different bits.
5636 This makes it easier to check for several error messages.
5637 Adjust all the invocations.
5638 Add an invocation exercising the error token.
5639 Add an invocation demonstrating a stupid error message.
5640 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
5642 Error message are for stderr, not stdout.
5644 2002-04-09 Akim Demaille <akim@epita.fr>
5646 * src/gram.h, src/gram.c (error_token_number): Remove, use
5648 * src/reader.c (reader): Don't specify the user token number (2)
5649 for $undefined, as it uselessly prevents using it.
5650 * src/gram.h (token_number_t): Move to...
5651 * src/symtab.h: here.
5652 (state_t.number): Is a token_number_t.
5653 * src/print.c, src/reader.c: Use undeftoken->number instead of
5655 (Even though this 2 is not the same as above: the number of the
5656 undeftoken remains being 2, it is its user token number which
5658 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
5659 `user_token_number_max'.
5660 Output `undef_token_number'.
5661 * data/bison.simple, data/bison.c++: Use them.
5662 Be sure to map invalid yylex return values to
5663 `undef_token_number'. This saves us from gratuitous SEGV.
5665 * tests/conflicts.at (Solved SR Conflicts)
5666 (Unresolved SR Conflicts): Adjust.
5667 * tests/regression.at (Web2c Actions): Adjust.
5669 2002-04-08 Akim Demaille <akim@epita.fr>
5671 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
5673 Remove the duplicate `typedefs'.
5674 (RhsNumberType): Fix the declaration and various other typos.
5676 * data/bison.simple: Use __ofile__.
5677 * src/scan-skel.l: Handle __ofile__.
5679 2002-04-08 Akim Demaille <akim@epita.fr>
5681 * src/gram.h (item_number_t): New, the type of item numbers in
5682 RITEM. Note that it must be able to code symbol numbers as
5683 positive number, and the negation of rule numbers as negative
5685 Adjust all dependencies (pretty many).
5686 * src/reduce.c (rule): Remove this `short *' pointer: use
5688 * src/system.h (MINSHORT, MAXSHORT): Remove.
5690 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
5692 (MAXTABLE): Move to...
5693 * src/output.c (MAXTABLE): here.
5694 (prepare_rules): Use output_int_table to output rhs.
5695 * data/bison.simple, data/bison.c++: Adjust.
5696 * tests/torture.at (Big triangle): Move the limit from 254 to
5698 * tests/regression.at (Web2c Actions): Ajust.
5700 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
5701 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
5702 passes, but produces negative #line number, once fixed, GCC is
5703 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
5705 * src/state.h (state_h): Code input lines on ints, not shorts.
5707 2002-04-08 Akim Demaille <akim@epita.fr>
5709 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
5710 and then the grammar.
5712 2002-04-08 Akim Demaille <akim@epita.fr>
5714 * src/system.h: No longer using strndup.
5716 2002-04-07 Akim Demaille <akim@epita.fr>
5718 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
5719 * src/output.c (output_table_data): Return the longest number.
5720 (prepare_tokens): Output `token_number_max').
5721 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
5723 Use them to define yy_token_number_type/TokenNumberType.
5724 Use this type for yytranslate.
5725 * tests/torture.at (Big triangle): Push the limit from 124 to
5727 * tests/regression.at (Web2c Actions): Adjust.
5729 2002-04-07 Akim Demaille <akim@epita.fr>
5731 * tests/torture.at (Big triangle): New.
5732 (GNU AWK Grammar, GNU Cim Grammar): Move to...
5733 * tests/existing.at: here.
5735 2002-04-07 Akim Demaille <akim@epita.fr>
5737 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
5739 Adjust dependencies.
5741 2002-04-07 Akim Demaille <akim@epita.fr>
5743 * src/reader.c: Normalize increments to prefix form.
5745 2002-04-07 Akim Demaille <akim@epita.fr>
5747 * src/reader.c, symtab.c: Remove debugging code.
5749 2002-04-07 Akim Demaille <akim@epita.fr>
5751 Rename all the `bucket's as `symbol_t'.
5753 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
5754 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
5755 * src/symtab.c, src/symtab.h (bucket): Rename as...
5757 (symbol_list_new, bucket_check_defined, bucket_make_alias)
5758 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
5759 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
5760 (buckets_new, buckets_free, buckets_do): Rename as...
5761 (symbol_list_new, symbol_check_defined, symbol_make_alias)
5762 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
5763 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
5764 (symbols_new, symbols_free, symbols_do): these.
5766 2002-04-07 Akim Demaille <akim@epita.fr>
5768 Use lib/hash for the symbol table.
5770 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
5772 * src/lex.c (lex): Set the `number' member of new terminals.
5773 * src/reader.c (bucket_check_defined, bucket_make_alias)
5774 (bucket_check_alias_consistence, bucket_translation): New.
5775 (reader, grammar_free, readgram, token_translations_init)
5776 (packsymbols): Adjust.
5777 (reader): Number the predefined tokens.
5778 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
5779 for predefined tokens.
5780 * src/symtab.h (bucket): Remove all the hash table related
5782 * src/symtab.c (symtab): Replace by...
5783 (bucket_table): this.
5784 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
5785 (buckets_new, buckets_do): New.
5787 2002-04-07 Akim Demaille <akim@epita.fr>
5789 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
5790 (start_symbol, max_user_token_number, semantic_parser)
5791 (error_token_number): Initialize.
5792 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
5795 (errtoken, eoftoken, undeftoken, axiom): Extern.
5797 2002-04-07 Akim Demaille <akim@epita.fr>
5799 * src/gram.h (rule_s): prec and precsym are now pointers
5800 to the bucket giving the priority/associativity.
5801 Member `associativity' removed: useless.
5802 * src/reduce.c, src/conflicts.c: Adjust.
5804 2002-04-07 Akim Demaille <akim@epita.fr>
5806 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
5807 Properly escape the symbols' TAG when outputting them.
5809 2002-04-07 Akim Demaille <akim@epita.fr>
5811 * src/lalr.h (LA): Is a bitsetv, not bitset*.
5813 2002-04-07 Akim Demaille <akim@epita.fr>
5815 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
5816 (LArule): this, which is an array to rule_t*.
5817 * src/print.c, src/conflicts.c: Adjust.
5819 2002-04-07 Akim Demaille <akim@epita.fr>
5821 * src/gram.h (rule_t): Rename `number' as `user_number'.
5822 `number' is a new member.
5823 Adjust dependencies.
5824 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
5826 2002-04-07 Akim Demaille <akim@epita.fr>
5828 As a result of the previous patch, it is no longer needed
5829 to reorder ritem itself.
5831 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
5833 2002-04-07 Akim Demaille <akim@epita.fr>
5835 Be sure never to walk through RITEMS, but use only data related to
5836 the rules themselves. RITEMS should be banished.
5838 * src/output.c (output_token_translations): Rename as...
5839 (prepare_tokens): this.
5840 In addition to `translate', prepare the muscles `tname' and
5841 `toknum', which were handled by...
5842 (output_rule_data): this.
5843 Remove, and move the remainder of its outputs into...
5844 (prepare_rules): this new routines, which also merges content from
5845 (output_gram): this.
5846 (prepare_rules): Be sure never to walk through RITEMS.
5847 (output_stos): Rename as...
5848 (prepare_stos): this.
5849 (output): Always invoke prepare_states, after all, just don't use it
5850 in the output if you don't need it.
5852 2002-04-07 Akim Demaille <akim@epita.fr>
5854 * src/LR0.c (new_state): Display `nstates' as the name of the
5855 newly created state.
5856 Adjust to initialize first_state and last_state if needed.
5857 Be sure to distinguish the initial from the final state.
5858 (new_states): Create the itemset of the initial state, and use
5860 * src/closure.c (closure): Now that the initial state has its
5861 items properly set, there is no need for a special case when
5864 As a result, now the rule 0, reducing to $axiom, is visible in the
5865 outputs. Adjust the test suite.
5867 * tests/conflicts.at (Solved SR Conflicts)
5868 (Unresolved SR Conflicts): Adjust.
5869 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
5870 * tests/conflicts.at (S/R in initial): New.
5872 2002-04-07 Akim Demaille <akim@epita.fr>
5874 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
5875 the RHS of the rules.
5876 * src/output.c (output_gram): Likewise.
5878 2002-04-07 Akim Demaille <akim@epita.fr>
5880 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
5882 Adjust all dependencies.
5883 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
5884 `number' of the buckets too.
5885 * src/gram.h: Include `symtab.h'.
5886 (associativity): Move to...
5887 * src/symtab.h: here.
5888 No longer include `gram.h'.
5890 2002-04-07 Akim Demaille <akim@epita.fr>
5892 * src/gram.h, src/gram.c (rules_rhs_length): New.
5893 (ritem_longest_rhs): Use it.
5894 * src/gram.h (rule_t): `number' is a new member.
5895 * src/reader.c (packgram): Set it.
5896 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
5897 the end of `rules', and count them out of `nrules'.
5898 (reduce_output, dump_grammar): Adjust.
5899 * src/print.c (print_grammar): It is no longer needed to check for
5900 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
5901 * tests/reduce.at (Reduced Automaton): New test.
5903 2002-04-07 Akim Demaille <akim@epita.fr>
5905 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
5906 lacking `+ 1' to nrules, Bison reported as useless a token if it
5907 was used solely to set the precedence of the last rule...
5909 2002-04-07 Akim Demaille <akim@epita.fr>
5911 * data/bison.c++, data/bison.simple: Don't output the current file
5912 name in #line, to avoid useless diffs between two identical
5913 outputs under different names.
5915 2002-04-07 Akim Demaille <akim@epita.fr>
5917 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
5918 Normalize loops to using `< nrules + 1', not `<= nrules'.
5920 2002-04-07 Akim Demaille <akim@epita.fr>
5924 2002-04-07 Akim Demaille <akim@epita.fr>
5926 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
5927 bucket.value as bucket.number.
5929 2002-04-07 Akim Demaille <akim@epita.fr>
5931 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
5932 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
5933 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
5934 RHS, instead of being an index in RITEMS.
5936 2002-04-04 Paul Eggert <eggert@twinsun.com>
5938 * doc/bison.texinfo: Update copyright date.
5939 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
5940 (Symbols): Warn about running Bison in one character set,
5941 but compiling and/or running in an incompatible one.
5942 Warn about character code 256, too.
5944 2002-04-03 Paul Eggert <eggert@twinsun.com>
5946 * src/bison.data (YYSTACK_ALLOC): Depend on whether
5947 YYERROR_VERBOSE is nonzero, not whether it is defined.
5949 Merge changes from bison-1_29-branch.
5951 2002-03-20 Paul Eggert <eggert@twinsun.com>
5953 Merge fixes from Debian bison_1.34-1.diff.
5955 * configure.in (AC_PREREQ): 2.53.
5957 2002-03-20 Akim Demaille <akim@epita.fr>
5959 * src/conflicts.c (log_resolution): Argument `resolution' is const.
5961 2002-03-19 Paul Eggert <eggert@twinsun.com>
5963 * src/bison.simple (YYCOPY): New macro.
5964 (YYSTACK_RELOCATE): Use it.
5965 Remove Type arg; no longer needed. All callers changed.
5966 (yymemcpy): Remove; no longer needed.
5968 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
5969 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
5971 2002-03-19 Akim Demaille <akim@epita.fr>
5973 Test and fix the #line outputs.
5975 * tests/atlocal.at (GCC): New.
5976 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
5977 (Prologue synch line, ,%union synch line, Postprologue synch line)
5978 (Action synch line, Epilogue synch line): New tests.
5979 * src/reader.c (parse_union_decl): Define the muscle stype_line.
5980 * data/bison.simple, data/bison.c++: Use it.
5982 2002-03-19 Akim Demaille <akim@epita.fr>
5984 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
5985 (Solved SR Conflicts, %expect not enough, %expect right)
5986 (%expect too much): Move to...
5987 * tests/conflicts.at: this new file.
5989 2002-03-19 Akim Demaille <akim@epita.fr>
5991 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
5992 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
5993 that we can move to enums for instance.
5994 * src/output.c (token_definitions_output): Output a list of
5995 `token-name, token-number' instead of the #define.
5996 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
5998 2002-03-14 Akim Demaille <akim@epita.fr>
6002 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
6004 * data/bison.c++: Make the user able to add members to the generated
6005 parser by subclassing.
6007 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
6009 * src/reader.c (read_additionnal_code): `c' should be an integer, not
6011 Reported by Nicolas Tisserand and Nicolas Burrus.
6013 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
6015 * src/reader.c: Warn about lacking semi-colons, do not complain.
6017 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
6019 * data/bison.c++: Remove a debug line.
6021 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
6023 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
6024 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
6025 provide a default implementation.
6027 2002-03-04 Akim Demaille <akim@epita.fr>
6029 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
6030 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
6031 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
6032 * tests/semantic.at (Parsing Guards): Similarly.
6033 * src/reader.at (readgram): Complain if the last rule is not ended
6036 2002-03-04 Akim Demaille <akim@epita.fr>
6038 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
6039 * src/closure.c: here.
6040 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
6042 * src/warshall.h, src/warshall.c: Remove.
6043 * tests/sets.at (Broken Closure): Adjust.
6045 2002-03-04 Akim Demaille <akim@epita.fr>
6047 * src/output.c (output_skeleton): tempdir is const.
6048 bytes_read is unused.
6050 2002-03-04 Akim Demaille <akim@epita.fr>
6052 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
6053 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
6057 2002-03-04 Akim Demaille <akim@epita.fr>
6059 * src/closure.c (closure): `r' is unused.
6061 2002-03-04 Akim Demaille <akim@epita.fr>
6063 * tests/sets.at (Broken Closure): Add the ending `;'.
6064 * src/reader.at (readgram): Complain if a rule is not ended with a
6067 2002-03-04 Akim Demaille <akim@epita.fr>
6069 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
6070 (count_sr_conflicts): Use bitset_count.
6071 * src/reduce.c (inaccessable_symbols): Ditto.
6072 (bits_size): Remove.
6073 * src/warshall.h, src/warshall.c: Convert to bitsetv.
6075 2002-03-04 Akim Demaille <akim@epita.fr>
6077 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
6078 * src/reduce.c: Remove the `bitset_zero's following the
6079 `bitset_create's, as now it is performed by the latter.
6081 2002-03-04 Akim Demaille <akim@epita.fr>
6083 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
6084 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
6085 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
6086 latest sources from Michael.
6088 2002-03-04 Akim Demaille <akim@epita.fr>
6090 * src/output.c (output): Don't free the grammar.
6091 * src/reader.c (grammar_free): New.
6092 * src/main.c (main): Call it and don't free symtab here.
6094 2002-03-04 Akim Demaille <akim@epita.fr>
6096 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
6098 Reported by Benoit Perrot.
6100 2002-03-04 Akim Demaille <akim@epita.fr>
6102 Use bitset operations when possible, not loops over bits.
6104 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
6106 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
6107 * src/reduce.c (useless_nonterminals): Formatting changes.
6108 * src/warshall.c (TC): Use bitset_or.
6110 2002-03-04 Akim Demaille <akim@epita.fr>
6112 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
6113 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
6116 2002-03-04 Akim Demaille <akim@epita.fr>
6118 * src/lalr.c (F): Now a bitset*.
6119 Adjust all dependencies.
6121 2002-03-04 Akim Demaille <akim@epita.fr>
6123 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
6124 Adjust all dependencies.
6126 2002-03-04 Akim Demaille <akim@epita.fr>
6128 * src/L0.c, src/LR0.h (nstates): Be size_t.
6129 Adjust comparisons (signed vs unsigned).
6130 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
6132 Adjust all dependencies.
6134 2002-03-04 Akim Demaille <akim@epita.fr>
6136 * src/closure.c (firsts): Now, also a bitset.
6137 Adjust all dependencies.
6138 (varsetsize): Remove, now unused.
6139 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
6141 2002-03-04 Akim Demaille <akim@epita.fr>
6143 * src/print.c: Convert to use bitset.h, not hand coded iterations
6146 2002-03-04 Akim Demaille <akim@epita.fr>
6148 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
6150 2002-03-04 Akim Demaille <akim@epita.fr>
6152 * src/closure.c (ruleset): Be a bitset.
6153 (rulesetsize): Remove.
6155 2002-03-04 Akim Demaille <akim@epita.fr>
6157 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
6158 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
6159 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
6160 * src/closure.c (fderives): Be an array of bitsets.
6162 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
6164 * data/bison.c++: Merge the two generated headers. Insert a copyright
6165 notice in each output file.
6167 2002-02-28 Akim Demaille <akim@epita.fr>
6169 * data/bison.c++: Copy the prologue of bison.simple to fetch
6170 useful M4 definitions, such as b4_header_guard.
6172 2002-02-25 Akim Demaille <akim@epita.fr>
6174 * src/getargs.c (version): Give the name of the authors, and use a
6175 translator friendly scheme for the bgr
6178 2002-02-25 Akim Demaille <akim@epita.fr>
6180 * src/output.c (header_output): Remove, now handled completely via
6183 2002-02-25 Akim Demaille <akim@epita.fr>
6185 * m4/m4.m4: New, from CVS Autoconf.
6186 * configure.in: Invoke it.
6187 * src/output.c (output_skeleton): Use its result instead of the
6190 2002-02-25 Akim Demaille <akim@epita.fr>
6192 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
6194 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
6195 * src/output.c (output_skeleton): Use mkstemp to create a real
6197 Move the filling of `skeleton' and its muscle to...
6199 (output): Move the definition of the prologue muscle to...
6201 * src/system.h (DEFAULT_TMPDIR): New.
6203 2002-02-14 Paul Eggert <eggert@twinsun.com>
6205 Remove the support for C++ namespace cleanliness; it was
6206 causing more problems than it was curing, since it didn't work
6207 properly on some nonstandard C++ compilers. This can wait
6208 for a proper C++ parser.
6210 * NEWS: Document this.
6211 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
6212 of C++, as it's treated like C now.
6213 * src/bison.simple (YYSTD): Remove.
6214 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
6215 Treat C++ just like Standard C instead of trying to support
6216 namespace cleanliness.
6218 2002-02-14 Akim Demaille <akim@epita.fr>
6220 * tests/regression.at (else): Adjust to Andreas' change.
6222 2002-02-14 Akim Demaille <akim@epita.fr>
6224 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
6226 2002-02-13 Andreas Schwab <schwab@suse.de>
6228 * src/output.c (output_rule_data): Don't output NULL, it might
6231 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
6233 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
6234 (Copyright notice): Update.
6236 2002-02-11 Akim Demaille <akim@epita.fr>
6238 * tests/regression.at (%nonassoc and eof): Don't include
6239 nonportable headers.
6241 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
6243 * data/bison.c++: Correct error recovery. Make the user able to
6244 initialize the starting location.
6246 2002-02-07 Akim Demaille <akim@epita.fr>
6248 * tests/input.at: New.
6250 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
6252 * data/bison.c++: Replace some direct m4 expansions by constants. Be
6253 more consistent when naming methods and variables. Put preprocessor
6254 directives around tables only needed for debugging.
6256 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
6258 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
6260 (yy::b4_name::parse): Use print_.
6262 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
6264 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
6266 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
6268 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
6270 (yy::b4_name::parse): Build verbose error messages, and use error_.
6272 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
6274 * data/bison.c++: Fix m4 quoting in comments.
6276 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
6278 * data/bison.c++: Adjust the parser code. Fix some muscles that were
6281 2002-02-05 Akim Demaille <akim@epita.fr>
6283 * data/bison.c++: Adjust to the M4 back end.
6284 More is certainly needed.
6286 2002-02-05 Akim Demaille <akim@epita.fr>
6288 Give a try to M4 as a back end.
6290 * lib/readpipe.c: New, from wdiff.
6291 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
6293 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
6294 specific values. Now it is m4 that performs the lookup.
6295 * src/parse-skel.y: Remove.
6296 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
6297 * src/output.c (actions_output, guards_output)
6298 (token_definitions_output): No longer keeps track of the output
6299 line number, hence remove the second argument.
6300 (guards_output): Check against the guard member of a rule, not the
6303 (output_skeleton): Don't look for the skeleton location, let m4 do
6305 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
6307 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
6308 (prepare): Given that for the time being changesyntax is not
6309 usable in M4, rename the muscles using `-' to `_'.
6310 Define `defines_flag', `output_parser_name' and `output_header_name'.
6311 * src/output.h (actions_output, guards_output)
6312 (token_definitions_output): Adjust prototypes.
6313 * src/scan-skel.l: Instead of scanning the skeletons, it now
6314 processes the output of m4: `__oline__' and `#output'.
6315 * data/bison.simple: Adjust to be used by M4(sugar).
6316 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
6318 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
6319 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
6320 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
6321 shamelessly stolen from CVS Autoconf.
6323 2002-02-05 Akim Demaille <akim@epita.fr>
6325 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
6326 * configure.in: Check for the declarations of free and malloc.
6327 * src/muscle_tab.c: Adjust.
6329 2002-02-05 Akim Demaille <akim@epita.fr>
6331 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
6332 which have no values.
6334 2002-02-05 Akim Demaille <akim@epita.fr>
6336 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
6339 2002-01-29 Paul Eggert <eggert@twinsun.com>
6341 * src/bison.simple (YYSIZE_T): Do not define merely because
6342 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
6343 On some platforms, <alloca.h> does not declare YYSTD (size_t).
6345 2002-01-27 Akim Demaille <akim@epita.fr>
6347 Fix `%nonassoc and eof'.
6349 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
6350 which were not properly copied! Replace
6351 memcpy (res->errs, src->errs, src->nerrs);
6353 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
6355 * tests/regression.at (%nonassoc and eof): Adjust to newest
6356 Autotest: `.' is not in the PATH.
6358 2002-01-27 Akim Demaille <akim@epita.fr>
6360 * tests/sets.at (AT_EXTRACT_SETS): New.
6364 2002-01-26 Akim Demaille <akim@epita.fr>
6366 * tests/actions.at, tests/calc.at, tests/headers.at,
6367 * tests/torture.at: Adjust to the newest Autotest which no longer
6368 forces `.' in the PATH.
6370 2002-01-25 Akim Demaille <akim@epita.fr>
6372 * tests/regression.at (%nonassoc and eof): New.
6373 Suggested by Robert Anisko.
6375 2002-01-24 Akim Demaille <akim@epita.fr>
6377 Bison dumps core when trying to complain about broken input files.
6378 Reported by Cris van Pelt.
6380 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
6381 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
6383 (Invalid inputs): Strengthen: exercise parse_percent_token.
6385 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
6387 * src/Makefile.am: Add bison.c++.
6388 * src/bison.c++: New skeleton.
6390 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
6394 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
6396 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
6398 2002-01-20 Marc Autret <marc@gnu.org>
6400 * src/files.c (compute_output_file_names): Fix
6402 2002-01-20 Marc Autret <marc@gnu.org>
6404 * tests/output.at: New test.
6405 * src/files.c (compute_base_names): Don't map extensions when
6406 the YACC flag is set, use defaults.
6407 Reported by Evgeny Stambulchik.
6409 2002-01-20 Marc Autret <marc@gnu.org>
6411 * src/system.h: Need to define __attribute__ away for non-GCC
6412 compilers as well (i.e. the vendor C compiler).
6413 Suggested by Albert Chin-A-Young.
6415 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
6417 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
6418 canonical definition.
6419 * src/system.h: Use the canonical definition for PARAMS (avoids
6420 a conflict with the macro from lib/hash.h).
6422 2002-01-11 Akim Demaille <akim@epita.fr>
6424 * configure.in: Use AC_FUNC_STRNLEN.
6425 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
6427 2002-01-09 Akim Demaille <akim@epita.fr>
6429 * src/files.c, src/files.h (output_infix): New.
6430 (tab_extension): Remove.
6431 (compute_base_names): Compute the former, drop the latter.
6432 * src/output.c (prepare): Insert the muscles `output-infix', and
6434 * src/parse-skel.y (string, string.1): New.
6435 (section.header): Use it.
6436 (section.yacc): Remove.
6437 (prefix): Remove too.
6438 * src/scan-skel.l: Adjust.
6439 * src/bison.simple, src/bison.hairy: Adjust.
6441 2002-01-09 Akim Demaille <akim@epita.fr>
6443 * configure.in (WERROR_CFLAGS): Compute it.
6444 * src/Makefile.am (CFLAGS): Pass it.
6445 * tests/atlocal.in (CFLAGS): Idem.
6446 * src/files.c: Fix a few warnings.
6447 (get_extension_index): Remove, unused.
6449 2002-01-08 Akim Demaille <akim@epita.fr>
6451 * src/getargs.c (AS_FILE_NAME): New.
6452 (getargs): Use it to convert DOSish file names.
6453 * src/files.c (base_name): Rename as full_base_name to avoid
6454 clashes with `base_name ()'.
6455 (filename_split): New.
6456 (compute_base_names): N-th rewrite, using filename_split.
6458 2002-01-08 Akim Demaille <akim@epita.fr>
6460 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
6461 New, stolen from the Fileutils 4.1.
6462 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
6463 * configure.in: Check for the presence of memrchr, and of its
6466 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
6468 * lib/hash.h (__P): Added definition for this macro.
6469 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
6470 BUILT_SOURCES, to ensure they are generated first.
6471 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
6472 %error-verbose to allow bootstrapping with bison 1.30x.
6474 2002-01-06 Akim Demaille <akim@epita.fr>
6476 * src/reader.c (parse_braces): Don't fetch the next char, the
6477 convention is to fetch on entry.
6478 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
6479 'switch' without a following semicolon.
6480 * tests/regression.at (braces parsing): New.
6482 2002-01-06 Akim Demaille <akim@epita.fr>
6484 Bison is dead wrong in its RR conflict reports.
6486 * tests/torture.at (GNU Cim Grammar): New.
6487 * src/conflicts.c (count_rr_conflicts): Fix.
6489 2002-01-06 Akim Demaille <akim@epita.fr>
6491 Creating package.m4 from configure.ac causes too many problems.
6493 * tests/Makefile.am (package.m4): Create it by hand,
6494 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
6496 2002-01-06 Akim Demaille <akim@epita.fr>
6498 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
6501 2002-01-04 Paul Eggert <eggert@twinsun.com>
6503 * doc/bison.texinfo (Debugging):
6504 Remove YYSTDERR; it's no longer defined or used.
6505 Also, s/cstdio.h/cstdio/.
6507 2002-01-03 Akim Demaille <akim@epita.fr>
6509 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
6511 2002-01-03 Akim Demaille <akim@epita.fr>
6513 * src/parse-skel.y (process_skeleton): Don't bind the parser's
6514 tracing code to --trace, wait for a better --trace option, with
6517 2002-01-03 Akim Demaille <akim@epita.fr>
6519 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
6520 The ISO C++ standard is extremely clear about it: stderr is
6521 considered a macro, not a regular symbol (see table 94 `Header
6522 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
6523 Therefore std:: does not apply to it. It still does with fprintf.
6524 Also, s/cstdio.h/cstdio/.
6526 2002-01-03 Akim Demaille <akim@epita.fr>
6528 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
6529 for non system headers.
6531 2002-01-02 Akim Demaille <akim@epita.fr>
6533 Equip the skeleton chain with location tracking, runtime trace,
6534 pure parser and scanner.
6536 * src/parse-skel.y: Request a pure parser, locations, and prefix
6538 (%union): Having several members with the same type does not help
6539 type mismatches, simplify.
6540 (YYPRINT, yyprint): New.
6541 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
6544 * src/scan-skel.l: Adjust to these changes.
6545 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
6546 (LOCATION_PRINT, skel_control_t): New.
6548 2001-12-30 Akim Demaille <akim@epita.fr>
6550 * src/parse-skel.y: Get rid of the shift/reduce conflict:
6551 replace `gb' with BLANKS.
6552 * src/scan-skel.l: Adjust.
6554 2001-12-30 Akim Demaille <akim@epita.fr>
6556 * src/system.h: We don't need nor want bcopy.
6557 Throw away MS-DOS crap: we don't need getpid.
6558 * configure.in: We don't need strndup. It was even causing
6559 problems: because Flex includes the headers *before* us,
6560 _GNU_SOURCE is not defined by config.h, and therefore strndup was
6562 * lib/xstrndup.c: New.
6563 * src/scan-skel.l: Use it.
6564 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
6565 * src/parse-skel.y: Use %directives instead of #defines.
6567 2001-12-30 Akim Demaille <akim@epita.fr>
6569 * src/skeleton.h: New.
6570 * src/output.c (output_parser, output_master_parser): Remove, dead
6572 * src/output.h (get_lines_number, actions_output, guards_output)
6573 (token_definitions_output): Prototype them.
6574 * src/parse-skel.y: Add the license notice.
6575 Include output.h and skeleton.h.
6576 (process_skeleton): Returns void, and takes a single parameter.
6577 * src/scan-skel.l: Add the license notice.
6579 Don't use %option yylineno: it seems that then Flex imagines
6580 REJECT has been used, and therefore it won't reallocate its
6581 buffers (which makes no other sense to me than a bug). It results
6582 in warnings for `unused: yy_flex_realloc'.
6584 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
6586 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
6587 (MUSCLE_INSERT_PREFIX): ...to there.
6588 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
6589 (MUSCLE_INSERT_PREFIX): Move from here...
6591 * src/bison.hairy: Add a section directive. Put braces around muscle
6592 names. This parser skeleton is still broken, but Bison should not
6593 choke on a bad muscle 'syntax'.
6594 * src/bison.simple: Add a section directive. Put braces around muscle
6597 * src/files.h (strsuffix, stringappend): Add declarations.
6598 (tab_extension): Add declaration.
6599 (short_base_name): Add declaration.
6601 * src/files.c (strsuffix, stringappend): No longer static. These
6602 functions are used in the skeleton parser.
6603 (tab_extension): New.
6604 (compute_base_names): Use the computations done in this function
6605 to guess if the generated parsers should have '.tab' in their
6607 (short_base_name): No longer static.
6609 * src/output.c (output_skeleton): New.
6610 (output): Disable call to output_master_parser, and give a try to
6611 a new skeleton handling system.
6612 (guards_output, actions_output): No longer static.
6613 (token_definitions_output, get_lines_number): No longer static.
6615 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
6617 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
6620 * src/parse-skel.y: New file.
6621 * src/scan-skel.l: New file.
6623 2001-12-29 Akim Demaille <akim@epita.fr>
6625 %name-prefix is broken.
6627 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
6628 Adjust all dependencies.
6629 * tests/headers.at (export YYLTYPE): Strengthen this test: use
6632 Renaming yylval but not yylloc is not consistent. Now we do.
6634 * src/bison.simple: Prefix yylloc if used.
6635 * doc/bison.texinfo (Decl Summary): Document that.
6637 2001-12-29 Akim Demaille <akim@epita.fr>
6639 * doc/bison.texinfo: Promote `%long-directive' over
6641 Remove all references to fixed-output-files, yacc is enough.
6643 2001-12-29 Akim Demaille <akim@epita.fr>
6645 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
6646 user prologue. These are defaults.
6647 * tests/actions.at (Mid-rule actions): Make sure the user can
6648 define YYDEBUG and YYERROR_VERBOSE.
6650 2001-12-29 Akim Demaille <akim@epita.fr>
6652 * src/output.c (header_output): Don't forget to export YYLTYPE and
6654 * tests/headers.at (export YYLTYPE): New, make sure it does.
6655 * tests/regression.at (%union and --defines, Invalid CPP headers):
6657 * tests/headers.at: here.
6659 2001-12-29 Akim Demaille <akim@epita.fr>
6661 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
6663 2001-12-29 Akim Demaille <akim@epita.fr>
6665 * tests/actions.at (Mid-rule actions): Output on a single line
6668 2001-12-29 Akim Demaille <akim@epita.fr>
6670 * doc/bison.texinfo: Formatting changes.
6672 2001-12-29 Akim Demaille <akim@epita.fr>
6674 Don't store the token defs in a muscle, just be ready to output it
6675 on command. Now possible via `symbols'. Fixes a memory leak.
6677 * src/output.c (token_definitions_output): New.
6678 (output_parser, header_output): Use it.
6679 * src/reader.c (symbols_save): Remove.
6681 2001-12-29 Akim Demaille <akim@epita.fr>
6683 * src/bison.simple: Do not provide a default for YYSTYPE and
6684 YYLTYPE before the user's prologue. Otherwise it's hardly... a
6687 2001-12-29 Akim Demaille <akim@epita.fr>
6689 Mid-rule actions are simply... ignored!
6691 * src/reader.c (readgram): Be sure to attach mid-rule actions to
6692 the empty-rule associated to the dummy symbol, not to the host
6694 * tests/actions.at (Mid-rule actions): New.
6696 2001-12-29 Akim Demaille <akim@epita.fr>
6700 * src/reader.c (reader): Free grammar.
6702 2001-12-29 Akim Demaille <akim@epita.fr>
6706 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
6707 since it allocates it for each state, although only one is needed.
6708 (allocate_storage): Do it here.
6710 2001-12-29 Akim Demaille <akim@epita.fr>
6712 * src/options.h, src/options.c (create_long_option_table): Rename
6714 (long_option_table_new): this, with a clearer prototype.
6715 (percent_table): Remove, unused,
6716 * src/getargs.c (getargs): Adjust.
6718 2001-12-29 Akim Demaille <akim@epita.fr>
6720 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
6721 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
6724 2001-12-29 Akim Demaille <akim@epita.fr>
6726 * src/lalr.c (build_relations): Rename `states' as `states1'.
6727 Sorry, I don't understand exactly what it is, no better name...
6729 2001-12-29 Akim Demaille <akim@epita.fr>
6731 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
6732 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
6733 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
6736 2001-12-29 Akim Demaille <akim@epita.fr>
6738 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
6741 2001-12-29 Akim Demaille <akim@epita.fr>
6743 * src/reader.c, src/reader.h (user_toknums): Remove.
6744 Adjust all users to use symbols[i]->user_token_number.
6746 2001-12-29 Akim Demaille <akim@epita.fr>
6748 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
6749 Adjust all users to use symbols[i]->prec or ->assoc.
6751 2001-12-29 Akim Demaille <akim@epita.fr>
6753 * src/reader.c, src/reader.h (tags): Remove.
6754 Adjust all users to use symbols[i]->tag.
6756 2001-12-29 Akim Demaille <akim@epita.fr>
6758 * src/gram.h, src/gram.c (symbols): New, similar to state_table
6760 * src/reader.c (packsymbols): Fill this table.
6762 * src/conflicts.c (resolve_sr_conflict): Adjust.
6763 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
6765 Use symbols[i]->tag instead of tags[i].
6767 2001-12-29 Akim Demaille <akim@epita.fr>
6769 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
6770 In addition, put a comment in there, to replace...
6771 * tests/regression.at (%union and C comments): Remove.
6773 2001-12-29 Akim Demaille <akim@epita.fr>
6775 * tests/regression.at (Web2c Actions): Blindly move the actual
6776 output as expected output. The contents *seem* right to me, but I
6777 can't pretend reading perfectly parser tables... Nonetheless, all
6778 the other tests pass correctly, the table look OK, even though the
6779 presence of `$axiom' is to be noted: AFAICS it is useless (but
6782 2001-12-29 Akim Demaille <akim@epita.fr>
6784 * src/reader.c (readgram): Don't add the rule 0 if there were no
6785 rules read. In other words, add it _after_ having performed
6786 grammar sanity checks.
6787 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
6789 2001-12-29 Akim Demaille <akim@epita.fr>
6791 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
6792 visible, and some states have now a different number.
6794 2001-12-29 Akim Demaille <akim@epita.fr>
6796 * src/reader.c (readgram): Bind the initial rule's lineno to that
6798 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
6799 (Solved SR Conflicts): Adjust rule 0's line number.
6801 2001-12-29 Akim Demaille <akim@epita.fr>
6803 Fix the `GAWK Grammar' failure.
6805 * src/LR0.c (final_state): Initialize to -1 so that we do compute
6806 the reductions of the first state which was mistakenly confused
6807 with the final state because precisely final_state was initialized
6809 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
6810 now noticed by Bison.
6811 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
6812 have a reduction on $default.
6814 2001-12-29 Akim Demaille <akim@epita.fr>
6816 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
6818 * src/closure.c (print_closure): Likewise.
6819 * src/derives.c (print_derives): Likewise.
6820 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
6823 2001-12-29 Akim Demaille <akim@epita.fr>
6825 * src/lalr.c (lookaheads_print): New.
6826 (lalr): Call it when --trace-flag.
6827 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
6830 2001-12-29 Akim Demaille <akim@epita.fr>
6832 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
6833 when walking through ritem, even via rule->rhs.
6834 * src/reduce.c (dump_grammar, useful_production, reduce_output)
6835 (useful_production, useless_nonterminals): Likewise.
6836 (reduce_grammar_tables): Likewise, plus update nritems.
6837 * src/nullable.c (set_nullable): Likewise.
6838 * src/lalr.c (build_relations): Likewise.
6839 * tests/sets.at (Nullable): Adjust.
6840 Fortunately, now, the $axiom is no longer nullable.
6842 2001-12-29 Akim Demaille <akim@epita.fr>
6844 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
6846 * src/gram.c (ritem_longest_rhs): Likewise.
6847 * src/reduce.c (nonterminals_reduce): Likewise.
6848 * src/print_graph.c (print_graph): Likewise.
6849 * src/output.c (output_rule_data): Likewise.
6850 * src/nullable.c (set_nullable): Likewise.
6852 2001-12-29 Akim Demaille <akim@epita.fr>
6854 * src/output.c: Comment changes.
6856 2001-12-27 Paul Eggert <eggert@twinsun.com>
6858 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
6859 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
6860 Sparc, as they were causing more porting problems than the
6861 (minor) performance improvement was worth.
6863 Also, catch up with 1.31's YYSTD.
6865 2001-12-27 Akim Demaille <akim@epita.fr>
6867 * src/output.c (output_gram): Rely on nritems, not the
6868 0-sentinel. See below.
6869 Use -1 as separator, not 0.
6870 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
6871 Rely on -1 as separator in yyrhs, instead of 0.
6872 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
6873 twice `Now at end of input', therefore there are two lines less to
6876 2001-12-27 Akim Demaille <akim@epita.fr>
6878 * tests/regression.at (Unresolved SR Conflicts):
6879 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
6882 2001-12-27 Akim Demaille <akim@epita.fr>
6884 * src/LR0.c (new_state): Recognize the final state by the fact it
6885 is reached by eoftoken.
6886 (insert_start_shifting_state, insert_eof_shifting_state)
6887 (insert_accepting_state, augment_automaton): Remove, since now
6888 these states are automatically computed from the initial state.
6889 (generate_states): Adjust.
6890 * src/print.c: When reporting a rule number to the user, substract
6891 1, so that the axiom rule is rule 0, and the first user rule is 1.
6892 * src/reduce.c: Likewise.
6893 * src/print_graph.c (print_core): For the time being, just as for
6894 the report, depend upon --trace-flags to dump the full set of
6896 * src/reader.c (readgram): Once the grammar read, insert the rule
6897 0: `$axiom: START-SYMBOL $'.
6898 * tests/set.at: Adjust: rule 0 is now displayed, and since the
6899 number of the states has changed (the final state is no longer
6900 necessarily the last), catch up.
6902 2001-12-27 Akim Demaille <akim@epita.fr>
6904 Try to make the use of the eoftoken valid. Given that its value
6905 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
6906 is used instead of > 0 where appropriate, (ii), depend upon nritems
6907 instead of the 0-sentinel.
6909 * src/gram.h, src/gram.c (nritems): New.
6910 Expected to be duplication of nitems, but for the time being...
6911 * src/reader.c (packgram): Assert nritems and nitems are equal.
6912 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
6913 * src/closure.c (print_closure, print_fderives): Likewise.
6914 * src/gram.c (ritem_print): Likewise.
6915 * src/print.c (print_core, print_grammar): Likewise.
6916 * src/print_graph.c: Likewise.
6918 2001-12-27 Akim Demaille <akim@epita.fr>
6920 * src/main.c (main): If there are complains after grammar
6921 reductions, then output the report anyway if requested, then die.
6922 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
6923 * src/reader.c (eoftoken): New.
6924 (parse_token_decl): If the token being defined has value `0', it
6926 (packsymbols): No longer hack `tags' to insert `$' by hand.
6927 Be sure to preserve the value of the eoftoken.
6928 (reader): Make sure eoftoken is defined.
6929 Initialize nsyms to 0: now eoftoken is created just like the others.
6930 * src/print.c (print_grammar): Don't special case the eof token.
6931 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
6932 lie anyway, albeit pleasant.
6933 * tests/calc.at: Exercise error messages with eoftoken.
6934 Change the grammar so that empty input is invalid.
6935 Adjust expectations.
6936 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
6938 2001-12-27 Akim Demaille <akim@epita.fr>
6940 * configure.in: Check the protos of strchr ans strspn.
6941 Replace strchr if needed.
6942 * src/system.h: Provide the protos of strchr, strspn and memchr if
6944 * lib/strchr.c: New.
6945 * src/reader.c (symbols_save): Use strchr.
6947 2001-12-27 Akim Demaille <akim@epita.fr>
6949 * src/print.c, src/print_graph.c (escape): New.
6950 Use it to quote the TAGS outputs.
6951 * src/print_graph.c (print_state): Now errors are in red, and
6952 reductions in green.
6953 Prefer high to wide: output the state number on a line of its own.
6955 2001-12-27 Akim Demaille <akim@epita.fr>
6957 * src/state.h, src/state.c (reductions_new): New.
6958 * src/LR0.c (set_state_table): Let all the states have a
6959 `reductions', even if reduced to 0.
6960 (save_reductions): Adjust.
6961 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
6962 * src/print.c (print_reductions, print_actions): Adjust.
6963 * src/output.c (action_row): Adjust.
6965 2001-12-27 Akim Demaille <akim@epita.fr>
6967 * src/state.h, src/state.c (errs_new, errs_dup): New.
6968 * src/LR0.c (set_state_table): Let all the states have an errs,
6969 even if reduced to 0.
6970 * src/print.c (print_errs, print_reductions): Adjust.
6971 * src/output.c (output_actions, action_row): Adjust.
6972 * src/conflicts.c (resolve_sr_conflict): Adjust.
6974 2001-12-27 Akim Demaille <akim@epita.fr>
6976 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
6978 2001-12-27 Akim Demaille <akim@epita.fr>
6980 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
6981 * src/print.c: here.
6982 (lookaheadset, shiftset): New, used as additional storage by
6984 (print_results): Adjust.
6985 (print_shifts, print_gotos, print_errs): New, extracted from...
6986 (print_actions): here.
6987 * src/print_graph.c (print_actions): Remove dead code.
6989 2001-12-27 Akim Demaille <akim@epita.fr>
6991 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
6994 2001-12-27 Akim Demaille <akim@epita.fr>
6996 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
6997 (build_relations): Adjust.
6999 2001-12-27 Akim Demaille <akim@epita.fr>
7001 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
7004 2001-12-27 Akim Demaille <akim@epita.fr>
7006 * src/reader.c (packgram): Catch nitems overflows.
7008 2001-12-27 Akim Demaille <akim@epita.fr>
7010 * src/files.c, src/files.h (guard_obstack): Remove.
7011 * src/output.c (output): Adjust.
7012 * src/reader.c (parse_braces): New, factoring...
7013 (copy_action, copy_guard): these two which are renamed as...
7014 (parse_action, parse_guard): these.
7015 As a voluntary consequence, using braces around guards is now
7018 2001-12-27 Akim Demaille <akim@epita.fr>
7020 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
7021 * src/reader.c (symbol_list): `guard' and `guard_line' are new
7023 (symbol_list_new): Adjust.
7024 (copy_action): action_line is the first line, not the last.
7025 (copy_guard): Just as for actions, store the `action' only, not
7026 the switch/case/break flesh.
7027 Don't parse the user action that might follow the guard, let...
7028 (readgram): do it, i.e., now, there can be an action after a
7030 In other words the guard is just explicitly optional.
7032 * src/output.c (guards_output): New.
7033 (output_parser): Call it when needed.
7034 (output): Also free the guard and attrs obstacks.
7035 * src/files.c, src/files.h (obstack_save): Remove.
7036 (output_files): Remove.
7037 As a result, if one needs the former `.act' file, using an
7038 appropriate skeleton which requires actions and guards is now
7040 * src/main.c (main): Adjust.
7041 * tests/semantic.at: New.
7042 * tests/regression.at: Use `input.y' as input file name.
7043 Avoid 8+3 problems by requiring input.c when the test needs the
7046 2001-12-27 Akim Demaille <akim@epita.fr>
7048 * src/reader.c (symbol_list_new): Be sure to initialize all the
7051 2001-12-27 Akim Demaille <akim@epita.fr>
7053 All the hacks using a final pseudo state are now useless.
7055 * src/LR0.c (set_state_table): state_table holds exactly nstates.
7056 * src/lalr.c (nLA): New.
7057 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
7058 instead of lookaheadsp from the pseudo state (nstate + 1).
7060 2001-12-27 Akim Demaille <akim@epita.fr>
7062 * src/output.c (action_row, token_actions): Use a state_t instead
7063 of a integer, and nlookaheads instead of the following state's
7066 2001-12-27 Akim Demaille <akim@epita.fr>
7068 * src/conflicts.c (log_resolution, flush_shift)
7069 (resolve_sr_conflict, set_conflicts, solve_conflicts)
7070 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
7071 (conflicts_print, print_reductions): Use a state_t instead of an
7072 integer when referring to a state.
7073 As much as possible, depend upon nlookaheads, instead of the
7074 `lookaheadsp' member of the following state (since lookaheads of
7075 successive states are successive, the difference between state n + 1
7076 and n served as the number of lookaheads for state n).
7077 * src/lalr.c (add_lookback_edge): Likewise.
7078 * src/print.c (print_core, print_actions, print_state)
7079 (print_results): Likewise.
7080 * src/print_graph.c (print_core, print_actions, print_state)
7081 (print_graph): Likewise.
7082 * src/conflicts.h: Adjust.
7084 2001-12-27 Akim Demaille <akim@epita.fr>
7086 * src/bison.hairy: Formatting/comment changes.
7088 Remove `register' indications.
7089 Add plenty of `static'.
7091 2001-12-27 Akim Demaille <akim@epita.fr>
7093 * src/output.c (prepare): Drop the muscle `ntbase' which
7095 * src/bison.simple: Formatting/comment changes.
7096 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
7097 is an undocumented synonym.
7099 2001-12-22 Akim Demaille <akim@epita.fr>
7101 * src/output.c (output_table_data): Change the prototype to use
7102 `int' for array ranges: some invocations do pass an int, not a
7104 Reported by Wayne Green.
7106 2001-12-22 Akim Demaille <akim@epita.fr>
7108 Some actions of web2c.y are improperly triggered.
7109 Reported by Mike Castle.
7111 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
7112 * tests/regression.at (Web2c): Rename as...
7113 (Web2c Report): this.
7114 (Web2c Actions): New.
7116 2001-12-22 Akim Demaille <akim@epita.fr>
7118 Reductions in web2c.y are improperly reported.
7119 Reported by Mike Castle.
7121 * src/conflicts.c (print_reductions): Fix.
7122 * tests/regression.at (Web2c): New.
7124 2001-12-18 Akim Demaille <akim@epita.fr>
7126 Some host fail on `assert (!"foo")', which expands to
7127 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
7128 Reported by Nelson Beebee.
7130 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
7131 `#define it_succeeded 0' and `assert (it_succeeded)'.
7133 2001-12-17 Marc Autret <autret_m@epita.fr>
7135 * src/bison.simple: Don't hard code the skeleton line and filename.
7136 * src/output.c (output_parser): Rename 'line' as 'output_line'.
7137 New line counter 'skeleton_line' (skeleton-line muscle).
7139 2001-12-17 Paul Eggert <eggert@twinsun.com>
7141 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
7142 YYDEBUG must be defined to a nonzero value.
7144 * src/bison.simple (yytname): Do not assume that the user defines
7145 YYDEBUG to a properly parenthesized expression.
7147 2001-12-17 Akim Demaille <akim@epita.fr>
7149 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
7150 nlookaheads is a new member.
7152 * src/lalr.h (nlookaheads): Remove this orphan declaration.
7153 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
7156 2001-12-17 Akim Demaille <akim@epita.fr>
7158 * src/files.h, src/files.c (open_files, close_files): Remove.
7159 * src/main.c (main): Don't open/close files, nor invoke lex_free,
7161 * src/reader.c (reader): Do it.
7163 2001-12-17 Akim Demaille <akim@epita.fr>
7165 * src/conflicts.c (print_reductions): Formatting changes.
7167 2001-12-17 Akim Demaille <akim@epita.fr>
7169 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
7170 (flush_reduce): New.
7171 (resolve_sr_conflict): Adjust.
7173 2001-12-17 Akim Demaille <akim@epita.fr>
7175 * src/output.c (output_obstack): Be static and rename as...
7176 (format_obstack): this, to avoid any confusion with files.c's
7178 * src/reader.h (muscle_obstack): Move to...
7179 * src/output.h: here, since it's defined in output.c.
7181 2001-12-17 Akim Demaille <akim@epita.fr>
7183 * src/output.c (action_row, save_column, default_goto)
7184 (sort_actions, matching_state, pack_vector): Better variable
7187 2001-12-17 Akim Demaille <akim@epita.fr>
7189 * src/output.c: Various formatting changes.
7191 2001-12-17 Akim Demaille <akim@epita.fr>
7193 * src/files.c (output_files): Free the output_obstack.
7194 * src/main.c (main): Call print and print_graph conditionally.
7195 * src/print.c (print): Work unconditionally.
7196 * src/print_graph.c (print_graph): Work unconditionally.
7197 * src/conflicts.c (log_resolution): Output only if verbose_flag.
7199 2001-12-16 Marc Autret <autret_m@epita.fr>
7201 * src/output.c (actions_output): Fix. When we use %no-lines,
7202 there is one less line per action.
7204 2001-12-16 Marc Autret <autret_m@epita.fr>
7206 * src/bison.simple: Remove a useless #line directive.
7207 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
7208 * src/output.c (get_lines_number): New.
7209 (output_parser): Adjust, now takes care about the lines of a
7212 (actions_output): Computes the number of lines taken by actions.
7213 (output_master_parser): Insert new skeleton which is the name of
7214 the output parser file name.
7216 2001-12-15 Marc Autret <autret_m@epita.fr>
7218 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
7220 2001-12-15 Marc Autret <autret_m@epita.fr>
7222 * src/output.c (output_gram): Keep track of the hairy one.
7224 2001-12-15 Akim Demaille <akim@epita.fr>
7226 Make `make distcheck' work.
7228 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
7229 system.h which uses libgettext.h.
7231 2001-12-15 Akim Demaille <akim@epita.fr>
7233 * src/nullable.c (set_nullable): Useless rules must be skipped,
7234 otherwise, since we range over their symbols, we might look at a
7235 nonterminal which no longer ``exists'', i.e., it is not counted in
7236 `nvars', hence we overflow our arrays.
7238 2001-12-15 Akim Demaille <akim@epita.fr>
7240 The header can also be produced directly, without any obstack!
7243 * src/files.c, src/files.h (defines_obstack): Remove.
7244 (compute_header_macro): Global.
7245 (defines_obstack_save): Remove.
7246 * src/reader.c (parse_union_decl): No longer output to
7247 defines_obstack: its content can be found in the `stype' muscle
7249 (output_token_translations): Merge into...
7250 (symbols_output): this.
7252 (symbols_save): this.
7254 * src/output.c (header_output): New.
7257 2001-12-15 Akim Demaille <akim@epita.fr>
7259 * src/reader.c (parse_union_decl): Instead of handling two obstack
7260 simultaneously, use one to define the `stype' muscle, and use the
7261 value of the latter to fill defines_obstack.
7262 (copy_comment): Remove.
7263 (copy_comment2): Work for a single obstack.
7265 (copy_comment): this.
7267 2001-12-15 Akim Demaille <akim@epita.fr>
7269 * src/lex.c, src/lex.h (xgetc): No longer static.
7270 * src/reader.c (parse_union_decl): Revamp.
7272 2001-12-15 Akim Demaille <akim@epita.fr>
7274 Still making progress in separating Bison into (i) input, (ii)
7275 process, (iii) output: now we can directly output the parser file
7276 without using table_obstack at all.
7278 * src/files.c, src/files.h (table_obstack): Bye bye.
7279 (parser_file_name): New.
7280 * src/files.c (compute_output_file_names): Compute it.
7281 * src/output.c (actions_output, output_parser)
7282 (output_master_parser): To a file instead of an obstack.
7284 2001-12-15 Akim Demaille <akim@epita.fr>
7286 Attach actions to rules, instead of pre-outputting them to
7289 * src/gram.h (rule_t): action and action_line are new members.
7290 * src/reader.c (symbol_list): Likewise.
7291 (copy_action): Save the actions within the rule.
7292 (packgram): Save them in rule_table.
7293 * src/output.c (actions_output): New.
7294 (output_parser): Use it on `%%actions'.
7295 (output_rule_data): Don't free rule_table.
7297 (prepare): Don't save the `action' muscle.
7298 * src/bison.simple: s/%%action/%%actions/.
7300 2001-12-15 Akim Demaille <akim@epita.fr>
7302 * src/reader.c (copy_action): When --yacc, don't append a `;'
7303 to the user action: let it fail if lacking.
7304 Suggested by Arnold Robbins and Tom Tromey.
7306 2001-12-14 Akim Demaille <akim@epita.fr>
7308 * src/lex.c (literalchar): Simply return the char you decoded, non
7309 longer mess around with obstacks and int pointers.
7312 2001-12-14 Akim Demaille <akim@epita.fr>
7314 * src/lex.c (literalchar): Don't escape the special characters,
7315 just decode them, and keep them as char (before, eol was output as
7316 the 2 char string `\n' etc.).
7317 * src/output.c (output_rule_data): Use quotearg to output the
7320 2001-12-13 Paul Eggert <eggert@twinsun.com>
7322 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
7323 Do not infringe on the global user namespace when using C++.
7324 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
7325 All uses of `fprintf' and `stderr' changed.
7327 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
7329 2001-12-13 Akim Demaille <akim@epita.fr>
7331 The computation of nullable is broken: it doesn't handle empty
7334 * tests/torture.at (GNU AWK Grammar): New.
7335 * tests/sets.at (Nullable): New.
7336 * src/nullable.c (set_nullable): Instead of blindly looping over
7337 `ritems', loop over the rules, and then over their rhs's.
7339 Work around Autotest bugs.
7341 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
7342 frame, because Autotest understand lines starting with a `+' as
7343 traces from the shell. Then, they are not processed properly.
7344 Admittedly an Autotest bug, but we don't have time to wait for
7345 Autotest to catch up.
7346 * tests/regression.at (Broken Closure): Adjust to the new table
7349 * tests/sets.at: here.
7351 2001-12-13 Akim Demaille <akim@epita.fr>
7353 * src/closure.c (closure): Use nrules instead of playing tricks
7356 2001-12-13 Akim Demaille <akim@epita.fr>
7358 * src/print.c (print_actions): Output the handling of `$' as the
7359 traces do: shifting the token EOF. Before EOF was treated as a
7361 * tests/regression.at: Adjust some tests.
7362 * src/print_graph.c (print_core): Complete the set of items via
7363 closure. The next-to-final and final states are still unsatisfying,
7364 but that's to be addressed elsewhere.
7365 No longer output the rule numbers, but do output the state number.
7366 A single loop for the shifts + gotos is enough, but picked a
7367 distinct color for each.
7368 (print_graph): Initialize and finalize closure.
7370 2001-12-13 Akim Demaille <akim@epita.fr>
7372 * src/reader.c (readgram): Remove dead code, an strip useless
7374 (get_type): Remove, unused.
7376 2001-12-12 Akim Demaille <akim@epita.fr>
7378 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
7379 on that of lib/error.c.
7381 2001-12-12 Akim Demaille <akim@epita.fr>
7383 Some hosts don't like `/' in includes.
7385 * src/system.h: Include libgettext.h without qualifying the path.
7386 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
7389 2001-12-11 Marc Autret <autret_m@epita.fr>
7391 * src/output.c (output_parser): Remove useless muscle.
7393 2001-12-11 Marc Autret <autret_m@epita.fr>
7395 * src/bison.simple: Remove #line just before %%epilogue. It
7396 is now handled in ...
7397 * src/reader.c (read_additionnal_code): Add the output of a
7398 #line for the epilogue.
7400 2001-12-10 Marc Autret <autret_m@epita.fr>
7402 * src/reader.c (copy_definition): Re-use CPP-outed code which
7403 replace precedent remove.
7404 * src/bison.simple: Remove #line before %%prologue because
7405 %%input-line is wrong at this time.
7407 2001-12-10 Marc Autret <autret_m@epita.fr>
7409 * src/reader.c (symbols_output): Clean up.
7410 * src/output.c (output_gram, output): Clean up.
7412 2001-12-10 Akim Demaille <akim@epita.fr>
7414 * src/lalr.c (initialize_lookaheads): New. Extracted from...
7415 * src/LR0.c (set_state_table): here.
7416 * src/lalr.c (lalr): Call it.
7418 2001-12-10 Akim Demaille <akim@epita.fr>
7420 * src/state.h (shifts): Remove the `number' member: shifts are
7421 attached to state, hence no longer need to be labelled with a
7424 2001-12-10 Akim Demaille <akim@epita.fr>
7426 Now that states have a complete set of members, the linked list of
7427 shifts is useless: just fill directly the state's shifts member.
7429 * src/state.h (shifts): Remove the `next' member.
7430 * src/LR0.c (first_state, last_state): Remove.
7432 (augment_automaton): Don't look for the shifts that must be added
7433 a shift on EOF: it is those of the state we looked for! But now,
7434 since shifts are attached, it is no longer needed to looking
7435 merely by its id: its number.
7437 2001-12-10 Akim Demaille <akim@epita.fr>
7439 * src/LR0.c (augment_automaton): Better variable locality.
7440 Remove an impossible branch: if there is a state corresponding to
7441 the start symbol being shifted, then there is shift for the start
7442 symbol from the initial state.
7444 2001-12-10 Akim Demaille <akim@epita.fr>
7446 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
7447 only when appropriate: when insert_start_shifting_state' is not
7449 * tests/regression.at (Rule Line Numbers): Adjust.
7451 2001-12-10 Akim Demaille <akim@epita.fr>
7453 * src/LR0.c (augment_automaton): Now that all states have shifts,
7454 merge the two cases addition shifts to the initial state.
7456 2001-12-10 Akim Demaille <akim@epita.fr>
7458 * src/lalr.c (set_state_table): Move to...
7460 * src/lalr.c (lalr): Don't call it...
7461 * src/LR0.c (generate_states): do it.
7462 * src/LR0.h (first_state): Remove, only the table is used.
7464 2001-12-10 Akim Demaille <akim@epita.fr>
7466 * src/LR0.h (first_shift, first_reduction): Remove.
7467 * src/lalr.c: Don't use first_shift: find shifts through the
7470 2001-12-10 Akim Demaille <akim@epita.fr>
7472 * src/LR0.c: Attach shifts to states as soon as they are
7474 * src/lalr.c (set_state_table): Instead of assigning shifts to
7475 state, just assert that the mapping was properly done.
7477 2001-12-10 Akim Demaille <akim@epita.fr>
7479 * src/LR0.c (insert_start_shift): Rename as...
7480 (insert_start_shifting_state): this.
7481 (insert_eof_shifting_state, insert_accepting_state): New.
7482 (augment_automaton): Adjust.
7483 Better locality of the variables.
7484 When looking if the start_symbol is shifted from the initial
7485 state, using `while (... symbol != start_symbol ...)' sounds
7486 better than `while (... symbol < start_symbol ...)': If fail
7487 to see how the order between symbols could be relevant!
7489 2001-12-10 Akim Demaille <akim@epita.fr>
7491 * src/getargs.h: Don't declare `spec_name_prefix' and
7492 `spec_file_prefix', declared by src/files.h.
7493 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
7494 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
7495 * src/output.c (prepare): Adjust.
7496 * src/reader.c (symbols_output): Likewise.
7497 * src/vmsgetargs.c: Vaguely adjust, but who cares?
7499 2001-12-10 Akim Demaille <akim@epita.fr>
7501 * src/muscle_tab.c (muscle_init): NULL is a better default than
7504 2001-12-10 Akim Demaille <akim@epita.fr>
7506 * src/reader.c (reader): Calling symbols_output once is enough.
7508 2001-12-10 Akim Demaille <akim@epita.fr>
7510 Now that states have a complete set of members, the linked list of
7511 reductions is useless: just fill directly the state's reductions
7514 * src/state.h (struct reductions): Remove member `number' and
7516 * src/LR0.c (first_reduction, last_reduction): Remove.
7517 (save_reductions): Don't link the new reductions, store them in
7519 * src/lalr.c (set_state_table): No need to attach reductions to
7520 states, it's already done.
7521 * src/output.c (output_actions): No longer free the shifts, then
7522 the reductions, then the states: free all the states and their
7525 2001-12-10 Akim Demaille <akim@epita.fr>
7527 * src/options.c (OPTN, DRTV, BOTH): New.
7528 (option_table): Use them.
7530 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
7531 the job of system.h.
7532 * src/options.c: Don't include stdio.h and xalloc.h for the same
7535 2001-12-10 Akim Demaille <akim@epita.fr>
7537 * src/output.c (output, prepare): Make sure the values of the
7538 muscles `action' and `prologue' are 0-terminated.
7540 2001-12-10 Akim Demaille <akim@epita.fr>
7542 Clean up GCC warnings.
7544 * src/reader.c (copy_action): `buf' is not used.
7545 (parse_skel_decl): Be static.
7546 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
7547 * src/options.h (create_long_option_table): Have a real prototype.
7548 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
7549 (hash_delete_at): Return const void *.
7550 Adjust casts to preserve the const.
7552 2001-12-10 Akim Demaille <akim@epita.fr>
7554 * configure.in: Require 2.52g.
7555 M4 is not needed, but AUTOM4TE is.
7557 * tests/Makefile.am: Adjust.
7559 2001-12-10 Akim Demaille <akim@epita.fr>
7561 One structure for states is enough, even though theoretically
7562 there are LR(0) states and LALR(1) states.
7564 * src/lalr.h (state_t): Remove.
7565 (state_table): Be state_t **, not state_t *.
7566 * src/state.h (core, CORE_ALLOC): Rename as...
7567 (state_t, STATE_ALLOC): this.
7568 Add the LALR(1) members: shifts, reductions, errs.
7569 * src/LR0.c (state_table): Rename as...
7570 (state_hash): this, to avoid name clashes with the global
7572 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
7573 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
7575 2001-12-10 Akim Demaille <akim@epita.fr>
7577 Bison dumps core on bash.y.
7578 Reported by Pascal Bart.
7580 * src/warshall.c (bitmatrix_print): New.
7582 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
7583 j must be the outer loop.
7584 * tests/regression.at (Broken Closure): New.
7586 2001-12-05 Akim Demaille <akim@epita.fr>
7588 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
7590 Reported by Peter Hamorsky.
7592 2001-12-05 Akim Demaille <akim@epita.fr>
7594 * src/conflicts.c (err_table): Remove.
7595 (resolve_sr_conflict): Adjust.
7596 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
7598 (state_t.reductions, state_t.shifts): this.
7600 2001-12-05 Akim Demaille <akim@epita.fr>
7602 * src/reduce.c (reduce_grammar_tables): No longer disable the
7603 removal of useless rules via CPP but via `if (0)', so that the
7604 compiler still check the code is valid.
7605 For instance, it should have noticed `rline' no longer exists: use
7606 the `line' member of rule_t.
7607 * src/gram.c (dummy, rline): Remove, unused.
7609 2001-12-05 Akim Demaille <akim@epita.fr>
7611 * src/output.c (pack_vector): Use assert, not berror.
7612 * src/main.c (berror): Remove, unused.
7614 2001-12-05 Akim Demaille <akim@epita.fr>
7616 New experimental feature: if --verbose --trace output all the
7617 items of a state, not only its kernel.
7619 * src/print.c (print_core): If `trace_flag', then invoke closure
7620 before outputting the items of the state (print_core is no longer
7621 a correct name them).
7622 (print_results): Invoke new_closure/free_closure if needed.
7624 2001-12-05 Akim Demaille <akim@epita.fr>
7626 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
7627 * src/closure.c, src/closure.h (itemsetsize): Rename as...
7628 (nitemset): for consistency with the rest of the project.
7630 2001-12-05 Akim Demaille <akim@epita.fr>
7632 * src/closure.c (print_closure): Improve.
7633 (closure): Use it for printing input and output.
7635 2001-12-05 Akim Demaille <akim@epita.fr>
7637 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
7638 indexed by nonterminals.
7640 2001-12-05 Akim Demaille <akim@epita.fr>
7642 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
7644 * src/warshall.h: Remove accidental duplication of the content.
7646 2001-12-05 Akim Demaille <akim@epita.fr>
7648 * src/closure.c (set_fderives): De-obfuscate.
7650 2001-12-05 Akim Demaille <akim@epita.fr>
7652 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
7654 2001-12-05 Akim Demaille <akim@epita.fr>
7656 * src/closure.c (set_firsts): De-obfuscate.
7658 2001-12-05 Akim Demaille <akim@epita.fr>
7660 * src/output.c (action_row): De-obfuscate
7661 using the good o' techniques: arrays not pointers, variable
7662 locality, BITISSET, RESETBIT etc.
7664 2001-12-05 Akim Demaille <akim@epita.fr>
7666 Pessimize the code to simplify it: from now on, all the states
7667 have a valid SHIFTS, which NSHIFTS is possibly 0.
7669 * src/LR0.c (shifts_new): Be global and move to..
7670 * src/state.c, src/state.h: here.
7671 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
7672 * src/print_graph: Adjust.
7674 2001-12-05 Akim Demaille <akim@epita.fr>
7676 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
7677 * src/conflicts.c: Use it.
7678 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
7679 incorrectly ``simplified''.
7681 2001-12-05 Akim Demaille <akim@epita.fr>
7683 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
7684 using the good o' techniques: arrays not pointers, variable
7685 locality, BITISSET, RESETBIT etc.
7687 2001-12-05 Akim Demaille <akim@epita.fr>
7689 * src/state.h (SHIFT_SYMBOL): New.
7690 * src/conflicts.c: Use it to deobfuscate.
7692 2001-12-05 Akim Demaille <akim@epita.fr>
7694 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
7695 (print_reductions): De-obfuscate using the good o' techniques:
7696 arrays not pointers, variable locality, BITISSET.
7698 2001-12-05 Akim Demaille <akim@epita.fr>
7700 * src/conflicts.c (print_reductions): Arrays, not pointers.
7703 2001-12-05 Akim Demaille <akim@epita.fr>
7705 * src/conflicts.c (print_reductions): Pessimize, but clarify.
7707 2001-12-05 Akim Demaille <akim@epita.fr>
7709 * src/conflicts.c (print_reductions): Improve variable locality.
7711 2001-12-05 Akim Demaille <akim@epita.fr>
7713 * src/conflicts.c (print_reductions): Pessimize, but clarify.
7715 2001-12-05 Akim Demaille <akim@epita.fr>
7717 * src/conflicts.c (print_reductions): Improve variable locality.
7719 2001-12-05 Akim Demaille <akim@epita.fr>
7721 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
7722 * src/lalr.c: Use them.
7724 2001-12-05 Akim Demaille <akim@epita.fr>
7726 * src/LR0.c (augment_automaton): Formatting changes.
7727 Better variable locality.
7729 2001-12-05 Akim Demaille <akim@epita.fr>
7731 * src/lalr.c (matrix_print): New.
7732 (transpose): Use it.
7733 Use arrays instead of pointers.
7735 2001-12-05 Akim Demaille <akim@epita.fr>
7737 * src/lalr.c (maxrhs): Move to...
7738 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
7739 * src/lalr.c (build_relations): Adjust.
7741 2001-12-05 Akim Demaille <akim@epita.fr>
7743 * src/lalr.c (transpose): Free the memory allocated to the
7744 argument, as it is replaced by the results by the unique caller.
7745 (build_relations): Merely invoke transpose: it handles the memory
7747 Improve variable locality.
7748 Avoid variables used as mere abbreviations.
7749 (compute_lookaheads): Use arrays instead of pointers.
7751 2001-12-05 Akim Demaille <akim@epita.fr>
7753 * src/lalr.c (initialize_F): Improve variable locality.
7754 Avoid variables used as mere abbreviations.
7756 2001-12-05 Akim Demaille <akim@epita.fr>
7758 * src/derives.c (print_derives): Display the ruleno.
7759 * src/lalr.c (initialize_F, transpose): Better variable locality
7760 to improve readability.
7761 Avoid variables used as mere abbreviations.
7763 2001-12-05 Akim Demaille <akim@epita.fr>
7765 * src/lalr.c (traverse): Use arrays instead of pointers.
7767 2001-12-05 Akim Demaille <akim@epita.fr>
7769 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
7770 the handling of squeue.
7771 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
7773 2001-12-05 Akim Demaille <akim@epita.fr>
7775 Because useless nonterminals are now kept alive (instead of being
7776 `destroyed'), we now sometimes examine them, and store information
7777 related to them. Hence we need to know their number, and adjust
7780 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
7782 * src/LR0.c (allocate_itemsets): The memory allocated to
7783 `symbol_count' was used for two different purpose: once to count
7784 the number of occurrences of each symbol, and later reassigned to
7785 `shift_symbol', containing the symbol that can be shifted from a
7787 Deobfuscate, i.e., allocate, use and free `symbol_count' here
7789 (new_itemsets): Allocate `shift_symbol' here.
7790 (allocate_itemsets): symbol_count includes useless nonterminals.
7792 (free_storage): Use `free', not `XFREE', for pointers that cannot
7795 2001-12-05 Akim Demaille <akim@epita.fr>
7797 * src/nullable.c (set_nullable): Deobfuscate the handling of
7799 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
7801 2001-12-05 Akim Demaille <akim@epita.fr>
7803 * src/gram.c, src/gram.h (ritem_print): New.
7804 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
7805 (This useless function was defined only to work around VMS linkers
7806 that can't handle compilation units with variables only).
7807 * src/reduce.c (dump_grammar): Use it to trace the construction of
7810 2001-12-04 Paul Eggert <eggert@twinsun.com>
7812 * src/bison.simple (union yyalloc): Change member names
7813 to be the same as the stack names.
7814 (yyparse): yyptr is now union yyalloc *, not char *.
7815 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
7816 and may generate better code on some machines.
7817 (yystpcpy): Use prototype if __STDC__ is defined, not just
7818 if __cplusplus is defined.
7820 2001-11-30 Akim Demaille <akim@epita.fr>
7822 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
7823 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
7824 Gettext doesn't compile cleanly, and dies with -Werror.
7825 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
7826 Include WARNING_CFLAGS here.
7827 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
7828 before being defined.
7830 2001-11-27 Paul Eggert <eggert@twinsun.com>
7832 * lib/quotearg.h (quotearg_n, quotearg_n_style):
7833 First arg is int, not unsigned.
7834 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
7835 (SIZE_MAX, UINT_MAX): New macros.
7836 (quotearg_n_options): Abort if N is negative.
7837 Avoid overflow check on hosts where size_t is 64 bits and int
7838 is 32 bits, as overflow is impossible there.
7839 Fix off-by-one typo that caused unnecessary reallocation.
7841 2001-11-29 Paul Eggert <eggert@twinsun.com>
7843 Name space cleanup in generated parser.
7845 * doc/bison.texinfo (Bison Parser): Discuss system headers
7846 and their effect on the user name space.
7849 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
7850 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
7851 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
7853 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
7854 on user names when possible.
7856 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
7857 Simplify test for whather <alloca.h> exists.
7859 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
7861 (<stdio.h>): Include if YYDEBUG.
7863 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
7864 ! defined (yyoverflow) && ! defined (yymemcpy).
7866 (yymemcpy, yyparse): Rename local variables as needed so that
7867 they all begin with 'yy'.
7869 (yystrlen, yystpcpy): New functions.
7871 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
7874 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
7875 instead of relying on string.h functions. Use YYSTACK_ALLOC
7876 and YYSTACK_FREE instead of malloc and free.
7878 2001-11-30 Akim Demaille <akim@epita.fr>
7880 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
7881 before their first uses.
7882 (YYBISON, YYPURE): Move to the top of the output.
7884 2001-11-30 Akim Demaille <akim@epita.fr>
7886 * tests/reduce.at (Useless Nonterminals): Fix.
7888 2001-11-30 Akim Demaille <akim@epita.fr>
7890 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
7891 if body instead of `;' to pacify GCC's warnings.
7893 2001-11-30 Akim Demaille <akim@epita.fr>
7895 Instead of mapping the LHS of unused rules to -1, keep the LHS
7896 valid, but flag the rules as invalid.
7898 * src/gram.h (rule_t): `useful' is a new member.
7899 * src/print.c (print_grammar): Adjust.
7900 * src/derives.c (set_derives): Likewise.
7901 * src/reader.c (packgram, reduce_output): Likewise.
7902 * src/reduce.c (reduce_grammar_tables): Likewise.
7903 * tests/reduce.at (Underivable Rules, Useless Rules): New.
7905 2001-11-30 Akim Demaille <akim@epita.fr>
7907 * src/reduce.c (reduce_output): Formatting changes.
7908 * src/print.c (print_results, print_grammar): Likewise.
7909 * tests/regression.at (Rule Line Numbers)
7910 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
7912 2001-11-30 Akim Demaille <akim@epita.fr>
7914 * src/reduce.c (nonterminals_reduce): Instead of throwing away
7915 useless nonterminals, move them at the end of the symbol arrays.
7916 (reduce_output): Adjust.
7917 * tests/reduce.at (Useless Nonterminals): Adjust.
7919 2001-11-30 Akim Demaille <akim@epita.fr>
7921 * src/reduce.c: Various comment/formatting changes.
7922 (nonterminals_reduce): New, extracted from...
7923 (reduce_grammar_tables): here.
7924 (reduce_grammar): Call nonterminals_reduce.
7926 2001-11-29 Paul Eggert <eggert@twinsun.com>
7928 * src/bison.simple (YYSTACK_REALLOC): Remove.
7929 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
7930 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
7932 (union yyalloc): New type.
7933 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
7934 an arbitrary restriction on hosts where size_t is wider than int.
7936 (yyparse): Don't dump core if alloca or malloc fails; instead, report
7937 a parser stack overflow. Allocate just one block of memory for all
7938 three stacks, instead of allocating three blocks; this typically is
7939 faster and reduces fragmentation.
7941 Do not limit the number of items in the stack to a value that fits
7942 in 'int', as this is an arbitrary limit on hosts with 64-bit
7943 size_t and 32-bit int.
7945 2001-11-29 Marc Autret <autret_m@epita.fr>
7947 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
7948 of defining YYERROR_VERBOSE.
7949 [AT_DATA]: $4 is now out of C declarations in the prologue.
7951 2001-11-28 Marc Autret <autret_m@epita.fr>
7953 * src/reader.c (parse_dquoted_param): New.
7954 (parse_skel_decl): Use it.
7955 * src/lex.h: Add its prototype.
7956 * src/lex.c (literalchar): Become not static.
7958 2001-11-28 Marc Autret <autret_m@epita.fr>
7960 * src/output.h: And put its extern declaration here.
7961 * src/output.c (error_verbose): Define here.
7962 (prepare): Echo name modification.
7963 * src/getargs.h: Clean its extern declaration.
7964 * src/getargs.c (error_verbose_flag): Remove.
7965 (getargs): Remove case 'e'.
7966 * src/options.c (option_table): 'error-verbose' is now seen as simple
7970 * src/reader.c (read_declarations): Remove case tok_include.
7971 (parse_include_decl): Remove.
7972 * src/lex.h (token_t): Remove tok_include.
7973 * src/options.c (option_table): 'include' is now a simple command line
7976 2001-11-28 Marc Autret <autret_m@epita.fr>
7978 * src/bison.simple: Adjust muscle names.
7979 * src/muscle_tab.c (muscle_init): Also rename the muscles.
7980 * src/output.c (prepare): s/_/-/ for the muscles names.
7981 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
7983 2001-11-28 Marc Autret <autret_m@epita.fr>
7985 * src/bison.simple: Fix debug.
7986 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
7988 2001-11-28 Akim Demaille <akim@epita.fr>
7990 * src/LR0.c (shifts_new): New.
7991 (save_shifts, insert_start_shift, augment_automaton): Use it.
7993 2001-11-28 Akim Demaille <akim@epita.fr>
7995 * src/closure.c (closure): `b' and `ruleno' denote the same value:
7998 2001-11-28 Akim Demaille <akim@epita.fr>
8000 * src/closure.c (closure): Instead of looping over word in array
8001 then bits in words, loop over bits in array.
8003 2001-11-28 Akim Demaille <akim@epita.fr>
8005 * src/closure.c (closure): No longer optimize the special case
8006 where all the bits of `ruleset[r]' are set to 0, to make the code
8009 2001-11-28 Akim Demaille <akim@epita.fr>
8011 * src/closure.c (closure): `r' and `c' are new variables, used to
8012 de-obfuscate accesses to RULESET and CORE.
8014 2001-11-28 Akim Demaille <akim@epita.fr>
8016 * src/reduce.c (reduce_print): Use ngettext.
8017 (dump_grammar): Improve the trace accuracy.
8019 2001-11-28 Akim Demaille <akim@epita.fr>
8021 * src/reduce.c (dump_grammar): Don't translate trace messages.
8023 2001-11-28 Akim Demaille <akim@epita.fr>
8025 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
8026 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
8027 as all tags are free'ed afterwards.
8030 2001-11-27 Paul Eggert <eggert@twinsun.com>
8032 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
8033 use alloca when we didn't want to, and vice versa.
8035 2001-11-27 Marc Autret <autret_m@epita.fr>
8037 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
8039 * src/output.c (prepare): Remove its update.
8041 2001-11-27 Marc Autret <autret_m@epita.fr>
8043 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
8046 2001-11-27 Marc Autret <autret_m@epita.fr>
8048 * src/bison.simple: Remove YYERROR_VERBOSE using.
8049 Use %%error_verbose.
8050 (yyparse): Likewise.
8051 * src/output.c (prepare): Give its final value.
8052 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
8053 * src/getargs.h: Add its extern declaration.
8054 * src/getargs.c (error_verbose_flag): New int.
8055 (getargs): Update to catch new case.
8056 * src/options.c (option_table): 'error-verbose' is a new option.
8057 (shortopts): Update.
8059 2001-11-27 Akim Demaille <akim@epita.fr>
8061 * src/system.h: Use intl/libgettext.h.
8062 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
8064 2001-11-27 Akim Demaille <akim@epita.fr>
8066 * tests/torture.at (Exploding the Stack Size with Malloc):
8067 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
8069 2001-11-27 Akim Demaille <akim@epita.fr>
8071 * src/files.c: Include error.h.
8072 Reported by Hans Aberg.
8074 2001-11-26 Marc Autret <autret_m@epita.fr>
8076 * src/reader.c (parse_include_decl): New, not yet implemented.
8077 (read_declarations): Add case tok_include.
8078 * src/getargs.h (include): Add its extern definition.
8079 * src/getargs.c (include): New const char *.
8080 (getargs): Add case '-I'.
8081 * src/options.c (option_table): Add include as command line and
8083 * src/lex.h (token_t): Add tok_include.
8085 2001-11-26 Akim Demaille <akim@epita.fr>
8087 * src/reader.c (readgram): Make sure rules for mid-rule actions
8088 have a lineno equal to that of their host rule.
8089 Reported by Hans Aberg.
8090 * tests/regression.at (Rule Line Numbers): New.
8092 2001-11-26 Akim Demaille <akim@epita.fr>
8094 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
8097 2001-11-26 Akim Demaille <akim@epita.fr>
8099 * src/complain.c, src/complain.h (error): Remove, provided by
8102 2001-11-26 Akim Demaille <akim@epita.fr>
8104 * src/reader.c (read_declarations): Don't abort on tok_illegal,
8105 issue an error message.
8106 * tests/regression.at (Invalid %directive): New.
8107 Reported by Hans Aberg.
8109 2001-11-26 Akim Demaille <akim@epita.fr>
8111 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
8112 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
8114 2001-11-26 Akim Demaille <akim@epita.fr>
8116 * src/conflicts.c (conflicts_print): Don't complain at all when
8117 there are no reduce/reduce conflicts, and as many shift/reduce
8118 conflicts as expected.
8119 * tests/regression.at (%expect right): Adjust.
8121 2001-11-23 Akim Demaille <akim@epita.fr>
8123 * lib/alloca.c: Update, from fileutils.
8125 2001-11-23 Akim Demaille <akim@epita.fr>
8127 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
8129 2001-11-23 Akim Demaille <akim@epita.fr>
8131 * src/system.h: Include alloca.h.
8132 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
8134 2001-11-23 Akim Demaille <akim@epita.fr>
8136 * src/print_graph.c (print_actions): Remove `rule', unused.
8137 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
8138 pacify GCC's signed < unsigned warnings.
8139 * src/closure.c (itemsetsize): Likewise.
8140 * src/reader.c (symbol_list_new): Static.
8142 2001-11-23 Akim Demaille <akim@epita.fr>
8144 Attaching lineno to buckets is stupid, since only one copy of each
8145 symbol is kept, only the line of the first occurrence is kept too.
8147 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
8148 * src/reader.c (rline_allocated): Remove, unused.
8149 (symbol_list): Have a `line' member.
8150 (symbol_list_new): New.
8152 * src/print.c (print_grammar): Output the rule line numbers.
8153 * tests/regression.at (Solved SR Conflicts)
8154 (Unresolved SR Conflicts): Adjust.
8155 Reported by Hans Aberg.
8157 2001-11-22 Marc Autret <autret_m@epita.fr>
8159 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
8161 2001-11-22 Marc Autret <autret_m@epita.fr>
8163 * src/muscle_tab.c (muscle_init): Remove initialization of
8165 * src/output.c (output_master_parser): Do it here.
8167 2001-11-20 Akim Demaille <akim@epita.fr>
8170 * configure.in (ALL_LINGUAS): Adjust.
8171 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
8172 longer contains strings to translate.
8174 2001-11-19 Akim Demaille <akim@epita.fr>
8176 * src/conflicts.c (conflicts_print): Add a missing \n.
8178 2001-11-19 Akim Demaille <akim@epita.fr>
8180 * src/nullable.c (nullable_print): New.
8181 (set_nullable): Call it when tracing.
8182 Better locality of variables.
8184 2001-11-19 Akim Demaille <akim@epita.fr>
8186 * src/print.c (print_actions): Better locality of variables.
8188 2001-11-19 Akim Demaille <akim@epita.fr>
8190 * src/derives.c (print_derives): Fix and enrich.
8191 * src/closure.c (print_fderives): Likewise.
8193 2001-11-19 Akim Demaille <akim@epita.fr>
8195 * src/closure.c (itemsetend): Remove, replaced with...
8198 2001-11-19 Akim Demaille <akim@epita.fr>
8200 * src/LR0.c (kernel_end): Remove, replaced with...
8203 2001-11-19 Akim Demaille <akim@epita.fr>
8205 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
8208 2001-11-19 Akim Demaille <akim@epita.fr>
8210 * src/closure.c (closure): Use arrays instead of pointers to clarify.
8212 2001-11-19 Akim Demaille <akim@epita.fr>
8214 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
8216 * src/LR0.c: Likewise.
8217 (allocate_itemsets): Use arrays instead of pointers to clarify.
8219 2001-11-19 Akim Demaille <akim@epita.fr>
8221 * src/getargs.c (statistics_flag): Replace with...
8223 (longopts): Accept --trace instead of --statistics.
8224 * src/getargs.h, src/options.c: Adjust.
8225 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
8226 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
8228 2001-11-19 Akim Demaille <akim@epita.fr>
8230 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
8231 pointers to clarify the code.
8232 (save_reductions, save_shifts): Factor common parts of alternatives.
8234 2001-11-19 Akim Demaille <akim@epita.fr>
8236 * src/LR0.c (new_state, get_state): Complete TRACE code.
8237 * src/closure.c: Include `reader.h' to get `tags', needed by the
8239 Rename the conditional DEBUG as TRACE.
8240 Output consistently TRACEs to stderr, not stdout.
8241 * src/derives.c: Likewise.
8242 * src/reduce.c: (inaccessable_symbols): Using if is better style
8244 Use `#if TRACE' instead of `#if 0' for tracing code.
8246 2001-11-19 Akim Demaille <akim@epita.fr>
8248 * src/system.h (LIST_FREE, shortcpy): New.
8249 * src/LR0.c: Use them.
8250 * src/output.c (free_itemsets, free_reductions, free_shifts):
8251 Remove, replaced by LIST_FREE.
8253 2001-11-19 Akim Demaille <akim@epita.fr>
8255 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
8256 (REDUCTIONS_ALLOC): New.
8257 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
8260 2001-11-19 Akim Demaille <akim@epita.fr>
8262 * src/LR0.c (new_state): Complete trace code.
8263 * src/nullable.c (set_nullable): Don't translate traces.
8265 2001-11-19 Akim Demaille <akim@epita.fr>
8267 * src/print_graph.c (print_core): Better locality of variables.
8268 * src/print.c (print_core): Likewise.
8270 2001-11-19 Akim Demaille <akim@epita.fr>
8272 * src/vcg.c: You do the output, so you are responsible of the
8273 handling of VCG syntax, in particular: use quotearg.
8274 * src/print_graph.c: Don't.
8275 (print_actions): Don't output the actions as part of the nodes,
8276 since that's the job of the edges.
8277 (print_state): Don't output by hand: fill the node description,
8278 and ask for its output.
8280 2001-11-19 Akim Demaille <akim@epita.fr>
8282 * src/bison.simple (yyparse): When verbosely reporting an error,
8283 no longer put additional quotes around token names.
8284 * tests/calc.at: Adjust.
8286 2001-11-19 Akim Demaille <akim@epita.fr>
8288 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
8289 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
8290 * src/output.c: Adjust.
8292 2001-11-19 Akim Demaille <akim@epita.fr>
8294 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
8296 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
8298 2001-11-19 Akim Demaille <akim@epita.fr>
8300 * src/gram.h (rule_t): New.
8302 (rrhs, rlhs): Remove, part of state_t.
8303 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
8304 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
8305 * src/reader.c, src/reduce.c: Adjust.
8307 2001-11-19 Akim Demaille <akim@epita.fr>
8309 * src/reader.c (symbols_output): New, extracted from...
8310 (packsymbols): Here.
8313 2001-11-19 Akim Demaille <akim@epita.fr>
8315 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
8316 (maxrhs): this new function.
8318 2001-11-19 Akim Demaille <akim@epita.fr>
8320 * src/lalr.c (F): New macro to access the variable F.
8323 2001-11-19 Akim Demaille <akim@epita.fr>
8325 * src/lalr.h (LA): New macro to access the variable LA.
8326 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
8327 * src/lalr.c: Adjust.
8329 2001-11-19 Akim Demaille <akim@epita.fr>
8331 * src/lalr.c (initialize_LA): Only initialize LA. Let...
8332 (set_state_table): handle the `lookaheads' members.
8334 2001-11-19 Akim Demaille <akim@epita.fr>
8336 * src/lalr.h (lookaheads): Removed array, whose contents is now
8338 (state_t): this structure.
8339 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
8342 2001-11-19 Akim Demaille <akim@epita.fr>
8344 * src/lalr.h (consistent): Removed array, whose contents is now
8346 (state_t): this structure.
8347 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
8350 2001-11-19 Akim Demaille <akim@epita.fr>
8352 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
8353 contents are now members of...
8354 (state_t): this structure.
8355 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
8358 2001-11-19 Akim Demaille <akim@epita.fr>
8360 * src/lalr.h (state_t): New.
8361 (state_table): Be a state_t * instead of a core **.
8362 (accessing_symbol): Remove, part of state_t.
8363 * src/lalr.c: Adjust.
8364 (set_accessing_symbol): Merge into...
8365 (set_state_table): this.
8366 * src/print_graph.c, src/conflicts.c: Adjust.
8368 2001-11-14 Akim Demaille <akim@epita.fr>
8370 * tests/calc.at, tests/output.at, tests/regression.at,
8371 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
8372 now the tests are run in private dirs, therefore AC_CLEANUP and
8373 family can be simplified to 0-ary.
8374 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
8375 use abs. path to find config.h.
8376 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
8377 stderr, there can be way too much random noise.
8378 Instead pass -Werror to GCC and rely on the exit status.
8379 Reported by Wolfram Wagner.
8381 2001-11-14 Akim Demaille <akim@epita.fr>
8383 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
8384 defined only if yyoverflow is defined, to avoid `warning: unused
8386 Reported by The Test Suite.
8388 2001-11-14 Akim Demaille <akim@epita.fr>
8390 * src/print.c: Include reduce.h.
8391 Reported by Hans Aberg.
8393 2001-11-14 Akim Demaille <akim@epita.fr>
8395 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
8396 Revert a previous patch: these are really const.
8397 * src/conflicts.c (conflict_report): Additional useless pair of
8398 braces to pacify GCC's warnings for `if () if () {} else {}'.
8399 * src/lex.c (parse_percent_token): Replace equal_offset with
8402 Be sure to strdup `arg' when used, since there is no reason for
8403 token_buffer not to change.
8405 2001-11-14 Akim Demaille <akim@epita.fr>
8407 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
8409 * src/main.c (main): Use them.
8410 Suggested by Hans Aberg.
8412 2001-11-12 Akim Demaille <akim@epita.fr>
8414 * src/system.h (ngettext): Now that we use ngettext, be sure to
8415 provide a default definition when NLS are not used.
8417 2001-11-12 Akim Demaille <akim@epita.fr>
8419 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
8420 Use @kbd to denote user input.
8421 (Language and Grammar): ANSIfy the example.
8422 Adjust its layout for info/notinfo.
8423 (Location Tracking Calc): Output error messages to stderr.
8424 Output locations in a more GNUtically correct way.
8425 Fix a couple of Englishos.
8426 Adjust @group/@end group pairs.
8428 2001-11-12 Akim Demaille <akim@epita.fr>
8430 %expect was not functioning at all.
8432 * src/conflicts.c (expected_conflicts): Set to -1.
8433 (conflict_report): Use ngettext.
8434 (conflicts_print): Check %expect and make its violation an error.
8435 * doc/bison.texinfo (Expect Decl): Adjust.
8436 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
8437 * tests/regression.at (%expect not enough, %expect right)
8438 (%expect too much): New.
8440 2001-11-12 Akim Demaille <akim@epita.fr>
8442 * tests/regression.at (Conflicts): Rename as...
8443 (Unresolved SR Conflicts): this.
8444 (Solved SR Conflicts): New.
8446 2001-11-12 Akim Demaille <akim@epita.fr>
8448 * src/reduce.c (print_results): Rename as...
8449 (reduce_output): This.
8450 Output to OUT, passed as argument, instead of output_obstack.
8451 (dump_grammar): Likewise.
8454 (reduce_grammar): No longer call reduce_output, since...
8455 * src/print.c (print_results): do it.
8456 * src/main.c (main): Call reduce_free;
8458 2001-11-12 Akim Demaille <akim@epita.fr>
8460 * src/conflicts.c (print_reductions): Accept OUT as argument.
8461 Output to it, not to output_obstack.
8462 * src/print.c (print_actions): Adjust.
8464 2001-11-12 Akim Demaille <akim@epita.fr>
8466 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
8467 the result instead of using...
8468 (src_total, rrc_total, src_count, rrc_count): Remove.
8469 (any_conflicts): Remove.
8470 (print_conflicts): Split into...
8471 (conflicts_print, conflicts_output): New.
8472 * src/conflicts.h: Adjust.
8473 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
8474 * src/print.c (print_grammar): Issue `\n' between two rules.
8475 * tests/regression.at (Conflicts): New.
8476 Reported by Tom Lane.
8478 2001-11-12 Akim Demaille <akim@epita.fr>
8480 * tests/regression.at (Invalid input): Remove, duplicate with
8481 ``Invalid input: 1''.
8483 2001-11-12 Akim Demaille <akim@epita.fr>
8485 * tests/torture.at (AT_DATA_STACK_TORTURE)
8486 (Exploding the Stack Size with Alloca)
8487 (Exploding the Stack Size with Malloc): New.
8489 2001-11-12 Akim Demaille <akim@epita.fr>
8491 * src/bison.simple (YYSTACK_REALLOC): New.
8492 (yyparse) [!yyoverflow]: Use it and free the old stack.
8493 Reported by Per Allansson.
8495 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
8497 * src/bison.simple: Define type yystype instead of YYSTYPE, and
8498 define CPP macro, which substitute YYSTYPE by yystype.
8499 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
8500 with yyltype/YYLTYPE. This allows inclusion of the generated
8501 header within the parser if the compiler, such as GGC, accepts
8502 multiple equivalent #defines.
8505 2001-11-05 Akim Demaille <akim@epita.fr>
8507 * src/reader.c (symbols_output): New, extracted from...
8508 (packsymbols): here.
8511 2001-11-05 Akim Demaille <akim@epita.fr>
8513 * src/lex.c (parse_percent_token): s/quotearg/quote/.
8515 2001-11-05 Akim Demaille <akim@epita.fr>
8517 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
8520 2001-11-05 Akim Demaille <akim@epita.fr>
8522 * src/options.h (struct option_table_struct): set_flags is void*.
8523 * src/options.c (longopts): Support `--output' and `%output'.
8525 * src/lex.h (tok_setopt): Remove, replaced with...
8526 (tok_intopt, tok_stropt): these new guys.
8527 * src/lex.c (getopt.h): Not needed.
8528 (token_buffer, unlexed_token_buffer): Not const.
8529 (percent_table): Promote `-' over `_' in directive names.
8530 Active `%name-prefix', `file-prefix', and `output'.
8531 (parse_percent_token): Accept possible arguments to directives.
8532 Promote `-' over `_' in directive names.
8534 2001-11-04 Akim Demaille <akim@epita.fr>
8536 * doc/bison.texinfo (Decl Summary): Split the list into
8537 `directives for grammars' and `directives for bison'.
8539 Add description of `%name-prefix', `file-prefix', and `output'.
8540 Promote `-' over `_' in directive names.
8541 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
8542 Simplify the description of `--name-prefix'.
8543 Promote `-' over `_' in directive names.
8544 Promote `--output' over `--output-file'.
8545 Fix the description of `--defines'.
8546 * tests/output.at: Exercise %file-prefix and %output.
8548 2001-11-02 Akim Demaille <akim@epita.fr>
8550 * doc/refcard.tex: Update.
8552 2001-11-02 Akim Demaille <akim@epita.fr>
8554 * src/symtab.h (SUNDEF): New.
8555 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
8556 stand for `uninitialized', instead of 0.
8557 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
8558 * src/lex.c (lex): Adjust.
8560 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
8562 Let yylex return it instead of a plain 0.
8563 Reported by Dick Streefland.
8565 2001-11-02 Akim Demaille <akim@epita.fr>
8567 * tests/regression.at (Mixing %token styles): New test.
8569 2001-11-02 Akim Demaille <akim@epita.fr>
8571 * src/reader.c (parse_thong_decl): Formatting changes.
8572 (token_translations_init): New, extracted from...
8573 (packsymbols): Here.
8576 2001-11-01 Akim Demaille <akim@epita.fr>
8578 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
8579 Check that `9foo.y' produces correct cpp guards.
8580 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
8584 2001-11-01 Akim Demaille <akim@epita.fr>
8586 * tests/regression.at (Invalid input: 2): New.
8587 * src/lex.c (unlexed_token_buffer): New.
8588 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
8592 2001-11-01 Akim Demaille <akim@epita.fr>
8594 * tests/calc.at: Catch up with 1.30.
8595 * configure.in: Bump to 1.49a.
8596 Adjust to newer Autotest.
8598 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
8600 * src/conflicts.c: Move global variables rrc_total and src_total ...
8601 (print_conflicts): here.
8602 * src/output.c (output): Free global variable user_toknums.
8603 * src/lex.c (token_obstack): Become static.
8605 2001-10-18 Akim Demaille <akim@epita.fr>
8607 * tests/atlocal.in (GCC): Add.
8608 * tests/calc.at: s/m4_match/m4_bmatch/.
8609 s/m4_patsubst/m4_bpatsubst/.
8610 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
8611 * configure.in: AC_SUBST(GCC).
8613 2001-10-14 Marc Autret <autret_m@epita.fr>
8615 * src/options.c (create_long_option_table): Fix.
8617 2001-10-10 Akim Demaille <akim@epita.fr>
8619 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
8621 2001-10-04 Akim Demaille <akim@epita.fr>
8623 * src/reader.c (parse_union_decl): Push the caracters in
8624 union_obstack, not attrs_obstack.
8626 2001-10-04 Akim Demaille <akim@epita.fr>
8628 Merge in the branch 1.29.
8630 * src/reader.c (packsymbols): Use a temporary obstack for
8631 `%%tokendef', since output_stack is already used elsewhere.
8633 2001-10-02 Akim Demaille <akim@epita.fr>
8637 2001-10-02 Akim Demaille <akim@epita.fr>
8641 2001-10-02 Akim Demaille <akim@epita.fr>
8643 * tests/regression.at (Invalid CPP headers): New.
8644 From Alexander Belopolsky.
8645 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
8647 2001-10-02 Akim Demaille <akim@epita.fr>
8649 * tests/regression.at (Invalid input): New.
8650 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
8653 2001-10-02 Akim Demaille <akim@epita.fr>
8655 * tests/calc.at: Now that --debug works, the tests must be adjusted.
8657 2001-10-02 Akim Demaille <akim@epita.fr>
8659 * src/output.c (output_parser): Assert `skeleton'.
8660 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
8664 2001-10-01 Marc Autret <autret_m@epita.fr>
8666 * src/lex.h: Echo modifications.
8667 * src/lex.c (unlex): Parameter is now token_t.
8670 2001-10-01 Marc Autret <autret_m@epita.fr>
8672 * src/main.c: Include lex.h.
8675 2001-09-29 Akim Demaille <akim@epita.fr>
8677 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
8679 2001-09-28 Akim Demaille <akim@epita.fr>
8681 * tests/testsuite.at: Update to newer Autotest.
8682 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
8684 2001-09-27 Akim Demaille <akim@epita.fr>
8686 Position independent wrapper.
8688 * tests/bison: Remove.
8689 * tests/bison.in: New.
8690 * configure.in: Adjust.
8692 2001-09-27 Paul Eggert <eggert@twinsun.com>
8694 Port quotearg fixes from tar 1.13.24.
8696 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
8698 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
8699 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
8701 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
8702 * m4/mbrtowc.m4: New file.
8703 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
8704 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
8706 2001-09-27 Akim Demaille <akim@epita.fr>
8710 2001-09-27 Akim Demaille <akim@epita.fr>
8714 2001-09-25 Akim Demaille <akim@epita.fr>
8716 * src/system.h: Include `xalloc.h'.
8717 Remove it from the C files.
8718 * src/files.c (output_files): Free the obstacks.
8719 * src/lex.c (init_lex): Rename as...
8722 * src/main.c (main): Use it.
8724 2001-09-24 Marc Autret <autret_m@epita.fr>
8726 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
8727 to output informations in fout (FILE*).
8728 (open_graph, close_graph): Likewise.
8729 (output_graph, output_edge, output_node): Likewise.
8730 * src/vcg.h: Update function prototypes.
8731 * src/print_graph.c (print_graph): Open output graph file.
8732 (print_actions): Adjust.
8733 * src/files.h: Remove extern declaration.
8734 * src/files.c: Remove graph_obstack declaration.
8735 (open_files): Remove graph_obstack initialization.
8736 (output_files): Remove graph_obstack saving.
8738 2001-09-24 Marc Autret <autret_m@epita.fr>
8740 * src/files.c (compute_output_file_names): Fix.
8742 2001-09-24 Marc Autret <autret_m@epita.fr>,
8743 Akim Demaille <akim@epita.fr>
8745 * src/reader.c (reader): Remove call to free_symtab ().
8746 * src/main.c (main): Call it here.
8748 * src/conflicts.c (initialize_conflicts): Rename as...
8749 (solve_conflicts): this.
8750 * src/print.c (print_core, print_actions, print_state)
8751 (print_grammar): Dump to a file instead a `output_obstack'.
8752 (print_results): Dump `output_obstack', and then proceed with the
8754 * src/files.c (compute_output_file_names, close_files): New.
8755 (output_files): Adjust.
8756 * src/main.c (main): Adjust.
8758 2001-09-23 Marc Autret <autret_m@epita.fr>
8760 * src/files.c (compute_header_macro): Computes header macro name
8761 from spec_defines_file when given.
8763 2001-09-23 Marc Autret <autret_m@epita.fr>
8765 * src/files.c (output_files): Add default extensions.
8767 2001-09-22 Akim Demaille <akim@epita.fr>
8769 * src/conflicts.c (finalize_conflicts): Rename as...
8770 (free_conflicts): this.
8772 2001-09-22 Akim Demaille <akim@epita.fr>
8774 * src/gram.c (gram_free): Rename back as...
8776 (output_token_translations): Free `token_translations'.
8777 * src/symtab.c (free_symtab): Free the tag field.
8779 2001-09-22 Akim Demaille <akim@epita.fr>
8781 Remove `translations' as it is always set to true.
8783 * src/gram.h: Adjust.
8784 * src/reader.c (packsymbols, parse_token_decl): Adjust
8785 * src/print.c (print_grammar): Adjust.
8786 * src/output.c (output_token_translations): Adjust.
8787 * src/lex.c (lex): Adjust.
8788 * src/gram.c: Be sure the set pointers to NULL.
8789 (dummy): Rename as...
8792 2001-09-22 Akim Demaille <akim@epita.fr>
8794 * configure.in: Invoke AM_LIB_DMALLOC.
8795 * src/system.h: Use dmalloc.
8796 * src/LR0.c: Be sure to have pointers initialized to NULL.
8797 (allocate_itemsets): Allocate kernel_items only if needed.
8799 2001-09-22 Akim Demaille <akim@epita.fr>
8801 * configure.in: Bump to 1.29b.
8802 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
8803 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
8804 need xmalloc.c in calc.y.
8807 2001-09-21 Akim Demaille <akim@epita.fr>
8810 * Makefile.maint, config/config.guess, config/config.sub,
8811 * config/missing: Update from masters.
8812 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
8814 * configure.in (ALL_LINGUAS): Add `tr'.
8816 2001-09-21 Akim Demaille <akim@epita.fr>
8818 * tests/Makefile.am (package.m4): Move to...
8819 ($(srcdir)/$(TESTSUITE)): here.
8821 2001-09-20 Akim Demaille <akim@epita.fr>
8823 * src/complain.c: No longer try to be standalone: use system.h.
8824 Don't assume __STDC__ is defined to 1. Just test if it is defined.
8825 * src/complain.h: Likewise.
8826 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
8827 Remove the unused variable `n'.
8828 From Albert Chin-A-Young.
8830 2001-09-18 Marc Autret <autret_m@epita.fr>
8832 * doc/bison.1: Update.
8833 * doc/bison.texinfo (Bison Options): Update --defines and --graph
8835 (Option Cross Key): Update.
8838 2001-09-18 Marc Autret <autret_m@epita.fr>
8840 * tests/regression.at: New test (comment in %union).
8842 2001-09-18 Marc Autret <autret_m@epita.fr>
8844 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
8846 Reported by Keith Browne.
8848 2001-09-18 Marc Autret <autret_m@epita.fr>
8850 * tests/output.at: Add tests for --defines and --graph.
8852 2001-09-18 Marc Autret <autret_m@epita.fr>
8854 * tests/output.at: Removes tests of %{header,src}_extension features.
8856 2001-09-18 Akim Demaille <akim@epita.fr>
8858 * tests/Makefile.am (package.m4): New.
8859 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
8860 (_AT_CHECK_CALC_ERROR): Likewise.
8861 Factor the `, ' part of verbose error messages.
8863 2001-09-18 Marc Autret <autret_m@epita.fr>
8865 * src/getargs.c (longopts): Declare --defines and --graph as options
8866 with optional arguments.
8867 * src/files.h: Add extern declarations.
8868 * src/files.c (spec_graph_file, spec_defines_file): New.
8869 (output_files): Update.
8870 Remove CPP-outed code.
8872 2001-09-18 Marc Autret <autret_m@epita.fr>
8874 Turn off %{source,header}_extension feature.
8876 * src/files.c (compute_exts_from_gf): Update.
8877 (compute_exts_from_src): Update.
8878 (output_files): CPP-out useless code.
8879 * src/files.h: Remove {header,source}_extension extern declarations.
8880 * src/reader.c (parse_dquoted_param): CPP-out.
8881 (parse_header_extension_decl): Remove.
8882 (parse_source_extension_decl): Remove.
8883 (read_declarations): Remove cases tok_{hdrext,srcext}.
8884 * src/lex.c (percent_table): Remove {header,source}_extension entries.
8885 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
8887 2001-09-10 Akim Demaille <akim@epita.fr>
8889 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
8890 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
8891 (AT_CHECK_OUTPUT): this.
8892 Merely check ls' exit status, its output is useless.
8894 2001-09-10 Akim Demaille <akim@epita.fr>
8896 * tests/calc.at: Use m4_match.
8897 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
8899 2001-09-10 Marc Autret <autret_m@epita.fr>,
8900 Akim Demaille <akim@epita.fr>
8902 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
8904 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
8906 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
8907 * src/lex.h: Adjust prototype.
8908 (token_t): Add `tok_undef'.
8909 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
8910 (parse_percent_token): Now returns token_t.
8911 Add default statement in switch.
8912 (lex): Separate `c' as an input variable, from the token_t result
8914 (unlexed): Is a token_t.
8916 2001-09-10 Akim Demaille <akim@epita.fr>
8918 * configure.in: Bump to 1.29a.
8920 2001-09-07 Akim Demaille <akim@epita.fr>
8924 2001-08-30 Akim Demaille <akim@epita.fr>
8926 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
8927 * m4/atconfig.m4: Remove.
8928 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
8930 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
8931 m4_if, m4_patsubst, and m4_regexp.
8932 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
8933 `input' file instead of echo.
8935 2001-08-29 Akim Demaille <akim@epita.fr>
8939 2001-08-29 Akim Demaille <akim@epita.fr>
8943 2001-08-29 Paul Eggert <eggert@twinsun.com>
8945 * src/bison.simple (yyparse): Don't take the address of an
8946 item before the start of an array, as that doesn't conform to
8949 2001-08-29 Robert Anisko <anisko_r@epita.fr>
8951 * doc/bison.texinfo (Location Tracking Calc): New node.
8953 2001-08-29 Paul Eggert <eggert@twinsun.com>
8955 * src/output.c (output): Do not define const, as this now
8956 causes more problems than it cures.
8958 2001-08-29 Akim Demaille <akim@epita.fr>
8960 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
8962 Be sure to tag the `detailmenu'.
8964 2001-08-29 Akim Demaille <akim@epita.fr>
8966 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
8967 download in a tmp dir.
8969 2001-08-28 Marc Autret <autret_m@epita.fr>
8971 * config/depcomp: New file.
8973 2001-08-28 Marc Autret <autret_m@epita.fr>
8975 * doc/bison.1 (mandoc): Adjust.
8976 From Juan Manuel Guerrero.
8978 2001-08-28 Marc Autret <autret_m@epita.fr>
8980 * src/print_graph.c (print_state): Fix.
8982 2001-08-27 Marc Autret <autret_m@epita.fr>
8984 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
8986 Echo modifications to the functions prototypes.
8987 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
8989 2001-08-27 Marc Autret <autret_m@epita.fr>
8991 * src/vcg.c: Include `xalloc.h'.
8992 (add_colorentry): New.
8993 (add_classname): New.
8994 (add_infoname): New.
8995 * src/vcg.h: Add new prototypes.
8997 2001-08-27 Akim Demaille <akim@epita.fr>
8999 * Makefile.maint: Sync. again with CVS Autoconf.
9001 2001-08-27 Akim Demaille <akim@epita.fr>
9003 * Makefile.maint: Formatting changes.
9004 (po-update, cvs-update, update): New targets.
9007 2001-08-27 Akim Demaille <akim@epita.fr>
9009 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
9010 * Makefile.maint: Sync. with CVS Autoconf.
9012 2001-08-27 Marc Autret <autret_m@epita.fr>
9014 * src/vcg.h (struct infoname_s): New.
9015 (struct colorentry_s): New.
9016 (graph_s): New fields {vertical,horizontal}_order in structure.
9017 Add `infoname' field.
9018 Add `colorentry' field;
9019 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
9020 (G_HORIZONTAL_ORDER): New.
9022 (G_COLORENTRY): New.
9023 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
9024 Add output of `infoname'.
9025 Add output of `colorentry'.
9027 2001-08-27 Marc Autret <autret_m@epita.fr>
9029 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
9030 This one shadowed a global parameter.
9032 2001-08-24 Marc Autret <autret_m@epita.fr>
9034 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
9035 instead of `unsigned'.
9036 (print_state): Do not call obstack_object_size () in obstack_grow ()
9037 to avoid macro variables shadowing.
9039 2001-08-23 Marc Autret <autret_m@epita.fr>
9041 * src/lex.c (percent_table): Typo: s/naem/name/.
9043 Normalize new options declarations.
9045 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
9047 * tests/suite.at: Exercise %header_extension and %source_extension.
9049 2001-08-16 Marc Autret <autret_m@epita.fr>
9051 * src/reader.c (parse_dquoted_param): New.
9052 (parse_header_extension_decl): Use it.
9053 (parse_source_extension_decl): Likewise.
9055 2001-08-16 Marc Autret <autret_m@epita.fr>
9057 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
9058 (get_xxxx_str): Use assert () instead of complain ().
9059 Remove return invokations in default cases.
9060 (get_decision_str): Modify default behaviour. Remove second argument.
9061 Echo modifications on calls.
9062 (output_graph): Fix.
9064 2001-08-16 Marc Autret <autret_m@epita.fr>
9066 * src/getargs.c (usage): Update with ``-g, --graph''.
9068 2001-08-16 Marc Autret <autret_m@epita.fr>
9070 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
9071 (Option Cross Key): Likewise.
9072 * doc/bison.1: Update.
9074 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
9076 * src/output.c (output_master_parser): Don't finish action_obstack.
9077 (output_parser): Don't care about the muscle action, here.
9078 (prepare): Copy the action_obstack in the action muscle.
9079 (output): Free action_obstack.
9081 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
9083 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
9084 will contain `%union' declaration.
9085 (parse_union_decl): Delete #line directive output.
9086 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
9087 informations about %union.
9088 (parse_union_decl): Copy the union_obstack in the muscle stype.
9089 * src/bison.simple: Add new #line directive.
9090 Add typdef %%stype YYSTYPE.
9092 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
9094 * src/bison.simple: Add new `#line' directive.
9096 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
9098 * src/bison.simple: New `#line' directive.
9099 * src/output.c (output_parser): Support new dynamic muscle input_line.
9101 2001-09-22 Marc Autret <autret_m@epita.fr>
9103 * src/output.c (output_master_parser): New.
9104 (output_parser): Be more re-entrant.
9106 2001-09-21 Marc Autret <autret_m@epita.fr>
9108 * src/reader.c (copy_definition, parse_union_decl): Update and use
9110 (copy_action): Likewise.
9111 Use obstack_1grow ().
9112 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
9114 2001-09-21 Marc Autret <autret_m@epita.fr>
9116 * src/options.c (option_table): Adjust.
9117 * src/lex.c (parse_percent_token): Fix.
9119 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
9121 * src/options.c (symtab.h): Include it, need by lex.h.
9123 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
9125 * src/lex.c (parse_percent_token): Change type of variable `tx', which
9126 is now an option_table_struct*.
9127 (option_strcmp): New function option_strcmp.
9128 (parse_percent_token): Call option_strcmp.
9129 * src/getargs.c (xalloc.h, options.h): Include it.
9130 (getargs): Call create_long_option_table.
9131 (getargs): Free longopts at the end of the function.
9132 (shortopts): Move in options.c.
9133 * src/options.c (create_long_option_table): New function. Convert
9134 information from option_table to option structure.
9135 * src/reader.c (options.h): Include it.
9137 * src/Makefile.am: Adjust.
9138 * src/options.c (option_table): Create from longopts and percent_table.
9139 * src/getargs.c (longopts): Delete.
9140 * src/lex.c (struct percent_table_struct): Delete.
9141 (percent_table): Delete.
9142 (options.h): Include it.
9143 * src/options.c: Create.
9144 * src/options.h: Create.
9145 Declare enum opt_access_e.
9146 Define struct option_table_struct.
9148 2001-09-20 Marc Autret <autret_m@epita.fr>
9150 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
9153 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
9155 * src/bison.simple: s/%%filename/%%skeleton.
9156 * src/muscle_tab.c (getargs.h): Include it.
9157 (muscle_init): Insert new muscle skeleton.
9159 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
9161 * src/output.c (output_parser): Delete unused variable actions_dumped.
9163 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
9165 * src/output.c (output): Delete call to reader_output_yylsp.
9166 * src/reader.c (reader): Likewise.
9167 * src/reader.h: Delete declaration of reader_output_yylsp.
9169 2001-09-02 Marc Autret <autret_m@epita.fr>
9171 * src/reader.c: Include muscle_tab.h.
9172 (parse_union_decl): Update.
9173 (parse_macro_decl): Rename parse_muscle_decl.
9174 Update to use renamed functions and variable.
9175 (read_declarations, copy_action, read_additionnal_code, : Updated
9176 with correct variables and functions names.
9177 (packsymbols, reader): Likewise.
9179 * src/reader.h (muscle_obstack): Extern declaration update.
9181 * src/output.c: Include muscle_tab.h
9182 In all functions using macro_insert, change by using muscle_insert ().
9183 (macro_obstack): Rename muscle_obstack.
9184 Echo modifications in the whole file.
9185 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
9186 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
9187 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
9189 * src/muscle_tab.h: Update double inclusion macros.
9190 (macro_entry_s): Rename muscle_entry_s.
9193 * src/muscle_tab.c: Include muscle_tab.h.
9194 Rename macro_tabble to muscle_table.
9195 (mhash1, mhash2, mcmp): Use muscle_entry.
9196 (macro_init): Rename muscle_init. Update.
9197 (macro_insert): Rename muscle_insert. Update.
9198 (macro_find): Rename muscle_find. Update.
9200 * src/main.c: Include muscle_tab.h.
9201 (main): Call muscle_init ().
9202 * src/Makefile.am (bison_SOURCES): Echo modifications.
9204 2001-09-02 Marc Autret <autret_m@epita.fr>
9206 Now the files macro_tab.[ch] are named muscle_tab.[ch].
9208 * src/muscle_tab.c, src/muscle_tab.h: Add files.
9210 2001-09-02 Marc Autret <autret_m@epita.fr>
9212 * src/macrotab.c, src/macrotab.h: Remove.
9214 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
9216 * src/reader.c (copy_guard): Use muscle to specify the `#line'
9219 2001-09-01 Marc Autret <autret_m@epita.fr>
9221 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
9222 to an explicit value to activate the feature. We do it here.
9224 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
9226 * src/output.c (prepare): Delete the `filename' muscule insertion.
9227 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
9228 (parse_union_decl): Likewise.
9229 * src/macrotab.c (macro_init): Initialize filename by infile.
9231 2001-08-31 Marc Autret <autret_m@epita.fr>
9233 * src/bison.simple (YYLSP_NEEDED): New definition.
9234 * src/output.c (prepare): Add macro insertion of `locations_flag'
9236 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
9238 * src/output.c (prepare): Delete insertion of previous muscles,
9239 and insert the `prefix' muscles.
9240 * src/macrotab.c (macro_init): Likewise.
9241 (macro_init): Initialization prefix directive by `yy'.
9242 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
9243 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
9244 yylval, yydebug, yyerror, yynerrs and yyparse.
9245 New directive `#define' to substitute yydebug, ... with option
9248 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
9250 * src/main.c (main): Standardize.
9251 * src/output.c (output_table_data, output_parser): Likewise.
9252 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
9254 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
9256 * src/reader.c (read_additionnal_code): Rename %%user_code to
9258 * src/output.c (output): Rename %%declarations to %%prologue.
9259 * src/bison.simple: Echo modifications.
9261 2001-08-31 Marc Autret <autret_m@epita.fr>
9263 * src/reader.c (readgram): CleanUp.
9264 (output_token_defines): Likewise.
9265 (packsymbols): Likewise.
9267 * src/output.c (output): CPP-out useless code.
9269 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
9271 * src/reader.c (reader): Delete obsolete call to function
9272 output_trailers and output_headers.
9273 * src/output.h: Remove obsolete functions prototypes of output_headers
9274 and output_trailers.
9276 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
9278 * src/main.c: Include macrotab.h.
9279 * src/macrotab.h (macro_entry_s): Constify fields.
9280 Adjust functions prototypes.
9281 * src/macrotab.c (macro_insert): Constify key and value.
9282 (macro_find): Constify key.
9283 (macro_insert): Include 'xalloc.h'
9284 (macro_insert): Use XMALLOC.
9285 (macro_find): Constify return value.
9286 * src/output.c (output_table_data): Rename table to table_data.
9287 (output_parser): Constify macro_key, macro_value.
9289 2001-08-30 Marc Autret <autret_m@epita.fr>
9291 * src/reader.c (parse_skel_decl): New.
9292 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
9293 * src/lex.h (token_t): New token `tok_skel'.
9294 * src/lex.c (percent_table): Add skeleton option entry.
9297 2001-08-29 Marc Autret <autret_m@epita.fr>
9299 * src/bison.simple: Add %%user_code directive at the end.
9300 * src/reader.c (read_additionnal_code): New.
9302 * src/output.c (output_program): Remove.
9305 2001-08-28 Marc Autret <autret_m@epita.fr>
9307 * src/output.c (output_actions): Clean up.
9308 (output_gram): CPP-out useless code.
9309 * src/reader.c (reader): Clean up, CPP-out useless code.
9311 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
9313 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
9315 * src/bison.simple: Add `%%definitions'.
9317 2001-08-28 Marc Autret <autret_m@epita.fr>
9319 * config/depcomp: New file.
9321 2001-08-27 Paul Eggert <eggert@twinsun.com>
9323 * src/bison.simple (yyparse): Don't take the address of an
9324 item before the start of an array, as that doesn't conform to
9327 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
9329 * src/output.c (output): Remove the initialization of the macro
9330 obstack. It was done too late here.
9332 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
9334 (reader): Initialize the macro obstack here, since we need it to grow
9335 '%define' directives.
9337 * src/reader.h: Declare the macro obstack as extern.
9339 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
9341 * src/output.c (output_parser): Fix. Store single '%' characters in
9342 the output obstack instead of throwing them away.
9344 2001-08-27 Akim Demaille <akim@epita.fr>
9346 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
9348 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9350 * lib/Makefile.am: Adjust.
9352 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9354 * src/bison.simple: Update and add '%%' directives.
9356 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9358 * src/reader.c (reader): Remove calls to 'output_headers' and
9359 'output_trailers'. Remove some C output.
9360 (readgram): Disable a piece of code that was writing a default
9361 definition for 'YYSTYPE'.
9362 (reader_output_yylsp): Remove.
9363 (packsymbols): Output token defintions to a macro.
9364 (copy_definition): Disable C output.
9366 * src/reader.c (parse_macro_decl): New function used to parse macro
9368 (copy_string2): Put the body of copy_string into this new function.
9369 Add a parameter to let the caller choose whether he wants to copy the
9370 string delimiters or not.
9371 (copy_string): Be a simple call to copy_string2 with the last argument
9373 (read_declarations): Add case for macro definition.
9374 (copy_identifier): New.
9375 (parse_macro_decl): Read macro identifiers using copy_identifier
9378 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9380 * src/output.c (prepare): Add prefixed names.
9381 (output_parser): Output semantic actions.
9382 (output_parser): Fix bug on '%%line' directives.
9384 * src/output.c (output_headers): Remove. The C code printed by this
9385 function should now be in the skeletons.
9386 (output_trailers): Remove.
9387 (output): Disable call to 'reader_output_yylsp'.
9388 (output_rule_data): Do not output tables to the table obstack.
9390 * src/output.c: Remove some C dedicated output.
9391 Improve the use of macro and output obstacks.
9392 (output_defines): Remove.
9394 * src/output.c (output_token_translations): Associate 'translate'
9395 table with a macro. No output to the table obstack.
9396 (output_gram): Same for 'rhs' and 'prhs'.
9397 (output_stos): Same for 'stos'.
9398 (output_rule_data): Same for 'r1' and 'r2'.
9399 (token_actions): Same for 'defact'.
9400 (goto_actions): Same for 'defgoto'.
9401 (output_base): Same for 'pact' and 'pgoto'.
9402 (output_table): Same for 'table'.
9403 (output_check): Same for 'check'.
9405 * src/output.c (output_table_data): New function.
9406 (output_short_table): Remove.
9407 (output_short_or_char_table): Remove.
9409 * src/output.c (output_parser): Replace most of the skeleton copy code
9410 with something new. Skeletons are now processed character by character
9411 rather than line by line, and Bison looks for '%%' macros. This is the
9412 first step in making Bison's output process (a lot) more flexible.
9413 (output_parser): Use the macro table.
9415 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9417 * src/main.c (main): Initialize the macro table.
9419 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9421 * src/lex.c (percent_table): Add tok_define.
9422 * src/lex.h: Add tok_define.
9424 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9426 * src/macrotab.c: New file.
9427 * src/macrotab.h: New file.
9428 * src/Makefile.am: Update.
9430 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9432 * lib/hash.c: New file.
9433 * lib/hash.h: New file.
9434 * lib/Makefile.am: Update.
9436 2001-08-15 Akim Demaille <akim@epita.fr>
9440 2001-08-15 Marc Autret <autret_m@epita.fr>
9442 * src/reader.c (readgram): Indent output macro YYSTYPE.
9443 (packsymbols): Likewise.
9444 (output_token_defines): Likewise.
9445 * src/files.c: Standardize.
9446 (compute_header_macro): New.
9447 (defines_obstack_save): New. Use compute_header_macro.
9448 (output_files): Update. Use defines_obstack_save.
9450 2001-08-15 Akim Demaille <akim@epita.fr>
9452 * doc/bison.texinfo (Table of Symbols): Document
9455 2001-08-15 Akim Demaille <akim@epita.fr>
9457 * missing: Update from CVS Automake.
9458 * config/config.guess, config/config.sub, config/texinfo.tex:
9459 Update from gnu.org.
9461 2001-08-15 Akim Demaille <akim@epita.fr>
9463 * Makefile.maint: Sync with CVS Autoconf.
9465 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
9467 * doc/bison.texinfo: Include GNU Free Documentation License from
9469 * doc/fdl.texi: Add to package.
9471 2001-08-14 Marc Autret <autret_m@epita.fr>
9473 Turn on %{source,header}_extension features.
9475 * src/lex.c (percent_table): Un-CPP out header_extension and
9477 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
9478 (compute_exts_from_src): Remove conditions. It restores priorities
9481 2001-08-14 Marc Autret <autret_m@epita.fr>
9483 * src/files.c (compute_base_names): Add extensions computing when
9484 `--file-prefix' used.
9485 Standardize function calls.
9487 2001-08-13 Marc Autret <autret_m@epita.fr>
9489 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
9490 defining it (defined but null disables alloca).
9492 2001-08-13 Marc Autret <autret_m@epita.fr>
9494 * src/bison.simple (_yy_memcpy): CPP reformat.
9496 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
9498 * tests/atconfig.in (CPPFLAGS): Fix.
9500 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
9502 * doc/bison.texinfo: Include GNU General Public License from
9504 * doc/gpl.texi: Add to package.
9506 2001-08-10 Marc Autret <autret_m@epita.fr>
9508 * src/print_graph.h: Fix.
9509 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
9511 2001-08-10 Akim Demaille <akim@epita.fr>
9513 * src/system.h: Provide default declarations for stpcpy, strndup,
9516 2001-08-10 Robert Anisko <anisko_r@epita.fr>
9518 * doc/bison.texinfo (Locations): Update @$ stuff.
9520 2001-08-09 Robert Anisko <anisko_r@epita.fr>
9522 * src/bison.simple (YYLLOC_DEFAULT): Update.
9525 2001-08-08 Marc Autret <autret_m@epita.fr>
9527 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
9528 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
9529 Reported by Fabrice Bauzac.
9531 2001-08-08 Marc Autret <autret_m@epita.fr>
9533 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
9534 * src/vcg.c (output_node): Fix.
9535 * src/vcg.h: Cleanup.
9536 * src/print_graph.c: Add comments.
9537 (node_output_size): New global variable. Simplify the formatting of
9538 the VCG graph output.
9539 (print_actions): Unused code is now used. It notifies the final state
9540 and no action states in the VCG graph. It also give the reduce actions.
9541 The `shift and goto' edges are red and the `go to state' edges are
9543 Get the current node name and node_obstack by argument.
9544 (node_obstack): New variable.
9545 (print_state): Manage node_obstack.
9546 (print_core): Use node_obstack given by argument.
9547 A node is not only computed here but in print_actions also.
9548 (print_graph): CPP out useless code instead of commenting it.
9550 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
9552 * tests/atconfig.in (CPPFLAGS): Fix.
9554 2001-08-07 Akim Demaille <akim@epita.fr>
9556 * src/print_graph.c (quote): New.
9557 (print_core): Use it.
9559 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
9561 * src/vcg.c (complain.h): Include it.
9562 Unepitaize `return' invocations.
9563 [NDEBUG] (main): Remove.
9564 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
9565 * src/files.c (open_files): Initialize graph_obstack.
9566 * src/print_graph.c (print_actions): CPP out useless code.
9567 (print_core): Don't output the last `\n' in labels.
9569 * src/files.c (output_files): Output the VCG file.
9570 * src/main.c (main): Invoke print_graph ();
9572 2001-08-06 Marc Autret <autret_m@epita.fr>
9574 Automaton VCG graph output.
9575 Using option ``-g'' or long option ``--graph'', you can generate
9576 a gram_filename.vcg file containing a VCG description of the LALR (1)
9577 automaton of your grammar.
9579 * src/main.c: Call to print_graph() function.
9580 * src/getargs.h: Update.
9581 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
9582 (graph_flag): New flag.
9584 (getargs): Add case `g'.
9585 * src/files.c (graph_obstack): New obstack struct.
9586 (open_files): Initialize new obstack.
9587 (output_files): Saves graph_obstack if required.
9588 * src/files.h (graph_obstack): New extern declaration.
9589 * src/Makefile.am: Add new source files.
9591 2001-08-06 Marc Autret <autret_m@epita.fr>
9593 * src/print_graph.c, src/print_graph.h (graph): New.
9594 * src/vcg.h: New file.
9595 * src/vcg.c: New file, VCG graph handling.
9597 2001-08-06 Marc Autret <autret_m@epita.fr>
9599 Add of %source_extension and %header_extension which specify
9600 the source or/and the header output file extension.
9602 * src/files.c (compute_base_names): Remove initialisation of
9603 src_extension and header_extension.
9604 (compute_exts_from_gf): Update.
9605 (compute_exts_from_src): Update.
9606 (output_files): Update.
9607 * src/reader.c (parse_header_extension_decl): New.
9608 (parse_source_extension_decl): New.
9609 (read_declarations): New case statements for the new tokens.
9610 * src/lex.c (percent_table): Add entries for %source_extension
9611 and %header_extension.
9612 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
9614 2001-08-06 Marc Autret <autret_m@epita.fr>
9616 * configure.in: Bump to 1.28c.
9617 * doc/bison.texinfo: Texinfo thingies.
9619 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
9621 * tests/atconfig.in (CPPFLAGS): Add.
9622 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
9624 2001-08-03 Akim Demaille <akim@epita.fr>
9628 2001-08-03 Akim Demaille <akim@epita.fr>
9630 * tests/Makefile.am (check-local): Ship testsuite.
9631 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
9634 2001-08-03 Akim Demaille <akim@epita.fr>
9636 * configure.in: Try using -Wformat when compiling.
9638 2001-08-03 Akim Demaille <akim@epita.fr>
9640 * configure.in: Bump to 1.28b.
9642 2001-08-03 Akim Demaille <akim@epita.fr>
9644 * src/complain.c: Adjust strerror_r portability issues.
9646 2001-08-03 Akim Demaille <akim@epita.fr>
9650 2001-08-03 Akim Demaille <akim@epita.fr>
9652 * src/getargs.c, src/getarg.h (skeleton)): Constify.
9653 * src/lex.c (literalchar): Avoid name clashes on `buf'.
9654 * src/getargs.c: Include complain.h.
9655 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
9656 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
9658 2001-08-03 Akim Demaille <akim@epita.fr>
9660 * src/reader.c (readgram): Display hidden chars in error messages.
9662 2001-08-03 Akim Demaille <akim@epita.fr>
9664 Update to gettext 0.10.39.
9666 2001-08-03 Akim Demaille <akim@epita.fr>
9668 * lib/strspn.c: New.
9670 2001-08-01 Marc Autret <autret_m@epita.fr>
9672 * doc/bison.texinfo: Update.
9673 * doc/bison.1 (mandoc): Update.
9674 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
9675 * src/files.c: Support output files extensions computing.
9676 (src_extension): New static variable.
9677 (header_extension): New static variable.
9679 (get_extension_index): New function, gets the index of an extension
9680 filename in a string.
9681 (compute_exts_from_gf): New function, computes extensions from the
9682 grammar file extension.
9683 (compute_exts_from_src): New functions, computes extensions from the
9684 C source file extension, file given by ``-o'' option.
9685 (compute_base_names): Update.
9686 (output_files): Update.
9688 2001-08-01 Robert Anisko <anisko_r@epita.fr>
9690 * doc/bison.texi: Document @$.
9691 (Locations): New section.
9693 2001-07-18 Akim Demaille <akim@epita.fr>
9695 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
9696 * config/prev-version.txt, config/move-if-change: New.
9697 * Makefile.am: Adjust.
9699 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
9701 * src/bison.simple (yyparse): Suppress warning `comparaison
9702 between signed and unsigned'.
9704 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
9706 * src/getargs.h (raw_flag): Remove.
9707 * src/getargs.c: Die on `-r'/`--raw'.
9708 * src/lex.c (parse_percent_token): Die on `%raw'.
9709 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
9710 * tests/calc.at: Suppress test with option `--raw'.
9712 2001-07-14 Akim Demaille <akim@epita.fr>
9715 * configure.in: Require Autoconf 2.50.
9716 Update to gettext 0.10.38.
9718 2001-03-16 Akim Demaille <akim@epita.fr>
9720 * doc/bison.texinfo: ANSIfy the examples.
9722 2001-03-16 Akim Demaille <akim@epita.fr>
9724 * getargs.c (skeleton): New variable.
9725 (longopts): --skeleton is a new option.
9726 (shortopts, getargs): -S is a new option.
9727 * getargs.h: Declare skeleton.
9728 * output.c (output_parser): Use it.
9730 2001-03-16 Akim Demaille <akim@epita.fr>
9732 * m4/strerror_r.m4: New.
9733 * m4/error.m4: Run AC_FUNC_STRERROR_R.
9734 * lib/error.h, lib/error.c: Update.
9736 2001-03-16 Akim Demaille <akim@epita.fr>
9738 * src/getargs.c (longopts): Clean up.
9740 2001-02-21 Akim Demaille <akim@epita.fr>
9742 * src/reader.c (gensym): `gensym_count' is your own.
9743 Use a static buf to create the symbol name, as token_buffer is no
9746 2001-02-08 Akim Demaille <akim@epita.fr>
9748 * src/conflicts.c (conflict_report): Be sure not to append to res
9749 between two calls, which could happen if both first sprintf were
9750 skipped, but not the first cp += strlen.
9752 2001-02-08 Akim Demaille <akim@epita.fr>
9754 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
9755 New, from fileutils 4.0.37.
9756 * configure.in: Require Autoconf 2.49c. I took some time before
9757 making this decision. This is the only way out for portability
9758 issues in Bison, it would mean way too much duplicate effort to
9759 import in Bison features implemented in 2.49c since 2.13.
9760 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
9762 2001-02-02 Akim Demaille <akim@epita.fr>
9764 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
9765 * lib/xalloc.h, lib/xmalloc.c: Update.
9767 2001-01-19 Akim Demaille <akim@epita.fr>
9769 Get rid of the ad hoc handling of token_buffer in the scanner: use
9772 * src/lex.c (token_obstack): New.
9773 (init_lex): Initialize it. No longer call...
9774 (grow_token_buffer): this. Remove it.
9775 Adjust all the places which used it to use the obstack.
9777 2001-01-19 Akim Demaille <akim@epita.fr>
9779 * src/lex.h: Rename all the tokens:
9780 s/\bENDFILE\b/tok_eof/g;
9781 s/\bIDENTIFIER\b/tok_identifier/g;
9783 Let them be enums, not #define, to ease debugging.
9784 Adjust all the code.
9786 2001-01-18 Akim Demaille <akim@epita.fr>
9788 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
9789 * src/lex.c (maxtoken, grow_token_buffer): Static.
9791 2001-01-18 Akim Demaille <akim@epita.fr>
9793 Since we now use obstacks, more % directives can be enabled.
9795 * src/lex.c (percent_table): Also accept `%yacc',
9796 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
9798 Handle the actions for `%semantic_parser' and `%pure_parser' here,
9799 instead of returning a token.
9800 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
9801 * src/reader.c (read_declarations): Adjust.
9802 * src/files.c (open_files): Don't call `compute_base_names', don't
9803 compute `attrsfile' since they depend upon data which might be
9804 *in* the input file now.
9805 (output_files): Do it here.
9806 * src/output.c (output_headers): Document the fact that this patch
9807 introduces a guaranteed SEGV for semantic parsers.
9808 * doc/bison.texinfo: Document them.
9809 * tests/suite.at: Exercise these %options.
9811 2000-12-20 Akim Demaille <akim@epita.fr>
9813 Also handle the output file (--verbose) with obstacks.
9815 * files.c (foutput): Remove.
9816 (output_obstack): New.
9817 Adjust all dependencies.
9818 * src/conflicts.c: Return a string.
9819 * src/system.h (obstack_grow_string): Rename as...
9820 (obstack_sgrow): this. Be ready to work with non literals.
9821 (obstack_fgrow4): New.
9823 2000-12-20 Akim Demaille <akim@epita.fr>
9825 * src/files.c (open_files): Fix the computation of short_base_name
9826 in the case of `-o foo.tab.c'.
9828 2000-12-20 Akim Demaille <akim@epita.fr>
9830 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
9831 (copy_dollar): Now that everything uses obstacks, get rid of the
9834 2000-12-20 Akim Demaille <akim@epita.fr>
9836 * src/files.c (open_files): Actually the `.output' file is based
9837 on the short_base_name, not base_name.
9838 * tests/suite.at (Checking output file names): Adjust.
9840 2000-12-20 Akim Demaille <akim@epita.fr>
9842 * src/bison.s1: Remove, we now use directly...
9843 * src/bison.simple: this.
9844 * src/Makefile.am: Use pkgdata instead of data.
9846 2000-12-20 Akim Demaille <akim@epita.fr>
9848 * src/files.c (guard_obstack): New.
9849 (open_files): Initialize it.
9850 (output_files): Dump it...
9851 * src/files.h: Export it.
9852 * src/reader.c (copy_guard): Use it.
9854 2000-12-19 Akim Demaille <akim@epita.fr>
9856 * src/files.c (outfile, defsfile, actfile): Removed as global
9858 (open_files): Don't compute them.
9859 (output_files): Adjust.
9860 (base_name, short_base_name): Be global.
9861 Adjust dependencies.
9863 2000-12-19 Akim Demaille <akim@epita.fr>
9865 * src/files.c (strsuffix): New.
9866 (stringappend): Be just like strcat but allocate.
9867 (base_names): Eve out from open_files.
9868 Try to simplify the rather hairy computation of base_name and
9870 (open_files): Use it.
9871 * tests/suite.at (Checking output file names): New test.
9873 2000-12-19 Akim Demaille <akim@epita.fr>
9875 * src/system.h (obstack_grow_literal_string): Rename as...
9876 (obstack_grow_string): this.
9877 * src/output.c (output_parser): Recognize `%% actions' instead of
9879 * src/bison.s1: s/$/%% actions/.
9880 * src/bison.hairy: Likewise.
9882 2000-12-19 Akim Demaille <akim@epita.fr>
9884 * src/output.c (output_parser): Compute the `#line' lines when
9886 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
9887 Suggested by Hans Aberg.
9889 2000-12-19 Akim Demaille <akim@epita.fr>
9891 Let the handling of the skeleton files be local to the procedures
9894 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
9896 (fparser, open_extra_files): Remove.
9897 (open_files, output_files): Don't take care of fparser.
9898 * src/files.h: Adjust.
9899 * src/output.c (output_parser): Open and close the file to the
9901 * src/reader.c (read_declarations): When %semantic_parser, open
9904 2000-12-19 Akim Demaille <akim@epita.fr>
9906 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
9907 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
9909 2000-12-19 Akim Demaille <akim@epita.fr>
9911 * src/files.c (open_files): Yipee! We no longer need all the code
9912 looking for `/tmp' since we have no tmp file.
9914 2000-12-19 Akim Demaille <akim@epita.fr>
9916 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
9918 * src/files.c (open_files): Less dependency on MSDOS etc.
9920 2000-12-14 Akim Demaille <akim@epita.fr>
9922 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
9923 Provide a default definition.
9924 Use it when executing the default @ action.
9925 * src/reader.c (reader_output_yylsp): No longer include
9926 `timestamp' and `text' in the default YYLTYPE.
9928 2000-12-12 Akim Demaille <akim@epita.fr>
9930 * src/reader.c (copy_definition, parse_union_decl, copy_action)
9931 (copy_guard): Quote the file names.
9932 Reported by Laurent Mascherpa.
9934 2000-12-12 Akim Demaille <akim@epita.fr>
9936 * src/output.c (output_headers, output_program, output): Be sure
9937 to escape special characters when outputting filenames.
9938 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
9939 (output_headers): Don't depend on them, Use ACTSTR.
9941 2000-11-17 Akim Demaille <akim@epita.fr>
9943 * lib/obstack.h: Formatting changes.
9944 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
9945 prevents type checking.
9946 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
9947 cast the value to (void *): assigning a `foo *' to a `void *'
9949 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
9950 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
9953 2000-11-17 Akim Demaille <akim@epita.fr>
9955 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
9957 (suite.m4, regression.m4, calc.m4): these.
9958 * tests/atgeneral.m4: Update from CVS Autoconf.
9960 2000-11-17 Akim Demaille <akim@epita.fr>
9962 * tests/regression.m4 (%union and --defines): New test,
9963 demonstrating a current bug in the obstack implementation.
9965 2000-11-17 Akim Demaille <akim@epita.fr>
9967 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
9969 Use them to declare the variables which are global or local to
9972 2000-11-17 Akim Demaille <akim@epita.fr>
9974 * acconfig.h: Remove, no longer used.
9976 2000-11-07 Akim Demaille <akim@epita.fr>
9978 * src: s/Copyright (C)/Copyright/g.
9980 2000-11-07 Akim Demaille <akim@epita.fr>
9982 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
9984 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
9986 2000-11-07 Akim Demaille <akim@epita.fr>
9988 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
9989 Merge in a single CPP if/else.
9991 2000-11-07 Akim Demaille <akim@epita.fr>
9993 * src/output.c (output): Remove useless variables.
9994 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
9995 argument `data' for consistency with the prototypes.
9997 (obstack_copy, obstack_copy0): Rename the second argument as
9998 `address' for consistency. Qualify it `const'.
9999 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
10000 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
10001 `const' their input argument (`data' or `address').
10002 Adjust the corresponding macros to include `const' in casts.
10004 2000-11-03 Akim Demaille <akim@epita.fr>
10006 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
10007 s/PFILE1/BISON_HAIRY/.
10008 Adjust dependencies.
10010 2000-11-03 Akim Demaille <akim@epita.fr>
10012 For some reason, this was not applied.
10014 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
10015 `unlink': it's no longer used.
10017 2000-11-03 Akim Demaille <akim@epita.fr>
10019 * src/files.c (skeleton_find): New function, eved out of...
10020 (open_files, open_extra_files): here.
10022 2000-11-03 Akim Demaille <akim@epita.fr>
10024 Don't use `atexit'.
10026 * src/files.c (obstack_save): New function.
10027 (done): Rename as...
10028 (output_files): this.
10029 Use `obstack_save'.
10030 * src/main.c (main): Don't use `atexit' to register `done', since
10031 it no longer has to remove tmp files, just call `output_files'
10032 when there are no errors.
10034 2000-11-02 Akim Demaille <akim@epita.fr>
10036 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
10037 `unlink': it's no longer used.
10038 * src/files.h: Formatting changes.
10040 2000-11-02 Akim Demaille <akim@epita.fr>
10042 Remove the last uses of mktemp and unlink/delete.
10044 * src/files.c (fdefines, ftable): Removed.
10045 (defines_ostack, table_obstack): New.
10046 Adjust dependencies of the former into uses of the latter.
10047 * src/output.c (output_short_or_char_table, output_short_table):
10048 Convert to using obstacks.
10049 * src/reader.c (copy_comment2): Accept one FILE * and two
10051 (output_token_defines, reader_output_yylsp): Use obstacks.
10052 * src/system.h (obstack_fgrow3): New.
10054 2000-11-01 Akim Demaille <akim@epita.fr>
10056 Change each use of `fattrs' into a use of `attrs_obstack'.
10058 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
10059 * src/files.c (fattrs): Remove.
10060 (attrs_obstack): New.
10061 Adjust all dependencies.
10062 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
10064 2000-11-01 Akim Demaille <akim@epita.fr>
10066 Introduce obstacks.
10067 Change each use of `faction' into a use of `action_obstack'.
10069 * lib/obstack.h, lib/obstack.c: New files.
10070 * src/files.c (faction): Remove.
10071 (action_obstack): New.
10072 Adjust all dependencies.
10074 2000-10-20 Akim Demaille <akim@epita.fr>
10076 * lib/quote.h (PARAMS): New macro. Use it.
10078 2000-10-16 Akim Demaille <akim@epita.fr>
10080 * src/output.c (output_short_or_char_table): New function.
10081 (output_short_table, output_token_translations): Use it.
10082 (goto_actions): Use output_short_table.
10084 2000-10-16 Akim Demaille <akim@epita.fr>
10086 * src/symtab.c (bucket_new): New function.
10089 * src/output.c (output_short_table): New argument to display the
10090 comment associated with the table.
10091 Adjust dependencies.
10092 (output_gram): Use it.
10093 (output_rule_data): Nicer output layout for YYTNAME.
10095 2000-10-16 Akim Demaille <akim@epita.fr>
10097 * src/lex.c (read_typename): New function.
10099 * src/reader.c (copy_dollar): Likewise.
10101 2000-10-16 Akim Demaille <akim@epita.fr>
10103 * src/reader.c (copy_comment2): Expect the input stream to be on
10104 the `/' which is suspected to open a comment, instead of being
10105 called after `//' or `/*' was read.
10106 (copy_comment, copy_definition, parse_union_decl, copy_action)
10107 (copy_guard): Adjust.
10109 2000-10-16 Akim Demaille <akim@epita.fr>
10111 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
10112 `read_signed_integer'.
10114 2000-10-16 Akim Demaille <akim@epita.fr>
10116 * src/reader.c (copy_dollar): New function.
10117 (copy_guard, copy_action): Use it.
10119 2000-10-16 Akim Demaille <akim@epita.fr>
10121 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
10122 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
10123 New files, from Fileutils 4.0.27.
10124 * src/main.c (printable_version): Remove.
10125 * src/lex.c, src/reader.c: Use `quote'.
10127 2000-10-04 Akim Demaille <akim@epita.fr>
10129 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
10131 2000-10-04 Akim Demaille <akim@epita.fr>
10133 * doc/bison.texinfo: Various typos spotted by Neil Booth.
10135 2000-10-04 Akim Demaille <akim@epita.fr>
10137 When a literal string is used to define two different tokens,
10138 `bison -v' segfaults.
10139 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
10141 * tests/regression.m4: New file.
10142 Include the core of the sample provided by Piotr Gackiewicz.
10143 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
10146 2000-10-04 Akim Demaille <akim@epita.fr>
10148 * src/reader.c (parse_expect_decl): Keep `count' within the size
10152 2000-10-02 Paul Eggert <eggert@twinsun.com>
10154 * bison.s1 (yyparse): Assign the default value
10155 unconditionally, to avoid a GCC warning and make the parser a
10158 2000-10-02 Akim Demaille <akim@epita.fr>
10160 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
10163 2000-10-02 Akim Demaille <akim@epita.fr>
10165 * src/derives.c, src/print.c, src/reduce.c: To ease the
10166 translation, move some `\n' out of the translated strings.
10168 2000-10-02 Akim Demaille <akim@epita.fr>
10170 The location tracking mechanism is precious for parse error
10171 messages. Nevertheless, it is enabled only when `@n' is used in
10172 the grammar, which is a different issue (you can use it in error
10173 message, but not in the grammar per se). Therefore, there should
10174 be another means to enable it.
10176 * src/getargs.c (getargs): Support `--locations'.
10177 (usage): Report it.
10178 * src/getargs.h (locationsflag): Export it.
10179 * src/lex.c (percent_table): Support `%locations'.
10180 * src/reader.c (yylsp_needed): Remove this variable, now replaced
10181 with `locationsflag'.
10182 * doc/bison.texinfo: Document `--locations' and `%locations'.
10184 * tests/calc.m4: Test it.
10186 For regularity of the names, replace each
10187 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
10188 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
10189 In addition replace each `flag' with `_flag'.
10191 2000-10-02 Akim Demaille <akim@epita.fr>
10193 Also test parse error messages, including with YYERROR_VERBOSE.
10195 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
10197 Use it to check the computations.
10198 Use it to check `nonassoc' is honored.
10199 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
10200 `--yyerror-verbose'.
10201 (_AT_CHECK_CALC): Adjust to this option.
10202 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
10204 2000-10-02 Akim Demaille <akim@epita.fr>
10206 Test also `--verbose', `--defines' and `--name-prefix'. Testing
10207 the latter demonstrates a flaw in the handling of non debugging
10208 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
10209 was used in order to simplify:
10225 unfortunately this leads to a CPP conflict when
10226 `--name-prefix=foo' is used since it produces `#define yydebug
10229 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
10230 (YYDPRINTF): New macro.
10232 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
10234 Also test `--verbose', `--defines' and `--name-prefix'.
10236 2000-10-02 Akim Demaille <akim@epita.fr>
10238 Improve the readability of the produced parsers.
10240 * src/bison.s1: Formatting changes.
10241 Improve the comment related to the `$' mark.
10242 (yydefault): Don't fall through to `yyresume': `goto' there.
10243 * src/output.c (output_parser): When the `$' is met, skip the end
10245 New variable, `number_of_dollar_signs', to check there's exactly
10246 one `$' in the parser skeleton.
10248 2000-10-02 Akim Demaille <akim@epita.fr>
10250 * lib/xstrdup.c: New file, from the fileutils.
10251 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
10252 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
10253 instead of strlen + xmalloc + strcpy.
10254 * src/symtab.c (copys): Remove, use xstrdup instead.
10256 2000-10-02 Akim Demaille <akim@epita.fr>
10258 * src/gram.h (associativity): New enum type which replaces the
10259 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
10260 `right_assoc', `left_assoc' and `non_assoc'.
10261 Adjust all dependencies.
10262 * src/reader.c: Formatting changes.
10263 (LTYPESTR): Don't define it, use it as a literal in
10264 `reader_output_yylsp'.
10265 * src/symtab.h (symbol_class): New enum type which replaces the
10266 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
10267 `sunknown', `stoken and `snterm'.
10269 2000-10-02 Akim Demaille <akim@epita.fr>
10271 * src/getargs.c (fixed_outfiles): Rename as...
10272 (yaccflag): for consistency and accuracy.
10273 Adjust dependencies.
10275 2000-10-02 Akim Demaille <akim@epita.fr>
10277 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
10278 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
10279 difficult and introduced a lot of core dump. It turns out that
10280 Bison used an implementation of `xmalloc' based on `calloc', and
10281 at various places it does depend upon the initialization to 0. I
10282 have not tried to isolate the pertinent places, and all the former
10283 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
10284 someone should address this issue.
10286 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
10287 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
10289 Adjust dependencies.
10290 * src/warshall.h: New file.
10293 2000-10-02 Akim Demaille <akim@epita.fr>
10295 Various anti-`extern in *.c' changes.
10297 * src/system.h: Include `assert.h'.
10299 2000-10-02 Akim Demaille <akim@epita.fr>
10301 * src/state.h (nstates, final_state, first_state, first_shift)
10302 (first_reduction): Move their exportation from here...
10303 * src/LR0.h: to here.
10304 Adjust dependencies.
10305 * src/getargs.c (statisticsflag): New variable.
10306 Add support for `--statistics'.
10307 Adjust dependencies.
10309 Remove a lot of now useless `extern' statements in most files.
10311 2000-10-02 Akim Demaille <akim@epita.fr>
10313 * src/LR0.h: New file.
10316 2000-10-02 Akim Demaille <akim@epita.fr>
10318 * src/print.h: New file.
10320 * src/print.c: Formatting and ordering changes.
10321 (verbose, terse): Replace with...
10322 (print_results): this new function.
10323 Adjust dependencies.
10325 2000-10-02 Akim Demaille <akim@epita.fr>
10327 * src/conflicts.c (conflict_report): New function.
10328 (conflict_log, verbose_conflict_log): Replace with...
10329 (print_conflicts): this function.
10330 Adjust dependencies.
10331 * src/conflicts.h: New file.
10332 Propagate its inclusion.
10334 2000-10-02 Akim Demaille <akim@epita.fr>
10336 * src/nullable.h: New file.
10337 Propagate its inclusion.
10338 * src/nullable.c: Formatting changes.
10340 2000-10-02 Akim Demaille <akim@epita.fr>
10342 * src/reduce.h: New file.
10343 Propagate its inclusion.
10344 * src/reduce.c: Topological sort and other formatting changes.
10345 (bool, TRUE, FALSE): Move their definition to...
10346 * src/system.h: here.
10348 2000-10-02 Akim Demaille <akim@epita.fr>
10350 * src/files.c: Formatting changes.
10351 (tryopen, tryclose, openfiles): Rename as...
10352 (xfopen, xfclose, open_files): this.
10353 (stringappend): static.
10354 * src/files.h: Complete the list of exported symbols.
10357 2000-10-02 Akim Demaille <akim@epita.fr>
10359 * src/reader.h: New file.
10360 Propagate its use instead of tedious list of `extern' and
10362 * src/reader.c: Formatting changes, topological sort,
10365 2000-10-02 Akim Demaille <akim@epita.fr>
10367 * src/lex.h: Prototype `lex.c' exported functions.
10368 * src/reader.c: Adjust.
10369 * src/lex.c: Formatting changes.
10370 (safegetc): Rename as...
10373 2000-10-02 Akim Demaille <akim@epita.fr>
10375 * src/lalr.h: New file.
10376 Propagate its inclusion instead of prototypes and `extern'.
10377 * src/lalr.c: Formatting changes, topological sorting etc.
10379 2000-10-02 Akim Demaille <akim@epita.fr>
10381 * src/output.c (token_actions): Introduce a temporary array,
10382 YYDEFACT, that makes it possible for this function to use
10383 output_short_table.
10385 2000-10-02 Akim Demaille <akim@epita.fr>
10387 `user_toknums' is output as a `short[]' in `output.c', while it is
10388 defined as a `int[]' in `reader.c'. For consistency with the
10389 other output tables, `user_toknums' is now defined as a table of
10392 * src/reader.c (user_toknums): Be a short table instead of an int
10394 Adjust dependencies.
10396 Factor the short table outputs.
10398 * src/output.c (output_short_table): New function.
10399 * src/output.c (output_gram, output_stos, output_rule_data)
10400 (output_base, output_table, output_check): Use it.
10402 2000-10-02 Akim Demaille <akim@epita.fr>
10404 * src/output.c (output): Topological sort of the functions, in
10405 order to get rid of the `static' prototypes.
10406 No longer use `register'.
10407 * src/output.h: New file.
10408 Propagate its inclusion in files explicitly prototyping functions
10411 2000-09-21 Akim Demaille <akim@epita.fr>
10413 * src/atgeneral.m4: Update from Autoconf.
10415 2000-09-21 Akim Demaille <akim@epita.fr>
10417 * src/closure.h: New file.
10418 * src/closure.c: Formatting changes, topological sort over the
10419 functions, use of closure.h.
10420 (initialize_closure, finalize_closure): Rename as...
10421 (new_closure, free_closure): these. Adjust dependencies.
10422 * src/LR0.c: Formatting changes, topological sort, use of
10424 (initialize_states): Rename as...
10425 (new_states): this.
10426 * src/Makefile.am (noinst_HEADERS): Adjust.
10428 2000-09-20 Akim Demaille <akim@epita.fr>
10430 * src/acconfig.h: Don't protect config.h against multiple
10432 Don't define PARAMS.
10433 * src/system.h: Define PARAMS.
10434 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
10435 purpose of config.h. system.h must not try to fix wrong
10436 definitions in config.h.
10438 2000-09-20 Akim Demaille <akim@epita.fr>
10440 * src/derives.h: New file.
10441 * src/main.c, src/derives.h: Use it.
10442 Formatting changes.
10443 * src/Makefile.am (noinst_HEADERS): Adjust.
10445 2000-09-20 Akim Demaille <akim@epita.fr>
10447 * tests/atgeneral.m4: Update from Autoconf.
10448 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
10449 (AT_CHECK_CALC): New macros.
10450 Use these macros to test bison with options `', `--raw',
10451 `--debug', `--yacc', `--yacc --debug'.
10453 2000-09-19 Akim Demaille <akim@epita.fr>
10455 * src/output.c: Formatting changes.
10456 * src/machine.h: Remove, leaving its contents in...
10457 * src/system.h: here.
10459 Adjust all dependencies on stdio.h and machine.h.
10460 * src/getargs.h: New file.
10461 Let all `extern' declarations about getargs.c be replaced with
10462 inclusion of `getargs.h'.
10463 * src/Makefile.am (noinst_HEADERS): Adjust.
10465 * tests/calc.m4 (yyin): Be initialized in main, not on the global
10467 (yyerror): Returns void, not int.
10468 * doc/bison.texinfo: Formatting changes.
10470 2000-09-19 Akim Demaille <akim@epita.fr>
10472 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
10475 2000-09-18 Akim Demaille <akim@epita.fr>
10477 * configure.in: Append WARNING_CFLAGS to CFLAGS.
10478 * src/Makefile.am (INCLUDES): Don't.
10479 Be ready to fetch headers in lib/.
10481 2000-09-18 Akim Demaille <akim@epita.fr>
10483 * doc/bison.texinfo: Update the copyright.
10484 ANSIfy and GNUify the examples.
10485 Remove the old menu.
10487 2000-09-18 Akim Demaille <akim@epita.fr>
10489 First set of tests: use the `calc' example from the documentation.
10491 * src/bison.s1 (yyparse): Condition the code using `yytname' which
10492 is defined only when YYDEBUG is.
10493 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
10494 * src/files.c (tryopen, tryclose): Formatting changes.
10495 Move to the top and be static.
10496 * src/reader.c (read_signed_integer): Likewise.
10497 * tests/calc.m4: New file.
10498 * Makefile.am, suite.m4: Adjust.
10499 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
10501 2000-09-18 Akim Demaille <akim@epita.fr>
10503 Add support for an Autotest test suite for Bison.
10505 * m4/m4.m4, m4/atconfig.m4: New files.
10506 * m4/Makefile.am (EXTRA_DIST): Adjust.
10507 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
10509 * src/getargs.c: Display a more standard --version message.
10510 * src/reader.c (reader): Formatting changes.
10511 No longer depend upon VERSION_STRING.
10512 * configure.in: No longer use `dnl'.
10513 Set up the test suite and the new directory `tests/.
10514 (VERSION_STRING): Remove.
10516 2000-04-14 Akim Demaille <akim@epita.fr>
10518 * src/reader.c (copy_comment2): New function, same as former
10519 `copy_comment', but outputs into two FILE *.
10520 (copy_comment): Use it.
10521 (parse_union_decl): Use it.
10522 (get_type, parse_start_decl): Use the same `invalid' message.
10523 (parse_start_decl, parse_union_decl): Use the same `multiple'
10525 (parse_union_decl, copy_guard, copy_action): Use the same
10526 `unmatched' message.
10527 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
10529 2000-03-31 Akim Demaille <akim@epita.fr>
10531 * src/files.c (tryopen, tryclose): Move to the top.
10534 2000-03-31 Akim Demaille <akim@epita.fr>
10536 * src/main.c (main): Don't call `done', exit does it.
10538 2000-03-31 Akim Demaille <akim@epita.fr>
10540 * allocate.c: s/return (foo)/return foo/.
10541 * lalr.c: Likewise.
10543 * output.c: Likewise.
10544 * reader.c: Likewise.
10545 * symtab.c: Likewise.
10546 * vmsgetargs.c: Likewise.
10548 2000-03-31 Akim Demaille <akim@epita.fr>
10550 Clean up the error reporting functions.
10552 * src/report.c: New file.
10553 * src/report.h: Likewise.
10554 * src/Makefile.am: Adjust.
10555 * m4/error.m4: New file.
10556 * m4/Makefile.am: Adjust.
10557 * configure.in (jm_PREREQ_ERROR): Call it.
10558 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
10560 (fatal, fatals): Remove. All callers use complain.c::fatal.
10561 (warn, warni, warns, warnss, warnss): Remove. All callers use
10562 complain.c::complain.
10563 (toomany): Remove, use fatal instead.
10564 * src/files.c (done): No argument, use complain_message_count.
10565 * src/main.c (main): Register `done' to `atexit'.
10567 * src/getargs.c (usage): More `fputs', less `fprintf'.
10569 2000-03-28 Akim Demaille <akim@epita.fr>
10571 * lib/: New directory.
10572 * Makefile.am (SUBDIRS): Adjust.
10573 * configure.in: Adjust.
10574 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
10576 * src/alloca.c: Moved to lib/.
10577 * src/getopt.c: Likewise.
10578 * src/getopt1.c: Likewise.
10579 * src/getopt.h: Likewise.
10580 * src/ansi2knr.c: Likewise.
10581 * src/ansi2knr.1: Likewise.
10582 * src/Makefile.am: Adjust.
10583 * lib/Makefile.am: New file.
10585 2000-03-28 Akim Demaille <akim@epita.fr>
10587 * src/getargs.c (usage): Refresh the help message.
10589 2000-03-17 Akim Demaille <akim@epita.fr>
10591 * src/getopt1.c: Updated from textutils 2.0e
10592 * src/getopt.c: Likewise.
10593 * src/getopt.h: Likewise.
10595 2000-03-17 Akim Demaille <akim@epita.fr>
10597 * src/Makefile.am (bison.simple): Fix the awk program: quote only
10598 the file name, not the whole `#line LINE FILE'.
10600 2000-03-17 Akim Demaille <akim@epita.fr>
10602 On syntax errors, report the token on which we choked.
10604 * src/bison.s1 (yyparse): In the label yyerrlab, when
10605 YYERROR_VERBOSE, add yychar in msg.
10607 2000-03-17 Akim Demaille <akim@epita.fr>
10609 * src/reader.c (copy_at): New function.
10610 (copy_guard): Use it.
10611 (copy_action): Use it.
10613 2000-03-17 Akim Demaille <akim@epita.fr>
10615 Be kind to translators, save some useless translations.
10617 * src/main.c (banner): New function.
10618 (fatal_banner): Use it.
10619 (warn_banner): Use it.
10621 2000-03-17 Akim Demaille <akim@epita.fr>
10623 * src/reader.c (copy_definition): Use copy_string and
10624 copy_comment. Removed now unused `match', `ended',
10626 (copy_comment, copy_string): Moved, to be visible from
10629 2000-03-17 Akim Demaille <akim@epita.fr>
10631 * src/reader.c (copy_string): Declare `static inline'. No
10632 problems with inline, since it is checked by configure.
10633 (copy_comment): Likewise.
10635 2000-03-17 Akim Demaille <akim@epita.fr>
10637 * src/reader.c (packsymbols): Formatting changes.
10639 2000-03-17 Akim Demaille <akim@epita.fr>
10641 * src/reader.c (copy_comment): New function, factored out from:
10642 (copy_action): Use it. Removed now unused `match', `ended',
10644 (copy_guard): Likewise.
10646 2000-03-17 Akim Demaille <akim@epita.fr>
10648 * src/reader.c (copy_string): New function, factored out from:
10649 (copy_action): Use it.
10650 (copy_guard): Likewise.
10652 2000-03-17 Akim Demaille <akim@epita.fr>
10654 Change the handling of @s so that they behave exactly like $s.
10655 There is now a pseudo variable @$ (readble and writable), location
10656 of the lhs of the rule (by default ranging from the location of
10657 the first symbol of the rhs, to the location of the last symbol,
10658 or, if the rhs is empty, YYLLOC).
10660 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
10662 (yyparse): When providing a default semantic action, provide a
10663 default location action.
10664 (after the $): No longer change `*YYLSP', just stack YYLOC the
10665 same way you stack YYVAL.
10666 * src/reader.c (read_declarations): Use warns.
10667 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
10668 (copy_action, case '@'): Likewise.
10669 Use a standard error message, to save useless work from
10672 2000-03-17 Akim Demaille <akim@epita.fr>
10674 * src/bison.s1: Formatting and cosmetics changes.
10675 * src/reader.c: Likewise.
10676 Update the Copyright notice.
10678 2000-03-17 Akim Demaille <akim@epita.fr>
10680 * src/bison.s1 (#line): All set to `#line' only, since the
10681 Makefile now handles them.
10683 2000-03-16 Akim Demaille <akim@epita.fr>
10685 * src/output.c (output_rule_data): Output the documentation of
10686 some of the tables.
10687 (Copyright notice): Update.
10688 Formatting changes.
10690 2000-03-16 Akim Demaille <akim@epita.fr>
10692 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
10693 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
10694 One `#if YYDEBUG' remains, since it uses variables which are
10695 defined only if `YYDEBUG != 0'.
10697 2000-03-16 Akim Demaille <akim@epita.fr>
10699 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
10700 and related variables so that the similarities are highlighted.
10702 2000-03-16 Akim Demaille <akim@epita.fr>
10704 * src/bison.s1: Properly indent CPP directives.
10706 2000-03-16 Akim Demaille <akim@epita.fr>
10708 * src/bison.s1: Properly indent the `alloca' CPP section.
10710 2000-03-16 Akim Demaille <akim@epita.fr>
10712 Do not hard code values of directories in `configure.in'.
10713 Update the `configure' tool chain.
10715 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
10717 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
10718 (AC_OUTPUT): Add m4/Makefile.
10719 Bump to bison 1.28a, 1.29 has never been released.
10720 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
10721 handled via src/Makefile.am.
10722 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
10723 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
10725 * Makefile.am (SUBDIRS): Add m4.
10726 (ACLOCAL_AM_FLAGS): New variable.
10727 (AUTOMAKE_OPTIONS): Add check-news.
10728 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
10729 the proper line number and file name.
10730 (DEFS): Propagate the location of bison library files and of the
10732 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
10734 * acinclude.m4: Remove, replaced by the directory m4.
10735 * m4/Makefile.am (EXTRA_DIST): New variable.
10736 * m4/gettext.m4: New file, from the fileutils.
10737 * m4/lcmessage.m4: Likewise
10738 * m4/progtest.m4: Likewise.
10739 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
10741 2000-03-10 Akim Demaille <akim@epita.fr>
10744 Formatting changes of various comments.
10745 Respect the GNU coding standards at various places.
10746 Don't use `_()' when no translation is needed.
10748 1999-12-13 Jesse Thilo <jthilo@gnu.org>
10751 OS/2 honors TMPDIR environment variable.
10753 1999-12-13 Jesse Thilo <jthilo@gnu.org>
10755 * doc/bison.texinfo: Tweaked spelling and grammar.
10757 Removed reference to price of printed copy.
10758 Mention BISON_SIMPLE and BISON_HAIRY.
10760 1999-12-13 Jesse Thilo <jthilo@gnu.org>
10762 * configure.in, NEWS:
10763 Bison 1.29 released.
10765 1999-10-27 Jesse Thilo <jthilo@gnu.org>
10767 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
10768 Added reference card.
10770 1999-07-26 Jesse Thilo <jthilo@gnu.org>
10772 * po/ru.po: Added Russian translation.
10774 1999-07-26 Jesse Thilo <jthilo@gnu.org>
10776 * configure.in: Added Russian translation.
10778 1999-07-06 Jesse Thilo <jthilo@gnu.org>
10780 * configure.in, NEWS, README:
10781 Released version 1.28.
10783 1999-06-14 Jesse Thilo <jthilo@gnu.org>
10786 Squashed redefinition warning on some systems.
10788 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
10789 Have configure build version string instead of relying on ANSI string
10792 1999-06-14 Jesse Thilo <jthilo@gnu.org>
10794 * po/POTFILES.in: Got rid of version.c.
10796 1999-06-14 Jesse Thilo <jthilo@gnu.org>
10798 * acconfig.h, configure.in:
10799 Have configure build version string instead of relying on ANSI string
10802 1999-06-08 Jesse Thilo <jthilo@gnu.org>
10805 Dropped mention of `+' for long-named options.
10807 1999-05-30 Jesse Thilo <jthilo@gnu.org>
10809 * src/files.c: Added <unistd.h> for unlink().
10811 * src/Makefile.am, src/system.h:
10814 1999-05-30 Jesse Thilo <jthilo@gnu.org>
10816 * README: Added a FAQ list.
10818 * configure.in, acconfig.h:
10821 1999-05-30 Jesse Thilo <jthilo@gnu.org>
10823 * doc/FAQ, doc/Makefile.am:
10826 1999-05-19 Jesse Thilo <jthilo@gnu.org>
10828 * src/alloc.h, src/symtab.h, src/version.c:
10829 Protected inclusion of "config.h" with HAVE_CONFIG_H.
10831 1999-04-18 Jesse Thilo <jthilo@gnu.org>
10833 * src/.cvsignore, src/Makefile.am:
10834 Reorganized: sources in `src', documentation in `doc'.
10836 * src/lex.c (literalchar):
10837 fixed the code for escaping double quotes (thanks
10840 1999-04-18 Jesse Thilo <jthilo@gnu.org>
10842 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
10843 Adjusted paths to reflect directory reorganization.
10845 1999-04-18 Jesse Thilo <jthilo@gnu.org>
10847 * doc/.cvsignore, doc/Makefile.am:
10848 Reorganized: sources in `src', documentation in `doc'.
10850 1999-04-18 Jesse Thilo <jthilo@gnu.org>
10853 Updated AC_INIT file to reflect directory reorganization.
10855 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
10856 Reorganized: sources in `src', documentation in `doc'.
10858 1999-04-13 Jesse Thilo <jthilo@gnu.org>
10861 Don't declare calloc() and realloc() if not necessary.
10863 1999-04-13 Jesse Thilo <jthilo@gnu.org>
10865 * configure.in, acconfig.h, acinclude.m4:
10866 Don't declare calloc() and realloc() if not necessary.
10868 1999-03-23 Jesse Thilo <jthilo@gnu.org>
10870 * po/.cvsignore: Added i18n support.
10872 1999-03-23 Jesse Thilo <jthilo@gnu.org>
10874 * acconfig.h, configure.in, Makefile.am:
10875 Added i18n support.
10877 1999-03-22 Jesse Thilo <jthilo@gnu.org>
10879 * src/bison.s1: Fixed #line numbers.
10881 1999-03-15 Jesse Thilo <jthilo@gnu.org>
10883 * po/es.po, po/fr.po, po/nl.po, po/de.po:
10884 Added PO files from Translation Project.
10886 1999-03-03 Jesse Thilo <jthilo@gnu.org>
10889 Added support for non-ANSI compilers (ansi2knr).
10891 1999-02-16 Jesse Thilo <jthilo@gnu.org>
10893 * configure.in: Bumped version number to 1.27.
10896 Added `bison.simple' to list of files removed by `make distclean'.
10898 1999-02-12 Jesse Thilo <jthilo@gnu.org>
10900 * src/files.c, src/files.h:
10901 Defined locations of parser files in config.h instead of Makefile.
10903 1999-02-12 Jesse Thilo <jthilo@gnu.org>
10905 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
10906 Defined locations of parser files in config.h instead of Makefile.
10908 1999-02-09 Jesse Thilo <jthilo@gnu.org>
10911 Removed inappropriate use of $< macro.
10913 1999-02-05 Jesse Thilo <jthilo@gnu.org>
10915 * po/Makefile.in.in, po/POTFILES.in:
10916 Add `po' directory skeleton.
10918 1999-01-27 Jesse Thilo <jthilo@gnu.org>
10920 * README: Document help-bison list.
10922 * configure.in: Add check for mkstemp().
10924 1999-01-20 Jesse Thilo <jthilo@gnu.org>
10926 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
10927 Hush a few compiler warnings.
10930 Add tryclose(), which verifies that fclose was successful.
10931 Hush a couple of compiler warnings.
10933 1999-01-20 Jesse Thilo <jthilo@gnu.org>
10935 * Makefile.am, OChangeLog:
10936 ChangeLog is now automatically generated. Include the old version as
10939 1999-01-14 Jesse Thilo <jthilo@gnu.org>
10941 * 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:
10942 Update FSF address.
10944 1999-01-14 Jesse Thilo <jthilo@gnu.org>
10946 * doc/bison.texinfo: Fix formatting glitch.
10948 * doc/bison.texinfo: Update FSF address.
10950 1999-01-14 Jesse Thilo <jthilo@gnu.org>
10952 * acconfig.h: Update FSF address.
10954 1999-01-08 Jesse Thilo <jthilo@gnu.org>
10957 Don't define PACKAGE here, since config.h defines it.
10959 1998-12-30 Jesse Thilo <jthilo@gnu.org>
10961 * src/reader.c: Update copyright date.
10964 Ditch sprintf to statically-sized buffers in fatal/warn functions in
10965 favor of output directly to stderr (avoids buffer overruns).
10967 * src/reader.c: Some checks for premature EOF.
10969 * 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:
10970 Use prototypes if the compiler understands them.
10972 * src/files.c: Honor TMPDIR on Unix hosts.
10973 Use prototypes if the compiler understands them.
10976 Fix a couple of buffer overrun bugs.
10977 Use prototypes if the compiler understands them.
10979 * src/system.h: Include unistd.h and ctype.h.
10980 Use #ifdef instead of #if for NLS symbols.
10982 1998-12-30 Jesse Thilo <jthilo@gnu.org>
10984 * doc/bison.texinfo:
10985 Delete comment "consider using @set for edition number, etc..." since
10986 we now are doing so.
10988 1998-12-30 Jesse Thilo <jthilo@gnu.org>
10991 Use prototypes if the compiler understands them.
10993 * NEWS: Document 1.26 highlights.
10995 * Makefile.am: Require Automake 1.3 or later.
10998 Use prototypes if the compiler understands them.
11000 1998-12-29 Jesse Thilo <jthilo@gnu.org>
11003 Use VERSION symbol from automake for version number.
11005 1998-12-29 Jesse Thilo <jthilo@gnu.org>
11007 * acconfig.h, configure.in, version.cin:
11008 Use VERSION symbol from automake for version number.
11010 1998-11-28 Jesse Thilo <jthilo@gnu.org>
11013 Distribute original version of simple parser (bison.s1), not built
11014 version (bison.simple).
11016 1998-11-28 Jesse Thilo <jthilo@gnu.org>
11018 * doc/bison.texinfo: Add info dir entry.
11020 * doc/bison.texinfo:
11021 Let automake put version number into documentation.
11023 1998-11-26 Jesse Thilo <jthilo@gnu.org>
11025 * src/bison.cld, src/build.com, src/vmshlp.mar:
11026 Add non-RCS files from /gd/gnu/bison.
11028 1998-11-26 Jesse Thilo <jthilo@gnu.org>
11031 Document the BISON_HAIRY and BISON_SIMPLE variables.
11033 1998-11-25 Jesse Thilo <jthilo@gnu.org>
11035 * src/version.c: Build version.c automatically.
11038 Fix token numbering (used to start at 258, not 257).
11040 * src/system.h: Include config.h.
11042 * src/getargs.c: Update bug report address.
11044 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
11045 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
11047 1998-11-25 Jesse Thilo <jthilo@gnu.org>
11050 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
11052 * configure.in, version.cin:
11053 Build version.c automatically.
11055 * AUTHORS: Add AUTHORS file.
11057 * README: Update bug report address.
11060 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
11062 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
11063 Add automake stuff.
11065 1998-11-25 Jesse Thilo <jthilo@gnu.org>
11067 * doc/bison.texinfo: Clean up some formatting.
11069 1998-05-05 Richard Stallman <rms@gnu.org>
11071 * doc/bison.texinfo:
11072 Explain better why to make a pure parser.
11074 1998-01-05 Richard Stallman <rms@gnu.org>
11076 * src/files.c (openfiles):
11077 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
11078 find a temporary directory, if possible. Do not unlink files while
11081 1997-08-25 Richard Stallman <rms@gnu.org>
11083 * src/reader.c (stack_offset;):
11084 Change some warni to warns.
11086 * src/lex.c (literalchar): Use warns, not warni.
11088 1997-06-28 Richard Stallman <rms@gnu.org>
11090 * src/bison.s1: Add a Bison version comment.
11092 * src/main.c (fatal, warn, berror):
11095 1997-06-28 Richard Stallman <rms@gnu.org>
11097 * Makefile.in (bison_version): New variable.
11098 (dist): Use that variable.
11099 (bison.s1): Substitute the Bison version into bison.simple.
11101 * bison.simple: Add a Bison version comment.
11103 1997-06-18 Richard Stallman <rms@gnu.org>
11105 * src/main.c (fatal, warn, berror):
11106 Make error messages standard.
11107 (toomany): Improve error message text.
11109 * 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:
11110 new.h renamed to alloc.h.
11112 1997-06-18 Richard Stallman <rms@gnu.org>
11114 * Makefile.in: new.h renamed to alloc.h.
11116 1997-05-24 Richard Stallman <rms@gnu.org>
11118 * src/lex.c (literalchar):
11119 Fix the code for escaping \, " and '.
11121 (lex): Avoid trouble when there are many chars
11122 to discard in a char literal with just several chars in it.
11124 1997-05-17 Richard Stallman <rms@gnu.org>
11127 Use malloc, if using alloca is troublesome.
11128 (YYSTACK_USE_ALLOCA): New flag macro.
11129 Define it for some systems and compilers.
11130 (YYSTACK_ALLOC): New macro.
11131 (yyparse): Use YYSTACK_ALLOC to allocate stack.
11132 If it was malloc'd, free it.
11134 1997-05-17 Richard Stallman <rms@gnu.org>
11137 Use malloc, if using alloca is troublesome.
11138 (YYSTACK_USE_ALLOCA): New flag macro.
11139 Define it for some systems and compilers.
11140 (YYSTACK_ALLOC): New macro.
11141 (yyparse): Use YYSTACK_ALLOC to allocate stack.
11142 If it was malloc'd, free it.
11144 1997-04-23 Richard Stallman <rms@gnu.org>
11147 (alloca) [__hpux]: Always define as __builtin_alloca.
11149 1997-04-23 Richard Stallman <rms@gnu.org>
11152 (alloca) [__hpux]: Always define as __builtin_alloca.
11154 1997-04-22 Richard Stallman <rms@gnu.org>
11157 [__hpux]: Include alloca.h (right for HPUX 10)
11158 instead of declaring alloca (right for HPUX 9).
11160 * src/bison.s1 (__yy_memcpy):
11161 Declare arg `count' as unsigned int.
11162 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
11164 1997-04-22 Richard Stallman <rms@gnu.org>
11167 [__hpux]: Include alloca.h (right for HPUX 10)
11168 instead of declaring alloca (right for HPUX 9).
11170 * bison.simple (__yy_memcpy):
11171 Declare arg `count' as unsigned int.
11172 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
11174 1997-01-03 Richard Stallman <rms@gnu.org>
11176 * src/allocate.c: [__STDC__ or _MSC_VER]:
11177 Declare calloc and realloc to return void *.
11179 1997-01-02 Richard Stallman <rms@gnu.org>
11182 [_MSC_VER]: Include stdlib.h and process.h.
11183 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
11185 * src/main.c (main): Return FAILURE as a value.
11186 (printable_version): Declare arg as int, not char.
11188 1997-01-02 Richard Stallman <rms@gnu.org>
11190 * Makefile.in (dist):
11191 Explicitly check for symlinks, and copy them.
11193 1996-12-19 Richard Stallman <rms@gnu.org>
11196 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
11198 1996-12-18 Paul Eggert <eggert@gnu.org>
11200 * src/bison.s1 (yyparse):
11201 If __GNUC__ and YYPARSE_PARAM are both defined,
11202 declare yyparse to have a void * argument.
11204 1996-12-18 Paul Eggert <eggert@gnu.org>
11206 * bison.simple (yyparse):
11207 If __GNUC__ and YYPARSE_PARAM are both defined,
11208 declare yyparse to have a void * argument.
11210 1996-12-17 Richard Stallman <rms@gnu.org>
11212 * src/reduce.c (nbits): Add some casts.
11214 1996-08-12 Richard Stallman <rms@gnu.org>
11216 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
11218 1996-08-12 Richard Stallman <rms@gnu.org>
11220 * bison.simple: Test _MSDOS as well as _MSDOS_.
11222 1996-07-31 Richard Stallman <rms@gnu.org>
11225 [__sun && __i386]: Include alloca.h.
11227 1996-07-31 Richard Stallman <rms@gnu.org>
11230 [__sun && __i386]: Include alloca.h.
11232 1996-07-30 Richard Stallman <rms@gnu.org>
11234 * src/bison.s1: Comment change.
11236 * src/bison.s1: Test _MSDOS_, not MSDOS.
11238 1996-07-30 Richard Stallman <rms@gnu.org>
11240 * bison.simple: Comment change.
11242 * bison.simple: Test _MSDOS_, not MSDOS.
11244 1996-06-01 Richard Stallman <rms@gnu.org>
11246 * 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:
11247 Insert `_' macro around many string constants.
11250 Insert `_' macro around many string constants.
11252 (main): Call setlocale, bindtextdomain and textdomain.
11254 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
11255 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
11256 [ENABLE_NLS]: Include libintl.h.
11257 [ENABLE_NLS] (gettext): Define.
11258 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
11259 (N_, PACKAGE, LOCALEDIR): New macros.
11261 1996-06-01 Richard Stallman <rms@gnu.org>
11263 * POTFILES.in: New file.
11265 * Makefile.in (allocate.o):
11266 Define target explicitly.
11268 * Makefile.in (CFLAGS): Set to @CFLAGS@.
11269 (LDFLAGS): Set to @LDFLAGS@.
11270 (configure): Run autoconf only if preceding `cd' succeeds.
11271 (bison.s1): Redirect output to temporary file then move the
11272 temporary to the target, rather than redirecting directly to bison.s1.
11273 (clean): Remove config.status and config.log.
11274 (distclean): Don't remove config.status here.
11276 1996-05-12 Richard Stallman <rms@gnu.org>
11279 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
11281 1996-05-12 Richard Stallman <rms@gnu.org>
11284 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
11286 1996-05-11 Richard Stallman <rms@gnu.org>
11288 * src/bison.s1 (__yy_memcpy):
11289 Really reorder the args, as was supposedly done on Feb 14 1995.
11290 (yyparse): Calls changed accordingly.
11292 1996-05-11 Richard Stallman <rms@gnu.org>
11294 * Makefile.in (dist): Don't use $(srcdir).
11296 * bison.simple (__yy_memcpy):
11297 Really reorder the args, as was supposedly done on Feb 14 1995.
11298 (yyparse): Calls changed accordingly.
11300 1996-01-27 Richard Stallman <rms@gnu.org>
11302 * src/output.c (output_rule_data):
11303 Test YYERROR_VERBOSE in the conditional
11304 around the definition of ttyname.
11306 1995-12-29 Richard Stallman <rms@gnu.org>
11309 Fix line numbers in #line commands.
11311 1995-12-29 Richard Stallman <rms@gnu.org>
11314 Fix line numbers in #line commands.
11316 1995-12-27 Richard Stallman <rms@gnu.org>
11318 * src/bison.s1 (YYPARSE_PARAM_DECL):
11319 In C++, make it always null.
11320 (YYPARSE_PARAM_ARG): New macro.
11321 (yyparse): Use YYPARSE_PARAM_ARG.
11323 1995-12-27 Richard Stallman <rms@gnu.org>
11325 * bison.simple (YYPARSE_PARAM_DECL):
11326 In C++, make it always null.
11327 (YYPARSE_PARAM_ARG): New macro.
11328 (yyparse): Use YYPARSE_PARAM_ARG.
11330 1995-11-29 Richard Stallman <rms@gnu.org>
11332 * doc/bison.texinfo:
11333 Describe literal string tokens, %raw, %no_lines, %token_table.
11335 1995-11-29 Daniel Hagerty <hag@gnu.org>
11337 * doc/bison.texinfo: Fixed update date
11339 1995-10-16 Richard Stallman <rms@gnu.org>
11341 * src/version.c: Version 1.25.
11343 1995-10-16 Richard Stallman <rms@gnu.org>
11345 * NEWS: *** empty log message ***
11347 1995-10-16 Richard Stallman <rms@gnu.org>
11349 * doc/bison.1, doc/bison.rnh:
11352 1995-10-15 Richard Stallman <rms@gnu.org>
11354 * src/vmsgetargs.c, src/getargs.c:
11355 Added -n, -k, and -raw switches.
11356 (noparserflag, toknumflag, rawtoknumflag): New variables.
11358 * src/symtab.h (SALIAS):
11359 New #define for adding aliases to %token.
11360 (struct bucket): Added `alias' field.
11362 * src/reduce.c (reduce_grammar):
11363 Revise error message.
11364 (print_notices): Remove final `.' from error message.
11366 * src/reader.c (reader_output_yylsp):
11368 (readgram): Use `#if 0' around code that accepted %command
11369 inside grammar rules: The documentation doesn't allow it,
11370 and it will fail since the %command processors scan for the next %.
11371 (parse_token_decl): Extended the %token
11372 declaration to allow a multi-character symbol as an alias.
11373 (parse_thong_decl): New function.
11374 (read_declarations): Added %thong declarations.
11375 (read_declarations): Handle NOOP to deal with allowing
11376 % declarations as another means to specify the flags.
11377 (readgram): Allow %prec prior to semantics embedded in a rule.
11378 (skip_to_char, read_declarations, copy_definition)
11379 (parse_token_decl, parse_start_decl, parse_type_decl)
11380 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
11381 (get_type_name, copy_guard, copy_action, readgram)
11382 (get_type, packsymbols): Revised most error messages.
11383 Changed `fatal' to `warnxxx' to avoid aborting for error.
11384 Revised and use multiple warnxxx functions to avoid using VARARGS1.
11385 (read_declarations): Improve the error message for
11386 an invalid character. Do not abort.
11387 (read_declarations, copy_guard, copy_action): Use
11388 printable_version to avoid unprintable characters in printed output.
11389 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
11390 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
11391 Allow the type of a non-terminal can be given
11392 more than once, as long as all specifications give the same type.
11395 (output_headers, output_trailers, output, output_gram)
11396 (output_rule_data): Implement noparserflag variable.
11397 Implement toknumflag variable.
11398 (output): Call reader_output_yylsp to output LTYPESTR.
11400 * src/main.c (main):
11401 If reader sees an error, don't process the grammar.
11402 (fatals): Updated to not use VARARGS1.
11403 (printable_version, int_to_string, warn, warni, warns, warnss)
11404 (warnsss): New error reporting functions. Avoid abort for error.
11407 Added THONG and NOOP for alias processing.
11408 Added SETOPT for the new code that allows setting options with %flags.
11411 Include getopt.h. Add some extern decls.
11412 (safegetc): New function to deal with EOF gracefully.
11413 (literalchar); new function to deal with reading \ escapes.
11414 (lex): Use literalchar.
11415 (lex): Implemented "..." tokens.
11416 (literalchar, lex, parse_percent_token): Made tokenbuffer
11417 always contain the token. This includes growing the token
11418 buffer while reading an integer.
11419 (parse_percent_token): Replaced if-else statement with percent_table.
11420 (parse_percent_token): Added % declarations as another
11421 way to specify the flags -n, -l, and -r. Also added hooks for
11422 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
11423 major changes to files.c.
11424 (lex) Retain in the incoming stream a character following
11426 (skip_white_space, lex): Revised most error messages
11427 and changed fatal to warn to avoid aborting.
11428 (percent_table): Added %thong declarations.
11430 * src/gram.h: Comment changes.
11432 * src/files.c (openfiles, open_extra_files, done):
11434 and actfile file. Handle noparserflag. Both for -n switch.
11436 * src/conflicts.c (resolve_sr_conflict):
11437 Remove use of alloca.
11439 1995-06-01 Jim Meyering <meyering@gnu.org>
11441 * doc/bison.texinfo: *** empty log message ***
11443 1995-05-06 Richard Stallman <rms@gnu.org>
11445 * src/bison.s1: Comment change.
11447 1995-05-06 Richard Stallman <rms@gnu.org>
11449 * bison.simple: Comment change.
11451 1995-05-03 Richard Stallman <rms@gnu.org>
11453 * src/version.c: Version now 1.24.
11455 * src/bison.s1: Change distribution terms.
11457 * src/version.c: Version now 1.23.
11459 1995-05-03 Richard Stallman <rms@gnu.org>
11461 * doc/bison.texinfo:
11462 Rewrite "Conditions for Using Bison".
11463 Update version to 1.24.
11465 1995-05-03 Richard Stallman <rms@gnu.org>
11467 * bison.simple: Change distribution terms.
11469 1995-02-23 Richard Stallman <rms@gnu.org>
11471 * src/files.c: Test __VMS_POSIX as well as VMS.
11473 1995-02-14 Jim Meyering <meyering@gnu.org>
11475 * src/bison.s1 (__yy_memcpy):
11476 Renamed from __yy_bcopy to avoid
11477 confusion. Reverse FROM and TO arguments to be consistent with
11480 1995-02-14 Jim Meyering <meyering@gnu.org>
11482 * bison.simple (__yy_memcpy):
11483 Renamed from __yy_bcopy to avoid
11484 confusion. Reverse FROM and TO arguments to be consistent with
11487 1994-11-10 David J. MacKenzie <djm@gnu.org>
11493 * Makefile.in (DISTFILES): Include NEWS.
11495 * Makefile.in (DISTFILES):
11496 Include install-sh, not install.sh.
11498 * configure.in: Update to Autoconf v2 macro names.
11500 1994-10-05 David J. MacKenzie <djm@gnu.org>
11502 * Makefile.in: fix typo
11504 * Makefile.in (prefix, exec_prefix):
11505 Let configure set them.
11507 1994-09-28 David J. MacKenzie <djm@gnu.org>
11509 * Makefile.in: Set datadir to $(prefix)/share.
11511 1994-09-15 Richard Stallman <rms@gnu.org>
11514 Update copyright notice and GPL version.
11516 1994-09-15 Richard Stallman <rms@gnu.org>
11519 Update copyright notice and GPL version.
11521 1994-07-12 Richard Stallman <rms@gnu.org>
11523 * src/reduce.c, src/reader.c:
11526 1994-05-05 David J. MacKenzie <djm@gnu.org>
11528 * Makefile.in: entered into RCS
11530 1994-03-26 Richard Stallman <rms@gnu.org>
11532 * src/bison.s1: entered into RCS
11534 1994-03-26 Richard Stallman <rms@gnu.org>
11536 * bison.simple: entered into RCS
11538 1994-03-25 Richard Stallman <rms@gnu.org>
11540 * src/main.c: entered into RCS
11542 1994-03-24 Richard Stallman <rms@gnu.org>
11544 * src/conflicts.c: entered into RCS
11546 1994-01-02 Richard Stallman <rms@gnu.org>
11548 * Makefile.in: *** empty log message ***
11550 1993-11-21 Richard Stallman <rms@gnu.org>
11552 * src/bison.s1: *** empty log message ***
11554 1993-11-21 Richard Stallman <rms@gnu.org>
11556 * doc/bison.texinfo: entered into RCS
11558 * doc/bison.texinfo: *** empty log message ***
11560 1993-11-21 Richard Stallman <rms@gnu.org>
11562 * bison.simple: *** empty log message ***
11564 1993-10-25 David J. MacKenzie <djm@gnu.org>
11566 * doc/bison.texinfo: *** empty log message ***
11568 1993-10-19 Richard Stallman <rms@gnu.org>
11570 * src/bison.s1: *** empty log message ***
11572 1993-10-19 Richard Stallman <rms@gnu.org>
11574 * bison.simple: *** empty log message ***
11576 1993-10-14 Richard Stallman <rms@gnu.org>
11578 * src/bison.s1: *** empty log message ***
11580 1993-10-14 Richard Stallman <rms@gnu.org>
11582 * bison.simple: *** empty log message ***
11584 1993-09-14 David J. MacKenzie <djm@gnu.org>
11586 * doc/bison.texinfo: *** empty log message ***
11588 1993-09-13 Noah Friedman <friedman@gnu.org>
11590 * Makefile.in: *** empty log message ***
11592 1993-09-10 Richard Stallman <rms@gnu.org>
11594 * src/conflicts.c: *** empty log message ***
11596 * src/system.h: entered into RCS
11598 1993-09-10 Richard Stallman <rms@gnu.org>
11600 * doc/bison.1: entered into RCS
11602 1993-09-06 Noah Friedman <friedman@gnu.org>
11604 * src/version.c: entered into RCS
11606 1993-09-06 Noah Friedman <friedman@gnu.org>
11608 * Makefile.in: *** empty log message ***
11610 1993-07-30 David J. MacKenzie <djm@gnu.org>
11612 * Makefile.in: *** empty log message ***
11614 1993-07-24 Richard Stallman <rms@gnu.org>
11616 * src/bison.s1: *** empty log message ***
11618 1993-07-24 Richard Stallman <rms@gnu.org>
11620 * bison.simple: *** empty log message ***
11622 1993-07-08 David J. MacKenzie <djm@gnu.org>
11624 * Makefile.in: *** empty log message ***
11626 1993-07-04 Richard Stallman <rms@gnu.org>
11628 * src/bison.s1: *** empty log message ***
11630 1993-07-04 Richard Stallman <rms@gnu.org>
11632 * bison.simple: *** empty log message ***
11634 1993-06-26 David J. MacKenzie <djm@gnu.org>
11636 * src/getargs.c: entered into RCS
11638 1993-06-26 David J. MacKenzie <djm@gnu.org>
11640 * doc/bison.texinfo: *** empty log message ***
11642 * doc/bison.1: New file.
11644 1993-06-25 Richard Stallman <rms@gnu.org>
11646 * src/getargs.c: New file.
11648 1993-06-16 Richard Stallman <rms@gnu.org>
11650 * src/bison.s1: *** empty log message ***
11652 1993-06-16 Richard Stallman <rms@gnu.org>
11654 * bison.simple: *** empty log message ***
11656 1993-06-03 Richard Stallman <rms@gnu.org>
11658 * src/bison.s1: New file.
11660 1993-06-03 Richard Stallman <rms@gnu.org>
11662 * doc/bison.texinfo: *** empty log message ***
11664 1993-06-03 Richard Stallman <rms@gnu.org>
11666 * bison.simple: New file.
11668 1993-05-19 Richard Stallman <rms@gnu.org>
11670 * doc/bison.texinfo: New file.
11672 1993-05-07 Noah Friedman <friedman@gnu.org>
11674 * Makefile.in: *** empty log message ***
11676 1993-04-28 Noah Friedman <friedman@gnu.org>
11678 * src/reader.c: *** empty log message ***
11680 1993-04-23 Noah Friedman <friedman@gnu.org>
11682 * src/alloc.h: entered into RCS
11684 1993-04-20 David J. MacKenzie <djm@gnu.org>
11686 * src/version.c: *** empty log message ***
11688 * src/files.c, src/allocate.c:
11691 * src/reader.c: *** empty log message ***
11693 * src/lex.c: entered into RCS
11695 * src/conflicts.c: New file.
11697 * src/symtab.c: entered into RCS
11699 * src/alloc.h: New file.
11701 * src/LR0.c: entered into RCS
11703 1993-04-18 Noah Friedman <friedman@gnu.org>
11705 * src/reader.c: New file.
11707 * src/version.c: *** empty log message ***
11709 1993-04-18 Noah Friedman <friedman@gnu.org>
11711 * Makefile.in: *** empty log message ***
11713 1993-04-17 Noah Friedman <friedman@gnu.org>
11715 * Makefile.in: *** empty log message ***
11717 1993-04-15 Richard Stallman <rms@gnu.org>
11719 * src/main.c, src/files.c:
11722 1993-04-15 Noah Friedman <friedman@gnu.org>
11724 * configure.in: entered into RCS
11726 * configure.in: *** empty log message ***
11728 * configure.in: New file.
11730 1993-04-14 Richard Stallman <rms@gnu.org>
11732 * Makefile.in: New file.
11734 1993-04-13 Richard Stallman <rms@gnu.org>
11736 * src/version.c: New file.
11738 1993-03-25 Richard Stallman <rms@gnu.org>
11740 * src/output.c: entered into RCS
11742 1992-09-25 Richard Stallman <rms@gnu.org>
11744 * configure.bat: entered into RCS
11746 1992-06-22 Richard Stallman <rms@gnu.org>
11748 * src/vmsgetargs.c: entered into RCS
11750 1992-06-22 Richard Stallman <rms@gnu.org>
11752 * doc/bison.rnh: entered into RCS
11754 1992-04-20 David J. MacKenzie <djm@gnu.org>
11756 * README: entered into RCS
11758 1992-01-22 Richard Stallman <rms@gnu.org>
11760 * src/machine.h: entered into RCS
11762 1991-12-21 Richard Stallman <rms@gnu.org>
11764 * src/lalr.c, src/closure.c:
11767 1991-12-20 Richard Stallman <rms@gnu.org>
11769 * src/state.h: entered into RCS
11771 1991-12-18 Richard Stallman <rms@gnu.org>
11773 * src/print.c, src/nullable.c, src/derives.c:
11776 1991-11-03 David J. MacKenzie <djm@gnu.org>
11778 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
11781 1988-09-09 Richard Stallman <rms@gnu.org>
11783 * src/bison.hairy: entered into RCS
11785 1987-12-16 Richard Stallman <rms@gnu.org>
11787 * REFERENCES: entered into RCS
11791 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
11792 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
11794 This file is part of Bison, the GNU Compiler Compiler.
11796 Bison is free software; you can redistribute it and/or modify
11797 it under the terms of the GNU General Public License as published by
11798 the Free Software Foundation; either version 2, or (at your option)
11801 Bison is distributed in the hope that it will be useful,
11802 but WITHOUT ANY WARRANTY; without even the implied warranty of
11803 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11804 GNU General Public License for more details.
11806 You should have received a copy of the GNU General Public License
11807 along with Bison; see the file COPYING. If not, write to
11808 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
11809 Boston, MA 02111-1307, USA.