]> git.saurik.com Git - bison.git/blob - ChangeLog
* tests/atlocal.in (LDFLAGS, LIBS): New vars.
[bison.git] / ChangeLog
1 2003-02-17 Paul Eggert <eggert@twinsun.com>
2
3 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
4 * tests/testsuite.at (AT_COMPILE): Use them.
5 This fixes the testsuite problem reported by Robert Lentz in
6 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
7
8 2003-02-12 Paul Eggert <eggert@twinsun.com>
9
10 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
11 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
12 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
13 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
14 Check for malloc failure, for consistency with yacc.c.
15 (yytname_size): Remove, for consistency with yacc.c.
16
17 The bug still remains in data/lalr1.cc, as I didn't have time
18 to fix it there.
19
20 2003-02-06 Akim Demaille <akim@epita.fr>
21
22 * configure.ac (GXX): Rename as...
23 (CXX): this, to keep the original Autoconf semantics.
24 Require 2.57.
25 * data/lalr1.cc: Fix b4_copyright invocations.
26 If YYDEBUG is not defined, don't depend upon name_ being defined.
27 (location.hh): Include string and iostream.
28 (Position::filename): New member.
29 (Position::Position ()): New.
30 (operator<< (Position)): New.
31 (operator- (Position, int)): New.
32 (Location::first, Location::last): Rename as...
33 (Location::begin, Location::end): these, to mock the conventional
34 iterator names.
35 (operator<< (Location)): New.
36 * tests/atlocal.in (CXX): New.
37 * tests/testsuite.at (AT_COMPILE_CXX): New.
38 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
39 locations in a more synthetic way.
40 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
41 lalr1.cc is used.
42 Adjust the C locations to match those from Emacs: first column is
43 column 0.
44 Change all the expected results.
45 Conform to the GCS: simplify the locations when applicable.
46 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
47 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
48 these CPP macros with the m4 macros new defined by...
49 (AT_CHECK_PUSHDEFS): this, i.e.:
50 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
51 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALSm AT_LEX_PRE_ARGS)
52 New macros.
53 (AT_CHECK_POPDEFS): Undefine them.
54 (AT_CHECK_CALC_LALR1_CC): New.
55 Use it for the first lalr1.cc test.
56
57 2003-02-04 Akim Demaille <akim@epita.fr>
58
59 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
60 Location as is defined.
61
62 2003-02-04 Akim Demaille <akim@epita.fr>
63
64 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
65 name_ being defined.
66
67 2003-02-03 Paul Eggert <eggert@twinsun.com>
68
69 * src/gram.h (start_symbol): Remove unused decl.
70
71 Use more-consistent naming conventions for local vars.
72
73 * src/derives.c (derives_compute): Change type of local var from
74 int to rule_number.
75 * src/gram.c (grammar_rules_partial_print): Likewise.
76 * src/print.c (print_core): Likewise.
77 * src/reduce.c (reduce_grammar_tables): Likewise.
78
79 * src/gram.c (grammar_dump): Change name of item_number *
80 local var from r to rp.
81 * src/nullable.c (nullable_compute): Likewise.
82
83 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
84
85 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
86 for symbol or symbol_number var.
87 * src/reader.c (grammar_start_symbol_set): Likewise.
88 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
89 Likewise.
90 * src/state.c (transitions_to): Likewise.
91 * src/state.h: Likewise.
92 * src/tables.c (symbol_number_to_vector_number): Likewise.
93
94 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
95 char * var.
96
97 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
98 var.
99
100 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
101 var.
102
103 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
104 Use str, not s, for char * var. Use ch, not c, for character var.
105 Use size for size var.
106
107 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
108 char * var.
109 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
110 uniqstr var.
111 * src/uniqstr.h: Likewise.
112
113 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
114 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
115 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
116 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
117 param to have same name as that of enum, so that we don't use
118 "s" to stand for a non-state.
119
120 2003-02-02 Akim Demaille <akim@epita.fr>
121
122 * src/scan-skel.l: Scan more than one inert character per yylex
123 invocation.
124
125 2003-02-01 Paul Eggert <eggert@twinsun.com>
126
127 Version 1.875a.
128
129 * po/LINGUAS: Add ms.
130
131 2003-01-30 Akim Demaille <akim@epita.fr>
132
133 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
134
135 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
136
137 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
138 of $1.
139
140 Changes in response to error report by S. Eken: GLR mode does not
141 handle negative $ indices or $ indices in embedded rules correctly.
142 See <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
143
144 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
145 (b4_rhs_location): Ditto.
146 (yyfill): New function to copy from stack tree into array
147 incrementally.
148 (yyuserAction): Modify to allow incremental move of semantic values
149 to rhs array when in GLR mode.
150 Define YYFILL to use in user-defined actions to fill semantic array
151 as needed.
152 Remove dummy use of yystack, as there is now a guaranteed use.
153 (yydoAction): Modify to allow incremental move of semantic values
154 to rhs array when in GLR mode.
155 (yyresolveAction): Ditto.
156 (yyglrShiftDefer): Update comment.
157 (yyresolveStates): Use X == NULL for pointers, not !X.
158 (yyglrReduce): Ditto.
159 (yydoAction): Ditto
160
161 * tests/glr-regr1.at: Rename to ...
162 * tests/glr-regression.at: Add new regression test for the problems
163 described above (adapted from S. Eken).
164 Update copyright notice.
165 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
166 * tests/Makefile.am: Ditto.
167
168 2003-01-28 Paul Eggert <eggert@twinsun.com>
169
170 * data/lalr1.cc: Do not use @output_header_name@ unless
171 b4_defines_flag is set. This fixes two bugs reported by
172 Tim Van Holder in
173 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
174 and <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
175
176 2003-01-21 Paul Eggert <eggert@twinsun.com>
177
178 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
179 we don't need to worry about yyerrlab1 being reported as an
180 "unused label" by non-GCC C compilers. The downside is that if
181 locations are used then a couple of statements are duplicated each
182 time YYERROR is invoked, but the upside is that the warnings
183 should vanish.
184 (yyerrlab1): Move code to YERROR.
185 (yyerrlab2): Remove. Change uses back to yyerrlab1.
186 This reverts some of the 2002-12-27 change.
187
188 2003-01-17 Paul Eggert <eggert@twinsun.com>
189
190 * src/output.c (symbol_printers_output): Fix typo that led
191 to core dump. Problem reported by Antonio Rus in
192 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
193
194 2003-01-13 Akim Demaille <akim@epita.fr>,
195 Quoc Peyrot <chojin@lrde.epita.fr>,
196 Robert Anisko <anisko_r@lrde.epita.fr>
197
198 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
199 when the stacks contain one element, as the loop would otherwise
200 free the last state, and then use the top state (the one we just
201 popped). This means that the initial elements will not be freed
202 explicitly, as is the case in yacc.c; it is not a problem, as
203 these elements have fake values.
204
205 2003-01-11 Paul Eggert <eggert@twinsun.com>
206
207 * NEWS: %expect-violations are now just warnings, reverting
208 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
209 bootstrapping problem reported by Matthias Klose; see
210 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
211 * src/conflicts.c (conflicts_print): Likewise.
212 * tests/conflicts.at (%expect not enough, %expect too much,
213 %expect with reduce conflicts): Likewise.
214 * doc/bison.texinfo (Expect Decl): Document this. Also mention
215 that the warning is enabled if the number of conflicts changes
216 (not necessarily increases).
217
218 * src/getargs.c (version): Update copyright year.
219
220 2003-01-09 Akim Demaille <akim@epita.fr>
221
222 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
223
224 2003-01-08 Paul Eggert <eggert@twinsun.com>
225
226 * Makefile.maint (WGETFLAGS):
227 New macro, containing "-C off" to disable proxy caches.
228 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
229 (rel-check): Use $(WGET) instead of wget.
230
231 2003-01-06 Paul Eggert <eggert@twinsun.com>
232
233 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
234 the GLR paper of Scott, Johnstone and Hussain.
235
236 2003-01-04 Paul Eggert <eggert@twinsun.com>
237
238 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
239 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
240 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
241 (EXTRA_LIBRARIES): New var, for liby.a.
242 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
243 (EXTRA_SCRIPTS): New var, for yacc.
244
245 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
246 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
247 Problem reported by Nelson H. F. Beebe.
248
249 2003-01-03 Paul Eggert <eggert@twinsun.com>
250
251 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
252 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
253 when compiling Bison 1.875's `bitset bset = obstack_alloc
254 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
255
256 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
257 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
258 grow to a huge size with typical invocation.
259
260 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
261 Use the pattern recommended by Autoconf 2.57, except also protect
262 against double-definition.
263 * src/system.h: Likewise.
264 Portability issues reported by Nelson H. F. Beebe.
265
266 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
267 All uses changed. Provide a definition in both C and C++.
268 (yytrue, yyfalse): Define even if defined (__cplusplus).
269
270 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
271 Reported by Nelson H. F. Beebe.
272
273 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
274
275 2003-01-02 Paul Eggert <eggert@twinsun.com>
276
277 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
278 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
279 Bug reported by Nelson H. F. Beebe.
280
281 2003-01-01 Paul Eggert <eggert@twinsun.com>
282
283 * Version 1.875.
284
285 2002-12-30 Paul Eggert <eggert@twinsun.com>
286
287 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
288 Moved here from...
289 (<INITIAL>","): Here. This causes stray "," to be treated
290 more uniformly.
291
292 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
293 last brace in braced code when not in Yacc mode, for compatibility
294 with Bison 1.35. This resurrects the 2001-12-15 patch to
295 src/reader.c.
296
297 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
298 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
299
300 2002-12-28 Paul Eggert <eggert@twinsun.com>
301
302 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
303 that of SYM's type. This fixes Debian bug 168069, reported by
304 Thomas Olsson.
305
306 2002-12-28 Paul Eggert <eggert@twinsun.com>
307
308 Version 1.75f.
309
310 Switch back to the Yacc style of conflict reports, undoing some
311 of the 2002-07-30 change.
312 * doc/bison.texinfo (Understanding): Use Yacc style for
313 conflict reports. Also, use new way of locating rules.
314 * src/conflicts.c (conflict_report):
315 Renamed from conflict_report_yacc, removing the old
316 'conflict_report'. Translate the entire conflict report at once,
317 so that we don't assume that "," has the same interpretation in
318 all languages.
319 (conflicts_output): Use Yacc-style conflict report for each state,
320 instead of our more-complicated style.
321 (conflicts_print): Use Yacc-style conflict report, except print
322 the input file name when not emulating Yacc.
323 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
324 Conflicted Reduction, %expect not enough, %expect too much,
325 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
326 * tests/existing.at (GNU Cim Grammar): Likewise.
327 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
328
329 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
330 fatal): Don't invoke fflush; it's not needed and it might even be
331 harmful for stdout, as stdout might not be open.
332 * src/reduce.c (reduce_print): Likewise.
333
334 2002-12-27 Paul Eggert <eggert@twinsun.com>
335
336 Fix a bug where error locations were not being recorded correctly.
337 This problem was originally reported by Paul Hilfinger in
338 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
339
340 * data/yacc.c (yyparse): New local var yylerrsp, to record the
341 top of the location stack's error locations.
342 (yyerrlab): Set it. When discarding a token, push its location
343 onto yylerrsp so that we don't lose track of the error's end.
344 (yyerrlab1): Now is only the target of YYERROR, so that we can
345 properly record the location of the action that failed. For GCC
346 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
347 GCC warning about yyerrlab1 being unused if YYERROR is unused.
348 (yyerrlab2): New label, which yyerrlab now falls through to.
349 Compute the error's location by applying YYLLOC_DEFAULT to
350 the locations of all the symbols that went into the error.
351 * doc/bison.texinfo (Location Default Action): Mention that
352 YYLLOC_DEFAULT is also invoked for syntax errors.
353 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
354 Error locations include the locations of all the tokens that were
355 discarded, not just the last token.
356
357 2002-12-26 Paul Eggert <eggert@twinsun.com>
358
359 * src/files.c: Include quote.h.
360 (compute_output_file_names): Warn if we detect conflicting
361 outputs to the same file. This should catch the misunderstanding
362 exemplified by Debian Bug 165349, reported by Bruce Stephens..
363
364 * src/conflicts.c (conflicts_print): If the user specifies
365 "%expect N", report an error if there are any reduce/reduce
366 conflicts. This is what the manual says should happen.
367 This fixes Debian bug 130890, reported by Anthony DeRobertis.
368 * tests/conflicts.at (%expect with reduce conflicts): New test.
369
370 Don't use m4_include on relative file names, as it doesn't work as
371 desired if there happens to be a file with that name under ".".
372
373 * m4sugar/version.m4: Remove; it was included but it wasn't used.
374 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
375 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
376 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
377 * src/output.c (output_skeleton): Use full path names when
378 specifying a file to include; don't rely on include path, as
379 it's unreliable when the working file contains a file with
380 that name.
381
382 2002-12-25 Paul Eggert <eggert@twinsun.com>
383
384 Remove obsolete references to bison.simple and bison.hairy.
385 Problem mentioned by Aubin Mahe in
386 <http://mail.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
387 * data/glr.c: Comment fix.
388 * doc/bison.1: Remove references. Also, mention "yacc".
389
390 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
391 with -g option.
392
393 * src/parse-gram.y (declaration): Use enum "report_states" rather
394 than its numeric value 1.
395
396 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
397 opening a new one. This fixes Debian bug 165349, reported by
398 Bruce Stephens.
399
400 2002-12-24 Paul Eggert <eggert@twinsun.com>
401
402 Version 1.75e.
403
404 * Makefile.maint (cvs-update): Don't assume that the shell
405 supports $(...), as Solaris sh doesn't.
406
407 * src/parse-gram.y (lloc_default): Remove test for empty
408 nonterminals at the end, since it didn't change the result.
409
410 2002-12-24 Paul Eggert <eggert@twinsun.com>
411
412 If the user does not define YYSTYPE as a macro, Bison now declares it
413 using typedef instead of defining it as a macro. POSIX requires this.
414 For consistency, YYLTYPE is also declared instead of defined.
415
416 %union directives can now have a tag before the `{', e.g., the
417 directive `%union foo {...}' now generates the C code
418 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
419 The default union tag is `YYSTYPE', for compatibility with Solaris 9
420 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
421 instead of `yyltype'.
422
423 `yystype' and `yyltype' are now obsolescent macros instead of being
424 typedefs or tags; they are no longer documented and will be
425 withdrawn in a future release.
426
427 * data/glr.c (b4_location_type): Remove.
428 (YYSTYPE): Renamed from yystype.
429 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
430 (struct YYLTYPE): Renamed from struct yyltype.
431 (YYLTYPE): Renamed from yyltype.
432 (yyltype, yystype): New (and obsolescent) macros,
433 for backward compatibility.
434 * data/yacc.c: Likewise.
435
436 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
437 does not specify a union tag. This is for compatibility with
438 Solaris 9 yacc.
439
440 * src/parse-gram.y (add_param): 2nd arg is now char * not char
441 const *, since it is now modified by stripping surrounding { }.
442 (current_braced_code): Remove.
443 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
444 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
445 trailing " {...}". Now of type <chars>.
446 (grammar_declaration): Adjust to bundled tokens.
447 (code_content): Remove; stripping is now done by add_param.
448 (print_token_value): Print contents of bundled tokens.
449 (token_name): New function.
450
451 * src/reader.h (braced_code, current_braced_code): Remove.
452 (token_name): New decl.
453
454 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
455 token_type, not braced_code code_kind. All uses changed.
456 (SC_PRE_CODE): New state, for scanning after a keyword that
457 has (or usually has) an immediately-following braced code.
458 (token_type): New local var, to keep track of which token type
459 to return when scanning braced code.
460 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
461 <INITIAL>"%parse-param", <INITIAL>"%printer",
462 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
463 instead of returning a token type immediately.
464 (<INITIAL>"{"): Set token type.
465 (<SC_BRACED_CODE>"}"): Use it.
466 (handle_action_dollar, handle_action_at): Now returns bool
467 indicating success. Fail if ! current_rule; this prevents a core dump.
468 (handle_symbol_code_dollar, handle_symbol_code_at):
469 Remove; merge body into caller.
470 (handle_dollar, handle_at): Complain in invalid contexts.
471
472 * NEWS, doc/bison.texinfo: Document the above.
473 * NEWS: Fix years and program names in copyright notice.
474
475 2002-12-17 Paul Eggert <eggert@twinsun.com>
476
477 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
478 Reporting, Table of Symbols): Omit mentions of %lex-param and
479 %parse-param from the documentation for now.
480
481 2002-12-15 Paul Eggert <eggert@twinsun.com>
482
483 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
484 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
485 lookahead symbol, and which sets yychar in parser actions) and it
486 disagreed with the Bison documentation. Bug
487 reported by Andrew Walrond.
488
489 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
490 as the caller now does that.
491 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
492 (YYEMPTY): Parenthesize right hand side, since others use it.
493 (yyparse): Don't assume that our generated code is the only code
494 that sets yychar.
495
496 2002-12-13 Paul Eggert <eggert@twinsun.com>
497
498 Version 1.75d.
499
500 POSIX requires a "yacc" command.
501 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
502 (MOSTLYCLEANFILES): Add yacc.
503 (yacc): New rule.
504 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
505 as an alias for bison y.
506
507 * po/LINGUAS: Add da.
508
509 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
510 problem with latest <getopt.h>.
511 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
512
513 * doc/fdl.texi: Upgrade to 1.2.
514 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
515 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
516 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
517 gnulib.
518 * config/install-sh: Sync with autotools.
519
520 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
521 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
522 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
523 locations are requested.
524 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
525 locations are requested.
526
527 2002-12-12 Paul Eggert <eggert@twinsun.com>
528
529 Remove unportable casts and storage allocation tricks.
530 While we're at it, remove almost all casts, since they
531 usually aren't needed and are a sign of trouble.
532
533 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
534
535 * src/derives.c (derives_compute): Do not subtract NTOKENS from
536 the pointer DSET returned by malloc; this isn't portable.
537 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
538 Similarly for DERIVES.
539 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
540 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
541 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
542
543 * src/derives.c (derives_compute): Do not bother invoking
544 int_of_rule_number, since rule numbers are integers.
545
546 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
547 rather than XMALLOC (char, N).
548
549 * src/files.c (filename_split): Rewrite to avoid cast.
550
551 * src/gram.h (symbol_number_as_item_number,
552 item_number_as_symbol_number, rule_number_as_item_number,
553 item_number_as_rule_number):
554 Now inline functions rather than macros, to avoid casts.
555 * src/state.h (state_number_as_int): Likewise.
556 * src/tables.c (state_number_to_vector_number,
557 symbol_number_to_vector_number): Likewise.
558
559 * src/gram.h (int_of_rule_number): Remove; no longer used.
560
561 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
562 since the resulting storage is always stored into.
563
564 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
565 where it's needed.
566
567 * src/muscle_tab.c (muscle_m4_output):
568 Now inline. Return bool, not int.
569 * src/state.c (state_compare): Likewise.
570 * src/symtab.c (symbol_check_defined,
571 symbol_check_alias_consistency, symbol_pack, symbol_translation,
572 hash_compare_symbol, hash_symbol):
573 Likewise.
574 * src/uniqstr.c (uniqstr_print): Likewise.
575 * src/muscle_tab.c (muscle_m4_output_processor):
576 New function, to avoid casts.
577 * src/state.c (state_comparator, stage_hasher): Likewise.
578 * src/symtab.c (symbol_check_defined_processor,
579 symbol_check_alias_consistency_processor, symbol_pack_processor,
580 symbol_translation_processor, hash_symbol_comparator,
581 hash_symbol_hasher): Likewise.
582 * src/uniqstr.c (uniqstr_print_processor): Likewise.
583 * src/muscle_tab.c (muscles_m4_output):
584 Use new functions instead of casting old functions unportably.
585 * src/state.c (state_hash_new): Likewise.
586 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
587 symbols_token_translations_init):
588 Likewise.
589 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
590
591 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
592 var instead of casting to long, to avoid casts.
593 (prepare_states): Use MALLOC rather than alloca, so that we don't
594 have to worry about alloca.
595 * src/state.c (state_hash_lookup): Likewise.
596
597 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
598 local var instead of casting to unsigned char, to avoid casts.
599
600 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
601 STATE_ALLOC): Remove.
602 (transitions_new, errs_new, reductions_new, state_new): Use malloc
603 rather than calloc, and use offsetof to avoid allocating slightly
604 too much storage.
605 (state_new): Initialize all members.
606
607 * src/state.c (state_hash): Use unsigned accumulator, not signed.
608
609 * src/symtab.c (symbol_free): Remove; unused.
610 (symbol_get): Remove cast in lhs of assignment.
611 (symbols_do): Now static. Accept generic arguments, not
612 hashing-related ones.
613
614 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
615 (symbol_processor): Remove.
616 (symbols_do): Remove decl; now static.
617
618 * src/system.h (alloca): Remove; decl no longer needed.
619 (<stddef.h>): Include, for offsetof.
620 (<inttypes.>, <stdint.h>): Include if available.
621 (uintptr_t): New type, if system lacks it.
622 (CALLOC, MALLOC, REALLOC): New macros.
623 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
624 new macros.
625
626 * src/tables.c (table_size): Now int, to pacify GCC.
627 (table_grow, table_ninf_remap): Use signed table size.
628 (save_row): Don't bother initializing locals when not needed.
629 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
630 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
631
632 * src/vcg.h: Correct misspellings.
633
634 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
635
636
637 * src/getargs.c (getargs): Don't assume EOF == -1.
638
639 2002-12-09 Paul Eggert <eggert@twinsun.com>
640
641 Change identifier spellings to avoid collisions with names
642 that are reserved by POSIX.
643
644 Don't use names ending in _t, since POSIX reserves them.
645 For consistency, remove _e and _s endings -- they're weren't
646 needed to remove ambiguity. All uses changed.
647 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
648 turn was just renamed from struniq_t.
649 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
650 which in turn was just renamed from struniq_processor_t.
651 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
652 in turn was renamed from hash_compare_struniq_t.
653 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
654 (state_list): Renamed from state_list_t.
655 * src/assoc.h (assoc): Renamed from assoc_t.
656 * src/conflicts.c (enum conflict_resolution): Renamed from
657 enum conflict_resolution_e.
658 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
659 (rule_list): Renamed from rule_list_t.
660 * src/getargs.h (enum trace): Renamed from enum trace_e.
661 (enum report): Renamed from enum report_e.
662 * src/gram.h (item_number): Renamed from item_number_t.
663 (rule_number): Renamed from rule_number_t.
664 (struct rule_s): Remove the "rule_s" part; not used.
665 (rule): Renamed from rule_t.
666 (rule_filter): Renamed from rule_filter_t.
667 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
668 (goto_list): Renamed from goto_list_t.
669 * src/lalr.h (goto_number): Renamed from goto_number_t.
670 * src/location.h (location): Renamed from location_t.
671 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
672 and moved here from:
673 * src/muscle_tab.h (muscle_entry_t): here.
674 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
675 (rule_list): Renamed from rule_list_t.
676 * src/print_graph.c (static_graph): Renamed from graph.
677 * src/reader.h (braced_code): Renamed from braced_code_t.
678 Remove brace_code_e tag.
679 * src/relation.h (relation_node): Renamed from relation_node_t.
680 (relation_nodes): Renamed from relation_nodes_t.
681 (relation): Renamed from relation_t.
682 * src/state.h (state_number): Renamed from state_number_t.
683 (struct state): Renamed from struct state_s.
684 (state): Renamed from state_t.
685 (transitions): Renamed from transitions_t. Unused (and
686 misspelled) transtion_s tag removed.
687 (errs): Renamed from errs_t. Unused errs_s tag removed.
688 (reductions): Renamed from reductions_t. Unused tag
689 reductions_s removed.
690 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
691 (struct symbol_list): Renamed from struct symbol_list_s.
692 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
693 (struct symbol): Renamed from struct symbol_s.
694 (symbol): Renamed from symbol_t.
695 * src/tables.c (vector_number): Renamed from vector_number_t.
696 (action_number): Renamed from action_t.
697 * src/tables.h (base_number): Renamed from base_t.
698 * src/vcg.h (enum color): Renamed from enum color_e.
699 (enum textmode): Renamed from enum textmode_e.
700 (enum shape): Renamed from enum shape_e.
701 (struct colorentry): Renamed from struct colorentry_s.
702 (struct classname): Renamed from struct classname_s.
703 (struct infoname): Renamed from struct infoname_s.
704 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
705 (enum decision): Renamed from enum decision_e.
706 (enum orientation): Renamed from enum orientation_e.
707 (enum alignment): Renamed from enum alignment_e.
708 (enum arrow_mode): Renamed from enum arrow_mode_e.
709 (enum crossing_type): Renamed from enum crossing_type_e.
710 (enum view): Renamed from enum view_e.
711 (struct node): Renamed from struct node_s.
712 (node): Renamed from node_t.
713 (enum linestyle): Renamed from enum linestyle_e.
714 (enum arrowstyle): Renamed from enum arrowstyle_e.
715 (struct edge): Renamed from struct edge.
716 (edge): Renamed from edge_t.
717 (struct graph): Renamed from struct graph_s.
718 (graph): Renamed from graph_t.
719 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
720 Rename value_t -> value.
721 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
722 value_t_as_yystype -> value_as_yystype.
723
724 Don't include <errno.h> in the mainstream code, since it
725 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
726 * lib/get-errno.c, lib/get-errno.h: New files.
727 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
728 get-errno.c.
729 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
730 * src/output.c (output_skeleton): Likewise.
731 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
732 instead of errno.
733 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
734 Likewise.
735 (handle_action_dollar, handle_action_at): Likewise.
736 * src/system.h: Do not include <errno.h>.
737 (TAB_EXT): Renamed from EXT_TAB.
738 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
739
740 Avoid str[a-z]*, since <string.h> reserves that name space.
741 Change all instances of "struniq" in names to "uniqstr", and
742 likewise for "STRUNIQ" and "UNIQSTR".
743 * src/uniqstr.c: Renamed from src/struniq.c.
744 * src/uniqstr.h: Renamed from src/struniq.h.
745 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
746 * src/files.c (strsuffix): Remove; unused.
747 (concat2): Renamed from stringappend. Now static.
748 * src/files.h (strsuffix, stringappend): Remove; unused.
749 * src/parse-gram.y (<chars>): Renamed from <string>.
750 (<uniqstr>): Renamed from <struniq>.
751 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
752 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
753 (struct graph_s.expand): Renamed from struct graph_s.stretch.
754 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
755 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
756 (N_EXPAND): Renamed from N_STRETCH.
757
758 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
759 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
760 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
761 Remove; unused.
762 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
763 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
764 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
765 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
766 (BASE_MAXIMUM): Renamed from BASE_MAX.
767 (BASE_MINIMUM): Renamed from BASE_MIN.
768 (ACTION_MAX): Remove; unused.
769 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
770 Unnecessary casts removed from above defines.
771
772
773 Fix misspelling in names.
774 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
775 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
776 G_NODE_ALIGNEMENT.
777
778
779 * lib/timevar.c (timevar_report): Renamed from time_report,
780 for consistency with other names.
781 * lib/timevar.h (timevar_report): New decl.
782 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
783
784
785 Sort include-file uses.
786
787 Reorder all include files under src to be in the order "system.h".
788 then the ../lib include files in angle brackets (alphabetized),
789 then the . include files in double-quotes (alphabetized). Fix
790 dependency breakages encountered in this process, as follows:
791 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
792 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
793 * src/state.h: Include "symtab.h".
794
795 2002-12-08 Paul Eggert <eggert@twinsun.com>
796
797 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
798 since this causes problems when __file__ contains character
799 sequences like "@" that are treated specially by src/scan-skel.l.
800 Instead, just use the file's basename. This fixes the bug
801 reported by Martin Mokrejs in
802 <http://mail.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
803
804 2002-12-06 Paul Eggert <eggert@twinsun.com>
805
806 Add support for rules that do not have trailing semicolons, as
807 POSIX requires. Improve the quality of locations in Bison
808 diagnostics.
809
810 * src/location.c: Include <quotearg.h>.
811 (empty_location): Now const.
812 (location_print): New function. Follow the recommendation of the
813 GNU Coding Standards for locations that span file boundaries.
814 * src/location.h: Do not include <quotearg.h>; no longer needed.
815 (boundary): New type.
816 (location_t): Use it. This allows locations to span file boundaries.
817 All member uses changed: file -> start.file or end.file (as needed),
818 first_line -> start.line, first_column -> start.column,
819 last_line -> end.line, last_column -> end.column.
820 (equal_boundaries): New function.
821 (LOCATION_RESET, LOCATION_STEP): Remove.
822 (LOCATION_PRINT): Remove. All callers changed to use location_print.
823 (empty_location): Now const.
824 (location_print): New decl.
825 * src/parse-gram.y (lloc_default): New function, which handles
826 empty locations more accurately.
827 (YYLLOC_DEFAULT): Use it.
828 (%token COLON): Remove.
829 (%token ID_COLON): New token.
830 (rules): Use it.
831 (declarations, rules): Remove trailing semicolon.
832 (declaration, rules_or_grammar_declaration):
833 Allow empty (";") declaration.
834 (symbol_def): Remove empty actions; no longer needed.
835 (rules_or_grammar_declaration): Remove trailing semicolon.
836 (semi_colon.opt): Remove.
837 * src/reader.h: Include location.h.
838 (scanner_cursor): New decl.
839 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
840 rolling our own.
841 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
842 of *loc.
843 (STEP): Remove. No longer needed, now that adjust_location does
844 the work. All uses removed.
845 (scanner_cursor): New var.
846 (adjust_location): Renamed from extend_location. It now sets
847 *loc and adjusts the scanner cursor. All uses changed.
848 Don't bother testing for CR.
849 (handle_syncline): Remove location arg; now updates scanner cursor.
850 All callers changed.
851 (unexpected_end_of_file): Now accepts start boundary of token or
852 comment, not location. All callers changed. Update scanner cursor,
853 not the location.
854 (SC_AFTER_IDENTIFIER): New state.
855 (context_state): Renamed from c_context. All uses changed.
856 (id_loc, code_start, token_start): New local vars.
857 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
858 processing of Yacc white space and equivalents here.
859 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
860 instead of returning ID immediately, since we need to search for
861 a subsequent colon.
862 (<INITIAL>"'", "\""): Save token_start.
863 (<INITIAL>"%{", "{", "%%"): Save code_start.
864 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
865 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
866 BEGIN context_state at end, not INITIAL.
867 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
868 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
869 Return correct token start.
870 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
871 the start of a character, string or multiline comment is found.
872 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
873 Reduction): Adjust reported locations to match the more-precise
874 results now expected.
875 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
876 * tests/reduce.at (Useless Rules, Reduced Automaton,
877 Underivable Rules): Likewise.
878 * tests/regression.at (Invalid inputs): No longer `expecting ";"
879 or "|"' now that so many other tokens are allowed by the new grammar.
880
881 * src/complain.h (current_file): Remove duplicate decl;
882 current_file is now owned by files.h.
883 * src/complain.c, src/scan-gram.l: Include files.h.
884
885 2002-12-06 Paul Eggert <eggert@twinsun.com>
886
887 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
888 promotes to int; it might be unsigned int.
889 * data/yacc.c (yy_reduce_print): Likewise.
890
891 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
892 be #defined in the prologue, not in the Bison declarations.
893 This fixes Debian Bug 102878, reported by Shaul Karl.
894
895 2002-12-02 Paul Eggert <eggert@twinsun.com>
896
897 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
898 * lib/strtoul.c: New file, from gnulib.
899 This fixes a porting bug reported by Peter Klein in
900 <http://mail.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
901
902 2002-11-30 Paul Eggert <eggert@twinsun.com>
903
904 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
905 and put only a forward declaration in the prologue. This is for
906 consistency with the other scanner helper functions.
907
908 Type clashes now generate warnings, not errors, since it
909 appears that POSIX may allow some grammars with type clashes.
910 * src/reader.c (grammar_current_rule_check): Warn about
911 type clashes instead of complaining.
912 * tests/input.at (Type Clashes): Expect warnings, not complaints.
913
914 Add Yacc library, since POSIX requires it.
915 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
916 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
917 * lib/main.c, lib/yyerror.c: New files.
918
919 gram_error can be static; it need not be extern.
920 * src/reader.h (gram_error): Remove decl.
921 * src/parse-gram.y (gram_error): Now static. Add static decl.
922 (print_token_value): Omit parameter names from forward decl,
923 for consistency.
924
925 2002-11-29 Paul Eggert <eggert@twinsun.com>
926
927 * doc/bison.texinfo: Emphasize that yylex and yyerror must
928 be declared before being used. E.g., one should typically
929 declare them in the prologue. Use GNU coding style in examples.
930 Put "const" consistently after the type it modifies. Mention
931 that C99 supports "inline". Mention that yyerror traditionally
932 returns "int".
933
934 %parse-param and %lex-param now take just one argument, the
935 declaration; the argument name is deduced from the declaration.
936
937 * doc/bison.texinfo (Parser Function, Pure Calling, Error
938 Reporting, Table of Symbols): Document this.
939 * src/parse-gram.y (add_param): New function.
940 (COMMA): Remove.
941 (declaration): Implement new rule for %parse-param and %lex-param.
942 * src/scan-gram.l: "," now elicits a warning, rather than being
943 a token; this is more compatible with byacc.
944 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
945
946 2002-11-27 Paul Eggert <eggert@twinsun.com>
947
948 Rename identifiers to avoid real and potential collisions.
949
950 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
951 to avoid collision with lex macro described by Bruce Lilly in
952 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
953 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
954 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
955 * src/parse-gram.y (print_token_value): Renamed from yyprint.
956 All uses changed.
957 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
958 The name "yycontrol" violates the name space rules, and this stuff
959 wasn't being used anyway.
960 (input): Remove action; this stuff wasn't being used.
961 (gram_error): Rename local variable yylloc -> loc.
962 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
963 (YY_DECL): Don't use "yy" at start of local variables.
964 All uses changed, e.g., yylloc -> loc.
965 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
966 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
967 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
968 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
969
970 * src/parse-gram.y (gram_error): loc is now const *.
971 * src/reader.h (gram_error): Likewise.
972
973 2002-11-24 Paul Eggert <eggert@twinsun.com>
974
975 Version 1.75c.
976
977 * tests/actions.at (Actions after errors): Use an output format
978 more similar to that of the Printers and Destructors test.
979 Test the position of the ';' token too.
980 (Printers and Destructors): Likewise.
981 (Printers and Destructors: %glr-parser): Remove for now, to avoid
982 unnecessarily alarming people when the test fails.
983
984 * data/yacc.c (yyerrlab1): Move this label down, so that the
985 parser does not discard the lookahead token if the user code
986 invokes YYERROR. This change is required for POSIX conformance.
987
988 * lib/error.c: Sync with gnulib.
989
990 2002-11-22 Paul Eggert <eggert@twinsun.com>
991
992 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
993 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
994 * lib/xmalloc.c: Likewise.
995
996 2002-11-20 Paul Eggert <eggert@twinsun.com>
997
998 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
999
1000 2002-11-20 Paul Eggert <eggert@twinsun.com>
1001
1002 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
1003 should use `if (! x) abort ();' rather than `assert (x);', and
1004 anyway it's one less thing to worry about configuring.
1005
1006 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
1007 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
1008 and replace all instances of assert with abort.
1009 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
1010 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
1011
1012 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
1013 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
1014 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
1015 hash_find_entry, hash_rehash, hash_insert): Likewise.
1016 * src/conflicts.c (resolve_sr_conflict): Likewise.
1017 * src/lalr.c (set_goto_map, map_goto): Likewise.
1018 * src/nullable.c (nullable_compute): Likewise.
1019 * src/output.c (prepare_rules, token_definitions_output): Likewise.
1020 * src/reader.c (packgram, reader): Likewise.
1021 * src/state.c (state_new, state_free, state_transitions_set,
1022 state_reduction_find): Likewise.
1023 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
1024 symbol_pack): Likewise.
1025 * src/tables.c (conflict_row, pack_vector): Likewise.
1026 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
1027 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
1028 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
1029 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
1030
1031 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
1032 (ARGMATCH_CONSTRAINT): New macro.
1033 (ARGMATCH_ASSERT): Use it.
1034
1035 * src/system.h (verify): New macro.
1036 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
1037 rather than assert.
1038 * src/tables.c (tables_generate): Likewise.
1039
1040 * src/struniq.c (struniq_assert): Now returns void, and aborts
1041 if the assertion is false.
1042 (struniq_assert_p): Remove.
1043 * src/struniq.h: Likewise.
1044
1045 2002-11-18 Paul Eggert <eggert@twinsun.com>
1046
1047 * data/glr.c (yygetLRActions): Replace `yyindex' with
1048 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
1049 This fixes the regression with Sun ONE Studio 7 cc that I reported in
1050 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
1051
1052 2002-11-18 Akim Demaille <akim@epita.fr>
1053
1054 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
1055 space.
1056 From Tim Van Holder.
1057
1058 2002-11-17 Paul Eggert <eggert@twinsun.com>
1059
1060 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
1061 to "SyntaxError" for consistency with my 2002-11-15 change.
1062
1063 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
1064 not define to {}, since this breaks the common use of `YYDPRINTF
1065 ((...));' if a single statement is desired (e.g. before `else').
1066 Work around GCC warnings by surrounding corresponding calls with
1067 {} if needed.
1068 (yyhasResolvedValue): Remove unused function.
1069 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
1070 loop body.
1071 (yyreportSyntaxError): Renamed from yyreportParseError.
1072 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
1073 All uses changed.
1074 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
1075 extern when possible. Remove unused initializations.
1076
1077 2002-11-16 Akim Demaille <akim@epita.fr>
1078
1079 Augment the similarity between GLR and LALR traces.
1080
1081 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
1082 (YY_REDUCE_PRINT): New.
1083 (yyparse): Use them.
1084 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
1085 YYDPRINT here.
1086 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
1087 state reached after the reduction/recovery, since...
1088 (yyparse, yyprocessOneStack): Report the state we are entering in.
1089
1090 2002-11-16 Akim Demaille <akim@epita.fr>
1091
1092 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
1093 Add support for --trace=skeleton.
1094 * src/scan-skel.l: %option debug.
1095 Scan strings of non-@ or \n instead of character by character.
1096 (scan_skel): Handle trace_skeleton.
1097 (QPUTS): New.
1098 (@output_parser_name@, @output_header_name@): ``Restore'' their
1099 support (used to be M4 macros).
1100 * data/yacc.c: Quote larger chunks, a la glr.c.
1101 * data/lalr1.cc: Likewise.
1102 The header guards are no longer available, so use some other
1103 string than `YYLSP_NEEDED'.
1104
1105 2002-11-16 Akim Demaille <akim@epita.fr>
1106
1107 Make the ``Printers and Destructors'' test more verbose, taking
1108 `yacc.c''s behavior as (possibly wrong) reference.
1109
1110 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
1111 instead of fprint on stdout.
1112 Set and report the last_line of the symbols.
1113 Consistently display values and locations.
1114
1115 2002-11-16 Paul Eggert <eggert@twinsun.com>
1116
1117 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
1118
1119 2002-11-15 Paul Eggert <eggert@twinsun.com>
1120
1121 * tests/actions.at (Actions after errors): New test case.
1122
1123 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
1124 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
1125 tests/action.at, tests/calc.at, tests/conflicts.at,
1126 tests/cxx-type.at, tests/regression.at:
1127 "parse error" -> "syntax error" for POSIX compatibility.
1128 "parsing stack overflow..." -> "parser stack overflow" so
1129 that code matches Bison documentation.
1130
1131 2002-11-15 Akim Demaille <akim@epita.fr>
1132
1133 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
1134 take two BRACED_CODE, not two string_content.
1135 Free the scanner's obstack when we are done.
1136 (code_content): New.
1137 * tests/calc.at: Adjust.
1138 * doc/bison.texinfo: Adjust.
1139 Also, make sure to include the `,' for these declarations.
1140
1141 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
1142
1143 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
1144 definition; avoids potential autoreconf problems.
1145
1146 2002-11-15 Akim Demaille <akim@epita.fr>
1147
1148 Always check the value returned by yyparse.
1149
1150 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
1151 returned by yyparse.
1152 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
1153 Adjust calls.
1154 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
1155 returned by yyparse.
1156
1157 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1158
1159 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
1160 on input.at test.
1161
1162 2002-11-14 Paul Eggert <eggert@twinsun.com>
1163
1164 * src/output.c (output_skeleton): Call xfopen instead of
1165 duplicating xfopen's body.
1166
1167 Fix bugs reported by Nelson H. F. Beebe in
1168 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
1169
1170 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
1171 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
1172 Group compiler. Instead, use "$CC -E bar.c". Include the .h
1173 file twice in the grammar, as an extra check.
1174
1175 * tests/input.at (Torturing the Scanner): Surround the
1176 backslash-newline tests with "#if 0", to make it less likely that
1177 we'll run into compiler bugs. Bring back solitary \ inside
1178 comment, but add a closing comment to work around HP C bug. Don't
1179 test backslash-newline in C character constant.
1180
1181 2002-11-14 Akim Demaille <akim@epita.fr>
1182
1183 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
1184 status of the compiler.
1185 Calling `exit 1' is no longer needed.
1186 Reported by Nelson H. F. Beebe.
1187
1188 2002-11-14 Akim Demaille <akim@epita.fr>
1189
1190 * tests/atlocal.in (CPPFLAGS): We have config.h.
1191 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
1192 New.
1193 * tests/actions.at, tests/calc.at, tests/conflicts.at,
1194 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
1195 * tests/regression.at, tests/torture.at: Use them for all the
1196 grammars that are to be compiled.
1197 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
1198 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
1199 * doc/bison.texinfo (GLR Parsers): Document `inline'.
1200
1201 2002-11-14 Akim Demaille <akim@epita.fr>
1202
1203 * doc/bison.texinfo: Various formatting changes (alignments in
1204 samples, additional @group/@end group, GCS in samples.
1205 Use @deffn instead of simple @table to define the directives,
1206 macros, variables etc.
1207
1208 2002-11-13 Paul Eggert <eggert@twinsun.com>
1209
1210 Fix some bugs reported by Albert Chin-A-Young in
1211 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
1212
1213 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
1214 -o c"; the HP C compiler chatters during compilation.
1215 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
1216 * tests/headers.at (export YYLTYPE): Likewise.
1217
1218 * tests/input.at (Torturing the Scanner): Remove lines containing
1219 solitary backslashes, as they tickle a bug in the HP C compiler.
1220
1221 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
1222 comments, since they're not portable. Use GNU coding style.
1223
1224 2002-11-13 Akim Demaille <akim@epita.fr>
1225
1226 * data/yacc.c: Leave bigger chunks of quoted text.
1227 (YYDSYMPRINTF): New.
1228 Use it to report symbol activities.
1229 * data/glr.c (YYDSYMPRINTF): New.
1230 Use it.
1231
1232 2002-11-12 Paul Eggert <eggert@twinsun.com>
1233
1234 Version 1.75b.
1235
1236 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
1237 (yyglrReduce): Return yyok, not 0.
1238 This should avoid the enumerated-type warnings reported
1239 by Nelson H. F. Beebe in
1240 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
1241
1242 * lib/bbitset.h (BITSET_INLINE): Remove.
1243 * lib/bitset.h [! BITSET_INLINE]: Remove.
1244 (bitset_set, bitset_reset, bitset_test): Rename local vars
1245 to avoid shadowing warnings by GCC.
1246
1247 * data/glr.c (inline): Remove #define. It's the user's
1248 responsibility to #define it away, just like 'const'.
1249 This fixes one of the bugs reported by Nelson H. F. Beebe in
1250 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
1251
1252 * Makefile.maint (po-check): Scan .l and .y files instead of the
1253 .c and the .h files that they generate. This fixes the bug
1254 reported by Tim Van Holder in:
1255 <http://mail.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
1256 Look for N_ as well as for _. Try to avoid matching #define for
1257 N_ and _.
1258 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
1259 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
1260 * src/scan-gram.l: Revamp regular expressions so that " and '
1261 do not confuse xgettext.
1262
1263 * src/struniq.h (struniq_new): Do not declare the return type
1264 to be 'const'; this violates the C standard.
1265 * src/struniq.c (struniq_new): Likewise.
1266
1267 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
1268
1269 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
1270 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
1271 linker.
1272
1273 2002-11-12 Akim Demaille <akim@epita.fr>
1274
1275 * Makefile.maint: Sync with Autoconf:
1276 (local_updates): New.
1277
1278 2002-11-12 Akim Demaille <akim@epita.fr>
1279
1280 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
1281
1282 2002-11-12 Akim Demaille <akim@epita.fr>
1283
1284 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
1285 locations.
1286
1287 2002-11-12 Akim Demaille <akim@epita.fr>
1288
1289 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
1290 not yyvalue.
1291
1292 2002-11-12 Akim Demaille <akim@epita.fr>
1293
1294 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
1295 Use it to test the GLR parser.
1296
1297 2002-11-12 Akim Demaille <akim@epita.fr>
1298
1299 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
1300 defines it.
1301 * data/glr.c (yystos): New.
1302 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
1303 (YYDSYMPRINT): New.
1304 (yyval): Don't define it, it is handled via M4.
1305 (yyrecoverParseError): Free verbosely the discarded symbols.
1306 * data/yacc.c (yysymprint): Remove, rather...
1307 (b4_yysymprint_generate): invoke.
1308 * data/c.m4 (b4_yysymprint_generate): New.
1309 Accept pointers as arguments, as opposed to the version from
1310 yacc.c.
1311 (b4_yydestruct_generate): Likewise.
1312 * tests/cations.at (Printers and Destructors): Use Bison directives
1313 instead of CPP macros.
1314 Don't rely on internal details.
1315
1316 2002-11-12 Akim Demaille <akim@epita.fr>
1317
1318 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
1319 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
1320 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
1321 it against YYEMPTY and so forth), work on yytoken (i.e., set
1322 it to YYEMPTY etc.).
1323 (yydestruct): Replace with a b4_yydestruct_generate invocation.
1324 (b4_symbol_actions): Remove.
1325 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
1326 for 0, end-of-input.
1327
1328 2002-11-12 Akim Demaille <akim@epita.fr>
1329
1330 * doc/bison.texinfo (Destructor Decl): New.
1331
1332 2002-11-12 Akim Demaille <akim@epita.fr>
1333
1334 * src/tables.c (tables_generate): Use free for pointers that
1335 cannot be NULL, not XFREE.
1336 (pack_vector): Use assert, not fatal, for bound violations.
1337 * src/state.c (state_new): Likewise.
1338 * src/reader.c (reader): Likewise.
1339 * src/lalr.c (set_goto_map): Likewise.
1340 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
1341 the file name.
1342
1343 2002-11-12 Akim Demaille <akim@epita.fr>
1344
1345 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
1346 Restore.
1347 * src/scan-gram.l (last_string): Is global to the file, not to
1348 yylex.
1349 * src/parse-gram.y (input): Don't append the epilogue here,
1350 (epilogue.opt): do it here, and free the scanner's obstack.
1351 * src/reader.c (epilogue_set): Rename as...
1352 (epilogue_augment): this.
1353 * data/c.m4 (b4_epilogue): Defaults to empty.
1354
1355 2002-11-12 Akim Demaille <akim@epita.fr>
1356
1357 * src/getargs.c (long_options): Remove duplicates.
1358 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
1359 Remove.
1360 * doc/bison.rnh: Remove.
1361 * doc/bison.texinfo (VMS Invocation): Remove.
1362
1363 2002-11-12 Akim Demaille <akim@epita.fr>
1364
1365 * src/struniq.h, src/struniq.c (struniq_t): Is const.
1366 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
1367
1368 Use struniq for symbols.
1369
1370 * src/symtab.h (symbol_t): The tag member is a struniq.
1371 (symbol_type_set): Adjust.
1372 * src/symtab.c (symbol_new): Takes a struniq.
1373 (symbol_free): Don't free the tag member.
1374 (hash_compare_symbol_t, hash_symbol_t): Rename as...
1375 (hash_compare_symbol, hash_symbol): these.
1376 Use the fact that tags as struniqs.
1377 (symbol_get): Use struniq_new.
1378 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
1379 Returns a strniq.
1380 * src/reader.h (merger_list, grammar_currentmerge_set): The name
1381 and type members are struniqs.
1382 * src/reader.c (get_merge_function)
1383 (grammar_current_rule_merge_set): Adjust.
1384 (TYPE, current_type): Are struniq.
1385
1386 Use struniq for file names.
1387
1388 * src/files.h, src/files.c (infile): Split into...
1389 (grammar_file, current_file): these.
1390 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
1391 * src/reduce.c (reduce_print): Likewise.
1392 * src/getargs.c (getargs): Likewise.
1393 * src/complain.h, src/complain.c: Likewise.
1394 * src/main.c (main): Call struniqs_new early enough to use it for
1395 file names.
1396 Don't free the input file name.
1397
1398 2002-11-12 Akim Demaille <akim@epita.fr>
1399
1400 * src/symtab.c (symbol_free): Remove dead deactivated code:
1401 type_name are properly removed.
1402 Don't use XFREE to free items that cannot be NULL.
1403 * src/struniq.h, src/struniq.c: New.
1404 * src/main.c (main): Initialize/free struniqs.
1405 * src/parse-gram.y (%union): Add astruniq member.
1406 (yyprint): Adjust.
1407 * src/scan-gram.l (<{tag}>): Return a struniq.
1408 Free the obstack bit that used to store it.
1409 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
1410
1411 2002-11-11 Paul Eggert <eggert@twinsun.com>
1412
1413 Revamp to fix many (but not all) of the C- and M4-related quoting
1414 problems. Among other things, this fixes the Bison bug reported
1415 by Jan Hubicka when processing the Bash grammar; see:
1416 <http://mail.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
1417
1418 Use new @ escapes consistently. Represent brackets with @{ and @}
1419 rather than @<:@ and @:>@, since this works a bit better with dumb
1420 editors like vi. Represent @ with @@, since @ is now consistently
1421 an escape. Use @oline@ and @ofile@ rather than __oline__ and
1422 __ofile__, to avoid unexpected expansions. Similarly, use @output
1423 rather than #output.
1424
1425 * data/c.m4 (b4_copyright): Omit file name from comment, since
1426 the file name could contain "*/".
1427 (b4_synclines_flag): Don't quote the 2nd argument; it should already
1428 be quoted. All uses changed.
1429
1430 * data/glr.c: Use new @ escapes consistently.
1431 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
1432 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
1433 Remove, since they couldn't handle arbitrary characters in file
1434 names.
1435 * data/lalr1.cc: Likewise.
1436 * data/yacc.c: Likewise.
1437
1438 * src/files.c (output_infix): Remove; all uses removed.
1439 * src/files.h: Likewise.
1440
1441 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
1442 mishandled funny characters in file names, and anyway it isn't
1443 needed any more.
1444 * data/yacc.c: Likewise.
1445 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
1446
1447 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
1448 * data/yacc.c: Likewise.
1449
1450 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
1451 strings now.
1452 (muscle_init): Quote filename as a C string.
1453 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
1454 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
1455 * src/output.c (escaped_file_name_output): New function.
1456 (prepare_symbols): Quote tokens for M4.
1457 (prepare): Don't insert output_infix, output_prefix,
1458 output_parser_name, output_header_name; this is now down by scan-skel.
1459 Insert skeleton as a C string.
1460
1461 * src/output.c (user_actions_output, symbol_destructors_output,
1462 symbol_printers_output): Quote filenames for C and M4.
1463 * src/reader.c (prologue_augment, epilogue_set): Likewise.
1464
1465 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
1466 escapes other than \\ and \'; this simplifies the code.
1467 (<SC_STRING>): Likewise, for \\ and \".
1468 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
1469 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
1470 Use new escapes @{ and @} for [ and ].
1471
1472 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
1473 them with auto vars.
1474 Switch to new escape scheme, where @ is the escape character uniformly.
1475 Abort if a stray escape character is found. Avoid unbounded input
1476 buffer when parsing non-escaped text.
1477
1478 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
1479 __oline__, #output, $@, and @{ do not have unintended meanings.
1480
1481 2002-11-09 Paul Eggert <eggert@twinsun.com>
1482
1483 Fix the test failure due to GCC warnings described in
1484 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
1485 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
1486 evaluate to 0 if it's impossible for NINF to be in the respective
1487 table.
1488 (yygetLRActions, yyrecoverParseError): Use them.
1489
1490 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
1491 counted in the token inserted at end of file. Now takes
1492 location_t *, not location_t, so that the location can be
1493 adjusted. All uses changed.
1494
1495 * tests/regression.at (Invalid inputs): Adjust wording in
1496 diagnostic to match the new behavior.
1497
1498 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
1499 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
1500 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
1501 abort ();'. This reduces the runtime of the "Many lookaheads"
1502 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
1503 GCC 3.2.
1504
1505 2002-11-07 Paul Eggert <eggert@twinsun.com>
1506
1507 * src/parse-gram.y (CHARACTER): Remove unused token.
1508 All uses removed.
1509
1510 * src/scan-gram.l: Remove stack option. We no longer use the
1511 stack, since the stack was never deeper than 1; instead, use the
1512 new auto var c_context to record the stacked value.
1513
1514 Remove nounput option. At an unexpected end of file, we now unput
1515 the minimal input necessary to end cleanly; this simplifies the
1516 code.
1517
1518 Avoid unbounded token sizes where this is easy.
1519
1520 (unexpected_end_of_file): New function.
1521 Use it to systematize the error message on unexpected EOF.
1522 (last-string): Now auto, not static.
1523 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
1524 (scanner_last_string_free): Remove; not used.
1525 (percent_percent_count): Move decl to just before use.
1526 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
1527 not the (never otherwised-used) CHARACTER.
1528
1529 2002-11-07 Akim Demaille <akim@epita.fr>
1530
1531 Let yyerror always receive the msg as last argument, so that
1532 yyerror can be variadic.
1533
1534 * data/yacc.c (b4_yyerror_args): New.
1535 Use it when calling yyerror.
1536 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
1537 Use it when calling yyerror.
1538 * doc/bison.texinfo (Error Reporting): Adjust.
1539 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
1540 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
1541
1542 2002-11-06 Akim Demaille <akim@epita.fr>
1543
1544 #line should have quoted strings.
1545 Ideally, this should be done by m4_quotearg.
1546
1547 * src/scan-skel.l: Include quotearg.h.
1548 Quote __ofile__.
1549 * src/output.c (symbol_printers_output)
1550 (symbol_destructors_output): Quote the file name.
1551
1552 2002-11-06 Akim Demaille <akim@epita.fr>
1553
1554 * tests/regression.at (Invalid inputs): Adjust to the recent
1555 messages.
1556
1557 2002-11-06 Akim Demaille <akim@epita.fr>
1558
1559 Restore --no-lines.
1560 Reported by Jim Kent.
1561
1562 * data/c.m4 (b4_syncline): New.
1563 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
1564 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
1565 * src/output.c (user_actions_output): Likewise.
1566 (prepare): Define 'b4_synclines_flag'.
1567 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
1568
1569 2002-11-06 Akim Demaille <akim@epita.fr>
1570
1571 * src/main.c (main): Free `infile'.
1572 * src/scan-gram.l (handle_syncline): New.
1573 Recognize `#line'.
1574 * src/output.c (user_actions_output, symbol_destructors_output)
1575 (symbol_printers_output): Use the location's file name, not
1576 infile.
1577 * src/reader.c (prologue_augment, epilogue_set): Likewise.
1578
1579 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1580
1581 * src/tables.c (matching_state): Don't allow states to match if
1582 either has GLR conflict entries.
1583
1584 2002-11-05 Paul Eggert <eggert@twinsun.com>
1585
1586 * src/scan-gram.l: Use more accurate diagnostics, e.g.
1587 "integer out of range" rather than "invalid value".
1588 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
1589 accordingly.
1590
1591 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
1592 Also, remove one static variable in the scanner.
1593
1594 * src/scan-gram.l (braces_level): Now auto, not static.
1595 Initialize to zero if the compiler is being picky.
1596 (INITIAL): Clear braces_level instead of incrementing it.
1597 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
1598 as POSIX 1003.1-2001 requires.
1599 * src/system.h (IF_LINT): New macro, taken from coreutils.
1600 * configure.ac: Define "lint" if --enable-gcc-warnings.
1601
1602 2002-11-05 Akim Demaille <akim@epita.fr>
1603
1604 * src/scan-gram.l: When it starts with `%', complain about the
1605 whole directive, not just that `invalid character: %'.
1606
1607 2002-11-04 Akim Demaille <akim@epita.fr>
1608
1609 * Makefile.maint: Update from Autoconf.
1610 (update, cvs-update, po-update, do-po-update): New.
1611
1612 2002-11-04 Akim Demaille <akim@epita.fr>
1613
1614 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
1615 and yyerror.
1616 Have yyerror `use' its arguments.
1617 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
1618 returns true when location & yacc & pure & parse-param.
1619 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
1620
1621 2002-11-04 Akim Demaille <akim@epita.fr>
1622
1623 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
1624 clashes.
1625 * src/scan-gram.l: Use [\'] instead of ['] to pacify
1626 font-lock-mode.
1627 Use complain_at.
1628 Use quote, not quote_n since LOCATION_PRINT no longer uses the
1629 slot 0.
1630
1631 2002-11-03 Paul Eggert <eggert@twinsun.com>
1632
1633 * src/reader.c (get_merge_function, grammar_current_rule_check):
1634 Use consistent diagnostics for reporting type name clashes.
1635 Quote the types with <>, for consistency with Yacc.
1636 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
1637
1638 2002-11-03 Akim Demaille <akim@epita.fr>
1639
1640 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
1641 New.
1642 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
1643 (b4_parse_param): Remove.
1644 Use b4_identification.
1645 Propagate b4_pure_args where needed to pass them to yyerror.
1646 * data/glr.m4 (b4_parse_param): Remove.
1647 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
1648 (b4_lpure_formals): New.
1649 Use b4_identification.
1650 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
1651 b4_user_formals and b4_user_args.
1652 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
1653 (yyreportAmbiguity): When using a pure parser, also need
1654 the location, and the parse-params.
1655 Adjust callers.
1656 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
1657 When using a pure parser, also need the parse-params.
1658 Adjust callers.
1659 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
1660 (%pure-parser + %parse-param) LALR and GLR parsers.
1661 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
1662 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
1663 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
1664 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
1665 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
1666 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
1667 * doc/bison.texinfo: Untabify the whole file.
1668 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
1669 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
1670 (Error Reporting): Adjust to these new directives.
1671 Document %error-verbose, deprecate YYERROR_VERBOSE.
1672
1673 2002-11-03 Akim Demaille <akim@epita.fr>
1674
1675 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
1676 AT_CHECK_CALC_GLR invocations to use % directives, instead of
1677 command line options.
1678 * tests/cxx-type.at: Formatting changes.
1679
1680 2002-11-03 Paul Eggert <eggert@twinsun.com>
1681
1682 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
1683 to count columns correctly, and to check for invalid inputs.
1684
1685 Use mbsnwidth to count columns correctly. Account for tabs, too.
1686 Include mbswidth.h.
1687 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
1688 (extend_location): New function.
1689 (YY_LINES): Remove.
1690
1691 Handle CRLF in C code rather than in Lex code.
1692 (YY_INPUT): New macro.
1693 (no_cr_read): New function.
1694
1695 Scan UCNs, even though we don't fully handle them yet.
1696 (convert_ucn_to_byte): New function.
1697
1698 Handle backslash-newline correctly in C code.
1699 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
1700 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
1701 all uses changed.
1702 (tag, splice): New EREs. Do not allow NUL or newline in tags.
1703 Use {splice} wherever C allows backslash-newline.
1704 YY_STEP after space, newline, vertical-tab.
1705 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
1706
1707 (letter, id): Don't assume ASCII; e.g., spell out a-z.
1708
1709 ({int}, handle_action_dollar, handle_action_at): Check for integer
1710 overflow.
1711
1712 (YY_STEP): Omit trailing semicolon, so that it's more like C.
1713
1714 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
1715 as well as \000. Check for UCHAR_MAX, not 255.
1716 Allow \x with an arbitrary positive number of digits, as in C.
1717 Check for overflow here.
1718 Allow \? and UCNs, for compatibility with C.
1719
1720 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
1721 with quote slot used by complain_at.
1722
1723 * tests/input.at: Add tests for backslash-newline, m4 quotes
1724 in symbols, long literals, and funny escapes in strings.
1725
1726 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
1727 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
1728 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
1729 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
1730 * m4/mbswidth.m4: New file, from GNU coreutils.
1731
1732 * doc/bison.texinfo (Grammar Outline): Document // comments.
1733 (Symbols): Document that trigraphs have no special meaning in Bison,
1734 nor is backslash-newline allowed.
1735 (Actions): Document that trigraphs have no special meaning.
1736
1737 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
1738 no longer used.
1739
1740 2002-11-02 Paul Eggert <eggert@twinsun.com>
1741
1742 * src/reader.c: Don't include quote.h; not needed.
1743 (get_merge_function): Reword warning to be consistent with
1744 type clash diagnostic in grammar_current_rule_check.
1745
1746 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
1747 bug in trigraph handling.
1748
1749 * src/output.c (prepare_symbols): When printing token names,
1750 escape "[" as "@<:@" and likewise for "]".
1751
1752 * src/system.h (errno): Remove declaration, as we are now
1753 assuming C89 or better, and C89 guarantees errno.
1754
1755 2002-10-30 Paul Eggert <eggert@twinsun.com>
1756
1757 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
1758 Check for close failures.
1759 * src/files.h (xfclose): Return void, not int, since it always
1760 returned zero.
1761 * src/files.c (xfclose): Likewise. Report I/O error if ferror
1762 indicates one.
1763 * src/output.c (output_skeleton): Use xfclose rather than fclose
1764 and ferror. xfclose now checks ferror.
1765
1766 * data/glr.c (YYLEFTMOST_STATE): Remove.
1767 (yyreportTree): Use a stack-based leftmost state. This avoids
1768 our continuing battles with bogus warnings about initializers.
1769
1770 2002-10-30 Akim Demaille <akim@epita.fr>
1771
1772 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
1773 #if.
1774
1775 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1776
1777 * tests/glr-regr1.at: New test for reported regressions.
1778 * tests/testsuite.at: Add glr-regr1.at test.
1779 * tests/Makefile.am: Add glr-regr1.at test.
1780
1781 2002-10-24 Paul Eggert <eggert@twinsun.com>
1782
1783 Version 1.75a.
1784
1785 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
1786 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
1787 we use malloc. Don't assume 'A' through 'Z' are contiguous.
1788 Don't assume strdup exists; POSIX says its an XSI extension.
1789 Check for buffer overflow on input.
1790
1791 2002-10-24 Akim Demaille <akim@epita.fr>
1792
1793 * src/output.c (output_skeleton): Don't disable M4sugar comments
1794 too soon: it results in comments being expanded.
1795 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
1796 first output.
1797
1798 2002-10-24 Akim Demaille <akim@epita.fr>
1799
1800 * data/yacc.c (m4_int_type): New.
1801 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
1802 char' as only yacc.c wants K&R portability.
1803 * data/glr.c (yysigned_char): Remove.
1804 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
1805 Reported by Quoc Peyrot.
1806
1807 2002-10-23 Paul Eggert <eggert@twinsun.com>
1808
1809 * src/main.c (main): With --trace=time, report times even if a
1810 non-fatal error occurs. Formerly, the times were reported in some
1811 such cases but not in others.
1812 * src/reader.c (reader): Just return if a complaint has been issued,
1813 instead of exiting, so that 'main' can report times.
1814
1815 2002-10-22 Akim Demaille <akim@epita.fr>
1816
1817 * src/system.h: Include sys/types.
1818 Reported by Bert Deknuydt.
1819
1820 2002-10-23 Paul Eggert <eggert@twinsun.com>
1821
1822 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
1823 Suggested by Art Haas.
1824
1825 2002-10-22 Paul Eggert <eggert@twinsun.com>
1826
1827 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
1828 decl; not needed any more.
1829 * src/main.c (main): Use return to exit, undoing yesterday's change.
1830 The last OS that we could find where this wouldn't work is
1831 SunOS 3.5, and that's too old to worry about now.
1832
1833 * data/glr.c (struct yyltype): Define members even when not
1834 doing locations. This is more consistent with yacc.c, and it
1835 works around the following bug reports:
1836 http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
1837 http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
1838
1839 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
1840 @acronym consistently. Standardize on "Yacc" instead of "YACC",
1841 "Algol" instead of "ALGOL". Give a bit more history about BNF.
1842
1843 2002-10-22 Akim Demaille <akim@epita.fr>
1844
1845 * data/README: New.
1846
1847 2002-10-21 Paul Eggert <eggert@twinsun.com>
1848
1849 Be consistent about 'bool'; the old code used an enum in one
1850 module and an int in another, and this violates the C standard.
1851 * m4/stdbool.m4: New file, from coreutils 4.5.3.
1852 * configure.ac (AC_HEADER_STDBOOL): Add.
1853 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
1854 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
1855 * src/symtab.c (hash_compare_symbol_t): Likewise.
1856 * src/system.h (bool, false, true): Use a definition consistent
1857 with ../lib/hash.c. All uses changed.
1858
1859 * src/complain.c (warning_issued): Renamed from warn_message_count,
1860 so that we needn't worry about integer overflow (!).
1861 Now of type bool. All uses changed.
1862 (complaint_issued): Renamed from complain_message_count; likewise.
1863
1864 * src/main.c (main): Use exit to exit with failure.
1865
1866 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
1867 rather than 1 and 0.
1868 * src/main.c (main): Likewise.
1869 * src/getargs.c (getargs): Likewise.
1870 * src/reader.c (reader): Likewise.
1871
1872 * src/getarg.c (getargs): Remove duplicate code for
1873 "Try `bison --help'".
1874
1875 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
1876 What was that "2" for?
1877
1878 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
1879 * src/getargs.c (usage): Likewise.
1880
1881 * src/getargs.c (getargs): When there are too few operands, report
1882 the last one. When there are too many, report the first extra
1883 one. This is how diffutils does it.
1884
1885 2002-10-20 Paul Eggert <eggert@twinsun.com>
1886
1887 Remove K&R vestiges.
1888 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
1889 * src/complain.c (VA_START): Remove. Assume prototypes.
1890 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
1891 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
1892 fatal): Assume prototypes.
1893 * src/complain.h: Assume prototypes.
1894 * src/system.h (PARAMS): Remove.
1895 Include <limits.h> unconditionally, since it's guaranteeed even
1896 for a freestanding C89 compiler.
1897 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
1898 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
1899
1900 2002-10-20 Akim Demaille <akim@epita.fr>
1901
1902 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
1903 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
1904 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
1905 (yyresolveStates, yyresolveAction, yyresolveStack)
1906 (yyprocessOneStack): Use them.
1907 (yy_reduce_print): New.
1908 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
1909
1910 2002-10-20 Akim Demaille <akim@epita.fr>
1911
1912 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
1913 arguments and output `void'.
1914 (b4_c_function): Rename as...
1915 (b4_c_function_def): this.
1916 (b4_c_function_decl, b4_c_ansi_function_def)
1917 (b4_c_ansi_function_decl): New.
1918 Change the interpretation of the arguments: before `int, foo', now
1919 `int foo, foo'.
1920 * data/yacc.c (yyparse): Prototype and define thanks to these.
1921 Adjust b4_c_function_def uses.
1922 * data/glr.c (yyparse): Likewise, but ANSI only.
1923
1924 2002-10-20 Akim Demaille <akim@epita.fr>
1925
1926 * src/output.c (prepare): Move the definition of `tokens_number',
1927 `nterms_number', `undef_token_number', `user_token_number_max'
1928 to...
1929 (prepare_tokens): Here.
1930 (prepare_tokens): Rename as...
1931 (prepare_symbols): this.
1932 (prepare): Move the definition of `rules_number' to...
1933 (prepare_rules): here.
1934 (prepare): Move the definition of `last', `final_state_number',
1935 `states_number' to...
1936 (prepare_states): here.
1937 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
1938
1939 2002-10-20 Akim Demaille <akim@epita.fr>
1940
1941 * src/tables.h, src/tables.c, src/output.c: Comment changes.
1942
1943 2002-10-20 Akim Demaille <akim@epita.fr>
1944
1945 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
1946 * data/c.m4: here.
1947
1948 2002-10-20 Akim Demaille <akim@epita.fr>
1949
1950 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
1951 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
1952 `pair'.
1953 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
1954 `name' to...
1955 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
1956 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
1957 These.
1958
1959 2002-10-19 Paul Eggert <eggert@twinsun.com>
1960
1961 Do not create a temporary file, as that involves security and
1962 cleanup headaches. Instead, use a pair of pipes.
1963 Derived from a suggestion by Florian Krohm.
1964 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
1965 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
1966 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
1967 (BISON_PREREQ_SUBPIPE): Add.
1968 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
1969 Add subpipe.h, subpipe.c.
1970 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
1971 * po/POTFILES.in: Add lib/subpipe.c.
1972 * src/output.c: Include "subpipe.h".
1973 (m4_invoke): Remove decl.
1974 (scan_skel): New decl.
1975 (output_skeleton): Use pipe rather than temporary file for m4 input.
1976 Check that m4sugar.m4 is readable, to avoid deadlock.
1977 Check for pipe I/O error.
1978 * src/scan-skel.l (readpipe): Remove decl.
1979 (scan_skel): New function, to be used in place of m4_invoke.
1980 Read from stream rather than file.
1981
1982 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
1983 float, as this generates a warning on Solaris 8 + GCC 3.2 with
1984 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
1985 this generates a more-accurate value anyway.
1986
1987 * lib/timevar.c (timervar_accumulate): Rename locals to
1988 avoid confusion with similarly-named more-global.
1989 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
1990
1991 * src/output.c (prepare): Use xstrdup to convert char const *
1992 to char *, to avoid GCC warning.
1993
1994 2002-10-19 Akim Demaille <akim@epita.fr>
1995
1996 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
1997 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
1998 Use them to have `calc.y' ready for %pure-parser.
1999 * data/yacc.c (YYLEX): Pass a yylex return type to
2000 b4_c_function_call.
2001
2002 2002-10-19 Akim Demaille <akim@epita.fr>
2003
2004 Prototype support of %lex-param and %parse-param.
2005
2006 * src/parse-gram.y: Add the definition of the %lex-param and
2007 %parse-param tokens, plus their rules.
2008 Drop the `_' version of %glr-parser.
2009 Add the "," token.
2010 * src/scan-gram.l (INITIAL): Scan them.
2011 * src/muscle_tab.c: Comment changes.
2012 (muscle_insert, muscle_find): Rename `pair' as `probe'.
2013 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
2014 (muscle_entry_s): The `value' member is no longer const.
2015 Adjust all dependencies.
2016 * src/muscle_tab.c (muscle_init): Adjust: use
2017 MUSCLE_INSERT_STRING.
2018 Initialize the obstack earlier.
2019 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
2020 (muscle_pair_list_grow): New.
2021 * data/c.m4 (b4_c_function_call, b4_c_args): New.
2022 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
2023 * tests/calc.at: Use %locations, not --locations.
2024 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
2025
2026 2002-10-19 Akim Demaille <akim@epita.fr>
2027
2028 * src/getargs.c (usage): Take status as argument and exit
2029 accordingly.
2030 Report the traditional `Try ... --help' message when status != 0.
2031 (usage, version): Don't take a FILE * as arg, it is pointless.
2032 (getargs): When there is an incorrect number of arguments, make it
2033 an error, and report it GNUlically thanks to `usage ()'.
2034
2035 2002-10-18 Paul Eggert <eggert@twinsun.com>
2036
2037 * data/glr.c (yyreportParseError): Don't assume that sprintf
2038 yields the length of the printed string, as this is not true
2039 on SunOS 4.1.4. Reported by Peter Klein.
2040
2041 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
2042 * tests/conflicts.at (%nonassoc and eof): Likewise.
2043 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
2044
2045 2002-10-17 Akim Demaille <akim@epita.fr>
2046
2047 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
2048 * src/getargs.c (trace_types, trace_args): Adjust.
2049 * src/reader.c (grammar_current_rule_prec_set)
2050 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
2051 Standardize error messages.
2052 And s/@prec/%prec/!
2053 (reader): Use trace_flag to enable scanner/parser debugging,
2054 instead of an adhoc scheme.
2055 * src/scan-gram.l: Remove trailing debugging code.
2056
2057 2002-10-16 Paul Eggert <eggert@twinsun.com>
2058
2059 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
2060 MUSCLE_TAB_H.
2061
2062 * NEWS: Officially drop support for building Bison with K&R C,
2063 since it didn't work anyway and it's not worth worrying about.
2064 * Makefile.maint (wget_files): Remove ansi2knr.c.
2065 (ansi2knr.c-url_prefix): Remove.
2066 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
2067 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
2068 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
2069
2070 2002-10-15 Paul Eggert <eggert@twinsun.com>
2071
2072 Stop using the "enum_" trick for K&R-style function definitions;
2073 it confused me, and I was the author! Instead, assume that people
2074 who want to use K&R C compilers (when using these modules in GCC,
2075 perhaps?) will run ansi2knr.
2076
2077 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
2078 All uses of "enum_" changed to "enum ".
2079 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
2080 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
2081
2082 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
2083 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
2084 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
2085 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
2086 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
2087 abitset_not, abitset_ones, abitset_or, abitset_or_and,
2088 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
2089 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
2090 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
2091 Use function prototypes; this removes the need for declaring
2092 static functions simply to provide their prototypes.
2093 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
2094 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
2095 bitset_count_, bitset_create, bitset_dump, bitset_first,
2096 bitset_free, bitset_init, bitset_last, bitset_next,
2097 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
2098 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
2099 bitset_print, bitset_release_memory, bitset_toggle_,
2100 bitset_type_choose, bitset_type_get, bitset_type_name_get,
2101 debug_bitset): Likewise.
2102 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
2103 * lib/bitset_stats.c (bitset_log_histogram_print,
2104 bitset_percent_histogram_print, bitset_stats_and,
2105 bitset_stats_and_cmp, bitset_stats_and_or,
2106 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
2107 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
2108 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
2109 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
2110 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
2111 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
2112 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
2113 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
2114 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
2115 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
2116 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
2117 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
2118 bitset_stats_zero): Likewise.
2119 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
2120 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
2121 bitsetv_dump, debug_bitsetv): Likewise.
2122 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
2123 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
2124 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
2125 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
2126 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
2127 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
2128 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
2129 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
2130 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
2131 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
2132 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
2133 Likewise.
2134 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
2135 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
2136 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
2137 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
2138 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
2139 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
2140 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
2141 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
2142 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
2143 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
2144 lbitset_xor_cmp, lbitset_zero): Likewise.
2145
2146 2002-10-14 Akim Demaille <akim@epita.fr>
2147
2148 Version 1.75.
2149
2150 2002-10-14 Akim Demaille <akim@epita.fr>
2151
2152 * tests/Makefile.am (maintainer-check-posix): New.
2153
2154 2002-10-14 Akim Demaille <akim@epita.fr>
2155
2156 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
2157 member.
2158
2159 2002-10-14 Akim Demaille <akim@epita.fr>
2160
2161 * src/tables.c (table_ninf_remap): base -> tab.
2162 Reported by Matt Rosing.
2163
2164 2002-10-14 Paul Eggert <eggert@twinsun.com>
2165
2166 * tests/action.at, tests/calc.at, tests/conflicts.at,
2167 tests/cxx-type.at, tests/headers.at, tests/input.at,
2168 tests/regression.at, tests/synclines.at, tests/torture.at:
2169 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
2170 so that the tests still work even if POSIXLY_CORRECT is set.
2171 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
2172
2173 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
2174 for portability to K&R hosts. Fix typo: signed char is guaranteed
2175 only to 127, not to 128.
2176 * data/glr.c (yysigned_char): New type.
2177 * data/yacc.c (yysigned_char): Likewise.
2178 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
2179
2180 2002-10-13 Paul Eggert <eggert@twinsun.com>
2181
2182 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
2183 true due to limited range of data type" warning from GCC.
2184
2185 * data/c.m4 (b4_token_defines): Protect against double-inclusion
2186 by wrapping enum yytokentype's definition inside #ifndef
2187 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
2188
2189 2002-10-13 Akim Demaille <akim@epita.fr>
2190
2191 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
2192 Un yy- yyrhs to avoid the name clash with the global YYRHS.
2193
2194 2002-10-13 Akim Demaille <akim@epita.fr>
2195
2196 * Makefile.maint: Update from Autoconf 2.54.
2197 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
2198
2199 2002-10-13 Akim Demaille <akim@epita.fr>
2200
2201 * src/print.c (print_state): Separate the list of solved conflicts
2202 from the other items.
2203 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
2204
2205 2002-10-13 Akim Demaille <akim@epita.fr>
2206
2207 Let nondeterministic skeletons be usable with deterministic
2208 tables.
2209
2210 With the patch, GAWK compiled by GCC without -O2 passes its test
2211 suite using a GLR parser driven by LALR tables. It fails with -O2
2212 because `struct stat' gives two different answers on my machine:
2213 88 (definition of an auto var) and later 96 (memset on this var).
2214 Hence the stack is badly corrumpted. The headers inclusion is to
2215 blame: if I move the awk.h inclusion before GLR's system header
2216 inclusion, the two struct stat have the same size.
2217
2218 * src/tables.c (pack_table): Always create conflict_table.
2219 (token_actions): Always create conflict_list.
2220 * data/glr.c (YYFLAG): Remove, unused.
2221
2222 2002-10-13 Akim Demaille <akim@epita.fr>
2223
2224 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
2225 (O0FLAGS): New.
2226 (VALGRIND, GXX): New.
2227 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
2228 * tests/bison.in: Run $PREBISON a pre-command.
2229 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
2230 (maintainer-check-g++): New.
2231 * Makefile.am (maintainer-check): New.
2232
2233 2002-10-13 Akim Demaille <akim@epita.fr>
2234
2235 * data/glr.c: Formatting changes.
2236 Tweak some trace messages to match yacc.c's.
2237
2238 2002-10-13 Akim Demaille <akim@epita.fr>
2239
2240 GLR parsers sometimes raise parse errors instead of performing the
2241 default reduction.
2242 Reported by Charles-Henry de Boysson.
2243
2244 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
2245 check the length of the traces when %glr.
2246 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
2247 GLR's traces.
2248 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
2249 Test GLR parsers.
2250 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
2251 (yyltype): Remove the yy prefix from the member names.
2252 (yytable): Complete its comment.
2253 (yygetLRActions): Map error action number from YYTABLE from
2254 YYTABLE_NINF to 0.
2255 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
2256 (which was a bug: it should have been YYTABEL_NINF, and yet it was
2257 not satisfying as we could compare an YYACTION computed from
2258 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
2259 only value for error actions.
2260 (yyreportParseError): In verbose parse error messages, don't issue
2261 `error' in the list of expected tokens.
2262 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
2263 next action to perform to match glr.c's decoding.
2264 (yytable): Complete its comment.
2265
2266 2002-10-13 Paul Eggert <eggert@twinsun.com>
2267
2268 Fix problem reported by Henrik Grubbstroem in
2269 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
2270 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
2271 because the Bison parser reads the second action before reducing
2272 the first one.
2273 * src/scan-gram.l (rule_length): New static var.
2274 Use it to keep track of the rule length in the scanner, since
2275 we can't expect the parser to be in lock-step sync with the scanner.
2276 (handle_action_dollar, handle_action_at): Use this var.
2277 * tests/actions.at (Exotic Dollars): Test for the problem.
2278
2279 2002-10-12 Paul Eggert <eggert@twinsun.com>
2280
2281 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
2282 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
2283 Include <sys/time.h> when checking for clock_t and struct tms.
2284 Use same include order as source.
2285 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
2286 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
2287
2288 * lib/timevar.c: Update copyright date and clarify comments.
2289 (get_time) [IN_GCC]: Keep the GCC version for reference.
2290
2291 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
2292 GCC version as of today, then merge Bison's changes.
2293 Change "GCC" to "Bison" in copyright notice. timevar.def's
2294 author is Akim, so change that too.
2295
2296 * src/reader.c (grammar_current_rule_check):
2297 Don't worry about the default action if $$ is untyped.
2298 Prevents bogus warnings reported by Jim Gifford in
2299 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
2300
2301 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
2302 * data/glr.c, data/lalr1.cc, data/yacc.c:
2303 Output token definitions before the first part of user declarations.
2304 Fixes compatibility problem reported by Jim Gifford for kbd in
2305 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
2306
2307 2002-10-11 Paul Eggert <eggert@twinsun.com>
2308
2309 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
2310 (yyparse): here. This undoes some of the 2002-07-25 change.
2311 Compatibility problem reported by Ralf S. Engelschall with
2312 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
2313
2314 2002-10-11 Akim Demaille <akim@epita.fr>
2315
2316 * tests/regression.at Characters Escapes): New.
2317 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
2318 characters.
2319 Reported by Jan Nieuwenhuizen.
2320
2321 2002-10-11 Akim Demaille <akim@epita.fr>
2322
2323 * po/id.po: New.
2324
2325 2002-10-10 Paul Eggert <eggert@twinsun.com>
2326
2327 Portability fixes for bitsets; this also avoids several GCC
2328 warnings.
2329
2330 * lib/abitset.c: Include <stddef.h>, for offsetof.
2331 * lib/lbitset.c: Likewise.
2332
2333 * lib/abitset.c (abitset_bytes): Return a size that is aligned
2334 properly for vectors of objects. Do not assume that adding a
2335 header size to a multiple of a word size yields a value that is
2336 properly aligned for the whole union.
2337 * lib/bitsetv.c (bitsetv_alloc): Likewise.
2338
2339 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
2340 unique names for structures.
2341 * lib/ebitset.c (ebitset_bytes): Likewise.
2342 * lib/lbitset.c (lbitset_bytes): Likewise.
2343
2344 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
2345 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
2346 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
2347 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
2348 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
2349 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
2350 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
2351 to improve the type-checking that GCC can do.
2352 * lib/bitset.c (bitset_op4_cmp): Likewise.
2353 * lib/bitset_stats.c (bitset_stats_count,
2354 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
2355 bitset_stats_copy, bitset_stats_disjoint_p,
2356 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
2357 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
2358 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
2359 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
2360 bitset_stats_and_or_cmp, bitset_stats_andn_or,
2361 bitset_stats_andn_or_cmp, bitset_stats_or_and,
2362 bitset_stats_or_and_cmp): Likewise.
2363 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
2364 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
2365 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
2366 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
2367
2368 * lib/abitset.h: Include bitset.h, not bbitset.h.
2369 * lib/ebitset.h: Likewise.
2370 * lib/lbitset.h: Likewise.
2371
2372 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
2373 All instances of parameters of type enum bitset_opts are now of
2374 type enum_bitset_opts, to conform to the C Standard, and similarly
2375 for enum_bitset_type.
2376 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
2377 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
2378
2379 Do not use "struct bitset_struct" to mean different things in
2380 different modules. Not only is this confusing, it violates
2381 the C Standard, which requires that structure types in different
2382 modules must be compatible if one is to be passed to the other.
2383 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
2384 All instances of "struct bitset_struct *" replaced with "bitset".
2385 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
2386 (union bitset_union, struct abitset_struct, struct ebitset_struct,
2387 struct lbitset_struct, struct bitset_stats_struct): New types.
2388 All uses of struct bitset_struct changed to union bitset_union,
2389 etc.
2390 * lib/abitset.c (struct abitset_struct, abitset,
2391 struct bitset_struct): Remove.
2392 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
2393 struct bitset_struct): Remove.
2394 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
2395 bitset_struct): Remove.
2396 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
2397 Likewise.
2398
2399 Do not call a function of type T using a call that assumes the
2400 function is of a different type U. Standard C requires that a
2401 function must be called with a type that is compatible with its
2402 definition.
2403 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
2404 New decls.
2405 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
2406 New functions.
2407 * lib/ebitset.c (PFV): Remove.
2408 * lib/lbitset.c (PFV): Likewise.
2409 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
2410 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
2411 decls.
2412 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
2413 (ebitset_vtable): Use them.
2414 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
2415 lbitset_xor): New functions.
2416 (lbitset_vtable): Use them.
2417
2418 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
2419 Declare.
2420
2421 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
2422 GCC warning.
2423 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
2424 Use offsetof, for simplicity.
2425
2426 2002-10-06 Paul Eggert <eggert@twinsun.com>
2427
2428 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
2429 the same width as int. This reapplies a hunk of the 2002-08-12 patch
2430 <http://mail.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
2431 which was inadvertently undone by the 2002-09-30 patch.
2432 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
2433 the same width as int.
2434
2435 2002-10-04 Paul Eggert <eggert@twinsun.com>
2436
2437 Version 1.50.
2438
2439 * configure.ac (AC_INIT), NEWS: Increment version number.
2440
2441 * doc/bison.texinfo: Minor spelling, grammar, and white space
2442 fixes.
2443 (Symbols): Mention that any negative value returned from yylex
2444 signifies end-of-input. Warn about negative chars. Mention
2445 the portable Standard C character set.
2446
2447 The GNU coding standard says CFLAGS and YFLAGS are reserved
2448 for the installer to set.
2449 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
2450 * src/Makefile.am (AM_CFLAGS): Likewise.
2451 (AM_YFLAGS): Renamed from YFLAGS.
2452
2453 Fix some MAX and MIN problems.
2454 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
2455 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
2456 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
2457 * src/reader.c (reader): Use it.
2458
2459 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
2460 POSIX 1003.1-2001 has removed fgrep.
2461
2462 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
2463
2464 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
2465 interpreted as signed.
2466 * lib/ebitset.c (ebitset_list): Fix bug.
2467
2468 2002-10-01 Paul Eggert <eggert@twinsun.com>
2469
2470 More fixes for 64-bit hosts and large bitsets.
2471
2472 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
2473 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
2474 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
2475 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
2476 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
2477 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
2478 bitset_count_): Likewise.
2479 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
2480 bitset_first, bitset_last): Likewise.
2481 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
2482 bitset_stats_list_reverse, bitset_stats_size,
2483 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
2484 Likewise.
2485 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
2486 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
2487 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
2488 bitsetv_reflexive_transitive_closure): Likewise.
2489 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
2490 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
2491 Likewise.
2492 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
2493 Likewise.
2494
2495 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
2496 Use size_t, not unsigned int, to count bytes.
2497 * lib/abitset.h (abitset_bytes): Likewise.
2498 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
2499 Likewise.
2500 * lib/bitset.h (bitset_bytes): Likewise.
2501 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
2502 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
2503 * lib/bitsetv.c (bitsetv_alloc): Likewise.
2504 * lib/ebitset.c (ebitset_bytes): Likewise.
2505 * lib/ebitset.h (ebitset_bytes): Likewise.
2506 * lib/lbitset.c (lbitset_bytes): Likewise.
2507 * lib/lbitset.h (lbitset_bytes): Likewise.
2508
2509 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
2510 abitset_subset_p, abitset_disjoint_p, abitset_and,
2511 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
2512 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
2513 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
2514 abitset_or_and, abitset_or_and_cmp):
2515 Use bitset_windex instead of unsigned int.
2516 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
2517 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
2518 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
2519 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
2520 Likewise.
2521 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
2522
2523 * lib/bitset.c (bitset_print):
2524 Use proper printf formats for widths of integer types.
2525 * lib/bitset_stats.c (bitset_percent_histogram_print,
2526 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
2527 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
2528 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
2529 * lib/lbitset.c (lbitset_bytes): Likewise.
2530
2531 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
2532 BITSET_SIZE_MAX): New macros.
2533 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
2534 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
2535 to BITSET_WINDEX_MAX.
2536
2537 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
2538 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
2539 since we now return the bitset_bindex type (not int).
2540
2541 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
2542 when computing sizes.
2543 * lib/ebitset.c (ebitset_elts_grow): Likewise.
2544
2545 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
2546 and avoid cast to unsigned.
2547
2548 2002-09-30 Akim Demaille <akim@epita.fr>
2549
2550 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
2551 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
2552 Updates from Michael Hayes.
2553
2554 2002-09-30 Art Haas <ahaas@neosoft.com>
2555
2556 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
2557 invocations.
2558 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
2559 defined.
2560
2561 2002-09-27 Akim Demaille <akim@epita.fr>
2562
2563 Version 1.49c.
2564
2565 2002-09-27 Akim Demaille <akim@epita.fr>
2566
2567 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
2568 (Because of AC_LIBSOURCE).
2569
2570 2002-09-27 Akim Demaille <akim@epita.fr>
2571
2572 Playing with Autoscan.
2573
2574 * configure.ac: Remove the old LIBOBJ tweaks.
2575 (AC_REPLACE_FUNCS): Add strrchr and strtol.
2576 * lib/strrchr.c: New.
2577 * lib/strtol.c: New, from the Coreutils 4.5.1.
2578
2579 2002-09-27 Akim Demaille <akim@epita.fr>
2580
2581 Playing with Autoscan.
2582
2583 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
2584 * lib/Makefile.am (libbison_a_SOURCES): No longer include
2585 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
2586 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
2587 Coreutils 4.5.1.
2588
2589 2002-09-24 Akim Demaille <akim@epita.fr>
2590
2591 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
2592 (Frequently Asked Questions, Parser Stack Overflow): New.
2593
2594 2002-09-13 Akim Demaille <akim@epita.fr>
2595
2596 Playing with autoscan.
2597
2598 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
2599 * src/files.c (skeleton_find): Remove, unused.
2600 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
2601 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
2602
2603 2002-09-13 Akim Demaille <akim@epita.fr>
2604
2605 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
2606 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
2607
2608 2002-09-13 Akim Demaille <akim@epita.fr>
2609
2610 * configure.ac: Require 2.54.
2611 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
2612 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
2613 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
2614 Remove, provided by Autoconf macros.
2615
2616 2002-09-12 Akim Demaille <akim@epita.fr>
2617
2618 * m4/prereq.m4: Update, from Coreutils 4.5.1.
2619
2620 2002-09-12 Akim Demaille <akim@epita.fr>
2621
2622 * m4/prereq.m4: Update, from Fileutils 4.1.5.
2623 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
2624 Reported by Martin Mokrejs.
2625
2626 2002-09-10 Akim Demaille <akim@epita.fr>
2627
2628 * src/parse-gram.y: Associate a human readable string to each
2629 token type.
2630 * tests/regression.at (Invalid inputs): Adjust.
2631
2632 2002-09-10 Gary V. Vaughan <gary@gnu.org>
2633
2634 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
2635 with an Autoconf-2.5x style configure.ac.
2636
2637 2002-09-06 Paul Eggert <eggert@twinsun.com>
2638
2639 * doc/bison.texinfo (Conditions): Make explicit that the GPL
2640 exception applies only to yacc.c. This is a modification of a
2641 patch originally suggested by Akim Demaille.
2642
2643 2002-09-06 Akim Demaille <akim@epita.fr>
2644
2645 * data/c.m4 (b4_copyright): Move the GPL exception comment from
2646 here to...
2647 * data/yacc.c: here.
2648
2649 * data/lalr1.cc (struct yyltype): Don't define it, since we use
2650 LocationType.
2651 (b4_ltype): Default to yy::Location from location.hh.
2652
2653 2002-09-04 Jim Meyering <jim@meyering.net>
2654
2655 * data/yacc.c: Guard the declaration of yytoknum also with
2656 `#ifdef YYPRINT', so it is declared only when used.
2657
2658 2002-09-04 Akim Demaille <akim@epita.fr>
2659
2660 * configure.in: Rename as...
2661 * configure.ac: this.
2662 Bump to 1.49c.
2663
2664 2002-09-04 Akim Demaille <akim@epita.fr>
2665
2666 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
2667 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
2668 translate maintainer only messages.
2669
2670 2002-08-12 Paul Eggert <eggert@twinsun.com>
2671
2672 Version 1.49b.
2673
2674 * Makefile.am (SUBDIRS): Remove intl.
2675 (DISTCLEANFILES): Remove.
2676 * NEWS: Mention that GNU M4 is now required. Clarify what is
2677 meant by "larger grammars". Mention the pt_BR translation.
2678 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
2679 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
2680 Bump version from 0.11.2 to 0.11.5.
2681 (BISON_PREREQ_STAGE): Remove.
2682 (AM_GNU_GETTEXT): Use external gettext.
2683 (AC_OUTPUT): Remove intl/Makefile.
2684
2685 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
2686
2687 * data/glr.c: Include string.h, for strlen.
2688 (yyreportParseError): Use size_t for yysize.
2689 (yy_yypstack): No longer nested inside yypstates, as nested
2690 functions are not portable. Do not assume size_t is the
2691 same width as int.
2692 (yypstates): Do not assume that ptrdiff_t is the same width
2693 as int, and similarly for yyposn and YYINDEX.
2694
2695 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
2696
2697 * lib/Makefile.am (INCLUDES): Do not include from the intl
2698 directory, which has been removed.
2699 * src/Makefile.am (INCLUDES): Likewise.
2700
2701 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
2702 (bitsets_sources, additional_bitsets_sources, timevars_sources):
2703 New vars.
2704
2705 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
2706 * tests/Makefile.am (EXTRA_DIST): Likewise.
2707
2708 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
2709 Do not assume that bitset_windex is the same width as unsigned.
2710
2711 * lib/abitset.c (abitset_unused_clear): Do not assume that
2712 bitset_word is the same width as int.
2713 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
2714 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
2715 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
2716 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
2717 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
2718
2719 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
2720 portability to one's complement hosts!).
2721 * lib/ebitset.c (ebitset_op1): Likewise.
2722 * lib/lbitset.c (lbitset_op1): Likewise.
2723
2724 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
2725 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
2726 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
2727 Sync with fileutils.
2728 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
2729 lib/gettext.h: Sync with diffutils.
2730
2731 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
2732 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
2733
2734 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
2735 PROTOTYPES to check for prototypes, and "defined __STDC__" to
2736 check for void *.
2737
2738 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
2739 size_t; the old version tried to do this but casted improperly.
2740 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
2741 (bitset_test): Now returns int, not unsigned long.
2742
2743 * lib/bitset_stats.c: Include "gettext.h".
2744 (_): New macro.
2745 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
2746 name locals "index", as it generates unnecessary warnings on some
2747 hosts that have an "index" function.
2748
2749 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
2750 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
2751 they need translation.
2752 * src/LR0.c (state_list_append, new_itemsets, get_state,
2753 append_states, generate_states): Likewise.
2754 * src/assoc.c (assoc_to_string): Likewise.
2755 * src/closure.c (print_closure, set_firsts, closure): Likewise.
2756 * src/gram.c (grammar_dump): Likewise.
2757 * src/injections.c (injections_compute): Likewise.
2758 * src/lalr.c (lookaheads_print): Likewise.
2759 * src/relation.c (relation_transpose): Likewise.
2760 * src/scan-gram.l: Likewise.
2761 * src/tables.c (table_grow, pack_vector): Likewise.
2762
2763 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
2764 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
2765 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
2766 * m4/mbstate_t.m4: Sync with fileutils.
2767 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
2768
2769 * po/LINGUAS: Add pt_BR.
2770 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
2771 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
2772 lib/timevar.c.
2773 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
2774 manual recommends.
2775 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
2776
2777 * src/complain.c (strerror_r): Remove decl; not needed.
2778 (strerror): Use same pattern as ../lib/error.c.
2779
2780 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
2781
2782 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
2783
2784 * src/main.c (main): Cast result of bindtextdomain and textdomain
2785 to void, to avoid a GCC warning when --disable-nls is in effect.
2786
2787 * src/scan-gram.l: Use strings rather than escapes when possible,
2788 to minimize the number of warnings from xgettext.
2789 (handle_action_dollar, handle_action_at): Don't use isdigit,
2790 as it mishandles negative chars and it may not work as expected
2791 outside the C locale.
2792
2793 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
2794 this is a GCC extension and is not portable to other compilers.
2795
2796 * src/system.h (alloca): Use same pattern as ../lib/error.c.
2797 Do not include <ctype.h>; no longer needed.
2798 Do not include <malloc.h>; no longer needed (and generates
2799 warnings on OpenBSD 3.0).
2800
2801 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
2802 it's not portable.
2803
2804 * tests/regression.at: Do not use 'cc -c input.c -o input';
2805 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
2806
2807 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
2808 exit status as failure, not just exit status 1. Sun C exits
2809 with status 2 sometimes.
2810
2811 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
2812 Use it for the two large tests.
2813
2814 2002-08-02 Akim Demaille <akim@epita.fr>
2815
2816 * src/conflicts.c (conflicts_output): Don't output rules never
2817 reduced here, since anyway that computation doesn't work.
2818 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
2819 (rule_useless_p, rule_never_reduced_p): New.
2820 (grammar_rules_partial_print): Use a filter instead of a range.
2821 Display the title only if needed.
2822 (grammar_rules_print): Adjust.
2823 (grammar_rules_never_reduced_report): New.
2824 * src/tables.c (action_row): Move the computation of rules never
2825 reduced to...
2826 (token_actions): here.
2827 * src/main.c (main): Make the parser before making the report, so
2828 that rules never reduced are computed.
2829 Call grammar_rules_never_reduced_report.
2830 * src/print.c (print_results): Report rules never reduced.
2831 * tests/conflicts.at, tests/reduce.at: Adjust.
2832
2833 2002-08-01 Akim Demaille <akim@epita.fr>
2834
2835 Instead of attaching lookaheads and duplicating the rules being
2836 reduced by a state, attach the lookaheads to the reductions.
2837
2838 * src/state.h (state_t): Remove the `lookaheads',
2839 `lookaheads_rule' member.
2840 (reductions_t): Add a `lookaheads' member.
2841 Use a regular array for the `rules'.
2842 * src/state.c (reductions_new): Initialize the lookaheads member
2843 to 0.
2844 (state_rule_lookaheads_print): Adjust.
2845 * src/state.h, src/state.c (state_reductions_find): New.
2846 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
2847 (count_rr_conflicts): Adjust.
2848 * src/lalr.c (LArule): Remove.
2849 (add_lookback_edge): Adjust.
2850 (state_lookaheads_count): New.
2851 (states_lookaheads_initialize): Merge into...
2852 (initialize_LA): this.
2853 (lalr_free): Adjust.
2854 * src/main.c (main): Don't free nullable and derives too early: it
2855 is used by --verbose.
2856 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
2857
2858 2002-08-01 Akim Demaille <akim@epita.fr>
2859
2860 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
2861 `rule_number_t**'.
2862 (set_derives, free_derives): Rename as...
2863 (derives_compute, derives_free): this.
2864 Adjust all dependencies.
2865 * src/nullable.c (set_nullable, free_nullable): Rename as...
2866 (nullable_compute, nullable_free): these.
2867 (rule_list_t): Store rule_t *, not rule_number_t.
2868 * src/state.c (state_rule_lookaheads_print): Directly compare rule
2869 pointers, instead of their numbers.
2870 * src/main.c (main): Call nullable_free, and derives_free earlier,
2871 as they were lo longer used.
2872
2873 2002-08-01 Akim Demaille <akim@epita.fr>
2874
2875 * lib/timevar.c (get_time): Include children time.
2876 * src/lalr.h (LA, LArule): Don't export them: used with the
2877 state_t.
2878 * src/lalr.c (LA, LArule): Static.
2879 * src/lalr.h, src/lalr.c (lalr_free): New.
2880 * src/main.c (main): Call it.
2881 * src/tables.c (pack_vector): Check whether loc is >= to the
2882 table_size, not >.
2883 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
2884 (tables_generate): do it, since that's also it which allocates
2885 them.
2886 Don't free LA and LArule, main does.
2887
2888 2002-07-31 Akim Demaille <akim@epita.fr>
2889
2890 Separate parser tables computation and output.
2891
2892 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
2893 (conflict_list, conflict_list_cnt, table, check, table_ninf)
2894 (yydefgoto, yydefact, high): Move to...
2895 * src/tables.h, src/tables.c: here.
2896 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
2897 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
2898 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
2899 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
2900 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
2901 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
2902 (action_row, save_row, token_actions, save_column, default_goto)
2903 (goto_actions, sort_actions, matching_state, pack_vector)
2904 (table_ninf_remap, pack_table, prepare_actions): Move to...
2905 * src/tables.c: here.
2906 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
2907 * src/output.c (token_actions, output_base, output_conflicts)
2908 (output_check): Merge into...
2909 (prepare_actions): this.
2910 (actions_output): Rename as...
2911 (user_actions_output): this.
2912 * src/main.c (main): Call tables_generate and tables_free.
2913
2914 2002-07-31 Akim Demaille <akim@epita.fr>
2915
2916 Steal GCC's --time-report support.
2917
2918 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
2919 stolen/adjusted from GCC.
2920 * m4/stage.m4: Remove time related checks.
2921 * m4/timevar.m4: New.
2922 * configure.in: Adjust.
2923 * src/system.h: Adjust to using timevar.h.
2924 * src/getargs.h, src/getargs.c: Support trace_time for
2925 --trace=time.
2926 * src/main.c (stage): Remove.
2927 (main): Replace `stage' invocations with timevar calls.
2928 * src/output.c: Insert pertinent timevar calls.
2929
2930 2002-07-31 Akim Demaille <akim@epita.fr>
2931
2932 Let --trace have arguments.
2933
2934 * src/getargs.h (enum trace_e): New.
2935 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
2936 (long_options, short_options): --trace/-T takes an optional
2937 argument.
2938 Change all the uses of trace_flag to reflect the new flags.
2939 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
2940
2941 Strengthen `stage' portability.
2942
2943 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
2944 * configure.in: Use it.
2945 Don't check for malloc.h and sys/times.h.
2946 * src/system.h: Include them when appropriate.
2947 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
2948 times and struct tms are available.
2949
2950 2002-07-30 Akim Demaille <akim@epita.fr>
2951
2952 In verbose parse error message, don't report `error' as an
2953 expected token.
2954 * tests/actions.at (Printers and Destructors): Adjust.
2955 * tests/calc.at (Calculator $1): Adjust.
2956 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
2957 error message, do not report the parser accepts the error token in
2958 that state.
2959
2960 2002-07-30 Akim Demaille <akim@epita.fr>
2961
2962 Normalize conflict related messages.
2963
2964 * src/complain.h, src/complain.c (warn, complain): New.
2965 * src/conflicts.c (conflicts_print): Use them.
2966 (conflict_report_yacc): New, extracted from...
2967 (conflicts_print): here.
2968 * tests/conflicts.at, tests/existing.at: Adjust.
2969
2970 2002-07-30 Akim Demaille <akim@epita.fr>
2971
2972 Report rules which are never reduced by the parser: those hidden
2973 by conflicts.
2974
2975 * src/LR0.c (save_reductions): Don't make the final state too
2976 different: save its reduction (accept) instead of having a state
2977 without any action (no shift or goto, no reduce).
2978 Note: the final state is now a ``regular'' state, i.e., the
2979 parsers now contain `reduce 0' as default reduction.
2980 Nevertheless, since they decide to `accept' when yystate =
2981 final_state, they still will not reduce rule 0.
2982 * src/print.c (print_actions, print_reduction): Adjust.
2983 * src/output.c (action_row): Track reduced rules.
2984 (token_actions): Report rules never reduced.
2985 * tests/conflicts.at, tests/regression.at: Adjust.
2986
2987 2002-07-30 Akim Demaille <akim@epita.fr>
2988
2989 `stage' was accidently included in a previous patch.
2990 Initiate its autoconfiscation.
2991
2992 * configure.in: Look for malloc.h and sys/times.h.
2993 * src/main.c (stage): Adjust.
2994 Report only when trace_flag.
2995
2996 2002-07-29 Akim Demaille <akim@epita.fr>
2997
2998 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
2999 state_number_t.
3000 (errs_t): symbol_t*, not symbol_number_t.
3001 (reductions_t): rule_t*, not rule_number_t.
3002 (FOR_EACH_SHIFT): New.
3003 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
3004 * src/print.c, src/print_graph.c: Adjust.
3005
3006 2002-07-29 Akim Demaille <akim@epita.fr>
3007
3008 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
3009
3010 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
3011 (endtoken, accept): these.
3012 * src/reader.c (reader): Set endtoken's default tag to "$end".
3013 Set undeftoken's tag to "$undefined" instead of "$undefined.".
3014 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
3015 Adjust.
3016
3017 2002-07-29 Akim Demaille <akim@epita.fr>
3018
3019 * src/reduce.c (reduce_grammar): When the language is empty,
3020 complain about the start symbol, not the axiom.
3021 Use its location.
3022 * tests/reduce.at (Empty Language): New.
3023
3024 2002-07-26 Akim Demaille <akim@epita.fr>
3025
3026 * src/reader.h, src/reader.c (gram_error): ... can't get
3027 yycontrol without making too strong assumptions on the parser
3028 itself.
3029 * src/output.c (prepare_tokens): Use the real 0th value of
3030 token_translations instead of `0'.
3031 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
3032 visible here.
3033 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
3034 for the time being: %locations ought to provide it to yyerror.
3035
3036 2002-07-25 Akim Demaille <akim@epita.fr>
3037
3038 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
3039 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
3040 * tests/regression.at (Web2c Actions): Adjust.
3041
3042 2002-07-25 Akim Demaille <akim@epita.fr>
3043
3044 Stop storing rules from 1 to nrules + 1.
3045
3046 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
3047 * src/nullable.c, src/output.c, src/print.c, src/reader.c
3048 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
3049 Iterate from 0 to nrules.
3050 Use rule_number_as_item_number and item_number_as_rule_number.
3051 Adjust to `derive' now containing possibly 0.
3052 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
3053 Handle the `- 1' part in rule numbers from/to item numbers.
3054 * src/conflicts.c (log_resolution): Fix the message which reversed
3055 shift and reduce.
3056 * src/output.c (action_row): Initialize default_rule to -1.
3057 (token_actions): Adjust.
3058 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
3059 expected output.
3060 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
3061
3062 2002-07-25 Akim Demaille <akim@epita.fr>
3063
3064 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
3065 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
3066 (b4_c_knr_arg_decl): New.
3067 * data/yacc.c: Use it to define yysymprint, yydestruct, and
3068 yyreport_parse_error.
3069
3070 2002-07-25 Akim Demaille <akim@epita.fr>
3071
3072 * data/yacc.c (yyreport_parse_error): New, extracted from...
3073 (yyparse): here.
3074 (yydestruct, yysymprint): Move above yyparse.
3075 Be K&R compliant.
3076
3077 2002-07-25 Akim Demaille <akim@epita.fr>
3078
3079 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
3080 replace...
3081 (b4_sint_type, b4_uint_type): these.
3082 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
3083 * tests/regression.at (Web2c Actions): Adjust.
3084
3085 2002-07-25 Akim Demaille <akim@epita.fr>
3086
3087 * src/gram.h (TIEM_NUMBER_MAX): New.
3088 (item_number_of_rule_number, rule_number_of_item_number): Rename
3089 as...
3090 (rule_number_as_item_number, item_number_as_rule_number): these.
3091 Adjust dependencies.
3092 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
3093 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
3094 (symbol_number_to_vector_number): New.
3095 (order): Of vector_number_t* type.
3096 (base_t, BASE_MAX, BASE_MIN): New.
3097 (froms, tos, width, pos, check): Of base_t type.
3098 (action_number_t, ACTION_MIN, ACTION_MAX): New.
3099 (actrow): Of action_number_t type.
3100 (conflrow): Of unsigned int type.
3101 (table_ninf, base_ninf): New.
3102 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
3103 (muscle_insert_int_table, muscle_insert_base_table)
3104 (muscle_insert_rule_number_table): New.
3105 (prepare_tokens): Output `toknum' as int_table.
3106 (action_row): Returns a rule_number_t.
3107 Use ACTION_MIN, not SHRT_MIN.
3108 (token_actions): yydefact is rule_number_t*.
3109 (table_ninf_remap): New.
3110 (pack_table): Use it for `base' and `table'.
3111 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
3112 replaced with...
3113 (YYPACT_NINF, YYTABLE_NINF): these.
3114 (yypact, yytable): Compute their types instead of hard-coded
3115 `short'.
3116 * tests/regression.at (Web2c Actions): Adjust.
3117
3118 2002-07-19 Akim Demaille <akim@epita.fr>
3119
3120 * src/scan-gram.l (id): Can start with an underscore.
3121
3122 2002-07-16 Akim Demaille <akim@epita.fr>
3123
3124 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
3125 Adjust all former `associativity' dependencies.
3126 * src/symtab.c (symbol_new): Default associativity is `undef', not
3127 `right'.
3128 (symbol_check_alias_consistence): Adjust.
3129
3130 2002-07-09 Akim Demaille <akim@epita.fr>
3131
3132 * doc/bison.texinfo: Properly set the ``header'' part.
3133 Use @dircategory ``GNU programming tools'' as per Texinfo's
3134 documentation.
3135 Use @copying.
3136
3137 2002-07-09 Akim Demaille <akim@epita.fr>
3138
3139 * lib/quotearg.h: Protect against multiple inclusions.
3140 * src/location.h (location_t): Add a `file' member.
3141 (LOCATION_RESET, LOCATION_PRINT): Adjust.
3142 * src/complain.c (warn_at, complain_at, fatal_at): Drop
3143 `error_one_per_line' support.
3144
3145 2002-07-09 Akim Demaille <akim@epita.fr>
3146
3147 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
3148 * src/reader.c (lineno): Remove.
3149 Adjust all dependencies.
3150 (get_merge_function): Take a location and use complain_at.
3151 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
3152 * tests/regression.at (Invalid inputs, Mixing %token styles):
3153 Adjust.
3154
3155 2002-07-09 Akim Demaille <akim@epita.fr>
3156
3157 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
3158 recovery rule, and forbid extensions when --yacc.
3159 (gram_error): Use complain_at.
3160 * src/reader.c (reader): Exit if there were parse errors.
3161
3162 2002-07-09 Akim Demaille <akim@epita.fr>
3163
3164 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
3165 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
3166 Reported by R Blake <blakers@mac.com>.
3167
3168 2002-07-09 Akim Demaille <akim@epita.fr>
3169
3170 * data/yacc.c: Output the copyright notive in the header.
3171
3172 2002-07-03 Akim Demaille <akim@epita.fr>
3173
3174 * src/output.c (froms, tos): Are state_number_t.
3175 (save_column): sp, sp1, and sp2 are state_number_t.
3176 (prepare): Rename `final' as `final_state_number', `nnts' as
3177 `nterms_number', `nrules' as `rules_number', `nstates' as
3178 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
3179 unused.
3180 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
3181 * data/lalr1.cc (nsym_): Remove, unused.
3182
3183 2002-07-03 Akim Demaille <akim@epita.fr>
3184
3185 * src/lalr.h, src/lalr.c (goto_number_t): New.
3186 * src/lalr.c (goto_list_t): New.
3187 Propagate them.
3188 * src/nullable.c (rule_list_t): New.
3189 Propagate.
3190 * src/types.h: Remove.
3191
3192 2002-07-03 Akim Demaille <akim@epita.fr>
3193
3194 * src/closure.c (print_fderives): Use rule_rhs_print.
3195 * src/derives.c (print_derives): Use rule_rhs_print.
3196 (rule_list_t): New, replaces `shorts'.
3197 (set_derives): Add comments.
3198 * tests/sets.at (Nullable, Firsts): Adjust.
3199
3200 2002-07-03 Akim Demaille <akim@epita.fr>
3201
3202 * src/output.c (prepare_actions): Free `tally' and `width'.
3203 (prepare_actions): Allocate and free `order'.
3204 * src/symtab.c (symbols_free): Free `symbols'.
3205 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
3206 * src/output.c (m4_invoke): Move to...
3207 * src/scan-skel.l: here.
3208 (<<EOF>>): Close yyout, and free its name.
3209
3210 2002-07-03 Akim Demaille <akim@epita.fr>
3211
3212 Fix some memory leaks, and fix a bug: state 0 was examined twice.
3213
3214 * src/LR0.c (new_state): Merge into...
3215 (state_list_append): this.
3216 (new_states): Merge into...
3217 (generate_states): here.
3218 (set_states): Don't ensure a proper `errs' state member here, do it...
3219 * src/conflicts.c (conflicts_solve): here.
3220 * src/state.h, src/state.c: Comment changes.
3221 (state_t): Rename member `shifts' as `transitions'.
3222 Adjust all dependencies.
3223 (errs_new): For consistency, also take the values as argument.
3224 (errs_dup): Remove.
3225 (state_errs_set): New.
3226 (state_reductions_set, state_transitions_set): Assert that no
3227 previous value was assigned.
3228 (state_free): New.
3229 (states_free): Use it.
3230 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
3231 temporary storage: use `errs' and `nerrs' as elsewhere.
3232 (set_conflicts): Allocate and free this `errs'.
3233
3234 2002-07-02 Akim Demaille <akim@epita.fr>
3235
3236 * lib/libiberty.h: New.
3237 * lib: Update the bitset implementation from upstream.
3238 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
3239 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
3240 * src/main.c: Adjust bitset stats calls.
3241
3242 2002-07-01 Paul Eggert <eggert@twinsun.com>
3243
3244 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
3245 char, so that negative chars don't collide with $.
3246
3247 2002-06-30 Akim Demaille <akim@epita.fr>
3248
3249 Have the GLR tests be `warning' checked, and fix the warnings.
3250
3251 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
3252 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
3253 (yyremoveDeletes): `yyi' and `yyj' are size_t.
3254 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
3255 (yyaddDeferredAction): static.
3256 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
3257 (yyreportParseError): yyprefix is const.
3258 yytokenp is used only when verbose.
3259 (yy__GNUC__): Replace with __GNUC__.
3260 (yypdumpstack): yyi is size_t.
3261 (yypreference): Un-yy local variables and arguments, to avoid
3262 clashes with `yyr1'. Anyway, we are not in the user name space.
3263 (yytname_size): be an int, as is compared with ints.
3264 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
3265 Use them.
3266 * tests/cxx-gram.at: Use quotation to protect $1.
3267 Use AT_COMPILE to enable warnings hunts.
3268 Prototype yylex and yyerror.
3269 `Use' argc.
3270 Include `string.h', not `strings.h'.
3271 Produce and prototype stmtMerge only when used.
3272 yylex takes a location.
3273
3274 2002-06-30 Akim Demaille <akim@epita.fr>
3275
3276 We spend a lot of time in quotearg, in particular when --verbose.
3277
3278 * src/symtab.c (symbol_get): Store a quoted version of the key.
3279 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
3280 Adjust all callers.
3281
3282 2002-06-30 Akim Demaille <akim@epita.fr>
3283
3284 * src/state.h (reductions_t): Rename member `nreds' as num.
3285 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
3286 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
3287
3288 2002-06-30 Akim Demaille <akim@epita.fr>
3289
3290 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
3291 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
3292 (shifts_to): Rename as...
3293 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
3294 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
3295 (TRANSITION_IS_DISABLED, transitions_to): these.
3296
3297 2002-06-30 Akim Demaille <akim@epita.fr>
3298
3299 * src/print.c (print_shifts, print_gotos): Merge into...
3300 (print_transitions): this.
3301 (print_transitions, print_errs, print_reductions): Align the
3302 lookaheads columns.
3303 (print_core, print_transitions, print_errs, print_state,
3304 print_grammar): Output empty lines separator before, not after.
3305 (state_default_rule_compute): Rename as...
3306 (state_default_rule): this.
3307 * tests/conflicts.at (Defaulted Conflicted Reduction),
3308 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
3309 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
3310
3311 2002-06-30 Akim Demaille <akim@epita.fr>
3312
3313 Display items as we display rules.
3314
3315 * src/gram.h, src/gram.c (rule_lhs_print): New.
3316 * src/gram.c (grammar_rules_partial_print): Use it.
3317 * src/print.c (print_core): Likewise.
3318 * tests/conflicts.at (Defaulted Conflicted Reduction),
3319 (Unresolved SR Conflicts): Adjust.
3320 (Unresolved SR Conflicts): Adjust and rename as...
3321 (Resolved SR Conflicts): this, as was meant.
3322 * tests/regression.at (Web2c Report): Adjust.
3323
3324 2002-06-30 Akim Demaille <akim@epita.fr>
3325
3326 * src/print.c (state_default_rule_compute): New, extracted from...
3327 (print_reductions): here.
3328 Pessimize, but clarify the code.
3329 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
3330
3331 2002-06-30 Akim Demaille <akim@epita.fr>
3332
3333 * src/output.c (action_row): Let default_rule be always a rule
3334 number.
3335
3336 2002-06-30 Akim Demaille <akim@epita.fr>
3337
3338 * src/closure.c (print_firsts, print_fderives, closure):
3339 Use BITSET_EXECUTE.
3340 * src/lalr.c (lookaheads_print): Likewise.
3341 * src/state.c (state_rule_lookaheads_print): Likewise.
3342 * src/print_graph.c (print_core): Likewise.
3343 * src/print.c (print_reductions): Likewise.
3344 * src/output.c (action_row): Likewise.
3345 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
3346
3347 2002-06-30 Akim Demaille <akim@epita.fr>
3348
3349 * src/print_graph.c: Use report_flag.
3350
3351 2002-06-30 Akim Demaille <akim@epita.fr>
3352
3353 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
3354 to...
3355 * src/relation.h, src/relation.c (traverse, relation_digraph)
3356 (relation_print, relation_transpose): New.
3357
3358 2002-06-30 Akim Demaille <akim@epita.fr>
3359
3360 * src/state.h, src/state.c (shifts_to): New.
3361 * src/lalr.c (build_relations): Use it.
3362
3363 2002-06-30 Akim Demaille <akim@epita.fr>
3364
3365 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
3366 (item_number_of_rule_number, rule_number_of_item_number): New.
3367 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
3368 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
3369 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
3370 Propagate their use.
3371 Much remains to be done, in particular wrt `shorts' from types.h.
3372
3373 2002-06-30 Akim Demaille <akim@epita.fr>
3374
3375 * src/symtab.c (symbol_new): Initialize the `printer' member.
3376
3377 2002-06-30 Akim Demaille <akim@epita.fr>
3378
3379 * src/LR0.c (save_reductions): Remove, replaced by...
3380 * src/state.h, src/state.c (state_reductions_set): New.
3381 (reductions, errs): Rename as...
3382 (reductions_t, errs_t): these.
3383 Adjust all dependencies.
3384
3385 2002-06-30 Akim Demaille <akim@epita.fr>
3386
3387 * src/LR0.c (state_list_t, state_list_append): New.
3388 (first_state, last_state): Now symbol_list_t.
3389 (this_state): Remove.
3390 (new_itemsets, append_states, save_reductions): Take a state_t as
3391 argument.
3392 (set_states, generate_states): Adjust.
3393 (save_shifts): Remove, replaced by...
3394 * src/state.h, src/state.c (state_shifts_set): New.
3395 (shifts): Rename as...
3396 (shifts_t): this.
3397 Adjust all dependencies.
3398 * src/state.h (state_t): Remove the `next' member.
3399
3400 2002-06-30 Akim Demaille <akim@epita.fr>
3401
3402 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
3403 escaped in slot 0.
3404
3405 2002-06-30 Akim Demaille <akim@epita.fr>
3406
3407 Use hash.h for the state hash table.
3408
3409 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
3410 (allocate_storage): Use state_hash_new.
3411 (free_storage): Use state_hash_free.
3412 (new_state, get_state): Adjust.
3413 * src/lalr.h, src/lalr.c (states): Move to...
3414 * src/states.h (state_t): Remove the `link' member, no longer
3415 used.
3416 * src/states.h, src/states.c: here.
3417 (state_hash_new, state_hash_free, state_hash_lookup)
3418 (state_hash_insert, states_free): New.
3419 * src/states.c (state_table, state_compare, state_hash): New.
3420 * src/output.c (output_actions): Do not free states now, since we
3421 still need to know the final_state number in `prepare', called
3422 afterwards. Do it...
3423 * src/main.c (main): here: call states_free after `output'.
3424
3425 2002-06-30 Akim Demaille <akim@epita.fr>
3426
3427 * src/state.h, src/state.c (state_new): New, extracted from...
3428 * src/LR0.c (new_state): here.
3429 * src/state.h (STATE_ALLOC): Move to...
3430 * src/state.c: here.
3431 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
3432 * src/state.h, src/state.c: here.
3433
3434 2002-06-30 Akim Demaille <akim@epita.fr>
3435
3436 * src/reader.c (gensym): Rename as...
3437 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
3438 (getsym): Rename as...
3439 (symbol_get): this.
3440
3441 2002-06-30 Akim Demaille <akim@epita.fr>
3442
3443 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
3444 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
3445 * src/output.c, src/print.c, src/print_graph.c: Propagate.
3446 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
3447
3448 2002-06-30 Akim Demaille <akim@epita.fr>
3449
3450 Make the test suite pass with warnings checked.
3451
3452 * tests/actions.at (Printers and Destructors): Improve.
3453 Avoid unsigned vs. signed issues.
3454 * tests/calc.at: Don't exercise the scanner here, do it...
3455 * tests/input.at (Torturing the Scanner): here.
3456
3457 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3458
3459 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
3460 reorganize first lines parallel to yacc.c.
3461
3462 2002-06-28 Akim Demaille <akim@epita.fr>
3463
3464 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
3465 (b4_token_enum, b4_token_defines): New, factored from...
3466 * data/lalr1.cc, data/yacc.c, glr.c: here.
3467
3468 2002-06-28 Akim Demaille <akim@epita.fr>
3469
3470 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
3471 unused variables.
3472 * src/output.c (merger_output): static.
3473
3474 2002-06-28 Akim Demaille <akim@epita.fr>
3475
3476 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
3477 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
3478 pacify GCC.
3479 * src/output.c (save_row): Initialize all the variables to pacify GCC.
3480
3481 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3482
3483 Accumulated changelog for new GLR parsing features.
3484
3485 * src/conflicts.c (count_total_conflicts): Change name to
3486 conflicts_total_count.
3487 * src/conflicts.h: Ditto.
3488 * src/output.c (token_actions): Use the new name.
3489 (output_conflicts): Change conflp => conflict_list_heads, and
3490 confl => conflict_list for better readability.
3491 * data/glr.c: Use the new names.
3492 * NEWS: Add self to GLR announcement.
3493
3494 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
3495
3496 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
3497 Akim Demaille.
3498
3499 * data/bison.glr: Change name to glr.c
3500 * data/glr.c: Renamed from bison.glr.
3501 * data/Makefile.am: Add glr.c
3502
3503 * src/getargs.c:
3504
3505 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
3506 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
3507
3508 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3509
3510 * data/bison.glr: Be sure to restore the
3511 current #line when returning to the skeleton contents after having
3512 exposed the input file's #line.
3513
3514 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3515
3516 * data/bison.glr: Bring up to date with changes to bison.simple.
3517
3518 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3519
3520 * data/bison.glr: Correct definitions that use b4_prefix.
3521 Various reformatting.
3522 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
3523 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
3524 yytokenp argument; now part of stack.
3525 (yychar): Define to behave as documented.
3526 (yyclearin): Ditto.
3527
3528 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3529
3530 * src/reader.h: Add declaration for free_merger_functions.
3531
3532 * src/reader.c (merge_functions): New variable.
3533 (get_merge_function): New function.
3534 (free_merger_functions): New function.
3535 (readgram): Check for %prec that is not followed by a symbol.
3536 Handle %dprec and %merge declarations.
3537 (packgram): Initialize dprec and merger fields in rules array.
3538
3539 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
3540 conflict_list_cnt, conflict_list_free): New variables.
3541 (table_grow): Also grow conflict_table.
3542 (prepare_rules): Output dprec and merger tables.
3543 (conflict_row): New function.
3544 (action_row): Output conflict lists for GLR parser. Don't use
3545 default reduction in conflicted states for GLR parser so that there
3546 are spaces for the conflict lists.
3547 (save_row): Also save conflict information.
3548 (token_actions): Allocate conflict list.
3549 (merger_output): New function.
3550 (pack_vector): Pack conflict table, too.
3551 (output_conflicts): New function to output yyconflp and yyconfl.
3552 (output_check): Allocate conflict_tos.
3553 (output_actions): Output conflict tables, also.
3554 (output_skeleton): Output b4_mergers definition.
3555 (prepare): Output b4_max_rhs_length definition.
3556 Use 'bison.glr' as default skeleton for GLR parsers.
3557
3558 * src/gram.c (glr_parser): New flag.
3559 (grammar_free): Call free_merger_functions.
3560
3561 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
3562 all pairs of conflicting reductions, rather than just all tokens
3563 causing conflicts. Needed to size conflict tables.
3564 (conflicts_output): Modify call to count_rr_conflicts for new
3565 interface.
3566 (conflicts_print): Ditto.
3567 (count_total_conflicts): New function.
3568
3569 * src/reader.h (merger_list): New type.
3570 (merge_functions): New variable.
3571
3572 * src/lex.h (tok_dprec, tok_merge): New token types.
3573
3574 * src/gram.h (rule_s): Add dprec and merger fields.
3575 (glr_parser): New flag.
3576
3577 * src/conflicts.h (count_total_conflicts): New function.
3578
3579 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
3580
3581 * doc/bison.texinfo (Generalized LR Parsing): New section.
3582 (GLR Parsers): New section.
3583 (Language and Grammar): Mention GLR parsing.
3584 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
3585 Correct typo ("tge" -> "the").
3586
3587 * data/bison.glr: New skeleton for GLR parsing.
3588
3589 * tests/cxx-gram.at: New tests for GLR parsing.
3590
3591 * tests/testsuite.at: Include cxx-gram.at.
3592
3593 * tests/Makefile.am: Add cxx-gram.at.
3594
3595 * src/parse-gram.y:
3596
3597 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
3598
3599 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
3600
3601 2002-06-27 Akim Demaille <akim@epita.fr>
3602
3603 * src/options.h, src/options.c: Remove.
3604 * src/getargs.c (short_options, long_options): New.
3605
3606 2002-06-27 Akim Demaille <akim@epita.fr>
3607
3608 * data/bison.simple, data/bison.c++: Rename as...
3609 * data/yacc.c, data/lalr1.cc: these.
3610 * doc/bison.texinfo (Environment Variables): Remove.
3611
3612 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
3613
3614 * src/getargs.c (report_argmatch): Initialize strtok().
3615
3616 2002-06-20 Akim Demaille <akim@epita.fr>
3617
3618 * data/bison.simple (b4_symbol_actions): New, replaces...
3619 (b4_symbol_destructor, b4_symbol_printer): these.
3620 (yysymprint): Be sure to call YYPRINT only for tokens, and using
3621 user token numbers.
3622
3623 2002-06-20 Akim Demaille <akim@epita.fr>
3624
3625 * data/bison.simple (yydestructor): Rename as...
3626 (yydestruct): this.
3627
3628 2002-06-20 Akim Demaille <akim@epita.fr>
3629
3630 * src/symtab.h, src/symtab.c (symbol_type_set)
3631 (symbol_destructor_set, symbol_precedence_set): The location is
3632 the last argument.
3633 Adjust all callers.
3634
3635 2002-06-20 Akim Demaille <akim@epita.fr>
3636
3637 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
3638 internals.
3639 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
3640 Takes a location.
3641 * src/symtab.h, src/symtab.c (symbol_class_set)
3642 (symbol_user_token_number_set): Likewise.
3643 Adjust all callers.
3644 Promote complain_at.
3645 * tests/input.at (Type Clashes): Adjust.
3646
3647 2002-06-20 Akim Demaille <akim@epita.fr>
3648
3649 * data/bison.simple (YYLEX): Fix the declaration when
3650 %pure-parser.
3651
3652 2002-06-20 Akim Demaille <akim@epita.fr>
3653
3654 * data/bison.simple (yysymprint): Don't print the token number,
3655 just its name.
3656 * tests/actions.at (Destructors): Rename as...
3657 (Printers and Destructors): this.
3658 Also exercise %printer.
3659
3660 2002-06-20 Akim Demaille <akim@epita.fr>
3661
3662 * data/bison.simple (YYDSYMPRINT): New.
3663 Use it to remove many of the #if YYDEBUG/if (yydebug).
3664
3665 2002-06-20 Akim Demaille <akim@epita.fr>
3666
3667 * src/symtab.h, src/symtab.c (symbol_t): printer and
3668 printer_location are new members.
3669 (symbol_printer_set): New.
3670 * src/parse-gram.y (PERCENT_PRINTER): New token.
3671 Handle its associated rule.
3672 * src/scan-gram.l: Adjust.
3673 (handle_destructor_at, handle_destructor_dollar): Rename as...
3674 (handle_symbol_code_at, handle_symbol_code_dollar): these.
3675 * src/output.c (symbol_printers_output): New.
3676 (output_skeleton): Call it.
3677 * data/bison.simple (yysymprint): New. Cannot be named yyprint
3678 since there are already many grammar files with a user `yyprint'.
3679 Replace the calls to YYPRINT to calls to yysymprint.
3680 * tests/calc.at: Adjust.
3681 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
3682 taking advantage of parser very internal details (stack size!).
3683
3684 2002-06-20 Akim Demaille <akim@epita.fr>
3685
3686 * src/scan-gram.l: Complete the scanner with the missing patterns
3687 to pacify Flex.
3688 Use `quote' and `symbol_tag_get' where appropriate.
3689
3690 2002-06-19 Akim Demaille <akim@epita.fr>
3691
3692 * tests/actions.at (Destructors): Augment to test locations.
3693 * data/bison.simple (yydestructor): Pass it the current location
3694 if locations are enabled.
3695 Prototype only when __STDC__ or C++.
3696 Change the argument names to move into the yy name space: there is
3697 user code here.
3698
3699 2002-06-19 Akim Demaille <akim@epita.fr>
3700
3701 * data/bison.simple (b4_pure_if): New.
3702 Use it instead of #ifdef YYPURE.
3703
3704 2002-06-19 Akim Demaille <akim@epita.fr>
3705
3706 * data/bison.simple (b4_location_if): New.
3707 Use it instead of #ifdef YYLSP_NEEDED.
3708
3709 2002-06-19 Akim Demaille <akim@epita.fr>
3710
3711 Prepare @$ in %destructor, but currently don't bind it in the
3712 skeleton, as %location use is not cleaned up yet.
3713
3714 * src/scan-gram.l (handle_dollar, handle_destructor_at)
3715 (handle_action_at): New.
3716 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
3717 a braced_code_t and a location as additional arguments.
3718 (handle_destructor_dollar): Instead of requiring `b4_eval', just
3719 unquote one when outputting `b4_dollar_dollar'.
3720 Adjust callers.
3721 * data/bison.simple (b4_eval): Remove.
3722 (b4_symbol_destructor): Adjust.
3723 * tests/input.at (Invalid @n): Adjust.
3724
3725 2002-06-19 Zack Weinberg <zack@codesourcery.com>
3726
3727 * doc/bison.texinfo: Document ability to have multiple
3728 prologue sections.
3729
3730 2002-06-18 Akim Demaille <akim@epita.fr>
3731
3732 * src/files.c (compute_base_names): When computing the output file
3733 names from the input file name, strip the directory part.
3734
3735 2002-06-18 Akim Demaille <akim@epita.fr>
3736
3737 * data/bison.simple.new: Comment changes.
3738 Reported by Andreas Schwab.
3739
3740 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
3741
3742 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
3743 there are no `label `yyoverflowlab' defined but not used' warnings
3744 when yyoverflow is defined.
3745
3746 2002-06-18 Akim Demaille <akim@epita.fr>
3747
3748 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
3749 new member.
3750 (symbol_destructor_set): Adjust.
3751 * src/output.c (symbol_destructors_output): Output the destructor
3752 locations.
3753 Output the symbol name.
3754 * data/bison.simple (b4_symbol_destructor): Adjust.
3755
3756 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
3757 and Akim Demaille <akim@epita.fr>
3758
3759 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
3760 what's left on the stack when the error recovery hits EOF.
3761 * tests/actions.at (Destructors): Complete to exercise this case.
3762
3763 2002-06-17 Akim Demaille <akim@epita.fr>
3764
3765 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
3766 arguments is really empty, not only equal to `[]'.
3767 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
3768 member.
3769 (symbol_destructor_set): New.
3770 * src/output.c (symbol_destructors_output): New.
3771 * src/reader.h (brace_code_t, current_braced_code): New.
3772 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
3773 (handle_dollar): Rename as...
3774 (handle_action_dollar): this.
3775 (handle_destructor_dollar): New.
3776 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
3777 (grammar_declaration): Use it.
3778 * data/bison.simple (yystos): Is always defined.
3779 (yydestructor): New.
3780 * tests/actions.at (Destructors): New.
3781 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
3782
3783 2002-06-17 Akim Demaille <akim@epita.fr>
3784
3785 * src/symlist.h, src/symlist.c (symbol_list_length): New.
3786 * src/scan-gram.l (handle_dollar, handle_at): Compute the
3787 rule_length only when needed.
3788 * src/output.c (actions_output, token_definitions_output): Output
3789 the full M4 block.
3790 * src/symtab.c: Don't access directly to the symbol tag, use
3791 symbol_tag_get.
3792 * src/parse-gram.y: Use symbol_list_free.
3793
3794 2002-06-17 Akim Demaille <akim@epita.fr>
3795
3796 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
3797 (symbol_list_prepend, get_type_name): Move to...
3798 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
3799 (symbol_list_prepend, symbol_list_n_type_name_get): here.
3800 Adjust all callers.
3801 (symbol_list_free): New.
3802 * src/scan-gram.l (handle_dollar): Takes a location.
3803 * tests/input.at (Invalid $n): Adjust.
3804
3805 2002-06-17 Akim Demaille <akim@epita.fr>
3806
3807 * src/reader.h, src/reader.c (symbol_list_new): Export it.
3808 (symbol_list_prepend): New.
3809 * src/parse-gram.y (%union): `list' is a new member.
3810 (symbols.1): New, replaces...
3811 (terms_to_prec.1, nterms_to_type.1): these.
3812 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
3813 Take a location as additional argument.
3814 Adjust all callers.
3815
3816 2002-06-15 Akim Demaille <akim@epita.fr>
3817
3818 * src/parse-gram.y: Move %token in the declaration section so that
3819 we don't depend upon CVS Bison.
3820
3821 2002-06-15 Akim Demaille <akim@epita.fr>
3822
3823 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
3824 * src/print.c (print_core): Use it.
3825
3826 2002-06-15 Akim Demaille <akim@epita.fr>
3827
3828 * src/conflicts.c (log_resolution): Accept the rule involved in
3829 the sr conflicts instead of the lookahead number that points to
3830 that rule.
3831 (flush_reduce): Accept the current lookahead vector as argument,
3832 instead of the index in LA.
3833 (resolve_sr_conflict): Accept the current number of lookahead
3834 bitset to consider for the STATE, instead of the index in LA.
3835 (set_conflicts): Adjust.
3836 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
3837
3838 2002-06-15 Akim Demaille <akim@epita.fr>
3839
3840 * src/state.h (state_t): Replace the `lookaheadsp' member, a
3841 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
3842 Adjust all dependencies.
3843 * src/lalr.c (initialize_lookaheads): Split into...
3844 (states_lookaheads_count, states_lookaheads_initialize): these.
3845 (lalr): Adjust.
3846
3847 2002-06-15 Akim Demaille <akim@epita.fr>
3848
3849 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
3850 out of...
3851 (grammar_rules_print): here.
3852 * src/reduce.c (reduce_output): Use it.
3853 * tests/reduce.at (Useless Rules, Reduced Automaton)
3854 (Underivable Rules): Adjust.
3855
3856 2002-06-15 Akim Demaille <akim@epita.fr>
3857
3858 Copy BYacc's nice way to report the grammar.
3859
3860 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
3861 New.
3862 Don't print the rules' location, it is confusing and useless.
3863 (rule_print): Use grammar_rhs_print.
3864 * src/print.c (print_grammar): Use grammar_rules_print.
3865
3866 2002-06-15 Akim Demaille <akim@epita.fr>
3867
3868 Complete and rationalize `useless thing' warnings.
3869
3870 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
3871 (symbol_tag_print): New.
3872 Use them everywhere in place of accessing directly the tag member.
3873 * src/gram.h, src/gram.c (rule_print): New.
3874 Use it where a rule used to be printed `by hand'.
3875 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
3876 (reduce_grammar_tables): Report the useless rules.
3877 (reduce_print): Useless things are a warning, not an error.
3878 Report it as such.
3879 * tests/reduce.at (Useless Nonterminals, Useless Rules):
3880 (Reduced Automaton, Underivable Rules): Adjust.
3881 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
3882 * tests/conflicts.at (Unresolved SR Conflicts)
3883 (Solved SR Conflicts): Adjust.
3884
3885 2002-06-15 Akim Demaille <akim@epita.fr>
3886
3887 Let symbols have a location.
3888
3889 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
3890 (getsym): Adjust.
3891 Adjust all callers.
3892 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
3893 Use location_t, not int.
3894 * src/symtab.c (symbol_check_defined): Take advantage of the
3895 location.
3896 * tests/regression.at (Invalid inputs): Adjust.
3897
3898 2002-06-15 Akim Demaille <akim@epita.fr>
3899
3900 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
3901 (input): Don't try to initialize yylloc here, do it in the
3902 scanner.
3903 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
3904 * src/gram.h (rule_t): Change line and action_line into location
3905 and action_location, of location_t type.
3906 Adjust all dependencies.
3907 * src/location.h, src/location.c (empty_location): New.
3908 * src/reader.h, src/reader.c (grammar_start_symbol_set)
3909 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
3910 (grammar_current_rule_symbol_append)
3911 (grammar_current_rule_action_append): Expect a location as argument.
3912 * src/reader.c (grammar_midrule_action): Adjust to attach an
3913 action's location as dummy symbol location.
3914 * src/symtab.h, src/symtab.c (startsymbol_location): New.
3915 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
3916 the line numbers.
3917
3918 2002-06-14 Akim Demaille <akim@epita.fr>
3919
3920 Grammar declarations may be found in the grammar section.
3921
3922 * src/parse-gram.y (rules_or_grammar_declaration): New.
3923 (declarations): Each declaration may end with a semicolon, not
3924 just...
3925 (grammar_declaration): `"%union"'.
3926 (grammar): Branch to rules_or_grammar_declaration.
3927
3928 2002-06-14 Akim Demaille <akim@epita.fr>
3929
3930 * src/main.c (main): Invoke scanner_free.
3931
3932 2002-06-14 Akim Demaille <akim@epita.fr>
3933
3934 * src/output.c (m4_invoke): Extracted from...
3935 (output_skeleton): here.
3936 Free tempfile.
3937
3938 2002-06-14 Akim Demaille <akim@epita.fr>
3939
3940 * src/parse-gram.y (directives, directive, gram)
3941 (grammar_directives, precedence_directives, precedence_directive):
3942 Rename as...
3943 (declarations, declaration, grammar, grammar_declaration)
3944 (precedence_declaration, precedence_declarator): these.
3945 (symbol_declaration): New.
3946
3947 2002-06-14 Akim Demaille <akim@epita.fr>
3948
3949 * src/files.c (action_obstack): Remove, unused.
3950 (output_obstack): Remove it, and all its dependencies, as it is no
3951 longer needed.
3952 * src/reader.c (epilogue_set): Build the epilogue in the
3953 muscle_obstack.
3954 * src/output.h, src/output.c (muscle_obstack): Move to...
3955 * src/muscle_tab.h, src/muscle_tab.h: here.
3956 (muscle_init): Initialize muscle_obstack.
3957 (muscle_free): New.
3958 * src/main.c (main): Call it.
3959
3960 2002-06-14 Akim Demaille <akim@epita.fr>
3961
3962 * src/location.h: New, extracted from...
3963 * src/reader.h: here.
3964 * src/Makefile.am (noinst_HEADERS): Merge into
3965 (bison_SOURCES): this.
3966 Add location.h.
3967 * src/parse-gram.y: Use location_t instead of Bison's.
3968 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
3969 Use location_t instead of ints.
3970
3971 2002-06-14 Akim Demaille <akim@epita.fr>
3972
3973 * data/bison.simple, data/bison.c++: Be sure to restore the
3974 current #line when returning to the skeleton contents after having
3975 exposed the input file's #line.
3976
3977 2002-06-12 Akim Demaille <akim@epita.fr>
3978
3979 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
3980 eager.
3981 * tests/actions.at (Exotic Dollars): New.
3982
3983 2002-06-12 Akim Demaille <akim@epita.fr>
3984
3985 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
3986 ['"/] too eagerly.
3987 * tests/input.at (Torturing the Scanner): New.
3988
3989 2002-06-11 Akim Demaille <akim@epita.fr>
3990
3991 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
3992 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
3993 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
3994 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
3995 * src/reader.c (reader): Use it.
3996
3997 2002-06-11 Akim Demaille <akim@epita.fr>
3998
3999 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
4000 Adjust all callers.
4001 (scanner_last_string_free): New.
4002
4003 2002-06-11 Akim Demaille <akim@epita.fr>
4004
4005 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
4006 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
4007 (last_string, YY_OBS_FREE): New.
4008 Use them when returning an ID.
4009
4010 2002-06-11 Akim Demaille <akim@epita.fr>
4011
4012 Have Bison grammars parsed by a Bison grammar.
4013
4014 * src/reader.c, src/reader.h (prologue_augment): New.
4015 * src/reader.c (copy_definition): Remove.
4016
4017 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
4018 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
4019 (grammar_current_rule_prec_set, grammar_current_rule_check)
4020 (grammar_current_rule_symbol_append)
4021 (grammar_current_rule_action_append): Export.
4022 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
4023 (symbol_list_action_append): Remove.
4024 Hook the routines from reader.
4025 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
4026 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
4027
4028 * src/reader.c (read_declarations): Remove, unused.
4029
4030 * src/parse-gram.y: Handle the epilogue.
4031 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
4032 (grammar_start_symbol_set): this.
4033 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
4034 * src/reader.c (readgram): Remove, unused.
4035 (reader): Adjust to insert eoftoken and axiom where appropriate.
4036
4037 * src/reader.c (copy_dollar): Replace with...
4038 * src/scan-gram.h (handle_dollar): this.
4039 * src/parse-gram.y: Remove `%thong'.
4040
4041 * src/reader.c (copy_at): Replace with...
4042 * src/scan-gram.h (handle_at): this.
4043
4044 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
4045 New.
4046
4047 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
4048 time being.
4049
4050 * src/reader.h, src/reader.c (grammar_rule_end): New.
4051
4052 * src/parse.y (current_type, current_class): New.
4053 Implement `%nterm', `%token' support.
4054 Merge `%term' into `%token'.
4055 (string_as_id): New.
4056 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
4057 type name.
4058
4059 * src/parse-gram.y: Be sure to handle properly the beginning of
4060 rules.
4061
4062 * src/parse-gram.y: Handle %type.
4063 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
4064
4065 * src/parse-gram.y: More directives support.
4066 * src/options.c: No longer handle source directives.
4067
4068 * src/parse-gram.y: Fix %output.
4069
4070 * src/parse-gram.y: Handle %union.
4071 Use the prologue locations.
4072 * src/reader.c (parse_union_decl): Remove.
4073
4074 * src/reader.h, src/reader.c (epilogue_set): New.
4075 * src/parse-gram.y: Use it.
4076
4077 * data/bison.simple, data/bison.c++: b4_stype is now either not
4078 defined, then default to int, or to the contents of %union,
4079 without `union' itself.
4080 Adjust.
4081 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
4082
4083 * src/output.c (actions_output): Don't output braces, as they are
4084 already handled by the scanner.
4085
4086 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
4087 characters to themselves.
4088
4089 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
4090 that the epilogue has a proper #line.
4091
4092 * src/parse-gram.y: Handle precedence/associativity.
4093
4094 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
4095 a terminal.
4096 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
4097 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
4098 at all to define terminals that cannot be emitted.
4099
4100 * src/scan-gram.l: Escape M4 characters.
4101
4102 * src/scan-gram.l: Working properly with escapes in user
4103 strings/characters.
4104
4105 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
4106 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
4107 grammar.
4108 Use more modest sizes, as for the time being the parser does not
4109 release memory, and therefore the process swallows a huge amount
4110 of memory.
4111
4112 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
4113 stricter %token grammar.
4114
4115 * src/symtab.h (associativity): Add `undef_assoc'.
4116 (symbol_precedence_set): Do nothing when passed an undef_assoc.
4117 * src/symtab.c (symbol_check_alias_consistence): Adjust.
4118
4119 * tests/regression.at (Invalid %directive): Remove, as it is now
4120 meaningless.
4121 (Invalid inputs): Adjust to the new error messages.
4122 (Token definitions): The new grammar doesn't allow too many
4123 eccentricities.
4124
4125 * src/lex.h, src/lex.c: Remove.
4126 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
4127 (copy_character, copy_string2, copy_string, copy_identifier)
4128 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
4129 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
4130 (parse_action): Remove.
4131 * po/POTFILES.in: Adjust.
4132
4133 2002-06-11 Akim Demaille <akim@epita.fr>
4134
4135 * src/reader.c (parse_action): Don't store directly into the
4136 rule's action member: return the action as a string.
4137 Don't require `rule_length' as an argument: compute it.
4138 (grammar_current_rule_symbol_append)
4139 (grammar_current_rule_action_append): New, eved out from
4140 (readgram): here.
4141 Remove `action_flag', `rulelength', unused now.
4142
4143 2002-06-11 Akim Demaille <akim@epita.fr>
4144
4145 * src/reader.c (grammar_current_rule_prec_set).
4146 (grammar_current_rule_check): New, eved out from...
4147 (readgram): here.
4148 Remove `xaction', `first_rhs': useless.
4149 * tests/input.at (Type clashes): New.
4150 * tests/existing.at (GNU Cim Grammar): Adjust.
4151
4152 2002-06-11 Akim Demaille <akim@epita.fr>
4153
4154 * src/reader.c (grammar_midrule_action): New, Eved out from
4155 (readgram): here.
4156
4157 2002-06-11 Akim Demaille <akim@epita.fr>
4158
4159 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
4160 New.
4161 (readgram): Use them as replacement of inlined code, crule and
4162 crule1.
4163
4164 2002-06-11 Akim Demaille <akim@epita.fr>
4165
4166 * src/reader.c (grammar_end, grammar_symbol_append): New.
4167 (readgram): Use them.
4168 Make the use of `p' as local as possible.
4169
4170 2002-06-10 Akim Demaille <akim@epita.fr>
4171
4172 GCJ's parser requires the tokens to be defined before the prologue.
4173
4174 * data/bison.simple: Output the token definition before the user's
4175 prologue.
4176 * tests/regression.at (Braces parsing, Duplicate string)
4177 (Mixing %token styles): Check the output from bison.
4178 (Early token definitions): New.
4179
4180 2002-06-10 Akim Demaille <akim@epita.fr>
4181
4182 * src/symtab.c (symbol_user_token_number_set): Don't complain when
4183 assigning twice the same user number to a token, so that we can
4184 use it in...
4185 * src/lex.c (lex): here.
4186 Also use `symbol_class_set' instead of hand written code.
4187 * src/reader.c (parse_assoc_decl): Likewise.
4188
4189 2002-06-10 Akim Demaille <akim@epita.fr>
4190
4191 * src/symtab.c, src/symtab.c (symbol_class_set)
4192 (symbol_user_token_number_set): New.
4193 * src/reader.c (parse_token_decl): Use them.
4194 Use a switch instead of ifs.
4195 Use a single argument.
4196
4197 2002-06-10 Akim Demaille <akim@epita.fr>
4198
4199 Remove `%thong' support as it is undocumented, unused, duplicates
4200 `%token's job, and creates useless e-mail traffic with people who
4201 want to know what it is, why it is undocumented, unused, and
4202 duplicates `%token's job.
4203
4204 * src/reader.c (parse_thong_decl): Remove.
4205 * src/options.c (option_table): Remove "thong".
4206 * src/lex.h (tok_thong): Remove.
4207
4208 2002-06-10 Akim Demaille <akim@epita.fr>
4209
4210 * src/symtab.c, src/symtab.c (symbol_type_set)
4211 (symbol_precedence_set): New.
4212 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
4213 (value_components_used): Remove, unused.
4214
4215 2002-06-09 Akim Demaille <akim@epita.fr>
4216
4217 Move symbols handling code out of the reader.
4218
4219 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
4220 (axiom): Move to...
4221 * src/symtab.h, src/symtab.c: here.
4222
4223 * src/gram.c (start_symbol): Remove: use startsymbol->number.
4224 * src/reader.c (startval): Rename as...
4225 * src/symtab.h, src/symtab.c (startsymbol): this.
4226 * src/reader.c: Adjust.
4227
4228 * src/reader.c (symbol_check_defined, symbol_make_alias)
4229 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
4230 (token_translations_init)
4231 Move to...
4232 * src/symtab.c: here.
4233 * src/reader.c (packsymbols): Move to...
4234 * src/symtab.h, src/symtab.c (symbols_pack): here.
4235 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
4236 argument.
4237
4238 2002-06-03 Akim Demaille <akim@epita.fr>
4239
4240 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
4241 then statements.
4242
4243 2002-06-03 Akim Demaille <akim@epita.fr>
4244
4245 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
4246 structs with non literals.
4247 * src/scan-skel.l: never-interactive.
4248 * src/conflicts.c (enum conflict_resolution_e): No trailing
4249 comma.
4250 * src/getargs.c (usage): Split long literal strings.
4251 Reported by Hans Aberg.
4252
4253 2002-05-28 Akim Demaille <akim@epita.fr>
4254
4255 * data/bison.c++: Use C++ ostreams.
4256 (cdebug_): New member.
4257
4258 2002-05-28 Akim Demaille <akim@epita.fr>
4259
4260 * src/output.c (output_skeleton): Be sure to allocate enough room
4261 for `/' _and_ for `\0' in full_skeleton.
4262
4263 2002-05-28 Akim Demaille <akim@epita.fr>
4264
4265 * data/bison.c++: Catch up with bison.simple:
4266 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4267 and Paul Eggert <eggert@twinsun.com>: `error' handing.
4268 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
4269 and popping traces.
4270
4271 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4272
4273 * src/output.c (output_skeleton): Put an explicit path in front of
4274 the skeleton file name, rather than relying on the -I directory,
4275 to partially alleviate effects of having a skeleton file lying around
4276 in the current directory.
4277
4278 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4279
4280 * src/conflicts.c (log_resolution): Correct typo:
4281 obstack_printf should be obstack_fgrow1.
4282
4283 2002-05-26 Akim Demaille <akim@epita.fr>
4284
4285 * src/state.h (state_t): `solved_conflicts' is a new member.
4286 * src/LR0.c (new_state): Set it to 0.
4287 * src/conflicts.h, src/conflicts.c (print_conflicts)
4288 (free_conflicts, solve_conflicts): Rename as...
4289 (conflicts_print, conflicts_free, conflicts_solve): these.
4290 Adjust callers.
4291 * src/conflicts.c (enum conflict_resolution_e)
4292 (solved_conflicts_obstack): New, used by...
4293 (log_resolution): this.
4294 Adjust to attach the conflict resolution to each state.
4295 Complete the description with the precedence/associativity
4296 information.
4297 (resolve_sr_conflict): Adjust.
4298 * src/print.c (print_state): Output its solved_conflicts.
4299 * tests/conflicts.at (Unresolved SR Conflicts)
4300 (Solved SR Conflicts): Exercise --report=all.
4301
4302 2002-05-26 Akim Demaille <akim@epita.fr>
4303
4304 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
4305 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
4306 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
4307 (token_number_t, item_number_as_token_number)
4308 (token_number_as_item_number, muscle_insert_token_number_table):
4309 Rename as...
4310 (symbol_number_t, item_number_as_symbol_number)
4311 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
4312 these, since it is more appropriate.
4313
4314 2002-05-26 Akim Demaille <akim@epita.fr>
4315
4316 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
4317 `Error:' lines.
4318 * data/bison.simple (yystos) [YYDEBUG]: New.
4319 (yyparse) [YYDEBUG]: Display the symbols which are popped during
4320 error recovery.
4321 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
4322
4323 2002-05-25 Akim Demaille <akim@epita.fr>
4324
4325 * doc/bison.texinfo (Debugging): Split into...
4326 (Tracing): this new section, its former contents, and...
4327 (Understanding): this new section.
4328 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
4329 by...
4330 (report_flag): this.
4331 Adjust all dependencies.
4332 (report_args, report_types, report_argmatch): New.
4333 (usage, getargs): Report/support -r, --report.
4334 * src/options.h
4335 (struct option_table_struct): Rename as..,
4336 (struct option_table_s): this.
4337 Rename the `set_flag' member to `flag' to match with getopt_long's
4338 struct.
4339 * src/options.c (option_table): Split verbose into an entry for
4340 %verbose, and another for --verbose.
4341 Support --report/-r, so remove -r from the obsolete --raw.
4342 * src/print.c: Attach full item sets and lookaheads reports to
4343 report_flag instead of trace_flag.
4344 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
4345
4346 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4347 and Paul Eggert <eggert@twinsun.com>
4348
4349 * data/bison.simple (yyparse): Correct error handling to conform to
4350 POSIX and yacc. Specifically, after syntax error is discovered,
4351 do not reduce further before shifting the error token.
4352 Clean up the code a bit by removing the labels yyerrdefault,
4353 yyerrhandle, yyerrpop.
4354 * NEWS: Document the above.
4355
4356 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4357
4358 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
4359 type; it isn't always big enough, since it doesn't necessarily
4360 include non-terminals.
4361 (yytranslate): Expand definition of yy_token_number_type, so that
4362 the latter can be removed.
4363 (yy_token_number_type): Remove, only one use.
4364 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
4365 don't use TokenNumberType as element type.
4366
4367 * tests/regression.at: Modify expected output to agree with change
4368 to yyr1 and yytranslate.
4369
4370 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
4371
4372 * src/reader.c (parse_action): Use copy_character instead of
4373 obstack_1grow.
4374
4375 2002-05-13 Akim Demaille <akim@epita.fr>
4376
4377 * tests/regression.at (Token definitions): Prototype yylex and
4378 yyerror.
4379
4380 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4381
4382 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
4383 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
4384 32-bit arithmetic.
4385 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
4386
4387 2002-05-07 Akim Demaille <akim@epita.fr>
4388
4389 * tests/synclines.at: Be sure to prototype yylex and yyerror to
4390 avoid GCC warnings.
4391
4392 2002-05-07 Akim Demaille <akim@epita.fr>
4393
4394 Kill GCC warnings.
4395
4396 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
4397 over the RHS of each rule.
4398 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
4399 * src/state.h (state_t): Member `nitems' is unsigned short.
4400 * src/LR0.c (get_state): Adjust.
4401 * src/reader.c (packgram): Likewise.
4402 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
4403 `Type'.
4404 (muscle_insert_int_table): Remove, unused.
4405 (prepare_rules): Remove `max'.
4406
4407 2002-05-06 Akim Demaille <akim@epita.fr>
4408
4409 * src/closure.c (print_firsts): Display of the symbol tags.
4410 (bitmatrix_print): Move to...
4411 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
4412 here.
4413 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
4414
4415 2002-05-06 Akim Demaille <akim@epita.fr>
4416
4417 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
4418 hash_do_for_each.
4419
4420 2002-05-06 Akim Demaille <akim@epita.fr>
4421
4422 * src/LR0.c (new_state, get_state): Instead of using the global
4423 `kernel_size' and `kernel_base', have two new arguments:
4424 `core_size' and `core'.
4425 Adjust callers.
4426
4427 2002-05-06 Akim Demaille <akim@epita.fr>
4428
4429 * src/reader.c (packgram): No longer end `ritem' with a 0
4430 sentinel: it is not used.
4431
4432 2002-05-05 Akim Demaille <akim@epita.fr>
4433
4434 New experimental feature: display the lookaheads in the report and
4435 graph.
4436
4437 * src/print (print_core): When --trace-flag, display the rules
4438 lookaheads.
4439 * src/print_graph.c (print_core): Likewise.
4440 Swap the arguments.
4441 Adjust caller.
4442
4443 2002-05-05 Akim Demaille <akim@epita.fr>
4444
4445 * tests/torture.at (Many lookaheads): New test.
4446
4447 2002-05-05 Akim Demaille <akim@epita.fr>
4448
4449 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
4450 (GENERATE_MUSCLE_INSERT_TABLE): this.
4451 (output_int_table, output_unsigned_int_table, output_short_table)
4452 (output_token_number_table, output_item_number_table): Replace with...
4453 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
4454 (muscle_insert_short_table, muscle_insert_token_number_table)
4455 (muscle_insert_item_number_table): these.
4456 Adjust all callers.
4457 (prepare_tokens): Don't free `translations', since...
4458 * src/reader.h, src/reader.c (grammar_free): do it.
4459 Move to...
4460 * src/gram.h, src/gram.c (grammar_free): here.
4461 * data/bison.simple, data/bison.c++: b4_token_number_max is now
4462 b4_translate_max.
4463
4464 2002-05-05 Akim Demaille <akim@epita.fr>
4465
4466 * src/output.c (output_unsigned_int_table): New.
4467 (prepare_rules): `i' is unsigned.
4468 `prhs', `rline', `r2' are unsigned int.
4469 Rename muscle `rhs_number_max' as `rhs_max'.
4470 Output muscles `prhs_max', `rline_max', and `r2_max'.
4471 Free rline and r1.
4472 * data/bison.simple, data/bison.c++: Adjust to use these muscles
4473 to compute types instead of constant types.
4474 * tests/regression.at (Web2c Actions): Adjust.
4475
4476 2002-05-04 Akim Demaille <akim@epita.fr>
4477
4478 * src/symtab.h (SALIAS, SUNDEF): Rename as...
4479 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
4480 Adjust dependencies.
4481 * src/output.c (token_definitions_output): Be sure not to output a
4482 `#define 'a'' when fed with `%token 'a' "a"'.
4483 * tests/regression.at (Token definitions): New.
4484
4485 2002-05-03 Paul Eggert <eggert@twinsun.com>
4486
4487 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
4488 for K&R C.
4489
4490 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
4491
4492 * Makefile.am (SUBDIRS): Remove intl.
4493 (EXTRA_DIST): Add config/config.rpath.
4494
4495 2002-05-03 Akim Demaille <akim@epita.fr>
4496
4497 * data/bison.simple (m4_if): Don't output empty enums.
4498 And actually, output valid enum definitions :(.
4499
4500 2002-05-03 Akim Demaille <akim@epita.fr>
4501
4502 * configure.bat: Remove, completely obsolete.
4503 * Makefile.am (EXTRA_DIST): Adjust.
4504 Don't distribute config.rpath...
4505 * config/Makefile.am (EXTRA_DIST): Do it.
4506
4507 2002-05-03 Akim Demaille <akim@epita.fr>
4508
4509 * configure.in (GETTEXT_VERSION): New.
4510 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
4511
4512 2002-05-03 Akim Demaille <akim@epita.fr>
4513
4514 * data/bison.simple (b4_token_enum): New.
4515 (b4_token_defines): Use it to output tokens both as #define and
4516 enums.
4517 Suggested by Paul Eggert.
4518 * src/output.c (token_definitions_output): Don't output spurious
4519 white spaces.
4520
4521 2002-05-03 Akim Demaille <akim@epita.fr>
4522
4523 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
4524
4525 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
4526
4527 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
4528 Update the stack class, give a try to deque as the default container.
4529
4530 2002-05-02 Akim Demaille <akim@epita.fr>
4531
4532 * data/bison.simple (yyparse): Do not implement @$ = @1.
4533 (YYLLOC_DEFAULT): Adjust to do it.
4534 * doc/bison.texinfo (Location Default Action): Fix.
4535
4536 2002-05-02 Akim Demaille <akim@epita.fr>
4537
4538 * src/reader.c (parse_braces): Merge into...
4539 (parse_action): this.
4540
4541 2002-05-02 Akim Demaille <akim@epita.fr>
4542
4543 * configure.in (ALL_LINGUAS): Remove.
4544 * po/LINGUAS, hr.po: New.
4545
4546 2002-05-02 Akim Demaille <akim@epita.fr>
4547
4548 Remove the so called hairy (semantic) parsers.
4549
4550 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
4551 * src/gram.h, src/gram.c (semantic_parser): Remove.
4552 (rule_t): Remove the guard and guard_line members.
4553 * src/lex.h (token_t): remove tok_guard.
4554 * src/options.c (option_table): Remove %guard and %semantic_parser
4555 support.
4556 * src/output.c, src/output.h (guards_output): Remove.
4557 (prepare): Adjust.
4558 (token_definitions_output): Don't output the `T'
4559 tokens (???).
4560 (output_skeleton): Don't output the guards.
4561 * src/files.c, src/files.c (attrsfile): Remove.
4562 * src/reader.c (symbol_list): Remove the guard and guard_line
4563 members.
4564 Adjust dependencies.
4565 (parse_guard): Remove.
4566 * data/bison.hairy: Remove.
4567 * doc/bison.texinfo (Environment Variables): Remove occurrences of
4568 BISON_HAIRY.
4569
4570 2002-05-02 Akim Demaille <akim@epita.fr>
4571
4572 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
4573 (parse_guard): Rename the formal argument `stack_offset' as
4574 `rule_length', which is more readable.
4575 Adjust callers.
4576 (copy_at, copy_dollar): Instead of outputting the hard coded
4577 values of $$, $n and so forth, output invocation to b4_lhs_value,
4578 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
4579 Note: this patch partially drops `semantic-parser' support: it
4580 always does `rule_length - n', where semantic parsers ought to
4581 always use `-n'.
4582 * data/bison.simple, data/bison.c++ (b4_lhs_value)
4583 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
4584
4585 2002-05-02 Akim Demaille <akim@epita.fr>
4586
4587 * configure.in (AC_INIT): Bump to 1.49b.
4588 (AM_INIT_AUTOMAKE): Short invocation.
4589
4590 2002-05-02 Akim Demaille <akim@epita.fr>
4591
4592 Version 1.49a.
4593
4594 2002-05-01 Akim Demaille <akim@epita.fr>
4595
4596 * src/skeleton.h: Remove.
4597
4598 2002-05-01 Akim Demaille <akim@epita.fr>
4599
4600 * src/skeleton.h: Fix the #endif.
4601 Reported by Magnus Fromreide.
4602
4603 2002-04-26 Paul Eggert <eggert@twinsun.com>
4604
4605 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
4606 Define if we define YYSTYPE and YYLTYPE, respectively.
4607 (YYCOPY): Fix [] quoting problem in the non-GCC case.
4608
4609 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
4610
4611 * src/scan-skel.l: Postprocess quadrigraphs.
4612
4613 * src/reader.c (copy_character): New function, used to output
4614 single characters while replacing `[' and `]' with quadrigraphs, to
4615 avoid troubles with M4 quotes.
4616 (copy_comment): Output characters with copy_character.
4617 (read_additionnal_code): Likewise.
4618 (copy_string2): Likewise.
4619 (copy_definition): Likewise.
4620
4621 * tests/calc.at: Exercise M4 quoting.
4622
4623 2002-04-25 Akim Demaille <akim@epita.fr>
4624
4625 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
4626 between `!' and the command.
4627 Reported by Paul Eggert.
4628
4629 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
4630
4631 * tests/calc.at: Exercise prologue splitting.
4632
4633 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
4634 `b4_post_prologue' instead of `b4_prologue'.
4635
4636 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
4637 muscles.
4638 (output): Free pre_prologue_obstack and post_prologue_obstack.
4639 * src/files.h, src/files.c (attrs_obstack): Remove.
4640 (pre_prologue_obstack, post_prologue_obstack): New.
4641 * src/reader.c (copy_definition): Add a parameter to specify the
4642 obstack to fill, instead of using attrs_obstack unconditionally.
4643 (read_declarations): Pass pre_prologue_obstack to copy_definition if
4644 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
4645
4646 2002-04-23 Paul Eggert <eggert@twinsun.com>
4647
4648 * data/bison.simple: Remove unnecessary commentary and white
4649 space differences from 1_29-branch.
4650 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
4651
4652 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
4653 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
4654 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
4655 constructors or destructors.
4656
4657 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
4658
4659 2002-04-23 Akim Demaille <akim@epita.fr>
4660
4661 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
4662 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
4663 location with columns.
4664 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
4665 All reported by Paul Eggert.
4666
4667 2002-04-22 Akim Demaille <akim@epita.fr>
4668
4669 * src/reduce.c (dump_grammar): Move to...
4670 * src/gram.h, src/gram.c (grammar_dump): here.
4671 Be sure to separate long item numbers.
4672 Don't read the members of a rule's prec if its nil.
4673
4674 2002-04-22 Akim Demaille <akim@epita.fr>
4675
4676 * src/output.c (table_size, table_grow): New.
4677 (MAXTABLE): Remove, replace uses with table_size.
4678 (pack_vector): Instead of dying when the table is too big, grow it.
4679
4680 2002-04-22 Akim Demaille <akim@epita.fr>
4681
4682 * data/bison.simple (yyr1): Its type is that of a token number.
4683 * data/bison.c++ (r1_): Likewise.
4684 * tests/regression.at (Web2c Actions): Adjust.
4685
4686 2002-04-22 Akim Demaille <akim@epita.fr>
4687
4688 * src/reader.c (token_translations_init): 256 is now the default
4689 value for the error token, i.e., it will be assigned another
4690 number if the user assigned 256 to one of her tokens.
4691 (reader): Don't force 256 to error.
4692 * doc/bison.texinfo (Symbols): Adjust.
4693 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
4694 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
4695 etc. instead of 10, 20, 30 (which was used to `jump' over error
4696 (256) and undefined (2)).
4697
4698 2002-04-22 Akim Demaille <akim@epita.fr>
4699
4700 Propagate more token_number_t.
4701
4702 * src/gram.h (token_number_as_item_number)
4703 (item_number_as_token_number): New.
4704 * src/output.c (GENERATE_OUTPUT_TABLE): New.
4705 Use it to create output_item_number_table and
4706 output_token_number_table.
4707 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
4708 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
4709 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
4710 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
4711
4712 2002-04-22 Akim Demaille <akim@epita.fr>
4713
4714 * src/output.h, src/output.c (get_lines_number): Remove.
4715
4716 2002-04-19 Akim Demaille <akim@epita.fr>
4717
4718 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
4719 as Lex/Flex'.
4720 (Debugging): More details about enabling the debugging features.
4721 (Table of Symbols): Describe $$, $n, @$, and @n.
4722 Suggested by Tim Josling.
4723
4724 2002-04-19 Akim Demaille <akim@epita.fr>
4725
4726 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
4727
4728 2002-04-10 Akim Demaille <akim@epita.fr>
4729
4730 * src/system.h: Rely on HAVE_LIMITS_H.
4731 Suggested by Paul Eggert.
4732
4733 2002-04-09 Akim Demaille <akim@epita.fr>
4734
4735 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
4736 full stderr, and strip it according to the bison options, instead
4737 of composing the error message from different bits.
4738 This makes it easier to check for several error messages.
4739 Adjust all the invocations.
4740 Add an invocation exercising the error token.
4741 Add an invocation demonstrating a stupid error message.
4742 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
4743 Adjust the tests.
4744 Error message are for stderr, not stdout.
4745
4746 2002-04-09 Akim Demaille <akim@epita.fr>
4747
4748 * src/gram.h, src/gram.c (error_token_number): Remove, use
4749 errtoken->number.
4750 * src/reader.c (reader): Don't specify the user token number (2)
4751 for $undefined, as it uselessly prevents using it.
4752 * src/gram.h (token_number_t): Move to...
4753 * src/symtab.h: here.
4754 (state_t.number): Is a token_number_t.
4755 * src/print.c, src/reader.c: Use undeftoken->number instead of
4756 hard coded 2.
4757 (Even though this 2 is not the same as above: the number of the
4758 undeftoken remains being 2, it is its user token number which
4759 might not be 2).
4760 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
4761 `user_token_number_max'.
4762 Output `undef_token_number'.
4763 * data/bison.simple, data/bison.c++: Use them.
4764 Be sure to map invalid yylex return values to
4765 `undef_token_number'. This saves us from gratuitous SEGV.
4766
4767 * tests/conflicts.at (Solved SR Conflicts)
4768 (Unresolved SR Conflicts): Adjust.
4769 * tests/regression.at (Web2c Actions): Adjust.
4770
4771 2002-04-08 Akim Demaille <akim@epita.fr>
4772
4773 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
4774 Adding #line.
4775 Remove the duplicate `typedefs'.
4776 (RhsNumberType): Fix the declaration and various other typos.
4777 Use __ofile__.
4778 * data/bison.simple: Use __ofile__.
4779 * src/scan-skel.l: Handle __ofile__.
4780
4781 2002-04-08 Akim Demaille <akim@epita.fr>
4782
4783 * src/gram.h (item_number_t): New, the type of item numbers in
4784 RITEM. Note that it must be able to code symbol numbers as
4785 positive number, and the negation of rule numbers as negative
4786 numbers.
4787 Adjust all dependencies (pretty many).
4788 * src/reduce.c (rule): Remove this `short *' pointer: use
4789 item_number_t.
4790 * src/system.h (MINSHORT, MAXSHORT): Remove.
4791 Include `limits.h'.
4792 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
4793 (shortcpy): Remove.
4794 (MAXTABLE): Move to...
4795 * src/output.c (MAXTABLE): here.
4796 (prepare_rules): Use output_int_table to output rhs.
4797 * data/bison.simple, data/bison.c++: Adjust.
4798 * tests/torture.at (Big triangle): Move the limit from 254 to
4799 500.
4800 * tests/regression.at (Web2c Actions): Ajust.
4801
4802 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
4803 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
4804 passes, but produces negative #line number, once fixed, GCC is
4805 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
4806 C), it passes.
4807 * src/state.h (state_h): Code input lines on ints, not shorts.
4808
4809 2002-04-08 Akim Demaille <akim@epita.fr>
4810
4811 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
4812 and then the grammar.
4813
4814 2002-04-08 Akim Demaille <akim@epita.fr>
4815
4816 * src/system.h: No longer using strndup.
4817
4818 2002-04-07 Akim Demaille <akim@epita.fr>
4819
4820 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
4821 * src/output.c (output_table_data): Return the longest number.
4822 (prepare_tokens): Output `token_number_max').
4823 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
4824 New.
4825 Use them to define yy_token_number_type/TokenNumberType.
4826 Use this type for yytranslate.
4827 * tests/torture.at (Big triangle): Push the limit from 124 to
4828 253.
4829 * tests/regression.at (Web2c Actions): Adjust.
4830
4831 2002-04-07 Akim Demaille <akim@epita.fr>
4832
4833 * tests/torture.at (Big triangle): New.
4834 (GNU AWK Grammar, GNU Cim Grammar): Move to...
4835 * tests/existing.at: here.
4836
4837 2002-04-07 Akim Demaille <akim@epita.fr>
4838
4839 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
4840 nritems.
4841 Adjust dependencies.
4842
4843 2002-04-07 Akim Demaille <akim@epita.fr>
4844
4845 * src/reader.c: Normalize increments to prefix form.
4846
4847 2002-04-07 Akim Demaille <akim@epita.fr>
4848
4849 * src/reader.c, symtab.c: Remove debugging code.
4850
4851 2002-04-07 Akim Demaille <akim@epita.fr>
4852
4853 Rename all the `bucket's as `symbol_t'.
4854
4855 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
4856 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
4857 * src/symtab.c, src/symtab.h (bucket): Rename as...
4858 (symbol_t): this.
4859 (symbol_list_new, bucket_check_defined, bucket_make_alias)
4860 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
4861 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
4862 (buckets_new, buckets_free, buckets_do): Rename as...
4863 (symbol_list_new, symbol_check_defined, symbol_make_alias)
4864 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
4865 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
4866 (symbols_new, symbols_free, symbols_do): these.
4867
4868 2002-04-07 Akim Demaille <akim@epita.fr>
4869
4870 Use lib/hash for the symbol table.
4871
4872 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
4873 EOF.
4874 * src/lex.c (lex): Set the `number' member of new terminals.
4875 * src/reader.c (bucket_check_defined, bucket_make_alias)
4876 (bucket_check_alias_consistence, bucket_translation): New.
4877 (reader, grammar_free, readgram, token_translations_init)
4878 (packsymbols): Adjust.
4879 (reader): Number the predefined tokens.
4880 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
4881 for predefined tokens.
4882 * src/symtab.h (bucket): Remove all the hash table related
4883 members.
4884 * src/symtab.c (symtab): Replace by...
4885 (bucket_table): this.
4886 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
4887 (buckets_new, buckets_do): New.
4888
4889 2002-04-07 Akim Demaille <akim@epita.fr>
4890
4891 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
4892 (start_symbol, max_user_token_number, semantic_parser)
4893 (error_token_number): Initialize.
4894 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
4895 Initialize.
4896 (reader): Don't.
4897 (errtoken, eoftoken, undeftoken, axiom): Extern.
4898
4899 2002-04-07 Akim Demaille <akim@epita.fr>
4900
4901 * src/gram.h (rule_s): prec and precsym are now pointers
4902 to the bucket giving the priority/associativity.
4903 Member `associativity' removed: useless.
4904 * src/reduce.c, src/conflicts.c: Adjust.
4905
4906 2002-04-07 Akim Demaille <akim@epita.fr>
4907
4908 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
4909 Properly escape the symbols' TAG when outputting them.
4910
4911 2002-04-07 Akim Demaille <akim@epita.fr>
4912
4913 * src/lalr.h (LA): Is a bitsetv, not bitset*.
4914
4915 2002-04-07 Akim Demaille <akim@epita.fr>
4916
4917 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
4918 (LArule): this, which is an array to rule_t*.
4919 * src/print.c, src/conflicts.c: Adjust.
4920
4921 2002-04-07 Akim Demaille <akim@epita.fr>
4922
4923 * src/gram.h (rule_t): Rename `number' as `user_number'.
4924 `number' is a new member.
4925 Adjust dependencies.
4926 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
4927
4928 2002-04-07 Akim Demaille <akim@epita.fr>
4929
4930 As a result of the previous patch, it is no longer needed
4931 to reorder ritem itself.
4932
4933 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
4934
4935 2002-04-07 Akim Demaille <akim@epita.fr>
4936
4937 Be sure never to walk through RITEMS, but use only data related to
4938 the rules themselves. RITEMS should be banished.
4939
4940 * src/output.c (output_token_translations): Rename as...
4941 (prepare_tokens): this.
4942 In addition to `translate', prepare the muscles `tname' and
4943 `toknum', which were handled by...
4944 (output_rule_data): this.
4945 Remove, and move the remainder of its outputs into...
4946 (prepare_rules): this new routines, which also merges content from
4947 (output_gram): this.
4948 (prepare_rules): Be sure never to walk through RITEMS.
4949 (output_stos): Rename as...
4950 (prepare_stos): this.
4951 (output): Always invoke prepare_states, after all, just don't use it
4952 in the output if you don't need it.
4953
4954 2002-04-07 Akim Demaille <akim@epita.fr>
4955
4956 * src/LR0.c (new_state): Display `nstates' as the name of the
4957 newly created state.
4958 Adjust to initialize first_state and last_state if needed.
4959 Be sure to distinguish the initial from the final state.
4960 (new_states): Create the itemset of the initial state, and use
4961 new_state.
4962 * src/closure.c (closure): Now that the initial state has its
4963 items properly set, there is no need for a special case when
4964 creating `ruleset'.
4965
4966 As a result, now the rule 0, reducing to $axiom, is visible in the
4967 outputs. Adjust the test suite.
4968
4969 * tests/conflicts.at (Solved SR Conflicts)
4970 (Unresolved SR Conflicts): Adjust.
4971 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
4972 * tests/conflicts.at (S/R in initial): New.
4973
4974 2002-04-07 Akim Demaille <akim@epita.fr>
4975
4976 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
4977 the RHS of the rules.
4978 * src/output.c (output_gram): Likewise.
4979
4980 2002-04-07 Akim Demaille <akim@epita.fr>
4981
4982 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
4983 bucket.
4984 Adjust all dependencies.
4985 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
4986 `number' of the buckets too.
4987 * src/gram.h: Include `symtab.h'.
4988 (associativity): Move to...
4989 * src/symtab.h: here.
4990 No longer include `gram.h'.
4991
4992 2002-04-07 Akim Demaille <akim@epita.fr>
4993
4994 * src/gram.h, src/gram.c (rules_rhs_length): New.
4995 (ritem_longest_rhs): Use it.
4996 * src/gram.h (rule_t): `number' is a new member.
4997 * src/reader.c (packgram): Set it.
4998 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
4999 the end of `rules', and count them out of `nrules'.
5000 (reduce_output, dump_grammar): Adjust.
5001 * src/print.c (print_grammar): It is no longer needed to check for
5002 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
5003 * tests/reduce.at (Reduced Automaton): New test.
5004
5005 2002-04-07 Akim Demaille <akim@epita.fr>
5006
5007 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
5008 lacking `+ 1' to nrules, Bison reported as useless a token if it
5009 was used solely to set the precedence of the last rule...
5010
5011 2002-04-07 Akim Demaille <akim@epita.fr>
5012
5013 * data/bison.c++, data/bison.simple: Don't output the current file
5014 name in #line, to avoid useless diffs between two identical
5015 outputs under different names.
5016
5017 2002-04-07 Akim Demaille <akim@epita.fr>
5018
5019 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
5020 Normalize loops to using `< nrules + 1', not `<= nrules'.
5021
5022 2002-04-07 Akim Demaille <akim@epita.fr>
5023
5024 * TODO: Update.
5025
5026 2002-04-07 Akim Demaille <akim@epita.fr>
5027
5028 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
5029 bucket.value as bucket.number.
5030
5031 2002-04-07 Akim Demaille <akim@epita.fr>
5032
5033 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
5034 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
5035 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
5036 RHS, instead of being an index in RITEMS.
5037
5038 2002-04-04 Paul Eggert <eggert@twinsun.com>
5039
5040 * doc/bison.texinfo: Update copyright date.
5041 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
5042 (Symbols): Warn about running Bison in one character set,
5043 but compiling and/or running in an incompatible one.
5044 Warn about character code 256, too.
5045
5046 2002-04-03 Paul Eggert <eggert@twinsun.com>
5047
5048 * src/bison.data (YYSTACK_ALLOC): Depend on whether
5049 YYERROR_VERBOSE is nonzero, not whether it is defined.
5050
5051 Merge changes from bison-1_29-branch.
5052
5053 2002-03-20 Paul Eggert <eggert@twinsun.com>
5054
5055 Merge fixes from Debian bison_1.34-1.diff.
5056
5057 * configure.in (AC_PREREQ): 2.53.
5058
5059 2002-03-20 Akim Demaille <akim@epita.fr>
5060
5061 * src/conflicts.c (log_resolution): Argument `resolution' is const.
5062
5063 2002-03-19 Paul Eggert <eggert@twinsun.com>
5064
5065 * src/bison.simple (YYCOPY): New macro.
5066 (YYSTACK_RELOCATE): Use it.
5067 Remove Type arg; no longer needed. All callers changed.
5068 (yymemcpy): Remove; no longer needed.
5069
5070 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
5071 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
5072
5073 2002-03-19 Akim Demaille <akim@epita.fr>
5074
5075 Test and fix the #line outputs.
5076
5077 * tests/atlocal.at (GCC): New.
5078 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
5079 (Prologue synch line, ,%union synch line, Postprologue synch line)
5080 (Action synch line, Epilogue synch line): New tests.
5081 * src/reader.c (parse_union_decl): Define the muscle stype_line.
5082 * data/bison.simple, data/bison.c++: Use it.
5083
5084 2002-03-19 Akim Demaille <akim@epita.fr>
5085
5086 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
5087 (Solved SR Conflicts, %expect not enough, %expect right)
5088 (%expect too much): Move to...
5089 * tests/conflicts.at: this new file.
5090
5091 2002-03-19 Akim Demaille <akim@epita.fr>
5092
5093 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
5094 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
5095 that we can move to enums for instance.
5096 * src/output.c (token_definitions_output): Output a list of
5097 `token-name, token-number' instead of the #define.
5098 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
5099
5100 2002-03-14 Akim Demaille <akim@epita.fr>
5101
5102 Use Gettext 0.11.1.
5103
5104 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
5105
5106 * data/bison.c++: Make the user able to add members to the generated
5107 parser by subclassing.
5108
5109 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
5110
5111 * src/reader.c (read_additionnal_code): `c' should be an integer, not
5112 a character.
5113 Reported by Nicolas Tisserand and Nicolas Burrus.
5114
5115 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
5116
5117 * src/reader.c: Warn about lacking semi-colons, do not complain.
5118
5119 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
5120
5121 * data/bison.c++: Remove a debug line.
5122
5123 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
5124
5125 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
5126 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
5127 provide a default implementation.
5128
5129 2002-03-04 Akim Demaille <akim@epita.fr>
5130
5131 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
5132 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
5133 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
5134 * tests/semantic.at (Parsing Guards): Similarly.
5135 * src/reader.at (readgram): Complain if the last rule is not ended
5136 with a semi-colon.
5137
5138 2002-03-04 Akim Demaille <akim@epita.fr>
5139
5140 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
5141 * src/closure.c: here.
5142 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
5143 RTC.
5144 * src/warshall.h, src/warshall.c: Remove.
5145 * tests/sets.at (Broken Closure): Adjust.
5146
5147 2002-03-04 Akim Demaille <akim@epita.fr>
5148
5149 * src/output.c (output_skeleton): tempdir is const.
5150 bytes_read is unused.
5151
5152 2002-03-04 Akim Demaille <akim@epita.fr>
5153
5154 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
5155 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
5156 Update.
5157 From Michael Hayes.
5158
5159 2002-03-04 Akim Demaille <akim@epita.fr>
5160
5161 * src/closure.c (closure): `r' is unused.
5162
5163 2002-03-04 Akim Demaille <akim@epita.fr>
5164
5165 * tests/sets.at (Broken Closure): Add the ending `;'.
5166 * src/reader.at (readgram): Complain if a rule is not ended with a
5167 semi-colon.
5168
5169 2002-03-04 Akim Demaille <akim@epita.fr>
5170
5171 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
5172 (count_sr_conflicts): Use bitset_count.
5173 * src/reduce.c (inaccessable_symbols): Ditto.
5174 (bits_size): Remove.
5175 * src/warshall.h, src/warshall.c: Convert to bitsetv.
5176
5177 2002-03-04 Akim Demaille <akim@epita.fr>
5178
5179 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
5180 * src/reduce.c: Remove the `bitset_zero's following the
5181 `bitset_create's, as now it is performed by the latter.
5182
5183 2002-03-04 Akim Demaille <akim@epita.fr>
5184
5185 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
5186 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
5187 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
5188 latest sources from Michael.
5189
5190 2002-03-04 Akim Demaille <akim@epita.fr>
5191
5192 * src/output.c (output): Don't free the grammar.
5193 * src/reader.c (grammar_free): New.
5194 * src/main.c (main): Call it and don't free symtab here.
5195
5196 2002-03-04 Akim Demaille <akim@epita.fr>
5197
5198 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
5199 before returning.
5200 Reported by Benoit Perrot.
5201
5202 2002-03-04 Akim Demaille <akim@epita.fr>
5203
5204 Use bitset operations when possible, not loops over bits.
5205
5206 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
5207 bitset_or.
5208 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
5209 * src/reduce.c (useless_nonterminals): Formatting changes.
5210 * src/warshall.c (TC): Use bitset_or.
5211
5212 2002-03-04 Akim Demaille <akim@epita.fr>
5213
5214 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
5215 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
5216 Ditto.
5217
5218 2002-03-04 Akim Demaille <akim@epita.fr>
5219
5220 * src/lalr.c (F): Now a bitset*.
5221 Adjust all dependencies.
5222
5223 2002-03-04 Akim Demaille <akim@epita.fr>
5224
5225 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
5226 Adjust all dependencies.
5227
5228 2002-03-04 Akim Demaille <akim@epita.fr>
5229
5230 * src/L0.c, src/LR0.h (nstates): Be size_t.
5231 Adjust comparisons (signed vs unsigned).
5232 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
5233 bitset*.
5234 Adjust all dependencies.
5235
5236 2002-03-04 Akim Demaille <akim@epita.fr>
5237
5238 * src/closure.c (firsts): Now, also a bitset.
5239 Adjust all dependencies.
5240 (varsetsize): Remove, now unused.
5241 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
5242
5243 2002-03-04 Akim Demaille <akim@epita.fr>
5244
5245 * src/print.c: Convert to use bitset.h, not hand coded iterations
5246 over ints.
5247
5248 2002-03-04 Akim Demaille <akim@epita.fr>
5249
5250 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
5251
5252 2002-03-04 Akim Demaille <akim@epita.fr>
5253
5254 * src/closure.c (ruleset): Be a bitset.
5255 (rulesetsize): Remove.
5256
5257 2002-03-04 Akim Demaille <akim@epita.fr>
5258
5259 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
5260 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
5261 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
5262 * src/closure.c (fderives): Be an array of bitsets.
5263
5264 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
5265
5266 * data/bison.c++: Merge the two generated headers. Insert a copyright
5267 notice in each output file.
5268
5269 2002-02-28 Akim Demaille <akim@epita.fr>
5270
5271 * data/bison.c++: Copy the prologue of bison.simple to fetch
5272 useful M4 definitions, such as b4_header_guard.
5273
5274 2002-02-25 Akim Demaille <akim@epita.fr>
5275
5276 * src/getargs.c (version): Give the name of the authors, and use a
5277 translator friendly scheme for the bgr
5278 copyright notice.
5279
5280 2002-02-25 Akim Demaille <akim@epita.fr>
5281
5282 * src/output.c (header_output): Remove, now handled completely via
5283 M4.
5284
5285 2002-02-25 Akim Demaille <akim@epita.fr>
5286
5287 * m4/m4.m4: New, from CVS Autoconf.
5288 * configure.in: Invoke it.
5289 * src/output.c (output_skeleton): Use its result instead of the
5290 hard coded name.
5291
5292 2002-02-25 Akim Demaille <akim@epita.fr>
5293
5294 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
5295 Fileutils 4.1.5.
5296 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
5297 * src/output.c (output_skeleton): Use mkstemp to create a real
5298 temporary file.
5299 Move the filling of `skeleton' and its muscle to...
5300 (prepare): here.
5301 (output): Move the definition of the prologue muscle to...
5302 (prepare): here.
5303 * src/system.h (DEFAULT_TMPDIR): New.
5304
5305 2002-02-14 Paul Eggert <eggert@twinsun.com>
5306
5307 Remove the support for C++ namespace cleanliness; it was
5308 causing more problems than it was curing, since it didn't work
5309 properly on some nonstandard C++ compilers. This can wait
5310 for a proper C++ parser.
5311
5312 * NEWS: Document this.
5313 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
5314 of C++, as it's treated like C now.
5315 * src/bison.simple (YYSTD): Remove.
5316 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
5317 Treat C++ just like Standard C instead of trying to support
5318 namespace cleanliness.
5319
5320 2002-02-14 Akim Demaille <akim@epita.fr>
5321
5322 * tests/regression.at (else): Adjust to Andreas' change.
5323
5324 2002-02-14 Akim Demaille <akim@epita.fr>
5325
5326 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
5327
5328 2002-02-13 Andreas Schwab <schwab@suse.de>
5329
5330 * src/output.c (output_rule_data): Don't output NULL, it might
5331 not be defined yet.
5332
5333 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
5334
5335 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
5336 (Copyright notice): Update.
5337
5338 2002-02-11 Akim Demaille <akim@epita.fr>
5339
5340 * tests/regression.at (%nonassoc and eof): Don't include
5341 nonportable headers.
5342
5343 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
5344
5345 * data/bison.c++: Correct error recovery. Make the user able to
5346 initialize the starting location.
5347
5348 2002-02-07 Akim Demaille <akim@epita.fr>
5349
5350 * tests/input.at: New.
5351
5352 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5353
5354 * data/bison.c++: Replace some direct m4 expansions by constants. Be
5355 more consistent when naming methods and variables. Put preprocessor
5356 directives around tables only needed for debugging.
5357
5358 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5359
5360 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
5361 C++ parsers.
5362 (yy::b4_name::parse): Use print_.
5363
5364 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5365
5366 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
5367
5368 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5369
5370 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
5371 C++ parsers.
5372 (yy::b4_name::parse): Build verbose error messages, and use error_.
5373
5374 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
5375
5376 * data/bison.c++: Fix m4 quoting in comments.
5377
5378 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
5379
5380 * data/bison.c++: Adjust the parser code. Fix some muscles that were
5381 not expanded by m4.
5382
5383 2002-02-05 Akim Demaille <akim@epita.fr>
5384
5385 * data/bison.c++: Adjust to the M4 back end.
5386 More is certainly needed.
5387
5388 2002-02-05 Akim Demaille <akim@epita.fr>
5389
5390 Give a try to M4 as a back end.
5391
5392 * lib/readpipe.c: New, from wdiff.
5393 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
5394 BISON_HAIRY.
5395 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
5396 specific values. Now it is m4 that performs the lookup.
5397 * src/parse-skel.y: Remove.
5398 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
5399 * src/output.c (actions_output, guards_output)
5400 (token_definitions_output): No longer keeps track of the output
5401 line number, hence remove the second argument.
5402 (guards_output): Check against the guard member of a rule, not the
5403 action member.
5404 Adjust callers.
5405 (output_skeleton): Don't look for the skeleton location, let m4 do
5406 that.
5407 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
5408 file will be used.
5409 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
5410 (prepare): Given that for the time being changesyntax is not
5411 usable in M4, rename the muscles using `-' to `_'.
5412 Define `defines_flag', `output_parser_name' and `output_header_name'.
5413 * src/output.h (actions_output, guards_output)
5414 (token_definitions_output): Adjust prototypes.
5415 * src/scan-skel.l: Instead of scanning the skeletons, it now
5416 processes the output of m4: `__oline__' and `#output'.
5417 * data/bison.simple: Adjust to be used by M4(sugar).
5418 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
5419 to date.
5420 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
5421 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
5422 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
5423 shamelessly stolen from CVS Autoconf.
5424
5425 2002-02-05 Akim Demaille <akim@epita.fr>
5426
5427 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
5428 * configure.in: Check for the declarations of free and malloc.
5429 * src/muscle_tab.c: Adjust.
5430
5431 2002-02-05 Akim Demaille <akim@epita.fr>
5432
5433 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
5434 which have no values.
5435
5436 2002-02-05 Akim Demaille <akim@epita.fr>
5437
5438 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
5439 * data/: here.
5440
5441 2002-01-29 Paul Eggert <eggert@twinsun.com>
5442
5443 * src/bison.simple (YYSIZE_T): Do not define merely because
5444 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
5445 On some platforms, <alloca.h> does not declare YYSTD (size_t).
5446
5447 2002-01-27 Akim Demaille <akim@epita.fr>
5448
5449 Fix `%nonassoc and eof'.
5450
5451 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
5452 which were not properly copied! Replace
5453 memcpy (res->errs, src->errs, src->nerrs);
5454 with
5455 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
5456 !!!
5457 * tests/regression.at (%nonassoc and eof): Adjust to newest
5458 Autotest: `.' is not in the PATH.
5459
5460 2002-01-27 Akim Demaille <akim@epita.fr>
5461
5462 * tests/sets.at (AT_EXTRACT_SETS): New.
5463 (Nullable): Use it.
5464 (Firsts): New.
5465
5466 2002-01-26 Akim Demaille <akim@epita.fr>
5467
5468 * tests/actions.at, tests/calc.at, tests/headers.at,
5469 * tests/torture.at: Adjust to the newest Autotest which no longer
5470 forces `.' in the PATH.
5471
5472 2002-01-25 Akim Demaille <akim@epita.fr>
5473
5474 * tests/regression.at (%nonassoc and eof): New.
5475 Suggested by Robert Anisko.
5476
5477 2002-01-24 Akim Demaille <akim@epita.fr>
5478
5479 Bison dumps core when trying to complain about broken input files.
5480 Reported by Cris van Pelt.
5481
5482 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
5483 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
5484 into...
5485 (Invalid inputs): Strengthen: exercise parse_percent_token.
5486
5487 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
5488
5489 * src/Makefile.am: Add bison.c++.
5490 * src/bison.c++: New skeleton.
5491
5492 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
5493
5494 * po/it.po: New.
5495
5496 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
5497
5498 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
5499
5500 2002-01-20 Marc Autret <marc@gnu.org>
5501
5502 * src/files.c (compute_output_file_names): Fix
5503
5504 2002-01-20 Marc Autret <marc@gnu.org>
5505
5506 * tests/output.at: New test.
5507 * src/files.c (compute_base_names): Don't map extensions when
5508 the YACC flag is set, use defaults.
5509 Reported by Evgeny Stambulchik.
5510
5511 2002-01-20 Marc Autret <marc@gnu.org>
5512
5513 * src/system.h: Need to define __attribute__ away for non-GCC
5514 compilers as well (i.e. the vendor C compiler).
5515 Suggested by Albert Chin-A-Young.
5516
5517 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
5518
5519 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
5520 canonical definition.
5521 * src/system.h: Use the canonical definition for PARAMS (avoids
5522 a conflict with the macro from lib/hash.h).
5523
5524 2002-01-11 Akim Demaille <akim@epita.fr>
5525
5526 * configure.in: Use AC_FUNC_STRNLEN.
5527 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
5528
5529 2002-01-09 Akim Demaille <akim@epita.fr>
5530
5531 * src/files.c, src/files.h (output_infix): New.
5532 (tab_extension): Remove.
5533 (compute_base_names): Compute the former, drop the latter.
5534 * src/output.c (prepare): Insert the muscles `output-infix', and
5535 `output-suffix'.
5536 * src/parse-skel.y (string, string.1): New.
5537 (section.header): Use it.
5538 (section.yacc): Remove.
5539 (prefix): Remove too.
5540 * src/scan-skel.l: Adjust.
5541 * src/bison.simple, src/bison.hairy: Adjust.
5542
5543 2002-01-09 Akim Demaille <akim@epita.fr>
5544
5545 * configure.in (WERROR_CFLAGS): Compute it.
5546 * src/Makefile.am (CFLAGS): Pass it.
5547 * tests/atlocal.in (CFLAGS): Idem.
5548 * src/files.c: Fix a few warnings.
5549 (get_extension_index): Remove, unused.
5550
5551 2002-01-08 Akim Demaille <akim@epita.fr>
5552
5553 * src/getargs.c (AS_FILE_NAME): New.
5554 (getargs): Use it to convert DOSish file names.
5555 * src/files.c (base_name): Rename as full_base_name to avoid
5556 clashes with `base_name ()'.
5557 (filename_split): New.
5558 (compute_base_names): N-th rewrite, using filename_split.
5559
5560 2002-01-08 Akim Demaille <akim@epita.fr>
5561
5562 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
5563 New, stolen from the Fileutils 4.1.
5564 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
5565 * configure.in: Check for the presence of memrchr, and of its
5566 prototype.
5567
5568 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
5569
5570 * lib/hash.h (__P): Added definition for this macro.
5571 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
5572 BUILT_SOURCES, to ensure they are generated first.
5573 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
5574 %error-verbose to allow bootstrapping with bison 1.30x.
5575
5576 2002-01-06 Akim Demaille <akim@epita.fr>
5577
5578 * src/reader.c (parse_braces): Don't fetch the next char, the
5579 convention is to fetch on entry.
5580 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
5581 'switch' without a following semicolon.
5582 * tests/regression.at (braces parsing): New.
5583
5584 2002-01-06 Akim Demaille <akim@epita.fr>
5585
5586 Bison is dead wrong in its RR conflict reports.
5587
5588 * tests/torture.at (GNU Cim Grammar): New.
5589 * src/conflicts.c (count_rr_conflicts): Fix.
5590
5591 2002-01-06 Akim Demaille <akim@epita.fr>
5592
5593 Creating package.m4 from configure.ac causes too many problems.
5594
5595 * tests/Makefile.am (package.m4): Create it by hand,
5596 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
5597
5598 2002-01-06 Akim Demaille <akim@epita.fr>
5599
5600 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
5601 skeleton.h.
5602
5603 2002-01-04 Paul Eggert <eggert@twinsun.com>
5604
5605 * doc/bison.texinfo (Debugging):
5606 Remove YYSTDERR; it's no longer defined or used.
5607 Also, s/cstdio.h/cstdio/.
5608
5609 2002-01-03 Akim Demaille <akim@epita.fr>
5610
5611 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
5612
5613 2002-01-03 Akim Demaille <akim@epita.fr>
5614
5615 * src/parse-skel.y (process_skeleton): Don't bind the parser's
5616 tracing code to --trace, wait for a better --trace option, with
5617 args.
5618
5619 2002-01-03 Akim Demaille <akim@epita.fr>
5620
5621 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
5622 The ISO C++ standard is extremely clear about it: stderr is
5623 considered a macro, not a regular symbol (see table 94 `Header
5624 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
5625 Therefore std:: does not apply to it. It still does with fprintf.
5626 Also, s/cstdio.h/cstdio/.
5627
5628 2002-01-03 Akim Demaille <akim@epita.fr>
5629
5630 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
5631 for non system headers.
5632
5633 2002-01-02 Akim Demaille <akim@epita.fr>
5634
5635 Equip the skeleton chain with location tracking, runtime trace,
5636 pure parser and scanner.
5637
5638 * src/parse-skel.y: Request a pure parser, locations, and prefix
5639 renaming.
5640 (%union): Having several members with the same type does not help
5641 type mismatches, simplify.
5642 (YYPRINT, yyprint): New.
5643 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
5644 (skel_error): this.
5645 Handle locations.
5646 * src/scan-skel.l: Adjust to these changes.
5647 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
5648 (LOCATION_PRINT, skel_control_t): New.
5649
5650 2001-12-30 Akim Demaille <akim@epita.fr>
5651
5652 * src/parse-skel.y: Get rid of the shift/reduce conflict:
5653 replace `gb' with BLANKS.
5654 * src/scan-skel.l: Adjust.
5655
5656 2001-12-30 Akim Demaille <akim@epita.fr>
5657
5658 * src/system.h: We don't need nor want bcopy.
5659 Throw away MS-DOS crap: we don't need getpid.
5660 * configure.in: We don't need strndup. It was even causing
5661 problems: because Flex includes the headers *before* us,
5662 _GNU_SOURCE is not defined by config.h, and therefore strndup was
5663 not visible.
5664 * lib/xstrndup.c: New.
5665 * src/scan-skel.l: Use it.
5666 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
5667 * src/parse-skel.y: Use %directives instead of #defines.
5668
5669 2001-12-30 Akim Demaille <akim@epita.fr>
5670
5671 * src/skeleton.h: New.
5672 * src/output.c (output_parser, output_master_parser): Remove, dead
5673 code.
5674 * src/output.h (get_lines_number, actions_output, guards_output)
5675 (token_definitions_output): Prototype them.
5676 * src/parse-skel.y: Add the license notice.
5677 Include output.h and skeleton.h.
5678 (process_skeleton): Returns void, and takes a single parameter.
5679 * src/scan-skel.l: Add the license notice.
5680 Include skeleton.h.
5681 Don't use %option yylineno: it seems that then Flex imagines
5682 REJECT has been used, and therefore it won't reallocate its
5683 buffers (which makes no other sense to me than a bug). It results
5684 in warnings for `unused: yy_flex_realloc'.
5685
5686 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
5687
5688 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
5689 (MUSCLE_INSERT_PREFIX): ...to there.
5690 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
5691 (MUSCLE_INSERT_PREFIX): Move from here...
5692
5693 * src/bison.hairy: Add a section directive. Put braces around muscle
5694 names. This parser skeleton is still broken, but Bison should not
5695 choke on a bad muscle 'syntax'.
5696 * src/bison.simple: Add a section directive. Put braces around muscle
5697 names.
5698
5699 * src/files.h (strsuffix, stringappend): Add declarations.
5700 (tab_extension): Add declaration.
5701 (short_base_name): Add declaration.
5702
5703 * src/files.c (strsuffix, stringappend): No longer static. These
5704 functions are used in the skeleton parser.
5705 (tab_extension): New.
5706 (compute_base_names): Use the computations done in this function
5707 to guess if the generated parsers should have '.tab' in their
5708 names.
5709 (short_base_name): No longer static.
5710
5711 * src/output.c (output_skeleton): New.
5712 (output): Disable call to output_master_parser, and give a try to
5713 a new skeleton handling system.
5714 (guards_output, actions_output): No longer static.
5715 (token_definitions_output, get_lines_number): No longer static.
5716
5717 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
5718
5719 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
5720 parse-skel.y.
5721
5722 * src/parse-skel.y: New file.
5723 * src/scan-skel.l: New file.
5724
5725 2001-12-29 Akim Demaille <akim@epita.fr>
5726
5727 %name-prefix is broken.
5728
5729 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
5730 Adjust all dependencies.
5731 * tests/headers.at (export YYLTYPE): Strengthen this test: use
5732 %name-prefix.
5733
5734 Renaming yylval but not yylloc is not consistent. Now we do.
5735
5736 * src/bison.simple: Prefix yylloc if used.
5737 * doc/bison.texinfo (Decl Summary): Document that.
5738
5739 2001-12-29 Akim Demaille <akim@epita.fr>
5740
5741 * doc/bison.texinfo: Promote `%long-directive' over
5742 `%long_directive'.
5743 Remove all references to fixed-output-files, yacc is enough.
5744
5745 2001-12-29 Akim Demaille <akim@epita.fr>
5746
5747 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
5748 user prologue. These are defaults.
5749 * tests/actions.at (Mid-rule actions): Make sure the user can
5750 define YYDEBUG and YYERROR_VERBOSE.
5751
5752 2001-12-29 Akim Demaille <akim@epita.fr>
5753
5754 * src/output.c (header_output): Don't forget to export YYLTYPE and
5755 yylloc.
5756 * tests/headers.at (export YYLTYPE): New, make sure it does.
5757 * tests/regression.at (%union and --defines, Invalid CPP headers):
5758 Move to...
5759 * tests/headers.at: here.
5760
5761 2001-12-29 Akim Demaille <akim@epita.fr>
5762
5763 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
5764
5765 2001-12-29 Akim Demaille <akim@epita.fr>
5766
5767 * tests/actions.at (Mid-rule actions): Output on a single line
5768 instead of several.
5769
5770 2001-12-29 Akim Demaille <akim@epita.fr>
5771
5772 * doc/bison.texinfo: Formatting changes.
5773
5774 2001-12-29 Akim Demaille <akim@epita.fr>
5775
5776 Don't store the token defs in a muscle, just be ready to output it
5777 on command. Now possible via `symbols'. Fixes a memory leak.
5778
5779 * src/output.c (token_definitions_output): New.
5780 (output_parser, header_output): Use it.
5781 * src/reader.c (symbols_save): Remove.
5782
5783 2001-12-29 Akim Demaille <akim@epita.fr>
5784
5785 * src/bison.simple: Do not provide a default for YYSTYPE and
5786 YYLTYPE before the user's prologue. Otherwise it's hardly... a
5787 default.
5788
5789 2001-12-29 Akim Demaille <akim@epita.fr>
5790
5791 Mid-rule actions are simply... ignored!
5792
5793 * src/reader.c (readgram): Be sure to attach mid-rule actions to
5794 the empty-rule associated to the dummy symbol, not to the host
5795 rule.
5796 * tests/actions.at (Mid-rule actions): New.
5797
5798 2001-12-29 Akim Demaille <akim@epita.fr>
5799
5800 Memory leak.
5801
5802 * src/reader.c (reader): Free grammar.
5803
5804 2001-12-29 Akim Demaille <akim@epita.fr>
5805
5806 Memory leak.
5807
5808 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
5809 since it allocates it for each state, although only one is needed.
5810 (allocate_storage): Do it here.
5811
5812 2001-12-29 Akim Demaille <akim@epita.fr>
5813
5814 * src/options.h, src/options.c (create_long_option_table): Rename
5815 as...
5816 (long_option_table_new): this, with a clearer prototype.
5817 (percent_table): Remove, unused,
5818 * src/getargs.c (getargs): Adjust.
5819
5820 2001-12-29 Akim Demaille <akim@epita.fr>
5821
5822 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
5823 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
5824 as states.
5825
5826 2001-12-29 Akim Demaille <akim@epita.fr>
5827
5828 * src/lalr.c (build_relations): Rename `states' as `states1'.
5829 Sorry, I don't understand exactly what it is, no better name...
5830
5831 2001-12-29 Akim Demaille <akim@epita.fr>
5832
5833 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
5834 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
5835 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
5836 as rules.
5837
5838 2001-12-29 Akim Demaille <akim@epita.fr>
5839
5840 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
5841 ago.
5842
5843 2001-12-29 Akim Demaille <akim@epita.fr>
5844
5845 * src/reader.c, src/reader.h (user_toknums): Remove.
5846 Adjust all users to use symbols[i]->user_token_number.
5847
5848 2001-12-29 Akim Demaille <akim@epita.fr>
5849
5850 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
5851 Adjust all users to use symbols[i]->prec or ->assoc.
5852
5853 2001-12-29 Akim Demaille <akim@epita.fr>
5854
5855 * src/reader.c, src/reader.h (tags): Remove.
5856 Adjust all users to use symbols[i]->tag.
5857
5858 2001-12-29 Akim Demaille <akim@epita.fr>
5859
5860 * src/gram.h, src/gram.c (symbols): New, similar to state_table
5861 and rule_table.
5862 * src/reader.c (packsymbols): Fill this table.
5863 Drop sprec.
5864 * src/conflicts.c (resolve_sr_conflict): Adjust.
5865 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
5866 single table.
5867 Use symbols[i]->tag instead of tags[i].
5868
5869 2001-12-29 Akim Demaille <akim@epita.fr>
5870
5871 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
5872 In addition, put a comment in there, to replace...
5873 * tests/regression.at (%union and C comments): Remove.
5874
5875 2001-12-29 Akim Demaille <akim@epita.fr>
5876
5877 * tests/regression.at (Web2c Actions): Blindly move the actual
5878 output as expected output. The contents *seem* right to me, but I
5879 can't pretend reading perfectly parser tables... Nonetheless, all
5880 the other tests pass correctly, the table look OK, even though the
5881 presence of `$axiom' is to be noted: AFAICS it is useless (but
5882 harmless).
5883
5884 2001-12-29 Akim Demaille <akim@epita.fr>
5885
5886 * src/reader.c (readgram): Don't add the rule 0 if there were no
5887 rules read. In other words, add it _after_ having performed
5888 grammar sanity checks.
5889 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
5890
5891 2001-12-29 Akim Demaille <akim@epita.fr>
5892
5893 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
5894 visible, and some states have now a different number.
5895
5896 2001-12-29 Akim Demaille <akim@epita.fr>
5897
5898 * src/reader.c (readgram): Bind the initial rule's lineno to that
5899 of the first rule.
5900 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
5901 (Solved SR Conflicts): Adjust rule 0's line number.
5902
5903 2001-12-29 Akim Demaille <akim@epita.fr>
5904
5905 Fix the `GAWK Grammar' failure.
5906
5907 * src/LR0.c (final_state): Initialize to -1 so that we do compute
5908 the reductions of the first state which was mistakenly confused
5909 with the final state because precisely final_state was initialized
5910 to 0.
5911 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
5912 now noticed by Bison.
5913 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
5914 have a reduction on $default.
5915
5916 2001-12-29 Akim Demaille <akim@epita.fr>
5917
5918 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
5919 rule line numbers.
5920 * src/closure.c (print_closure): Likewise.
5921 * src/derives.c (print_derives): Likewise.
5922 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
5923 now.
5924
5925 2001-12-29 Akim Demaille <akim@epita.fr>
5926
5927 * src/lalr.c (lookaheads_print): New.
5928 (lalr): Call it when --trace-flag.
5929 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
5930 are dumped.
5931
5932 2001-12-29 Akim Demaille <akim@epita.fr>
5933
5934 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
5935 when walking through ritem, even via rule->rhs.
5936 * src/reduce.c (dump_grammar, useful_production, reduce_output)
5937 (useful_production, useless_nonterminals): Likewise.
5938 (reduce_grammar_tables): Likewise, plus update nritems.
5939 * src/nullable.c (set_nullable): Likewise.
5940 * src/lalr.c (build_relations): Likewise.
5941 * tests/sets.at (Nullable): Adjust.
5942 Fortunately, now, the $axiom is no longer nullable.
5943
5944 2001-12-29 Akim Demaille <akim@epita.fr>
5945
5946 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
5947 the 0-sentinel.
5948 * src/gram.c (ritem_longest_rhs): Likewise.
5949 * src/reduce.c (nonterminals_reduce): Likewise.
5950 * src/print_graph.c (print_graph): Likewise.
5951 * src/output.c (output_rule_data): Likewise.
5952 * src/nullable.c (set_nullable): Likewise.
5953
5954 2001-12-29 Akim Demaille <akim@epita.fr>
5955
5956 * src/output.c: Comment changes.
5957
5958 2001-12-27 Paul Eggert <eggert@twinsun.com>
5959
5960 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
5961 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
5962 Sparc, as they were causing more porting problems than the
5963 (minor) performance improvement was worth.
5964
5965 Also, catch up with 1.31's YYSTD.
5966
5967 2001-12-27 Akim Demaille <akim@epita.fr>
5968
5969 * src/output.c (output_gram): Rely on nritems, not the
5970 0-sentinel. See below.
5971 Use -1 as separator, not 0.
5972 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
5973 Rely on -1 as separator in yyrhs, instead of 0.
5974 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
5975 twice `Now at end of input', therefore there are two lines less to
5976 expect.
5977
5978 2001-12-27 Akim Demaille <akim@epita.fr>
5979
5980 * tests/regression.at (Unresolved SR Conflicts):
5981 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
5982 below.
5983
5984 2001-12-27 Akim Demaille <akim@epita.fr>
5985
5986 * src/LR0.c (new_state): Recognize the final state by the fact it
5987 is reached by eoftoken.
5988 (insert_start_shifting_state, insert_eof_shifting_state)
5989 (insert_accepting_state, augment_automaton): Remove, since now
5990 these states are automatically computed from the initial state.
5991 (generate_states): Adjust.
5992 * src/print.c: When reporting a rule number to the user, substract
5993 1, so that the axiom rule is rule 0, and the first user rule is 1.
5994 * src/reduce.c: Likewise.
5995 * src/print_graph.c (print_core): For the time being, just as for
5996 the report, depend upon --trace-flags to dump the full set of
5997 items.
5998 * src/reader.c (readgram): Once the grammar read, insert the rule
5999 0: `$axiom: START-SYMBOL $'.
6000 * tests/set.at: Adjust: rule 0 is now displayed, and since the
6001 number of the states has changed (the final state is no longer
6002 necessarily the last), catch up.
6003
6004 2001-12-27 Akim Demaille <akim@epita.fr>
6005
6006 Try to make the use of the eoftoken valid. Given that its value
6007 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
6008 is used instead of > 0 where appropriate, (ii), depend upon nritems
6009 instead of the 0-sentinel.
6010
6011 * src/gram.h, src/gram.c (nritems): New.
6012 Expected to be duplication of nitems, but for the time being...
6013 * src/reader.c (packgram): Assert nritems and nitems are equal.
6014 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
6015 * src/closure.c (print_closure, print_fderives): Likewise.
6016 * src/gram.c (ritem_print): Likewise.
6017 * src/print.c (print_core, print_grammar): Likewise.
6018 * src/print_graph.c: Likewise.
6019
6020 2001-12-27 Akim Demaille <akim@epita.fr>
6021
6022 * src/main.c (main): If there are complains after grammar
6023 reductions, then output the report anyway if requested, then die.
6024 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
6025 * src/reader.c (eoftoken): New.
6026 (parse_token_decl): If the token being defined has value `0', it
6027 is the eoftoken.
6028 (packsymbols): No longer hack `tags' to insert `$' by hand.
6029 Be sure to preserve the value of the eoftoken.
6030 (reader): Make sure eoftoken is defined.
6031 Initialize nsyms to 0: now eoftoken is created just like the others.
6032 * src/print.c (print_grammar): Don't special case the eof token.
6033 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
6034 lie anyway, albeit pleasant.
6035 * tests/calc.at: Exercise error messages with eoftoken.
6036 Change the grammar so that empty input is invalid.
6037 Adjust expectations.
6038 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
6039
6040 2001-12-27 Akim Demaille <akim@epita.fr>
6041
6042 * configure.in: Check the protos of strchr ans strspn.
6043 Replace strchr if needed.
6044 * src/system.h: Provide the protos of strchr, strspn and memchr if
6045 missing.
6046 * lib/strchr.c: New.
6047 * src/reader.c (symbols_save): Use strchr.
6048
6049 2001-12-27 Akim Demaille <akim@epita.fr>
6050
6051 * src/print.c, src/print_graph.c (escape): New.
6052 Use it to quote the TAGS outputs.
6053 * src/print_graph.c (print_state): Now errors are in red, and
6054 reductions in green.
6055 Prefer high to wide: output the state number on a line of its own.
6056
6057 2001-12-27 Akim Demaille <akim@epita.fr>
6058
6059 * src/state.h, src/state.c (reductions_new): New.
6060 * src/LR0.c (set_state_table): Let all the states have a
6061 `reductions', even if reduced to 0.
6062 (save_reductions): Adjust.
6063 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
6064 * src/print.c (print_reductions, print_actions): Adjust.
6065 * src/output.c (action_row): Adjust.
6066
6067 2001-12-27 Akim Demaille <akim@epita.fr>
6068
6069 * src/state.h, src/state.c (errs_new, errs_dup): New.
6070 * src/LR0.c (set_state_table): Let all the states have an errs,
6071 even if reduced to 0.
6072 * src/print.c (print_errs, print_reductions): Adjust.
6073 * src/output.c (output_actions, action_row): Adjust.
6074 * src/conflicts.c (resolve_sr_conflict): Adjust.
6075
6076 2001-12-27 Akim Demaille <akim@epita.fr>
6077
6078 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
6079
6080 2001-12-27 Akim Demaille <akim@epita.fr>
6081
6082 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
6083 * src/print.c: here.
6084 (lookaheadset, shiftset): New, used as additional storage by
6085 print_reductions.
6086 (print_results): Adjust.
6087 (print_shifts, print_gotos, print_errs): New, extracted from...
6088 (print_actions): here.
6089 * src/print_graph.c (print_actions): Remove dead code.
6090
6091 2001-12-27 Akim Demaille <akim@epita.fr>
6092
6093 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
6094 `$n' and `@n'.
6095
6096 2001-12-27 Akim Demaille <akim@epita.fr>
6097
6098 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
6099 (build_relations): Adjust.
6100
6101 2001-12-27 Akim Demaille <akim@epita.fr>
6102
6103 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
6104 duplication.
6105
6106 2001-12-27 Akim Demaille <akim@epita.fr>
6107
6108 * src/reader.c (packgram): Catch nitems overflows.
6109
6110 2001-12-27 Akim Demaille <akim@epita.fr>
6111
6112 * src/files.c, src/files.h (guard_obstack): Remove.
6113 * src/output.c (output): Adjust.
6114 * src/reader.c (parse_braces): New, factoring...
6115 (copy_action, copy_guard): these two which are renamed as...
6116 (parse_action, parse_guard): these.
6117 As a voluntary consequence, using braces around guards is now
6118 mandatory.
6119
6120 2001-12-27 Akim Demaille <akim@epita.fr>
6121
6122 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
6123 * src/reader.c (symbol_list): `guard' and `guard_line' are new
6124 members.
6125 (symbol_list_new): Adjust.
6126 (copy_action): action_line is the first line, not the last.
6127 (copy_guard): Just as for actions, store the `action' only, not
6128 the switch/case/break flesh.
6129 Don't parse the user action that might follow the guard, let...
6130 (readgram): do it, i.e., now, there can be an action after a
6131 guard.
6132 In other words the guard is just explicitly optional.
6133 (packgram): Adjust.
6134 * src/output.c (guards_output): New.
6135 (output_parser): Call it when needed.
6136 (output): Also free the guard and attrs obstacks.
6137 * src/files.c, src/files.h (obstack_save): Remove.
6138 (output_files): Remove.
6139 As a result, if one needs the former `.act' file, using an
6140 appropriate skeleton which requires actions and guards is now
6141 required.
6142 * src/main.c (main): Adjust.
6143 * tests/semantic.at: New.
6144 * tests/regression.at: Use `input.y' as input file name.
6145 Avoid 8+3 problems by requiring input.c when the test needs the
6146 parser.
6147
6148 2001-12-27 Akim Demaille <akim@epita.fr>
6149
6150 * src/reader.c (symbol_list_new): Be sure to initialize all the
6151 fields.
6152
6153 2001-12-27 Akim Demaille <akim@epita.fr>
6154
6155 All the hacks using a final pseudo state are now useless.
6156
6157 * src/LR0.c (set_state_table): state_table holds exactly nstates.
6158 * src/lalr.c (nLA): New.
6159 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
6160 instead of lookaheadsp from the pseudo state (nstate + 1).
6161
6162 2001-12-27 Akim Demaille <akim@epita.fr>
6163
6164 * src/output.c (action_row, token_actions): Use a state_t instead
6165 of a integer, and nlookaheads instead of the following state's
6166 lookaheadsp.
6167
6168 2001-12-27 Akim Demaille <akim@epita.fr>
6169
6170 * src/conflicts.c (log_resolution, flush_shift)
6171 (resolve_sr_conflict, set_conflicts, solve_conflicts)
6172 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
6173 (conflicts_print, print_reductions): Use a state_t instead of an
6174 integer when referring to a state.
6175 As much as possible, depend upon nlookaheads, instead of the
6176 `lookaheadsp' member of the following state (since lookaheads of
6177 successive states are successive, the difference between state n + 1
6178 and n served as the number of lookaheads for state n).
6179 * src/lalr.c (add_lookback_edge): Likewise.
6180 * src/print.c (print_core, print_actions, print_state)
6181 (print_results): Likewise.
6182 * src/print_graph.c (print_core, print_actions, print_state)
6183 (print_graph): Likewise.
6184 * src/conflicts.h: Adjust.
6185
6186 2001-12-27 Akim Demaille <akim@epita.fr>
6187
6188 * src/bison.hairy: Formatting/comment changes.
6189 ANSIfy.
6190 Remove `register' indications.
6191 Add plenty of `static'.
6192
6193 2001-12-27 Akim Demaille <akim@epita.fr>
6194
6195 * src/output.c (prepare): Drop the muscle `ntbase' which
6196 duplicates ntokens.
6197 * src/bison.simple: Formatting/comment changes.
6198 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
6199 is an undocumented synonym.
6200
6201 2001-12-22 Akim Demaille <akim@epita.fr>
6202
6203 * src/output.c (output_table_data): Change the prototype to use
6204 `int' for array ranges: some invocations do pass an int, not a
6205 short.
6206 Reported by Wayne Green.
6207
6208 2001-12-22 Akim Demaille <akim@epita.fr>
6209
6210 Some actions of web2c.y are improperly triggered.
6211 Reported by Mike Castle.
6212
6213 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
6214 * tests/regression.at (Web2c): Rename as...
6215 (Web2c Report): this.
6216 (Web2c Actions): New.
6217
6218 2001-12-22 Akim Demaille <akim@epita.fr>
6219
6220 Reductions in web2c.y are improperly reported.
6221 Reported by Mike Castle.
6222
6223 * src/conflicts.c (print_reductions): Fix.
6224 * tests/regression.at (Web2c): New.
6225
6226 2001-12-18 Akim Demaille <akim@epita.fr>
6227
6228 Some host fail on `assert (!"foo")', which expands to
6229 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
6230 Reported by Nelson Beebee.
6231
6232 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
6233 `#define it_succeeded 0' and `assert (it_succeeded)'.
6234
6235 2001-12-17 Marc Autret <autret_m@epita.fr>
6236
6237 * src/bison.simple: Don't hard code the skeleton line and filename.
6238 * src/output.c (output_parser): Rename 'line' as 'output_line'.
6239 New line counter 'skeleton_line' (skeleton-line muscle).
6240
6241 2001-12-17 Paul Eggert <eggert@twinsun.com>
6242
6243 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
6244 YYDEBUG must be defined to a nonzero value.
6245
6246 * src/bison.simple (yytname): Do not assume that the user defines
6247 YYDEBUG to a properly parenthesized expression.
6248
6249 2001-12-17 Akim Demaille <akim@epita.fr>
6250
6251 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
6252 nlookaheads is a new member.
6253 Adjust all users.
6254 * src/lalr.h (nlookaheads): Remove this orphan declaration.
6255 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
6256 state.
6257
6258 2001-12-17 Akim Demaille <akim@epita.fr>
6259
6260 * src/files.h, src/files.c (open_files, close_files): Remove.
6261 * src/main.c (main): Don't open/close files, nor invoke lex_free,
6262 let...
6263 * src/reader.c (reader): Do it.
6264
6265 2001-12-17 Akim Demaille <akim@epita.fr>
6266
6267 * src/conflicts.c (print_reductions): Formatting changes.
6268
6269 2001-12-17 Akim Demaille <akim@epita.fr>
6270
6271 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
6272 (flush_reduce): New.
6273 (resolve_sr_conflict): Adjust.
6274
6275 2001-12-17 Akim Demaille <akim@epita.fr>
6276
6277 * src/output.c (output_obstack): Be static and rename as...
6278 (format_obstack): this, to avoid any confusion with files.c's
6279 output_obstack.
6280 * src/reader.h (muscle_obstack): Move to...
6281 * src/output.h: here, since it's defined in output.c.
6282
6283 2001-12-17 Akim Demaille <akim@epita.fr>
6284
6285 * src/output.c (action_row, save_column, default_goto)
6286 (sort_actions, matching_state, pack_vector): Better variable
6287 locality.
6288
6289 2001-12-17 Akim Demaille <akim@epita.fr>
6290
6291 * src/output.c: Various formatting changes.
6292
6293 2001-12-17 Akim Demaille <akim@epita.fr>
6294
6295 * src/files.c (output_files): Free the output_obstack.
6296 * src/main.c (main): Call print and print_graph conditionally.
6297 * src/print.c (print): Work unconditionally.
6298 * src/print_graph.c (print_graph): Work unconditionally.
6299 * src/conflicts.c (log_resolution): Output only if verbose_flag.
6300
6301 2001-12-16 Marc Autret <autret_m@epita.fr>
6302
6303 * src/output.c (actions_output): Fix. When we use %no-lines,
6304 there is one less line per action.
6305
6306 2001-12-16 Marc Autret <autret_m@epita.fr>
6307
6308 * src/bison.simple: Remove a useless #line directive.
6309 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
6310 * src/output.c (get_lines_number): New.
6311 (output_parser): Adjust, now takes care about the lines of a
6312 output muscles.
6313 Fix line numbering.
6314 (actions_output): Computes the number of lines taken by actions.
6315 (output_master_parser): Insert new skeleton which is the name of
6316 the output parser file name.
6317
6318 2001-12-15 Marc Autret <autret_m@epita.fr>
6319
6320 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
6321
6322 2001-12-15 Marc Autret <autret_m@epita.fr>
6323
6324 * src/output.c (output_gram): Keep track of the hairy one.
6325
6326 2001-12-15 Akim Demaille <akim@epita.fr>
6327
6328 Make `make distcheck' work.
6329
6330 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
6331 system.h which uses libgettext.h.
6332
6333 2001-12-15 Akim Demaille <akim@epita.fr>
6334
6335 * src/nullable.c (set_nullable): Useless rules must be skipped,
6336 otherwise, since we range over their symbols, we might look at a
6337 nonterminal which no longer ``exists'', i.e., it is not counted in
6338 `nvars', hence we overflow our arrays.
6339
6340 2001-12-15 Akim Demaille <akim@epita.fr>
6341
6342 The header can also be produced directly, without any obstack!
6343 Yahoo!
6344
6345 * src/files.c, src/files.h (defines_obstack): Remove.
6346 (compute_header_macro): Global.
6347 (defines_obstack_save): Remove.
6348 * src/reader.c (parse_union_decl): No longer output to
6349 defines_obstack: its content can be found in the `stype' muscle
6350 anyway.
6351 (output_token_translations): Merge into...
6352 (symbols_output): this.
6353 Rename as...
6354 (symbols_save): this.
6355 (reader): Adjust.
6356 * src/output.c (header_output): New.
6357 (output): Call it.
6358
6359 2001-12-15 Akim Demaille <akim@epita.fr>
6360
6361 * src/reader.c (parse_union_decl): Instead of handling two obstack
6362 simultaneously, use one to define the `stype' muscle, and use the
6363 value of the latter to fill defines_obstack.
6364 (copy_comment): Remove.
6365 (copy_comment2): Work for a single obstack.
6366 Rename as...
6367 (copy_comment): this.
6368
6369 2001-12-15 Akim Demaille <akim@epita.fr>
6370
6371 * src/lex.c, src/lex.h (xgetc): No longer static.
6372 * src/reader.c (parse_union_decl): Revamp.
6373
6374 2001-12-15 Akim Demaille <akim@epita.fr>
6375
6376 Still making progress in separating Bison into (i) input, (ii)
6377 process, (iii) output: now we can directly output the parser file
6378 without using table_obstack at all.
6379
6380 * src/files.c, src/files.h (table_obstack): Bye bye.
6381 (parser_file_name): New.
6382 * src/files.c (compute_output_file_names): Compute it.
6383 * src/output.c (actions_output, output_parser)
6384 (output_master_parser): To a file instead of an obstack.
6385
6386 2001-12-15 Akim Demaille <akim@epita.fr>
6387
6388 Attach actions to rules, instead of pre-outputting them to
6389 actions_obstack.
6390
6391 * src/gram.h (rule_t): action and action_line are new members.
6392 * src/reader.c (symbol_list): Likewise.
6393 (copy_action): Save the actions within the rule.
6394 (packgram): Save them in rule_table.
6395 * src/output.c (actions_output): New.
6396 (output_parser): Use it on `%%actions'.
6397 (output_rule_data): Don't free rule_table.
6398 (output): Do it.
6399 (prepare): Don't save the `action' muscle.
6400 * src/bison.simple: s/%%action/%%actions/.
6401
6402 2001-12-15 Akim Demaille <akim@epita.fr>
6403
6404 * src/reader.c (copy_action): When --yacc, don't append a `;'
6405 to the user action: let it fail if lacking.
6406 Suggested by Arnold Robbins and Tom Tromey.
6407
6408 2001-12-14 Akim Demaille <akim@epita.fr>
6409
6410 * src/lex.c (literalchar): Simply return the char you decoded, non
6411 longer mess around with obstacks and int pointers.
6412 Adjust all callers.
6413
6414 2001-12-14 Akim Demaille <akim@epita.fr>
6415
6416 * src/lex.c (literalchar): Don't escape the special characters,
6417 just decode them, and keep them as char (before, eol was output as
6418 the 2 char string `\n' etc.).
6419 * src/output.c (output_rule_data): Use quotearg to output the
6420 token strings.
6421
6422 2001-12-13 Paul Eggert <eggert@twinsun.com>
6423
6424 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
6425 Do not infringe on the global user namespace when using C++.
6426 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
6427 All uses of `fprintf' and `stderr' changed.
6428
6429 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
6430
6431 2001-12-13 Akim Demaille <akim@epita.fr>
6432
6433 The computation of nullable is broken: it doesn't handle empty
6434 RHS's properly.
6435
6436 * tests/torture.at (GNU AWK Grammar): New.
6437 * tests/sets.at (Nullable): New.
6438 * src/nullable.c (set_nullable): Instead of blindly looping over
6439 `ritems', loop over the rules, and then over their rhs's.
6440
6441 Work around Autotest bugs.
6442
6443 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
6444 frame, because Autotest understand lines starting with a `+' as
6445 traces from the shell. Then, they are not processed properly.
6446 Admittedly an Autotest bug, but we don't have time to wait for
6447 Autotest to catch up.
6448 * tests/regression.at (Broken Closure): Adjust to the new table
6449 frames.
6450 Move to...
6451 * tests/sets.at: here.
6452
6453 2001-12-13 Akim Demaille <akim@epita.fr>
6454
6455 * src/closure.c (closure): Use nrules instead of playing tricks
6456 with BITS_PER_WORD.
6457
6458 2001-12-13 Akim Demaille <akim@epita.fr>
6459
6460 * src/print.c (print_actions): Output the handling of `$' as the
6461 traces do: shifting the token EOF. Before EOF was treated as a
6462 nonterminal.
6463 * tests/regression.at: Adjust some tests.
6464 * src/print_graph.c (print_core): Complete the set of items via
6465 closure. The next-to-final and final states are still unsatisfying,
6466 but that's to be addressed elsewhere.
6467 No longer output the rule numbers, but do output the state number.
6468 A single loop for the shifts + gotos is enough, but picked a
6469 distinct color for each.
6470 (print_graph): Initialize and finalize closure.
6471
6472 2001-12-13 Akim Demaille <akim@epita.fr>
6473
6474 * src/reader.c (readgram): Remove dead code, an strip useless
6475 braces.
6476 (get_type): Remove, unused.
6477
6478 2001-12-12 Akim Demaille <akim@epita.fr>
6479
6480 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
6481 on that of lib/error.c.
6482
6483 2001-12-12 Akim Demaille <akim@epita.fr>
6484
6485 Some hosts don't like `/' in includes.
6486
6487 * src/system.h: Include libgettext.h without qualifying the path.
6488 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
6489 $(top_srcdir).
6490
6491 2001-12-11 Marc Autret <autret_m@epita.fr>
6492
6493 * src/output.c (output_parser): Remove useless muscle.
6494
6495 2001-12-11 Marc Autret <autret_m@epita.fr>
6496
6497 * src/bison.simple: Remove #line just before %%epilogue. It
6498 is now handled in ...
6499 * src/reader.c (read_additionnal_code): Add the output of a
6500 #line for the epilogue.
6501
6502 2001-12-10 Marc Autret <autret_m@epita.fr>
6503
6504 * src/reader.c (copy_definition): Re-use CPP-outed code which
6505 replace precedent remove.
6506 * src/bison.simple: Remove #line before %%prologue because
6507 %%input-line is wrong at this time.
6508
6509 2001-12-10 Marc Autret <autret_m@epita.fr>
6510
6511 * src/reader.c (symbols_output): Clean up.
6512 * src/output.c (output_gram, output): Clean up.
6513
6514 2001-12-10 Akim Demaille <akim@epita.fr>
6515
6516 * src/lalr.c (initialize_lookaheads): New. Extracted from...
6517 * src/LR0.c (set_state_table): here.
6518 * src/lalr.c (lalr): Call it.
6519
6520 2001-12-10 Akim Demaille <akim@epita.fr>
6521
6522 * src/state.h (shifts): Remove the `number' member: shifts are
6523 attached to state, hence no longer need to be labelled with a
6524 state number.
6525
6526 2001-12-10 Akim Demaille <akim@epita.fr>
6527
6528 Now that states have a complete set of members, the linked list of
6529 shifts is useless: just fill directly the state's shifts member.
6530
6531 * src/state.h (shifts): Remove the `next' member.
6532 * src/LR0.c (first_state, last_state): Remove.
6533 Adjust the callers.
6534 (augment_automaton): Don't look for the shifts that must be added
6535 a shift on EOF: it is those of the state we looked for! But now,
6536 since shifts are attached, it is no longer needed to looking
6537 merely by its id: its number.
6538
6539 2001-12-10 Akim Demaille <akim@epita.fr>
6540
6541 * src/LR0.c (augment_automaton): Better variable locality.
6542 Remove an impossible branch: if there is a state corresponding to
6543 the start symbol being shifted, then there is shift for the start
6544 symbol from the initial state.
6545
6546 2001-12-10 Akim Demaille <akim@epita.fr>
6547
6548 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
6549 only when appropriate: when insert_start_shifting_state' is not
6550 invoked.
6551 * tests/regression.at (Rule Line Numbers): Adjust.
6552
6553 2001-12-10 Akim Demaille <akim@epita.fr>
6554
6555 * src/LR0.c (augment_automaton): Now that all states have shifts,
6556 merge the two cases addition shifts to the initial state.
6557
6558 2001-12-10 Akim Demaille <akim@epita.fr>
6559
6560 * src/lalr.c (set_state_table): Move to...
6561 * src/LR0.c: here.
6562 * src/lalr.c (lalr): Don't call it...
6563 * src/LR0.c (generate_states): do it.
6564 * src/LR0.h (first_state): Remove, only the table is used.
6565
6566 2001-12-10 Akim Demaille <akim@epita.fr>
6567
6568 * src/LR0.h (first_shift, first_reduction): Remove.
6569 * src/lalr.c: Don't use first_shift: find shifts through the
6570 states.
6571
6572 2001-12-10 Akim Demaille <akim@epita.fr>
6573
6574 * src/LR0.c: Attach shifts to states as soon as they are
6575 computed.
6576 * src/lalr.c (set_state_table): Instead of assigning shifts to
6577 state, just assert that the mapping was properly done.
6578
6579 2001-12-10 Akim Demaille <akim@epita.fr>
6580
6581 * src/LR0.c (insert_start_shift): Rename as...
6582 (insert_start_shifting_state): this.
6583 (insert_eof_shifting_state, insert_accepting_state): New.
6584 (augment_automaton): Adjust.
6585 Better locality of the variables.
6586 When looking if the start_symbol is shifted from the initial
6587 state, using `while (... symbol != start_symbol ...)' sounds
6588 better than `while (... symbol < start_symbol ...)': If fail
6589 to see how the order between symbols could be relevant!
6590
6591 2001-12-10 Akim Demaille <akim@epita.fr>
6592
6593 * src/getargs.h: Don't declare `spec_name_prefix' and
6594 `spec_file_prefix', declared by src/files.h.
6595 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
6596 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
6597 * src/output.c (prepare): Adjust.
6598 * src/reader.c (symbols_output): Likewise.
6599 * src/vmsgetargs.c: Vaguely adjust, but who cares?
6600
6601 2001-12-10 Akim Demaille <akim@epita.fr>
6602
6603 * src/muscle_tab.c (muscle_init): NULL is a better default than
6604 `"0"'.
6605
6606 2001-12-10 Akim Demaille <akim@epita.fr>
6607
6608 * src/reader.c (reader): Calling symbols_output once is enough.
6609
6610 2001-12-10 Akim Demaille <akim@epita.fr>
6611
6612 Now that states have a complete set of members, the linked list of
6613 reductions is useless: just fill directly the state's reductions
6614 member.
6615
6616 * src/state.h (struct reductions): Remove member `number' and
6617 `next'.
6618 * src/LR0.c (first_reduction, last_reduction): Remove.
6619 (save_reductions): Don't link the new reductions, store them in
6620 this_state.
6621 * src/lalr.c (set_state_table): No need to attach reductions to
6622 states, it's already done.
6623 * src/output.c (output_actions): No longer free the shifts, then
6624 the reductions, then the states: free all the states and their
6625 members.
6626
6627 2001-12-10 Akim Demaille <akim@epita.fr>
6628
6629 * src/options.c (OPTN, DRTV, BOTH): New.
6630 (option_table): Use them.
6631
6632 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
6633 the job of system.h.
6634 * src/options.c: Don't include stdio.h and xalloc.h for the same
6635 reasons.
6636
6637 2001-12-10 Akim Demaille <akim@epita.fr>
6638
6639 * src/output.c (output, prepare): Make sure the values of the
6640 muscles `action' and `prologue' are 0-terminated.
6641
6642 2001-12-10 Akim Demaille <akim@epita.fr>
6643
6644 Clean up GCC warnings.
6645
6646 * src/reader.c (copy_action): `buf' is not used.
6647 (parse_skel_decl): Be static.
6648 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
6649 * src/options.h (create_long_option_table): Have a real prototype.
6650 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
6651 (hash_delete_at): Return const void *.
6652 Adjust casts to preserve the const.
6653
6654 2001-12-10 Akim Demaille <akim@epita.fr>
6655
6656 * configure.in: Require 2.52g.
6657 M4 is not needed, but AUTOM4TE is.
6658 * m4/m4.m4: Remove.
6659 * tests/Makefile.am: Adjust.
6660
6661 2001-12-10 Akim Demaille <akim@epita.fr>
6662
6663 One structure for states is enough, even though theoretically
6664 there are LR(0) states and LALR(1) states.
6665
6666 * src/lalr.h (state_t): Remove.
6667 (state_table): Be state_t **, not state_t *.
6668 * src/state.h (core, CORE_ALLOC): Rename as...
6669 (state_t, STATE_ALLOC): this.
6670 Add the LALR(1) members: shifts, reductions, errs.
6671 * src/LR0.c (state_table): Rename as...
6672 (state_hash): this, to avoid name clashes with the global
6673 `state_table'.
6674 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
6675 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
6676
6677 2001-12-10 Akim Demaille <akim@epita.fr>
6678
6679 Bison dumps core on bash.y.
6680 Reported by Pascal Bart.
6681
6682 * src/warshall.c (bitmatrix_print): New.
6683 (TC): Use it.
6684 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
6685 j must be the outer loop.
6686 * tests/regression.at (Broken Closure): New.
6687
6688 2001-12-05 Akim Demaille <akim@epita.fr>
6689
6690 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
6691 its argument.
6692 Reported by Peter Hámorský.
6693
6694 2001-12-05 Akim Demaille <akim@epita.fr>
6695
6696 * src/conflicts.c (err_table): Remove.
6697 (resolve_sr_conflict): Adjust.
6698 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
6699 Rename as...
6700 (state_t.reductions, state_t.shifts): this.
6701
6702 2001-12-05 Akim Demaille <akim@epita.fr>
6703
6704 * src/reduce.c (reduce_grammar_tables): No longer disable the
6705 removal of useless rules via CPP but via `if (0)', so that the
6706 compiler still check the code is valid.
6707 For instance, it should have noticed `rline' no longer exists: use
6708 the `line' member of rule_t.
6709 * src/gram.c (dummy, rline): Remove, unused.
6710
6711 2001-12-05 Akim Demaille <akim@epita.fr>
6712
6713 * src/output.c (pack_vector): Use assert, not berror.
6714 * src/main.c (berror): Remove, unused.
6715
6716 2001-12-05 Akim Demaille <akim@epita.fr>
6717
6718 New experimental feature: if --verbose --trace output all the
6719 items of a state, not only its kernel.
6720
6721 * src/print.c (print_core): If `trace_flag', then invoke closure
6722 before outputting the items of the state (print_core is no longer
6723 a correct name them).
6724 (print_results): Invoke new_closure/free_closure if needed.
6725
6726 2001-12-05 Akim Demaille <akim@epita.fr>
6727
6728 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
6729 * src/closure.c, src/closure.h (itemsetsize): Rename as...
6730 (nitemset): for consistency with the rest of the project.
6731
6732 2001-12-05 Akim Demaille <akim@epita.fr>
6733
6734 * src/closure.c (print_closure): Improve.
6735 (closure): Use it for printing input and output.
6736
6737 2001-12-05 Akim Demaille <akim@epita.fr>
6738
6739 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
6740 indexed by nonterminals.
6741
6742 2001-12-05 Akim Demaille <akim@epita.fr>
6743
6744 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
6745 what it was!).
6746 * src/warshall.h: Remove accidental duplication of the content.
6747
6748 2001-12-05 Akim Demaille <akim@epita.fr>
6749
6750 * src/closure.c (set_fderives): De-obfuscate.
6751
6752 2001-12-05 Akim Demaille <akim@epita.fr>
6753
6754 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
6755
6756 2001-12-05 Akim Demaille <akim@epita.fr>
6757
6758 * src/closure.c (set_firsts): De-obfuscate.
6759
6760 2001-12-05 Akim Demaille <akim@epita.fr>
6761
6762 * src/output.c (action_row): De-obfuscate
6763 using the good o' techniques: arrays not pointers, variable
6764 locality, BITISSET, RESETBIT etc.
6765
6766 2001-12-05 Akim Demaille <akim@epita.fr>
6767
6768 Pessimize the code to simplify it: from now on, all the states
6769 have a valid SHIFTS, which NSHIFTS is possibly 0.
6770
6771 * src/LR0.c (shifts_new): Be global and move to..
6772 * src/state.c, src/state.h: here.
6773 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
6774 * src/print_graph: Adjust.
6775
6776 2001-12-05 Akim Demaille <akim@epita.fr>
6777
6778 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
6779 * src/conflicts.c: Use it.
6780 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
6781 incorrectly ``simplified''.
6782
6783 2001-12-05 Akim Demaille <akim@epita.fr>
6784
6785 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
6786 using the good o' techniques: arrays not pointers, variable
6787 locality, BITISSET, RESETBIT etc.
6788
6789 2001-12-05 Akim Demaille <akim@epita.fr>
6790
6791 * src/state.h (SHIFT_SYMBOL): New.
6792 * src/conflicts.c: Use it to deobfuscate.
6793
6794 2001-12-05 Akim Demaille <akim@epita.fr>
6795
6796 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
6797 (print_reductions): De-obfuscate using the good o' techniques:
6798 arrays not pointers, variable locality, BITISSET.
6799
6800 2001-12-05 Akim Demaille <akim@epita.fr>
6801
6802 * src/conflicts.c (print_reductions): Arrays, not pointers.
6803 Use BITISSET.
6804
6805 2001-12-05 Akim Demaille <akim@epita.fr>
6806
6807 * src/conflicts.c (print_reductions): Pessimize, but clarify.
6808
6809 2001-12-05 Akim Demaille <akim@epita.fr>
6810
6811 * src/conflicts.c (print_reductions): Improve variable locality.
6812
6813 2001-12-05 Akim Demaille <akim@epita.fr>
6814
6815 * src/conflicts.c (print_reductions): Pessimize, but clarify.
6816
6817 2001-12-05 Akim Demaille <akim@epita.fr>
6818
6819 * src/conflicts.c (print_reductions): Improve variable locality.
6820
6821 2001-12-05 Akim Demaille <akim@epita.fr>
6822
6823 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
6824 * src/lalr.c: Use them.
6825
6826 2001-12-05 Akim Demaille <akim@epita.fr>
6827
6828 * src/LR0.c (augment_automaton): Formatting changes.
6829 Better variable locality.
6830
6831 2001-12-05 Akim Demaille <akim@epita.fr>
6832
6833 * src/lalr.c (matrix_print): New.
6834 (transpose): Use it.
6835 Use arrays instead of pointers.
6836
6837 2001-12-05 Akim Demaille <akim@epita.fr>
6838
6839 * src/lalr.c (maxrhs): Move to...
6840 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
6841 * src/lalr.c (build_relations): Adjust.
6842
6843 2001-12-05 Akim Demaille <akim@epita.fr>
6844
6845 * src/lalr.c (transpose): Free the memory allocated to the
6846 argument, as it is replaced by the results by the unique caller.
6847 (build_relations): Merely invoke transpose: it handles the memory
6848 deallocation.
6849 Improve variable locality.
6850 Avoid variables used as mere abbreviations.
6851 (compute_lookaheads): Use arrays instead of pointers.
6852
6853 2001-12-05 Akim Demaille <akim@epita.fr>
6854
6855 * src/lalr.c (initialize_F): Improve variable locality.
6856 Avoid variables used as mere abbreviations.
6857
6858 2001-12-05 Akim Demaille <akim@epita.fr>
6859
6860 * src/derives.c (print_derives): Display the ruleno.
6861 * src/lalr.c (initialize_F, transpose): Better variable locality
6862 to improve readability.
6863 Avoid variables used as mere abbreviations.
6864
6865 2001-12-05 Akim Demaille <akim@epita.fr>
6866
6867 * src/lalr.c (traverse): Use arrays instead of pointers.
6868
6869 2001-12-05 Akim Demaille <akim@epita.fr>
6870
6871 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
6872 the handling of squeue.
6873 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
6874
6875 2001-12-05 Akim Demaille <akim@epita.fr>
6876
6877 Because useless nonterminals are now kept alive (instead of being
6878 `destroyed'), we now sometimes examine them, and store information
6879 related to them. Hence we need to know their number, and adjust
6880 memory allocations.
6881
6882 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
6883 static.
6884 * src/LR0.c (allocate_itemsets): The memory allocated to
6885 `symbol_count' was used for two different purpose: once to count
6886 the number of occurrences of each symbol, and later reassigned to
6887 `shift_symbol', containing the symbol that can be shifted from a
6888 given state.
6889 Deobfuscate, i.e., allocate, use and free `symbol_count' here
6890 only, and...
6891 (new_itemsets): Allocate `shift_symbol' here.
6892 (allocate_itemsets): symbol_count includes useless nonterminals.
6893 Make room for them.
6894 (free_storage): Use `free', not `XFREE', for pointers that cannot
6895 be null.
6896
6897 2001-12-05 Akim Demaille <akim@epita.fr>
6898
6899 * src/nullable.c (set_nullable): Deobfuscate the handling of
6900 ritem.
6901 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
6902
6903 2001-12-05 Akim Demaille <akim@epita.fr>
6904
6905 * src/gram.c, src/gram.h (ritem_print): New.
6906 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
6907 (This useless function was defined only to work around VMS linkers
6908 that can't handle compilation units with variables only).
6909 * src/reduce.c (dump_grammar): Use it to trace the construction of
6910 ritem.
6911
6912 2001-12-04 Paul Eggert <eggert@twinsun.com>
6913
6914 * src/bison.simple (union yyalloc): Change member names
6915 to be the same as the stack names.
6916 (yyparse): yyptr is now union yyalloc *, not char *.
6917 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
6918 and may generate better code on some machines.
6919 (yystpcpy): Use prototype if __STDC__ is defined, not just
6920 if __cplusplus is defined.
6921
6922 2001-11-30 Akim Demaille <akim@epita.fr>
6923
6924 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
6925 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
6926 Gettext doesn't compile cleanly, and dies with -Werror.
6927 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
6928 Include WARNING_CFLAGS here.
6929 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
6930 before being defined.
6931
6932 2001-11-27 Paul Eggert <eggert@twinsun.com>
6933
6934 * lib/quotearg.h (quotearg_n, quotearg_n_style):
6935 First arg is int, not unsigned.
6936 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
6937 (SIZE_MAX, UINT_MAX): New macros.
6938 (quotearg_n_options): Abort if N is negative.
6939 Avoid overflow check on hosts where size_t is 64 bits and int
6940 is 32 bits, as overflow is impossible there.
6941 Fix off-by-one typo that caused unnecessary reallocation.
6942
6943 2001-11-29 Paul Eggert <eggert@twinsun.com>
6944
6945 Name space cleanup in generated parser.
6946
6947 * doc/bison.texinfo (Bison Parser): Discuss system headers
6948 and their effect on the user name space.
6949
6950 * src/bison.simple:
6951 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
6952 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
6953 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
6954
6955 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
6956 on user names when possible.
6957
6958 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
6959 Simplify test for whather <alloca.h> exists.
6960
6961 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
6962
6963 (<stdio.h>): Include if YYDEBUG.
6964
6965 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
6966 ! defined (yyoverflow) && ! defined (yymemcpy).
6967
6968 (yymemcpy, yyparse): Rename local variables as needed so that
6969 they all begin with 'yy'.
6970
6971 (yystrlen, yystpcpy): New functions.
6972
6973 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
6974 All uses changed.
6975
6976 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
6977 instead of relying on string.h functions. Use YYSTACK_ALLOC
6978 and YYSTACK_FREE instead of malloc and free.
6979
6980 2001-11-30 Akim Demaille <akim@epita.fr>
6981
6982 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
6983 before their first uses.
6984 (YYBISON, YYPURE): Move to the top of the output.
6985
6986 2001-11-30 Akim Demaille <akim@epita.fr>
6987
6988 * tests/reduce.at (Useless Nonterminals): Fix.
6989
6990 2001-11-30 Akim Demaille <akim@epita.fr>
6991
6992 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
6993 if body instead of `;' to pacify GCC's warnings.
6994
6995 2001-11-30 Akim Demaille <akim@epita.fr>
6996
6997 Instead of mapping the LHS of unused rules to -1, keep the LHS
6998 valid, but flag the rules as invalid.
6999
7000 * src/gram.h (rule_t): `useful' is a new member.
7001 * src/print.c (print_grammar): Adjust.
7002 * src/derives.c (set_derives): Likewise.
7003 * src/reader.c (packgram, reduce_output): Likewise.
7004 * src/reduce.c (reduce_grammar_tables): Likewise.
7005 * tests/reduce.at (Underivable Rules, Useless Rules): New.
7006
7007 2001-11-30 Akim Demaille <akim@epita.fr>
7008
7009 * src/reduce.c (reduce_output): Formatting changes.
7010 * src/print.c (print_results, print_grammar): Likewise.
7011 * tests/regression.at (Rule Line Numbers)
7012 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
7013
7014 2001-11-30 Akim Demaille <akim@epita.fr>
7015
7016 * src/reduce.c (nonterminals_reduce): Instead of throwing away
7017 useless nonterminals, move them at the end of the symbol arrays.
7018 (reduce_output): Adjust.
7019 * tests/reduce.at (Useless Nonterminals): Adjust.
7020
7021 2001-11-30 Akim Demaille <akim@epita.fr>
7022
7023 * src/reduce.c: Various comment/formatting changes.
7024 (nonterminals_reduce): New, extracted from...
7025 (reduce_grammar_tables): here.
7026 (reduce_grammar): Call nonterminals_reduce.
7027
7028 2001-11-29 Paul Eggert <eggert@twinsun.com>
7029
7030 * src/bison.simple (YYSTACK_REALLOC): Remove.
7031 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
7032 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
7033 New macros.
7034 (union yyalloc): New type.
7035 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
7036 an arbitrary restriction on hosts where size_t is wider than int.
7037
7038 (yyparse): Don't dump core if alloca or malloc fails; instead, report
7039 a parser stack overflow. Allocate just one block of memory for all
7040 three stacks, instead of allocating three blocks; this typically is
7041 faster and reduces fragmentation.
7042
7043 Do not limit the number of items in the stack to a value that fits
7044 in 'int', as this is an arbitrary limit on hosts with 64-bit
7045 size_t and 32-bit int.
7046
7047 2001-11-29 Marc Autret <autret_m@epita.fr>
7048
7049 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
7050 of defining YYERROR_VERBOSE.
7051 [AT_DATA]: $4 is now out of C declarations in the prologue.
7052
7053 2001-11-28 Marc Autret <autret_m@epita.fr>
7054
7055 * src/reader.c (parse_dquoted_param): New.
7056 (parse_skel_decl): Use it.
7057 * src/lex.h: Add its prototype.
7058 * src/lex.c (literalchar): Become not static.
7059
7060 2001-11-28 Marc Autret <autret_m@epita.fr>
7061
7062 * src/output.h: And put its extern declaration here.
7063 * src/output.c (error_verbose): Define here.
7064 (prepare): Echo name modification.
7065 * src/getargs.h: Clean its extern declaration.
7066 * src/getargs.c (error_verbose_flag): Remove.
7067 (getargs): Remove case 'e'.
7068 * src/options.c (option_table): 'error-verbose' is now seen as simple
7069 percent option.
7070 Include output.h.
7071
7072 * src/reader.c (read_declarations): Remove case tok_include.
7073 (parse_include_decl): Remove.
7074 * src/lex.h (token_t): Remove tok_include.
7075 * src/options.c (option_table): 'include' is now a simple command line
7076 option.
7077
7078 2001-11-28 Marc Autret <autret_m@epita.fr>
7079
7080 * src/bison.simple: Adjust muscle names.
7081 * src/muscle_tab.c (muscle_init): Also rename the muscles.
7082 * src/output.c (prepare): s/_/-/ for the muscles names.
7083 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
7084
7085 2001-11-28 Marc Autret <autret_m@epita.fr>
7086
7087 * src/bison.simple: Fix debug.
7088 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
7089
7090 2001-11-28 Akim Demaille <akim@epita.fr>
7091
7092 * src/LR0.c (shifts_new): New.
7093 (save_shifts, insert_start_shift, augment_automaton): Use it.
7094
7095 2001-11-28 Akim Demaille <akim@epita.fr>
7096
7097 * src/closure.c (closure): `b' and `ruleno' denote the same value:
7098 keep ruleno only.
7099
7100 2001-11-28 Akim Demaille <akim@epita.fr>
7101
7102 * src/closure.c (closure): Instead of looping over word in array
7103 then bits in words, loop over bits in array.
7104
7105 2001-11-28 Akim Demaille <akim@epita.fr>
7106
7107 * src/closure.c (closure): No longer optimize the special case
7108 where all the bits of `ruleset[r]' are set to 0, to make the code
7109 clearer.
7110
7111 2001-11-28 Akim Demaille <akim@epita.fr>
7112
7113 * src/closure.c (closure): `r' and `c' are new variables, used to
7114 de-obfuscate accesses to RULESET and CORE.
7115
7116 2001-11-28 Akim Demaille <akim@epita.fr>
7117
7118 * src/reduce.c (reduce_print): Use ngettext.
7119 (dump_grammar): Improve the trace accuracy.
7120
7121 2001-11-28 Akim Demaille <akim@epita.fr>
7122
7123 * src/reduce.c (dump_grammar): Don't translate trace messages.
7124
7125 2001-11-28 Akim Demaille <akim@epita.fr>
7126
7127 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
7128 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
7129 as all tags are free'ed afterwards.
7130 From Enrico Scholz.
7131
7132 2001-11-27 Paul Eggert <eggert@twinsun.com>
7133
7134 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
7135 use alloca when we didn't want to, and vice versa.
7136
7137 2001-11-27 Marc Autret <autret_m@epita.fr>
7138
7139 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
7140 initialization.
7141 * src/output.c (prepare): Remove its update.
7142
7143 2001-11-27 Marc Autret <autret_m@epita.fr>
7144
7145 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
7146 Use %error-verbose.
7147
7148 2001-11-27 Marc Autret <autret_m@epita.fr>
7149
7150 * src/bison.simple: Remove YYERROR_VERBOSE using.
7151 Use %%error_verbose.
7152 (yyparse): Likewise.
7153 * src/output.c (prepare): Give its final value.
7154 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
7155 * src/getargs.h: Add its extern declaration.
7156 * src/getargs.c (error_verbose_flag): New int.
7157 (getargs): Update to catch new case.
7158 * src/options.c (option_table): 'error-verbose' is a new option.
7159 (shortopts): Update.
7160
7161 2001-11-27 Akim Demaille <akim@epita.fr>
7162
7163 * src/system.h: Use intl/libgettext.h.
7164 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
7165
7166 2001-11-27 Akim Demaille <akim@epita.fr>
7167
7168 * tests/torture.at (Exploding the Stack Size with Malloc):
7169 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
7170
7171 2001-11-27 Akim Demaille <akim@epita.fr>
7172
7173 * src/files.c: Include error.h.
7174 Reported by Hans Aberg.
7175
7176 2001-11-26 Marc Autret <autret_m@epita.fr>
7177
7178 * src/reader.c (parse_include_decl): New, not yet implemented.
7179 (read_declarations): Add case tok_include.
7180 * src/getargs.h (include): Add its extern definition.
7181 * src/getargs.c (include): New const char *.
7182 (getargs): Add case '-I'.
7183 * src/options.c (option_table): Add include as command line and
7184 percent option.
7185 * src/lex.h (token_t): Add tok_include.
7186
7187 2001-11-26 Akim Demaille <akim@epita.fr>
7188
7189 * src/reader.c (readgram): Make sure rules for mid-rule actions
7190 have a lineno equal to that of their host rule.
7191 Reported by Hans Aberg.
7192 * tests/regression.at (Rule Line Numbers): New.
7193
7194 2001-11-26 Akim Demaille <akim@epita.fr>
7195
7196 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
7197 size_ts.
7198
7199 2001-11-26 Akim Demaille <akim@epita.fr>
7200
7201 * src/complain.c, src/complain.h (error): Remove, provided by
7202 lib/error.[ch].
7203
7204 2001-11-26 Akim Demaille <akim@epita.fr>
7205
7206 * src/reader.c (read_declarations): Don't abort on tok_illegal,
7207 issue an error message.
7208 * tests/regression.at (Invalid %directive): New.
7209 Reported by Hans Aberg.
7210
7211 2001-11-26 Akim Demaille <akim@epita.fr>
7212
7213 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
7214 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
7215
7216 2001-11-26 Akim Demaille <akim@epita.fr>
7217
7218 * src/conflicts.c (conflicts_print): Don't complain at all when
7219 there are no reduce/reduce conflicts, and as many shift/reduce
7220 conflicts as expected.
7221 * tests/regression.at (%expect right): Adjust.
7222
7223 2001-11-23 Akim Demaille <akim@epita.fr>
7224
7225 * lib/alloca.c: Update, from fileutils.
7226
7227 2001-11-23 Akim Demaille <akim@epita.fr>
7228
7229 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
7230
7231 2001-11-23 Akim Demaille <akim@epita.fr>
7232
7233 * src/system.h: Include alloca.h.
7234 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
7235
7236 2001-11-23 Akim Demaille <akim@epita.fr>
7237
7238 * src/print_graph.c (print_actions): Remove `rule', unused.
7239 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
7240 pacify GCC's signed < unsigned warnings.
7241 * src/closure.c (itemsetsize): Likewise.
7242 * src/reader.c (symbol_list_new): Static.
7243
7244 2001-11-23 Akim Demaille <akim@epita.fr>
7245
7246 Attaching lineno to buckets is stupid, since only one copy of each
7247 symbol is kept, only the line of the first occurrence is kept too.
7248
7249 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
7250 * src/reader.c (rline_allocated): Remove, unused.
7251 (symbol_list): Have a `line' member.
7252 (symbol_list_new): New.
7253 (readgram): Use it.
7254 * src/print.c (print_grammar): Output the rule line numbers.
7255 * tests/regression.at (Solved SR Conflicts)
7256 (Unresolved SR Conflicts): Adjust.
7257 Reported by Hans Aberg.
7258
7259 2001-11-22 Marc Autret <autret_m@epita.fr>
7260
7261 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
7262
7263 2001-11-22 Marc Autret <autret_m@epita.fr>
7264
7265 * src/muscle_tab.c (muscle_init): Remove initialization of
7266 skeleton muscle.
7267 * src/output.c (output_master_parser): Do it here.
7268
7269 2001-11-20 Akim Demaille <akim@epita.fr>
7270
7271 * po/sv.po: New.
7272 * configure.in (ALL_LINGUAS): Adjust.
7273 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
7274 longer contains strings to translate.
7275
7276 2001-11-19 Akim Demaille <akim@epita.fr>
7277
7278 * src/conflicts.c (conflicts_print): Add a missing \n.
7279
7280 2001-11-19 Akim Demaille <akim@epita.fr>
7281
7282 * src/nullable.c (nullable_print): New.
7283 (set_nullable): Call it when tracing.
7284 Better locality of variables.
7285
7286 2001-11-19 Akim Demaille <akim@epita.fr>
7287
7288 * src/print.c (print_actions): Better locality of variables.
7289
7290 2001-11-19 Akim Demaille <akim@epita.fr>
7291
7292 * src/derives.c (print_derives): Fix and enrich.
7293 * src/closure.c (print_fderives): Likewise.
7294
7295 2001-11-19 Akim Demaille <akim@epita.fr>
7296
7297 * src/closure.c (itemsetend): Remove, replaced with...
7298 (itemsetsize): new.
7299
7300 2001-11-19 Akim Demaille <akim@epita.fr>
7301
7302 * src/LR0.c (kernel_end): Remove, replaced with...
7303 (kernel_size): new.
7304
7305 2001-11-19 Akim Demaille <akim@epita.fr>
7306
7307 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
7308 to clarify.
7309
7310 2001-11-19 Akim Demaille <akim@epita.fr>
7311
7312 * src/closure.c (closure): Use arrays instead of pointers to clarify.
7313
7314 2001-11-19 Akim Demaille <akim@epita.fr>
7315
7316 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
7317 trace messages.
7318 * src/LR0.c: Likewise.
7319 (allocate_itemsets): Use arrays instead of pointers to clarify.
7320
7321 2001-11-19 Akim Demaille <akim@epita.fr>
7322
7323 * src/getargs.c (statistics_flag): Replace with...
7324 (trace_flag): New.
7325 (longopts): Accept --trace instead of --statistics.
7326 * src/getargs.h, src/options.c: Adjust.
7327 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
7328 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
7329
7330 2001-11-19 Akim Demaille <akim@epita.fr>
7331
7332 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
7333 pointers to clarify the code.
7334 (save_reductions, save_shifts): Factor common parts of alternatives.
7335
7336 2001-11-19 Akim Demaille <akim@epita.fr>
7337
7338 * src/LR0.c (new_state, get_state): Complete TRACE code.
7339 * src/closure.c: Include `reader.h' to get `tags', needed by the
7340 trace code.
7341 Rename the conditional DEBUG as TRACE.
7342 Output consistently TRACEs to stderr, not stdout.
7343 * src/derives.c: Likewise.
7344 * src/reduce.c: (inaccessable_symbols): Using if is better style
7345 than goto.
7346 Use `#if TRACE' instead of `#if 0' for tracing code.
7347
7348 2001-11-19 Akim Demaille <akim@epita.fr>
7349
7350 * src/system.h (LIST_FREE, shortcpy): New.
7351 * src/LR0.c: Use them.
7352 * src/output.c (free_itemsets, free_reductions, free_shifts):
7353 Remove, replaced by LIST_FREE.
7354
7355 2001-11-19 Akim Demaille <akim@epita.fr>
7356
7357 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
7358 (REDUCTIONS_ALLOC): New.
7359 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
7360 allocation.
7361
7362 2001-11-19 Akim Demaille <akim@epita.fr>
7363
7364 * src/LR0.c (new_state): Complete trace code.
7365 * src/nullable.c (set_nullable): Don't translate traces.
7366
7367 2001-11-19 Akim Demaille <akim@epita.fr>
7368
7369 * src/print_graph.c (print_core): Better locality of variables.
7370 * src/print.c (print_core): Likewise.
7371
7372 2001-11-19 Akim Demaille <akim@epita.fr>
7373
7374 * src/vcg.c: You do the output, so you are responsible of the
7375 handling of VCG syntax, in particular: use quotearg.
7376 * src/print_graph.c: Don't.
7377 (print_actions): Don't output the actions as part of the nodes,
7378 since that's the job of the edges.
7379 (print_state): Don't output by hand: fill the node description,
7380 and ask for its output.
7381
7382 2001-11-19 Akim Demaille <akim@epita.fr>
7383
7384 * src/bison.simple (yyparse): When verbosely reporting an error,
7385 no longer put additional quotes around token names.
7386 * tests/calc.at: Adjust.
7387
7388 2001-11-19 Akim Demaille <akim@epita.fr>
7389
7390 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
7391 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
7392 * src/output.c: Adjust.
7393
7394 2001-11-19 Akim Demaille <akim@epita.fr>
7395
7396 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
7397 (rule_t): this.
7398 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
7399
7400 2001-11-19 Akim Demaille <akim@epita.fr>
7401
7402 * src/gram.h (rule_t): New.
7403 (rule_table): New.
7404 (rrhs, rlhs): Remove, part of state_t.
7405 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
7406 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
7407 * src/reader.c, src/reduce.c: Adjust.
7408
7409 2001-11-19 Akim Demaille <akim@epita.fr>
7410
7411 * src/reader.c (symbols_output): New, extracted from...
7412 (packsymbols): Here.
7413 (reader): Call it.
7414
7415 2001-11-19 Akim Demaille <akim@epita.fr>
7416
7417 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
7418 (maxrhs): this new function.
7419
7420 2001-11-19 Akim Demaille <akim@epita.fr>
7421
7422 * src/lalr.c (F): New macro to access the variable F.
7423 Adjust.
7424
7425 2001-11-19 Akim Demaille <akim@epita.fr>
7426
7427 * src/lalr.h (LA): New macro to access the variable LA.
7428 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7429 * src/lalr.c: Adjust.
7430
7431 2001-11-19 Akim Demaille <akim@epita.fr>
7432
7433 * src/lalr.c (initialize_LA): Only initialize LA. Let...
7434 (set_state_table): handle the `lookaheads' members.
7435
7436 2001-11-19 Akim Demaille <akim@epita.fr>
7437
7438 * src/lalr.h (lookaheads): Removed array, whose contents is now
7439 a member of...
7440 (state_t): this structure.
7441 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7442 Adjust.
7443
7444 2001-11-19 Akim Demaille <akim@epita.fr>
7445
7446 * src/lalr.h (consistent): Removed array, whose contents is now
7447 a member of...
7448 (state_t): this structure.
7449 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7450 Adjust.
7451
7452 2001-11-19 Akim Demaille <akim@epita.fr>
7453
7454 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
7455 contents are now members of...
7456 (state_t): this structure.
7457 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7458 Adjust.
7459
7460 2001-11-19 Akim Demaille <akim@epita.fr>
7461
7462 * src/lalr.h (state_t): New.
7463 (state_table): Be a state_t * instead of a core **.
7464 (accessing_symbol): Remove, part of state_t.
7465 * src/lalr.c: Adjust.
7466 (set_accessing_symbol): Merge into...
7467 (set_state_table): this.
7468 * src/print_graph.c, src/conflicts.c: Adjust.
7469
7470 2001-11-14 Akim Demaille <akim@epita.fr>
7471
7472 * tests/calc.at, tests/output.at, tests/regression.at,
7473 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
7474 now the tests are run in private dirs, therefore AC_CLEANUP and
7475 family can be simplified to 0-ary.
7476 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
7477 use abs. path to find config.h.
7478 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
7479 stderr, there can be way too much random noise.
7480 Instead pass -Werror to GCC and rely on the exit status.
7481 Reported by Wolfram Wagner.
7482
7483 2001-11-14 Akim Demaille <akim@epita.fr>
7484
7485 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
7486 defined only if yyoverflow is defined, to avoid `warning: unused
7487 variable `yyvs1''.
7488 Reported by The Test Suite.
7489
7490 2001-11-14 Akim Demaille <akim@epita.fr>
7491
7492 * src/print.c: Include reduce.h.
7493 Reported by Hans Aberg.
7494
7495 2001-11-14 Akim Demaille <akim@epita.fr>
7496
7497 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
7498 Revert a previous patch: these are really const.
7499 * src/conflicts.c (conflict_report): Additional useless pair of
7500 braces to pacify GCC's warnings for `if () if () {} else {}'.
7501 * src/lex.c (parse_percent_token): Replace equal_offset with
7502 arg_offset.
7503 arg is const.
7504 Be sure to strdup `arg' when used, since there is no reason for
7505 token_buffer not to change.
7506
7507 2001-11-14 Akim Demaille <akim@epita.fr>
7508
7509 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
7510 definition.
7511 * src/main.c (main): Use them.
7512 Suggested by Hans Aberg.
7513
7514 2001-11-12 Akim Demaille <akim@epita.fr>
7515
7516 * src/system.h (ngettext): Now that we use ngettext, be sure to
7517 provide a default definition when NLS are not used.
7518
7519 2001-11-12 Akim Demaille <akim@epita.fr>
7520
7521 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
7522 Use @kbd to denote user input.
7523 (Language and Grammar): ANSIfy the example.
7524 Adjust its layout for info/notinfo.
7525 (Location Tracking Calc): Output error messages to stderr.
7526 Output locations in a more GNUtically correct way.
7527 Fix a couple of Englishos.
7528 Adjust @group/@end group pairs.
7529
7530 2001-11-12 Akim Demaille <akim@epita.fr>
7531
7532 %expect was not functioning at all.
7533
7534 * src/conflicts.c (expected_conflicts): Set to -1.
7535 (conflict_report): Use ngettext.
7536 (conflicts_print): Check %expect and make its violation an error.
7537 * doc/bison.texinfo (Expect Decl): Adjust.
7538 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
7539 * tests/regression.at (%expect not enough, %expect right)
7540 (%expect too much): New.
7541
7542 2001-11-12 Akim Demaille <akim@epita.fr>
7543
7544 * tests/regression.at (Conflicts): Rename as...
7545 (Unresolved SR Conflicts): this.
7546 (Solved SR Conflicts): New.
7547
7548 2001-11-12 Akim Demaille <akim@epita.fr>
7549
7550 * src/reduce.c (print_results): Rename as...
7551 (reduce_output): This.
7552 Output to OUT, passed as argument, instead of output_obstack.
7553 (dump_grammar): Likewise.
7554 (reduce_free): New.
7555 Also free V1.
7556 (reduce_grammar): No longer call reduce_output, since...
7557 * src/print.c (print_results): do it.
7558 * src/main.c (main): Call reduce_free;
7559
7560 2001-11-12 Akim Demaille <akim@epita.fr>
7561
7562 * src/conflicts.c (print_reductions): Accept OUT as argument.
7563 Output to it, not to output_obstack.
7564 * src/print.c (print_actions): Adjust.
7565
7566 2001-11-12 Akim Demaille <akim@epita.fr>
7567
7568 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
7569 the result instead of using...
7570 (src_total, rrc_total, src_count, rrc_count): Remove.
7571 (any_conflicts): Remove.
7572 (print_conflicts): Split into...
7573 (conflicts_print, conflicts_output): New.
7574 * src/conflicts.h: Adjust.
7575 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
7576 * src/print.c (print_grammar): Issue `\n' between two rules.
7577 * tests/regression.at (Conflicts): New.
7578 Reported by Tom Lane.
7579
7580 2001-11-12 Akim Demaille <akim@epita.fr>
7581
7582 * tests/regression.at (Invalid input): Remove, duplicate with
7583 ``Invalid input: 1''.
7584
7585 2001-11-12 Akim Demaille <akim@epita.fr>
7586
7587 * tests/torture.at (AT_DATA_STACK_TORTURE)
7588 (Exploding the Stack Size with Alloca)
7589 (Exploding the Stack Size with Malloc): New.
7590
7591 2001-11-12 Akim Demaille <akim@epita.fr>
7592
7593 * src/bison.simple (YYSTACK_REALLOC): New.
7594 (yyparse) [!yyoverflow]: Use it and free the old stack.
7595 Reported by Per Allansson.
7596
7597 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
7598
7599 * src/bison.simple: Define type yystype instead of YYSTYPE, and
7600 define CPP macro, which substitute YYSTYPE by yystype.
7601 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
7602 with yyltype/YYLTYPE. This allows inclusion of the generated
7603 header within the parser if the compiler, such as GGC, accepts
7604 multiple equivalent #defines.
7605 From Akim.
7606
7607 2001-11-05 Akim Demaille <akim@epita.fr>
7608
7609 * src/reader.c (symbols_output): New, extracted from...
7610 (packsymbols): here.
7611 (reader): Adjust.
7612
7613 2001-11-05 Akim Demaille <akim@epita.fr>
7614
7615 * src/lex.c (parse_percent_token): s/quotearg/quote/.
7616
7617 2001-11-05 Akim Demaille <akim@epita.fr>
7618
7619 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
7620 pattern.
7621
7622 2001-11-05 Akim Demaille <akim@epita.fr>
7623
7624 * src/options.h (struct option_table_struct): set_flags is void*.
7625 * src/options.c (longopts): Support `--output' and `%output'.
7626 (usage): Adjust.
7627 * src/lex.h (tok_setopt): Remove, replaced with...
7628 (tok_intopt, tok_stropt): these new guys.
7629 * src/lex.c (getopt.h): Not needed.
7630 (token_buffer, unlexed_token_buffer): Not const.
7631 (percent_table): Promote `-' over `_' in directive names.
7632 Active `%name-prefix', `file-prefix', and `output'.
7633 (parse_percent_token): Accept possible arguments to directives.
7634 Promote `-' over `_' in directive names.
7635
7636 2001-11-04 Akim Demaille <akim@epita.fr>
7637
7638 * doc/bison.texinfo (Decl Summary): Split the list into
7639 `directives for grammars' and `directives for bison'.
7640 Sort'em.
7641 Add description of `%name-prefix', `file-prefix', and `output'.
7642 Promote `-' over `_' in directive names.
7643 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
7644 Simplify the description of `--name-prefix'.
7645 Promote `-' over `_' in directive names.
7646 Promote `--output' over `--output-file'.
7647 Fix the description of `--defines'.
7648 * tests/output.at: Exercise %file-prefix and %output.
7649
7650 2001-11-02 Akim Demaille <akim@epita.fr>
7651
7652 * doc/refcard.tex: Update.
7653
7654 2001-11-02 Akim Demaille <akim@epita.fr>
7655
7656 * src/symtab.h (SUNDEF): New.
7657 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
7658 stand for `uninitialized', instead of 0.
7659 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
7660 * src/lex.c (lex): Adjust.
7661
7662 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
7663 Number it 0.
7664 Let yylex return it instead of a plain 0.
7665 Reported by Dick Streefland.
7666
7667 2001-11-02 Akim Demaille <akim@epita.fr>
7668
7669 * tests/regression.at (Mixing %token styles): New test.
7670
7671 2001-11-02 Akim Demaille <akim@epita.fr>
7672
7673 * src/reader.c (parse_thong_decl): Formatting changes.
7674 (token_translations_init): New, extracted from...
7675 (packsymbols): Here.
7676 Adjust.
7677
7678 2001-11-01 Akim Demaille <akim@epita.fr>
7679
7680 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
7681 Check that `9foo.y' produces correct cpp guards.
7682 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
7683 guards.
7684 Reported by Wwp.
7685
7686 2001-11-01 Akim Demaille <akim@epita.fr>
7687
7688 * tests/regression.at (Invalid input: 2): New.
7689 * src/lex.c (unlexed_token_buffer): New.
7690 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
7691 too.
7692 Reported by Wwp.
7693
7694 2001-11-01 Akim Demaille <akim@epita.fr>
7695
7696 * tests/calc.at: Catch up with 1.30.
7697 * configure.in: Bump to 1.49a.
7698 Adjust to newer Autotest.
7699
7700 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
7701
7702 * src/conflicts.c: Move global variables rrc_total and src_total ...
7703 (print_conflicts): here.
7704 * src/output.c (output): Free global variable user_toknums.
7705 * src/lex.c (token_obstack): Become static.
7706
7707 2001-10-18 Akim Demaille <akim@epita.fr>
7708
7709 * tests/atlocal.in (GCC): Add.
7710 * tests/calc.at: s/m4_match/m4_bmatch/.
7711 s/m4_patsubst/m4_bpatsubst/.
7712 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
7713 * configure.in: AC_SUBST(GCC).
7714
7715 2001-10-14 Marc Autret <autret_m@epita.fr>
7716
7717 * src/options.c (create_long_option_table): Fix.
7718
7719 2001-10-10 Akim Demaille <akim@epita.fr>
7720
7721 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
7722
7723 2001-10-04 Akim Demaille <akim@epita.fr>
7724
7725 * src/reader.c (parse_union_decl): Push the caracters in
7726 union_obstack, not attrs_obstack.
7727
7728 2001-10-04 Akim Demaille <akim@epita.fr>
7729
7730 Merge in the branch 1.29.
7731
7732 * src/reader.c (packsymbols): Use a temporary obstack for
7733 `%%tokendef', since output_stack is already used elsewhere.
7734
7735 2001-10-02 Akim Demaille <akim@epita.fr>
7736
7737 Bump 1.29d.
7738
7739 2001-10-02 Akim Demaille <akim@epita.fr>
7740
7741 Version 1.29c.
7742
7743 2001-10-02 Akim Demaille <akim@epita.fr>
7744
7745 * tests/regression.at (Invalid CPP headers): New.
7746 From Alexander Belopolsky.
7747 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
7748
7749 2001-10-02 Akim Demaille <akim@epita.fr>
7750
7751 * tests/regression.at (Invalid input): New.
7752 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
7753 Reported by Shura.
7754
7755 2001-10-02 Akim Demaille <akim@epita.fr>
7756
7757 * tests/calc.at: Now that --debug works, the tests must be adjusted.
7758
7759 2001-10-02 Akim Demaille <akim@epita.fr>
7760
7761 * src/output.c (output_parser): Assert `skeleton'.
7762 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
7763 systems.
7764 From Shura.
7765
7766 2001-10-01 Marc Autret <autret_m@epita.fr>
7767
7768 * src/lex.h: Echo modifications.
7769 * src/lex.c (unlex): Parameter is now token_t.
7770 From Hans Aberg.
7771
7772 2001-10-01 Marc Autret <autret_m@epita.fr>
7773
7774 * src/main.c: Include lex.h.
7775 From Hans Aberg.
7776
7777 2001-09-29 Akim Demaille <akim@epita.fr>
7778
7779 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
7780
7781 2001-09-28 Akim Demaille <akim@epita.fr>
7782
7783 * tests/testsuite.at: Update to newer Autotest.
7784 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
7785
7786 2001-09-27 Akim Demaille <akim@epita.fr>
7787
7788 Position independent wrapper.
7789
7790 * tests/bison: Remove.
7791 * tests/bison.in: New.
7792 * configure.in: Adjust.
7793
7794 2001-09-27 Paul Eggert <eggert@twinsun.com>
7795
7796 Port quotearg fixes from tar 1.13.24.
7797
7798 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
7799 tm to be declared.
7800 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
7801 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
7802
7803 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
7804 * m4/mbrtowc.m4: New file.
7805 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
7806 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
7807
7808 2001-09-27 Akim Demaille <akim@epita.fr>
7809
7810 Bump to 1.29c.
7811
7812 2001-09-27 Akim Demaille <akim@epita.fr>
7813
7814 Version 1.29b.
7815
7816 2001-09-25 Akim Demaille <akim@epita.fr>
7817
7818 * src/system.h: Include `xalloc.h'.
7819 Remove it from the C files.
7820 * src/files.c (output_files): Free the obstacks.
7821 * src/lex.c (init_lex): Rename as...
7822 (lex_init): this.
7823 (lex_free): New.
7824 * src/main.c (main): Use it.
7825
7826 2001-09-24 Marc Autret <autret_m@epita.fr>
7827
7828 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
7829 to output informations in fout (FILE*).
7830 (open_graph, close_graph): Likewise.
7831 (output_graph, output_edge, output_node): Likewise.
7832 * src/vcg.h: Update function prototypes.
7833 * src/print_graph.c (print_graph): Open output graph file.
7834 (print_actions): Adjust.
7835 * src/files.h: Remove extern declaration.
7836 * src/files.c: Remove graph_obstack declaration.
7837 (open_files): Remove graph_obstack initialization.
7838 (output_files): Remove graph_obstack saving.
7839
7840 2001-09-24 Marc Autret <autret_m@epita.fr>
7841
7842 * src/files.c (compute_output_file_names): Fix.
7843
7844 2001-09-24 Marc Autret <autret_m@epita.fr>,
7845 Akim Demaille <akim@epita.fr>
7846
7847 * src/reader.c (reader): Remove call to free_symtab ().
7848 * src/main.c (main): Call it here.
7849 Include symtab.h.
7850 * src/conflicts.c (initialize_conflicts): Rename as...
7851 (solve_conflicts): this.
7852 * src/print.c (print_core, print_actions, print_state)
7853 (print_grammar): Dump to a file instead a `output_obstack'.
7854 (print_results): Dump `output_obstack', and then proceed with the
7855 FILE *.
7856 * src/files.c (compute_output_file_names, close_files): New.
7857 (output_files): Adjust.
7858 * src/main.c (main): Adjust.
7859
7860 2001-09-23 Marc Autret <autret_m@epita.fr>
7861
7862 * src/files.c (compute_header_macro): Computes header macro name
7863 from spec_defines_file when given.
7864
7865 2001-09-23 Marc Autret <autret_m@epita.fr>
7866
7867 * src/files.c (output_files): Add default extensions.
7868
7869 2001-09-22 Akim Demaille <akim@epita.fr>
7870
7871 * src/conflicts.c (finalize_conflicts): Rename as...
7872 (free_conflicts): this.
7873
7874 2001-09-22 Akim Demaille <akim@epita.fr>
7875
7876 * src/gram.c (gram_free): Rename back as...
7877 (dummy): this.
7878 (output_token_translations): Free `token_translations'.
7879 * src/symtab.c (free_symtab): Free the tag field.
7880
7881 2001-09-22 Akim Demaille <akim@epita.fr>
7882
7883 Remove `translations' as it is always set to true.
7884
7885 * src/gram.h: Adjust.
7886 * src/reader.c (packsymbols, parse_token_decl): Adjust
7887 * src/print.c (print_grammar): Adjust.
7888 * src/output.c (output_token_translations): Adjust.
7889 * src/lex.c (lex): Adjust.
7890 * src/gram.c: Be sure the set pointers to NULL.
7891 (dummy): Rename as...
7892 (gram_free): this.
7893
7894 2001-09-22 Akim Demaille <akim@epita.fr>
7895
7896 * configure.in: Invoke AM_LIB_DMALLOC.
7897 * src/system.h: Use dmalloc.
7898 * src/LR0.c: Be sure to have pointers initialized to NULL.
7899 (allocate_itemsets): Allocate kernel_items only if needed.
7900
7901 2001-09-22 Akim Demaille <akim@epita.fr>
7902
7903 * configure.in: Bump to 1.29b.
7904 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
7905 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
7906 need xmalloc.c in calc.y.
7907 From Pascal Bart.
7908
7909 2001-09-21 Akim Demaille <akim@epita.fr>
7910
7911 Version 1.29a.
7912 * Makefile.maint, config/config.guess, config/config.sub,
7913 * config/missing: Update from masters.
7914 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
7915 upon package.m4.
7916 * configure.in (ALL_LINGUAS): Add `tr'.
7917
7918 2001-09-21 Akim Demaille <akim@epita.fr>
7919
7920 * tests/Makefile.am (package.m4): Move to...
7921 ($(srcdir)/$(TESTSUITE)): here.
7922
7923 2001-09-20 Akim Demaille <akim@epita.fr>
7924
7925 * src/complain.c: No longer try to be standalone: use system.h.
7926 Don't assume __STDC__ is defined to 1. Just test if it is defined.
7927 * src/complain.h: Likewise.
7928 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
7929 Remove the unused variable `n'.
7930 From Albert Chin-A-Young.
7931
7932 2001-09-18 Marc Autret <autret_m@epita.fr>
7933
7934 * doc/bison.1: Update.
7935 * doc/bison.texinfo (Bison Options): Update --defines and --graph
7936 descriptions.
7937 (Option Cross Key): Update.
7938 Add --graph.
7939
7940 2001-09-18 Marc Autret <autret_m@epita.fr>
7941
7942 * tests/regression.at: New test (comment in %union).
7943
7944 2001-09-18 Marc Autret <autret_m@epita.fr>
7945
7946 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
7947 do that.
7948 Reported by Keith Browne.
7949
7950 2001-09-18 Marc Autret <autret_m@epita.fr>
7951
7952 * tests/output.at: Add tests for --defines and --graph.
7953
7954 2001-09-18 Marc Autret <autret_m@epita.fr>
7955
7956 * tests/output.at: Removes tests of %{header,src}_extension features.
7957
7958 2001-09-18 Akim Demaille <akim@epita.fr>
7959
7960 * tests/Makefile.am (package.m4): New.
7961 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
7962 (_AT_CHECK_CALC_ERROR): Likewise.
7963 Factor the `, ' part of verbose error messages.
7964
7965 2001-09-18 Marc Autret <autret_m@epita.fr>
7966
7967 * src/getargs.c (longopts): Declare --defines and --graph as options
7968 with optional arguments.
7969 * src/files.h: Add extern declarations.
7970 * src/files.c (spec_graph_file, spec_defines_file): New.
7971 (output_files): Update.
7972 Remove CPP-outed code.
7973
7974 2001-09-18 Marc Autret <autret_m@epita.fr>
7975
7976 Turn off %{source,header}_extension feature.
7977
7978 * src/files.c (compute_exts_from_gf): Update.
7979 (compute_exts_from_src): Update.
7980 (output_files): CPP-out useless code.
7981 * src/files.h: Remove {header,source}_extension extern declarations.
7982 * src/reader.c (parse_dquoted_param): CPP-out.
7983 (parse_header_extension_decl): Remove.
7984 (parse_source_extension_decl): Remove.
7985 (read_declarations): Remove cases tok_{hdrext,srcext}.
7986 * src/lex.c (percent_table): Remove {header,source}_extension entries.
7987 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
7988
7989 2001-09-10 Akim Demaille <akim@epita.fr>
7990
7991 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
7992 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
7993 (AT_CHECK_OUTPUT): this.
7994 Merely check ls' exit status, its output is useless.
7995
7996 2001-09-10 Akim Demaille <akim@epita.fr>
7997
7998 * tests/calc.at: Use m4_match.
7999 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
8000
8001 2001-09-10 Marc Autret <autret_m@epita.fr>,
8002 Akim Demaille <akim@epita.fr>
8003
8004 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
8005 enum color_e.
8006 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
8007 to `normal'.
8008 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
8009 * src/lex.h: Adjust prototype.
8010 (token_t): Add `tok_undef'.
8011 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
8012 (parse_percent_token): Now returns token_t.
8013 Add default statement in switch.
8014 (lex): Separate `c' as an input variable, from the token_t result
8015 part.
8016 (unlexed): Is a token_t.
8017
8018 2001-09-10 Akim Demaille <akim@epita.fr>
8019
8020 * configure.in: Bump to 1.29a.
8021
8022 2001-09-07 Akim Demaille <akim@epita.fr>
8023
8024 Version 1.29.
8025
8026 2001-08-30 Akim Demaille <akim@epita.fr>
8027
8028 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
8029 * m4/atconfig.m4: Remove.
8030 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
8031 * tests/bison: New.
8032 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
8033 m4_if, m4_patsubst, and m4_regexp.
8034 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
8035 `input' file instead of echo.
8036
8037 2001-08-29 Akim Demaille <akim@epita.fr>
8038
8039 Bump to 1.28e.
8040
8041 2001-08-29 Akim Demaille <akim@epita.fr>
8042
8043 Version 1.28d.
8044
8045 2001-08-29 Paul Eggert <eggert@twinsun.com>
8046
8047 * src/bison.simple (yyparse): Don't take the address of an
8048 item before the start of an array, as that doesn't conform to
8049 the C Standard.
8050
8051 2001-08-29 Robert Anisko <anisko_r@epita.fr>
8052
8053 * doc/bison.texinfo (Location Tracking Calc): New node.
8054
8055 2001-08-29 Paul Eggert <eggert@twinsun.com>
8056
8057 * src/output.c (output): Do not define const, as this now
8058 causes more problems than it cures.
8059
8060 2001-08-29 Akim Demaille <akim@epita.fr>
8061
8062 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
8063 the nodes.
8064 Be sure to tag the `detailmenu'.
8065
8066 2001-08-29 Akim Demaille <akim@epita.fr>
8067
8068 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
8069 download in a tmp dir.
8070
8071 2001-08-28 Marc Autret <autret_m@epita.fr>
8072
8073 * config/depcomp: New file.
8074
8075 2001-08-28 Marc Autret <autret_m@epita.fr>
8076
8077 * doc/bison.1 (mandoc): Adjust.
8078 From Juan Manuel Guerrero.
8079
8080 2001-08-28 Marc Autret <autret_m@epita.fr>
8081
8082 * src/print_graph.c (print_state): Fix.
8083
8084 2001-08-27 Marc Autret <autret_m@epita.fr>
8085
8086 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
8087 char * members.
8088 Echo modifications to the functions prototypes.
8089 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
8090
8091 2001-08-27 Marc Autret <autret_m@epita.fr>
8092
8093 * src/vcg.c: Include `xalloc.h'.
8094 (add_colorentry): New.
8095 (add_classname): New.
8096 (add_infoname): New.
8097 * src/vcg.h: Add new prototypes.
8098
8099 2001-08-27 Akim Demaille <akim@epita.fr>
8100
8101 * Makefile.maint: Sync. again with CVS Autoconf.
8102
8103 2001-08-27 Akim Demaille <akim@epita.fr>
8104
8105 * Makefile.maint: Formatting changes.
8106 (po-update, cvs-update, update): New targets.
8107 (AMTAR): Remove.
8108
8109 2001-08-27 Akim Demaille <akim@epita.fr>
8110
8111 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
8112 * Makefile.maint: Sync. with CVS Autoconf.
8113
8114 2001-08-27 Marc Autret <autret_m@epita.fr>
8115
8116 * src/vcg.h (struct infoname_s): New.
8117 (struct colorentry_s): New.
8118 (graph_s): New fields {vertical,horizontal}_order in structure.
8119 Add `infoname' field.
8120 Add `colorentry' field;
8121 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
8122 (G_HORIZONTAL_ORDER): New.
8123 (G_INFONAME): New.
8124 (G_COLORENTRY): New.
8125 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
8126 Add output of `infoname'.
8127 Add output of `colorentry'.
8128
8129 2001-08-27 Marc Autret <autret_m@epita.fr>
8130
8131 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
8132 This one shadowed a global parameter.
8133
8134 2001-08-24 Marc Autret <autret_m@epita.fr>
8135
8136 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
8137 instead of `unsigned'.
8138 (print_state): Do not call obstack_object_size () in obstack_grow ()
8139 to avoid macro variables shadowing.
8140
8141 2001-08-23 Marc Autret <autret_m@epita.fr>
8142
8143 * src/lex.c (percent_table): Typo: s/naem/name/.
8144 Add graph option.
8145 Normalize new options declarations.
8146
8147 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
8148
8149 * tests/suite.at: Exercise %header_extension and %source_extension.
8150
8151 2001-08-16 Marc Autret <autret_m@epita.fr>
8152
8153 * src/reader.c (parse_dquoted_param): New.
8154 (parse_header_extension_decl): Use it.
8155 (parse_source_extension_decl): Likewise.
8156
8157 2001-08-16 Marc Autret <autret_m@epita.fr>
8158
8159 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
8160 (get_xxxx_str): Use assert () instead of complain ().
8161 Remove return invokations in default cases.
8162 (get_decision_str): Modify default behaviour. Remove second argument.
8163 Echo modifications on calls.
8164 (output_graph): Fix.
8165
8166 2001-08-16 Marc Autret <autret_m@epita.fr>
8167
8168 * src/getargs.c (usage): Update with ``-g, --graph''.
8169
8170 2001-08-16 Marc Autret <autret_m@epita.fr>
8171
8172 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
8173 (Option Cross Key): Likewise.
8174 * doc/bison.1: Update.
8175
8176 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
8177
8178 * src/output.c (output_master_parser): Don't finish action_obstack.
8179 (output_parser): Don't care about the muscle action, here.
8180 (prepare): Copy the action_obstack in the action muscle.
8181 (output): Free action_obstack.
8182
8183 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
8184
8185 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
8186 will contain `%union' declaration.
8187 (parse_union_decl): Delete #line directive output.
8188 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
8189 informations about %union.
8190 (parse_union_decl): Copy the union_obstack in the muscle stype.
8191 * src/bison.simple: Add new #line directive.
8192 Add typdef %%stype YYSTYPE.
8193
8194 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
8195
8196 * src/bison.simple: Add new `#line' directive.
8197
8198 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
8199
8200 * src/bison.simple: New `#line' directive.
8201 * src/output.c (output_parser): Support new dynamic muscle input_line.
8202
8203 2001-09-22 Marc Autret <autret_m@epita.fr>
8204
8205 * src/output.c (output_master_parser): New.
8206 (output_parser): Be more re-entrant.
8207
8208 2001-09-21 Marc Autret <autret_m@epita.fr>
8209
8210 * src/reader.c (copy_definition, parse_union_decl): Update and use
8211 `linef' muscle.
8212 (copy_action): Likewise.
8213 Use obstack_1grow ().
8214 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
8215
8216 2001-09-21 Marc Autret <autret_m@epita.fr>
8217
8218 * src/options.c (option_table): Adjust.
8219 * src/lex.c (parse_percent_token): Fix.
8220
8221 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
8222
8223 * src/options.c (symtab.h): Include it, need by lex.h.
8224
8225 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
8226
8227 * src/lex.c (parse_percent_token): Change type of variable `tx', which
8228 is now an option_table_struct*.
8229 (option_strcmp): New function option_strcmp.
8230 (parse_percent_token): Call option_strcmp.
8231 * src/getargs.c (xalloc.h, options.h): Include it.
8232 (getargs): Call create_long_option_table.
8233 (getargs): Free longopts at the end of the function.
8234 (shortopts): Move in options.c.
8235 * src/options.c (create_long_option_table): New function. Convert
8236 information from option_table to option structure.
8237 * src/reader.c (options.h): Include it.
8238
8239 * src/Makefile.am: Adjust.
8240 * src/options.c (option_table): Create from longopts and percent_table.
8241 * src/getargs.c (longopts): Delete.
8242 * src/lex.c (struct percent_table_struct): Delete.
8243 (percent_table): Delete.
8244 (options.h): Include it.
8245 * src/options.c: Create.
8246 * src/options.h: Create.
8247 Declare enum opt_access_e.
8248 Define struct option_table_struct.
8249
8250 2001-09-20 Marc Autret <autret_m@epita.fr>
8251
8252 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
8253 sections of Bison.
8254
8255 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
8256
8257 * src/bison.simple: s/%%filename/%%skeleton.
8258 * src/muscle_tab.c (getargs.h): Include it.
8259 (muscle_init): Insert new muscle skeleton.
8260
8261 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
8262
8263 * src/output.c (output_parser): Delete unused variable actions_dumped.
8264
8265 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
8266
8267 * src/output.c (output): Delete call to reader_output_yylsp.
8268 * src/reader.c (reader): Likewise.
8269 * src/reader.h: Delete declaration of reader_output_yylsp.
8270
8271 2001-09-02 Marc Autret <autret_m@epita.fr>
8272
8273 * src/reader.c: Include muscle_tab.h.
8274 (parse_union_decl): Update.
8275 (parse_macro_decl): Rename parse_muscle_decl.
8276 Update to use renamed functions and variable.
8277 (read_declarations, copy_action, read_additionnal_code, : Updated
8278 with correct variables and functions names.
8279 (packsymbols, reader): Likewise.
8280
8281 * src/reader.h (muscle_obstack): Extern declaration update.
8282
8283 * src/output.c: Include muscle_tab.h
8284 In all functions using macro_insert, change by using muscle_insert ().
8285 (macro_obstack): Rename muscle_obstack.
8286 Echo modifications in the whole file.
8287 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
8288 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
8289 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
8290
8291 * src/muscle_tab.h: Update double inclusion macros.
8292 (macro_entry_s): Rename muscle_entry_s.
8293 Update prototypes.
8294
8295 * src/muscle_tab.c: Include muscle_tab.h.
8296 Rename macro_tabble to muscle_table.
8297 (mhash1, mhash2, mcmp): Use muscle_entry.
8298 (macro_init): Rename muscle_init. Update.
8299 (macro_insert): Rename muscle_insert. Update.
8300 (macro_find): Rename muscle_find. Update.
8301
8302 * src/main.c: Include muscle_tab.h.
8303 (main): Call muscle_init ().
8304 * src/Makefile.am (bison_SOURCES): Echo modifications.
8305
8306 2001-09-02 Marc Autret <autret_m@epita.fr>
8307
8308 Now the files macro_tab.[ch] are named muscle_tab.[ch].
8309
8310 * src/muscle_tab.c, src/muscle_tab.h: Add files.
8311
8312 2001-09-02 Marc Autret <autret_m@epita.fr>
8313
8314 * src/macrotab.c, src/macrotab.h: Remove.
8315
8316 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
8317
8318 * src/reader.c (copy_guard): Use muscle to specify the `#line'
8319 filename.
8320
8321 2001-09-01 Marc Autret <autret_m@epita.fr>
8322
8323 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
8324 to an explicit value to activate the feature. We do it here.
8325
8326 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8327
8328 * src/output.c (prepare): Delete the `filename' muscule insertion.
8329 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
8330 (parse_union_decl): Likewise.
8331 * src/macrotab.c (macro_init): Initialize filename by infile.
8332
8333 2001-08-31 Marc Autret <autret_m@epita.fr>
8334
8335 * src/bison.simple (YYLSP_NEEDED): New definition.
8336 * src/output.c (prepare): Add macro insertion of `locations_flag'
8337
8338 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8339
8340 * src/output.c (prepare): Delete insertion of previous muscles,
8341 and insert the `prefix' muscles.
8342 * src/macrotab.c (macro_init): Likewise.
8343 (macro_init): Initialization prefix directive by `yy'.
8344 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
8345 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
8346 yylval, yydebug, yyerror, yynerrs and yyparse.
8347 New directive `#define' to substitute yydebug, ... with option
8348 name_prefix.
8349
8350 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8351
8352 * src/main.c (main): Standardize.
8353 * src/output.c (output_table_data, output_parser): Likewise.
8354 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
8355
8356 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
8357
8358 * src/reader.c (read_additionnal_code): Rename %%user_code to
8359 %%epilogue.
8360 * src/output.c (output): Rename %%declarations to %%prologue.
8361 * src/bison.simple: Echo modifications.
8362
8363 2001-08-31 Marc Autret <autret_m@epita.fr>
8364
8365 * src/reader.c (readgram): CleanUp.
8366 (output_token_defines): Likewise.
8367 (packsymbols): Likewise.
8368 (reader): Likewise.
8369 * src/output.c (output): CPP-out useless code.
8370
8371 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8372
8373 * src/reader.c (reader): Delete obsolete call to function
8374 output_trailers and output_headers.
8375 * src/output.h: Remove obsolete functions prototypes of output_headers
8376 and output_trailers.
8377
8378 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
8379
8380 * src/main.c: Include macrotab.h.
8381 * src/macrotab.h (macro_entry_s): Constify fields.
8382 Adjust functions prototypes.
8383 * src/macrotab.c (macro_insert): Constify key and value.
8384 (macro_find): Constify key.
8385 (macro_insert): Include 'xalloc.h'
8386 (macro_insert): Use XMALLOC.
8387 (macro_find): Constify return value.
8388 * src/output.c (output_table_data): Rename table to table_data.
8389 (output_parser): Constify macro_key, macro_value.
8390
8391 2001-08-30 Marc Autret <autret_m@epita.fr>
8392
8393 * src/reader.c (parse_skel_decl): New.
8394 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
8395 * src/lex.h (token_t): New token `tok_skel'.
8396 * src/lex.c (percent_table): Add skeleton option entry.
8397 Standardize.
8398
8399 2001-08-29 Marc Autret <autret_m@epita.fr>
8400
8401 * src/bison.simple: Add %%user_code directive at the end.
8402 * src/reader.c (read_additionnal_code): New.
8403 (reader): Use it.
8404 * src/output.c (output_program): Remove.
8405 (output): Update.
8406
8407 2001-08-28 Marc Autret <autret_m@epita.fr>
8408
8409 * src/output.c (output_actions): Clean up.
8410 (output_gram): CPP-out useless code.
8411 * src/reader.c (reader): Clean up, CPP-out useless code.
8412
8413 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
8414
8415 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
8416 directive.
8417 * src/bison.simple: Add `%%definitions'.
8418
8419 2001-08-28 Marc Autret <autret_m@epita.fr>
8420
8421 * config/depcomp: New file.
8422
8423 2001-08-27 Paul Eggert <eggert@twinsun.com>
8424
8425 * src/bison.simple (yyparse): Don't take the address of an
8426 item before the start of an array, as that doesn't conform to
8427 the C Standard.
8428
8429 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
8430
8431 * src/output.c (output): Remove the initialization of the macro
8432 obstack. It was done too late here.
8433
8434 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
8435 completely wrong.
8436 (reader): Initialize the macro obstack here, since we need it to grow
8437 '%define' directives.
8438
8439 * src/reader.h: Declare the macro obstack as extern.
8440
8441 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
8442
8443 * src/output.c (output_parser): Fix. Store single '%' characters in
8444 the output obstack instead of throwing them away.
8445
8446 2001-08-27 Akim Demaille <akim@epita.fr>
8447
8448 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
8449
8450 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8451
8452 * lib/Makefile.am: Adjust.
8453
8454 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8455
8456 * src/bison.simple: Update and add '%%' directives.
8457
8458 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8459
8460 * src/reader.c (reader): Remove calls to 'output_headers' and
8461 'output_trailers'. Remove some C output.
8462 (readgram): Disable a piece of code that was writing a default
8463 definition for 'YYSTYPE'.
8464 (reader_output_yylsp): Remove.
8465 (packsymbols): Output token defintions to a macro.
8466 (copy_definition): Disable C output.
8467
8468 * src/reader.c (parse_macro_decl): New function used to parse macro
8469 declarations.
8470 (copy_string2): Put the body of copy_string into this new function.
8471 Add a parameter to let the caller choose whether he wants to copy the
8472 string delimiters or not.
8473 (copy_string): Be a simple call to copy_string2 with the last argument
8474 bound to true.
8475 (read_declarations): Add case for macro definition.
8476 (copy_identifier): New.
8477 (parse_macro_decl): Read macro identifiers using copy_identifier
8478 rather than lex.
8479
8480 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8481
8482 * src/output.c (prepare): Add prefixed names.
8483 (output_parser): Output semantic actions.
8484 (output_parser): Fix bug on '%%line' directives.
8485
8486 * src/output.c (output_headers): Remove. The C code printed by this
8487 function should now be in the skeletons.
8488 (output_trailers): Remove.
8489 (output): Disable call to 'reader_output_yylsp'.
8490 (output_rule_data): Do not output tables to the table obstack.
8491
8492 * src/output.c: Remove some C dedicated output.
8493 Improve the use of macro and output obstacks.
8494 (output_defines): Remove.
8495
8496 * src/output.c (output_token_translations): Associate 'translate'
8497 table with a macro. No output to the table obstack.
8498 (output_gram): Same for 'rhs' and 'prhs'.
8499 (output_stos): Same for 'stos'.
8500 (output_rule_data): Same for 'r1' and 'r2'.
8501 (token_actions): Same for 'defact'.
8502 (goto_actions): Same for 'defgoto'.
8503 (output_base): Same for 'pact' and 'pgoto'.
8504 (output_table): Same for 'table'.
8505 (output_check): Same for 'check'.
8506
8507 * src/output.c (output_table_data): New function.
8508 (output_short_table): Remove.
8509 (output_short_or_char_table): Remove.
8510
8511 * src/output.c (output_parser): Replace most of the skeleton copy code
8512 with something new. Skeletons are now processed character by character
8513 rather than line by line, and Bison looks for '%%' macros. This is the
8514 first step in making Bison's output process (a lot) more flexible.
8515 (output_parser): Use the macro table.
8516
8517 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8518
8519 * src/main.c (main): Initialize the macro table.
8520
8521 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8522
8523 * src/lex.c (percent_table): Add tok_define.
8524 * src/lex.h: Add tok_define.
8525
8526 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8527
8528 * src/macrotab.c: New file.
8529 * src/macrotab.h: New file.
8530 * src/Makefile.am: Update.
8531
8532 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8533
8534 * lib/hash.c: New file.
8535 * lib/hash.h: New file.
8536 * lib/Makefile.am: Update.
8537
8538 2001-08-15 Akim Demaille <akim@epita.fr>
8539
8540 Version 1.28c.
8541
8542 2001-08-15 Marc Autret <autret_m@epita.fr>
8543
8544 * src/reader.c (readgram): Indent output macro YYSTYPE.
8545 (packsymbols): Likewise.
8546 (output_token_defines): Likewise.
8547 * src/files.c: Standardize.
8548 (compute_header_macro): New.
8549 (defines_obstack_save): New. Use compute_header_macro.
8550 (output_files): Update. Use defines_obstack_save.
8551
8552 2001-08-15 Akim Demaille <akim@epita.fr>
8553
8554 * doc/bison.texinfo (Table of Symbols): Document
8555 YYSTACK_USE_ALLOCA.
8556
8557 2001-08-15 Akim Demaille <akim@epita.fr>
8558
8559 * missing: Update from CVS Automake.
8560 * config/config.guess, config/config.sub, config/texinfo.tex:
8561 Update from gnu.org.
8562
8563 2001-08-15 Akim Demaille <akim@epita.fr>
8564
8565 * Makefile.maint: Sync with CVS Autoconf.
8566
8567 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
8568
8569 * doc/bison.texinfo: Include GNU Free Documentation License from
8570 `fdl.texi'.
8571 * doc/fdl.texi: Add to package.
8572
8573 2001-08-14 Marc Autret <autret_m@epita.fr>
8574
8575 Turn on %{source,header}_extension features.
8576
8577 * src/lex.c (percent_table): Un-CPP out header_extension and
8578 source_extension.
8579 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
8580 (compute_exts_from_src): Remove conditions. It restores priorities
8581 between options.
8582
8583 2001-08-14 Marc Autret <autret_m@epita.fr>
8584
8585 * src/files.c (compute_base_names): Add extensions computing when
8586 `--file-prefix' used.
8587 Standardize function calls.
8588
8589 2001-08-13 Marc Autret <autret_m@epita.fr>
8590
8591 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
8592 defining it (defined but null disables alloca).
8593
8594 2001-08-13 Marc Autret <autret_m@epita.fr>
8595
8596 * src/bison.simple (_yy_memcpy): CPP reformat.
8597
8598 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
8599
8600 * tests/atconfig.in (CPPFLAGS): Fix.
8601
8602 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
8603
8604 * doc/bison.texinfo: Include GNU General Public License from
8605 `gpl.texi'.
8606 * doc/gpl.texi: Add to package.
8607
8608 2001-08-10 Marc Autret <autret_m@epita.fr>
8609
8610 * src/print_graph.h: Fix.
8611 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
8612
8613 2001-08-10 Akim Demaille <akim@epita.fr>
8614
8615 * src/system.h: Provide default declarations for stpcpy, strndup,
8616 and strnlen.
8617
8618 2001-08-10 Robert Anisko <anisko_r@epita.fr>
8619
8620 * doc/bison.texinfo (Locations): Update @$ stuff.
8621
8622 2001-08-09 Robert Anisko <anisko_r@epita.fr>
8623
8624 * src/bison.simple (YYLLOC_DEFAULT): Update.
8625 (yyparse): Adjust.
8626
8627 2001-08-08 Marc Autret <autret_m@epita.fr>
8628
8629 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
8630 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
8631 Reported by Fabrice Bauzac.
8632
8633 2001-08-08 Marc Autret <autret_m@epita.fr>
8634
8635 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
8636 * src/vcg.c (output_node): Fix.
8637 * src/vcg.h: Cleanup.
8638 * src/print_graph.c: Add comments.
8639 (node_output_size): New global variable. Simplify the formatting of
8640 the VCG graph output.
8641 (print_actions): Unused code is now used. It notifies the final state
8642 and no action states in the VCG graph. It also give the reduce actions.
8643 The `shift and goto' edges are red and the `go to state' edges are
8644 blue.
8645 Get the current node name and node_obstack by argument.
8646 (node_obstack): New variable.
8647 (print_state): Manage node_obstack.
8648 (print_core): Use node_obstack given by argument.
8649 A node is not only computed here but in print_actions also.
8650 (print_graph): CPP out useless code instead of commenting it.
8651
8652 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
8653
8654 * tests/atconfig.in (CPPFLAGS): Fix.
8655
8656 2001-08-07 Akim Demaille <akim@epita.fr>
8657
8658 * src/print_graph.c (quote): New.
8659 (print_core): Use it.
8660
8661 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
8662
8663 * src/vcg.c (complain.h): Include it.
8664 Unepitaize `return' invocations.
8665 [NDEBUG] (main): Remove.
8666 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
8667 * src/files.c (open_files): Initialize graph_obstack.
8668 * src/print_graph.c (print_actions): CPP out useless code.
8669 (print_core): Don't output the last `\n' in labels.
8670 Use `quote'.
8671 * src/files.c (output_files): Output the VCG file.
8672 * src/main.c (main): Invoke print_graph ();
8673
8674 2001-08-06 Marc Autret <autret_m@epita.fr>
8675
8676 Automaton VCG graph output.
8677 Using option ``-g'' or long option ``--graph'', you can generate
8678 a gram_filename.vcg file containing a VCG description of the LALR (1)
8679 automaton of your grammar.
8680
8681 * src/main.c: Call to print_graph() function.
8682 * src/getargs.h: Update.
8683 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
8684 (graph_flag): New flag.
8685 (longopts): Update.
8686 (getargs): Add case `g'.
8687 * src/files.c (graph_obstack): New obstack struct.
8688 (open_files): Initialize new obstack.
8689 (output_files): Saves graph_obstack if required.
8690 * src/files.h (graph_obstack): New extern declaration.
8691 * src/Makefile.am: Add new source files.
8692
8693 2001-08-06 Marc Autret <autret_m@epita.fr>
8694
8695 * src/print_graph.c, src/print_graph.h (graph): New.
8696 * src/vcg.h: New file.
8697 * src/vcg.c: New file, VCG graph handling.
8698
8699 2001-08-06 Marc Autret <autret_m@epita.fr>
8700
8701 Add of %source_extension and %header_extension which specify
8702 the source or/and the header output file extension.
8703
8704 * src/files.c (compute_base_names): Remove initialisation of
8705 src_extension and header_extension.
8706 (compute_exts_from_gf): Update.
8707 (compute_exts_from_src): Update.
8708 (output_files): Update.
8709 * src/reader.c (parse_header_extension_decl): New.
8710 (parse_source_extension_decl): New.
8711 (read_declarations): New case statements for the new tokens.
8712 * src/lex.c (percent_table): Add entries for %source_extension
8713 and %header_extension.
8714 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
8715
8716 2001-08-06 Marc Autret <autret_m@epita.fr>
8717
8718 * configure.in: Bump to 1.28c.
8719 * doc/bison.texinfo: Texinfo thingies.
8720
8721 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
8722
8723 * tests/atconfig.in (CPPFLAGS): Add.
8724 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
8725
8726 2001-08-03 Akim Demaille <akim@epita.fr>
8727
8728 Version 1.28b.
8729
8730 2001-08-03 Akim Demaille <akim@epita.fr>
8731
8732 * tests/Makefile.am (check-local): Ship testsuite.
8733 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
8734 Include `string.h'.
8735
8736 2001-08-03 Akim Demaille <akim@epita.fr>
8737
8738 * configure.in: Try using -Wformat when compiling.
8739
8740 2001-08-03 Akim Demaille <akim@epita.fr>
8741
8742 * configure.in: Bump to 1.28b.
8743
8744 2001-08-03 Akim Demaille <akim@epita.fr>
8745
8746 * src/complain.c: Adjust strerror_r portability issues.
8747
8748 2001-08-03 Akim Demaille <akim@epita.fr>
8749
8750 Version 1.28a.
8751
8752 2001-08-03 Akim Demaille <akim@epita.fr>
8753
8754 * src/getargs.c, src/getarg.h (skeleton)): Constify.
8755 * src/lex.c (literalchar): Avoid name clashes on `buf'.
8756 * src/getargs.c: Include complain.h.
8757 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
8758 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
8759
8760 2001-08-03 Akim Demaille <akim@epita.fr>
8761
8762 * src/reader.c (readgram): Display hidden chars in error messages.
8763
8764 2001-08-03 Akim Demaille <akim@epita.fr>
8765
8766 Update to gettext 0.10.39.
8767
8768 2001-08-03 Akim Demaille <akim@epita.fr>
8769
8770 * lib/strspn.c: New.
8771
8772 2001-08-01 Marc Autret <autret_m@epita.fr>
8773
8774 * doc/bison.texinfo: Update.
8775 * doc/bison.1 (mandoc): Update.
8776 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
8777 * src/files.c: Support output files extensions computing.
8778 (src_extension): New static variable.
8779 (header_extension): New static variable.
8780 (tr): New function.
8781 (get_extension_index): New function, gets the index of an extension
8782 filename in a string.
8783 (compute_exts_from_gf): New function, computes extensions from the
8784 grammar file extension.
8785 (compute_exts_from_src): New functions, computes extensions from the
8786 C source file extension, file given by ``-o'' option.
8787 (compute_base_names): Update.
8788 (output_files): Update.
8789
8790 2001-08-01 Robert Anisko <anisko_r@epita.fr>
8791
8792 * doc/bison.texi: Document @$.
8793 (Locations): New section.
8794
8795 2001-07-18 Akim Demaille <akim@epita.fr>
8796
8797 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
8798 * config/prev-version.txt, config/move-if-change: New.
8799 * Makefile.am: Adjust.
8800
8801 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
8802
8803 * src/bison.simple (yyparse): Suppress warning `comparaison
8804 between signed and unsigned'.
8805
8806 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
8807
8808 * src/getargs.h (raw_flag): Remove.
8809 * src/getargs.c: Die on `-r'/`--raw'.
8810 * src/lex.c (parse_percent_token): Die on `%raw'.
8811 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
8812 * tests/calc.at: Suppress test with option `--raw'.
8813
8814 2001-07-14 Akim Demaille <akim@epita.fr>
8815
8816 * config/: New.
8817 * configure.in: Require Autoconf 2.50.
8818 Update to gettext 0.10.38.
8819
8820 2001-03-16 Akim Demaille <akim@epita.fr>
8821
8822 * doc/bison.texinfo: ANSIfy the examples.
8823
8824 2001-03-16 Akim Demaille <akim@epita.fr>
8825
8826 * getargs.c (skeleton): New variable.
8827 (longopts): --skeleton is a new option.
8828 (shortopts, getargs): -S is a new option.
8829 * getargs.h: Declare skeleton.
8830 * output.c (output_parser): Use it.
8831
8832 2001-03-16 Akim Demaille <akim@epita.fr>
8833
8834 * m4/strerror_r.m4: New.
8835 * m4/error.m4: Run AC_FUNC_STRERROR_R.
8836 * lib/error.h, lib/error.c: Update.
8837
8838 2001-03-16 Akim Demaille <akim@epita.fr>
8839
8840 * src/getargs.c (longopts): Clean up.
8841
8842 2001-02-21 Akim Demaille <akim@epita.fr>
8843
8844 * src/reader.c (gensym): `gensym_count' is your own.
8845 Use a static buf to create the symbol name, as token_buffer is no
8846 longer a buffer.
8847
8848 2001-02-08 Akim Demaille <akim@epita.fr>
8849
8850 * src/conflicts.c (conflict_report): Be sure not to append to res
8851 between two calls, which could happen if both first sprintf were
8852 skipped, but not the first cp += strlen.
8853
8854 2001-02-08 Akim Demaille <akim@epita.fr>
8855
8856 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
8857 New, from fileutils 4.0.37.
8858 * configure.in: Require Autoconf 2.49c. I took some time before
8859 making this decision. This is the only way out for portability
8860 issues in Bison, it would mean way too much duplicate effort to
8861 import in Bison features implemented in 2.49c since 2.13.
8862 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
8863
8864 2001-02-02 Akim Demaille <akim@epita.fr>
8865
8866 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
8867 * lib/xalloc.h, lib/xmalloc.c: Update.
8868
8869 2001-01-19 Akim Demaille <akim@epita.fr>
8870
8871 Get rid of the ad hoc handling of token_buffer in the scanner: use
8872 the obstacks.
8873
8874 * src/lex.c (token_obstack): New.
8875 (init_lex): Initialize it. No longer call...
8876 (grow_token_buffer): this. Remove it.
8877 Adjust all the places which used it to use the obstack.
8878
8879 2001-01-19 Akim Demaille <akim@epita.fr>
8880
8881 * src/lex.h: Rename all the tokens:
8882 s/\bENDFILE\b/tok_eof/g;
8883 s/\bIDENTIFIER\b/tok_identifier/g;
8884 etc.
8885 Let them be enums, not #define, to ease debugging.
8886 Adjust all the code.
8887
8888 2001-01-18 Akim Demaille <akim@epita.fr>
8889
8890 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
8891 * src/lex.c (maxtoken, grow_token_buffer): Static.
8892
8893 2001-01-18 Akim Demaille <akim@epita.fr>
8894
8895 Since we now use obstacks, more % directives can be enabled.
8896
8897 * src/lex.c (percent_table): Also accept `%yacc',
8898 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
8899 `%debug'.
8900 Handle the actions for `%semantic_parser' and `%pure_parser' here,
8901 instead of returning a token.
8902 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
8903 * src/reader.c (read_declarations): Adjust.
8904 * src/files.c (open_files): Don't call `compute_base_names', don't
8905 compute `attrsfile' since they depend upon data which might be
8906 *in* the input file now.
8907 (output_files): Do it here.
8908 * src/output.c (output_headers): Document the fact that this patch
8909 introduces a guaranteed SEGV for semantic parsers.
8910 * doc/bison.texinfo: Document them.
8911 * tests/suite.at: Exercise these %options.
8912
8913 2000-12-20 Akim Demaille <akim@epita.fr>
8914
8915 Also handle the output file (--verbose) with obstacks.
8916
8917 * files.c (foutput): Remove.
8918 (output_obstack): New.
8919 Adjust all dependencies.
8920 * src/conflicts.c: Return a string.
8921 * src/system.h (obstack_grow_string): Rename as...
8922 (obstack_sgrow): this. Be ready to work with non literals.
8923 (obstack_fgrow4): New.
8924
8925 2000-12-20 Akim Demaille <akim@epita.fr>
8926
8927 * src/files.c (open_files): Fix the computation of short_base_name
8928 in the case of `-o foo.tab.c'.
8929
8930 2000-12-20 Akim Demaille <akim@epita.fr>
8931
8932 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
8933 (copy_dollar): Now that everything uses obstacks, get rid of the
8934 FILE * parameters.
8935
8936 2000-12-20 Akim Demaille <akim@epita.fr>
8937
8938 * src/files.c (open_files): Actually the `.output' file is based
8939 on the short_base_name, not base_name.
8940 * tests/suite.at (Checking output file names): Adjust.
8941
8942 2000-12-20 Akim Demaille <akim@epita.fr>
8943
8944 * src/bison.s1: Remove, we now use directly...
8945 * src/bison.simple: this.
8946 * src/Makefile.am: Use pkgdata instead of data.
8947
8948 2000-12-20 Akim Demaille <akim@epita.fr>
8949
8950 * src/files.c (guard_obstack): New.
8951 (open_files): Initialize it.
8952 (output_files): Dump it...
8953 * src/files.h: Export it.
8954 * src/reader.c (copy_guard): Use it.
8955
8956 2000-12-19 Akim Demaille <akim@epita.fr>
8957
8958 * src/files.c (outfile, defsfile, actfile): Removed as global
8959 vars.
8960 (open_files): Don't compute them.
8961 (output_files): Adjust.
8962 (base_name, short_base_name): Be global.
8963 Adjust dependencies.
8964
8965 2000-12-19 Akim Demaille <akim@epita.fr>
8966
8967 * src/files.c (strsuffix): New.
8968 (stringappend): Be just like strcat but allocate.
8969 (base_names): Eve out from open_files.
8970 Try to simplify the rather hairy computation of base_name and
8971 short_base_name.
8972 (open_files): Use it.
8973 * tests/suite.at (Checking output file names): New test.
8974
8975 2000-12-19 Akim Demaille <akim@epita.fr>
8976
8977 * src/system.h (obstack_grow_literal_string): Rename as...
8978 (obstack_grow_string): this.
8979 * src/output.c (output_parser): Recognize `%% actions' instead of
8980 `$'.
8981 * src/bison.s1: s/$/%% actions/.
8982 * src/bison.hairy: Likewise.
8983
8984 2000-12-19 Akim Demaille <akim@epita.fr>
8985
8986 * src/output.c (output_parser): Compute the `#line' lines when
8987 there are.
8988 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
8989 Suggested by Hans Aberg.
8990
8991 2000-12-19 Akim Demaille <akim@epita.fr>
8992
8993 Let the handling of the skeleton files be local to the procedures
8994 that use it.
8995
8996 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
8997 longer static.
8998 (fparser, open_extra_files): Remove.
8999 (open_files, output_files): Don't take care of fparser.
9000 * src/files.h: Adjust.
9001 * src/output.c (output_parser): Open and close the file to the
9002 skeleton.
9003 * src/reader.c (read_declarations): When %semantic_parser, open
9004 fguard.
9005
9006 2000-12-19 Akim Demaille <akim@epita.fr>
9007
9008 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
9009 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
9010
9011 2000-12-19 Akim Demaille <akim@epita.fr>
9012
9013 * src/files.c (open_files): Yipee! We no longer need all the code
9014 looking for `/tmp' since we have no tmp file.
9015
9016 2000-12-19 Akim Demaille <akim@epita.fr>
9017
9018 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
9019 New macros.
9020 * src/files.c (open_files): Less dependency on MSDOS etc.
9021
9022 2000-12-14 Akim Demaille <akim@epita.fr>
9023
9024 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
9025 Provide a default definition.
9026 Use it when executing the default @ action.
9027 * src/reader.c (reader_output_yylsp): No longer include
9028 `timestamp' and `text' in the default YYLTYPE.
9029
9030 2000-12-12 Akim Demaille <akim@epita.fr>
9031
9032 * src/reader.c (copy_definition, parse_union_decl, copy_action)
9033 (copy_guard): Quote the file names.
9034 Reported by Laurent Mascherpa.
9035
9036 2000-12-12 Akim Demaille <akim@epita.fr>
9037
9038 * src/output.c (output_headers, output_program, output): Be sure
9039 to escape special characters when outputting filenames.
9040 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
9041 (output_headers): Don't depend on them, Use ACTSTR.
9042
9043 2000-11-17 Akim Demaille <akim@epita.fr>
9044
9045 * lib/obstack.h: Formatting changes.
9046 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
9047 prevents type checking.
9048 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
9049 cast the value to (void *): assigning a `foo *' to a `void *'
9050 variable is valid.
9051 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
9052 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
9053 append characters.
9054
9055 2000-11-17 Akim Demaille <akim@epita.fr>
9056
9057 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
9058 as...
9059 (suite.m4, regression.m4, calc.m4): these.
9060 * tests/atgeneral.m4: Update from CVS Autoconf.
9061
9062 2000-11-17 Akim Demaille <akim@epita.fr>
9063
9064 * tests/regression.m4 (%union and --defines): New test,
9065 demonstrating a current bug in the obstack implementation.
9066
9067 2000-11-17 Akim Demaille <akim@epita.fr>
9068
9069 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
9070 macros.
9071 Use them to declare the variables which are global or local to
9072 `yyparse'.
9073
9074 2000-11-17 Akim Demaille <akim@epita.fr>
9075
9076 * acconfig.h: Remove, no longer used.
9077
9078 2000-11-07 Akim Demaille <akim@epita.fr>
9079
9080 * src: s/Copyright (C)/Copyright/g.
9081
9082 2000-11-07 Akim Demaille <akim@epita.fr>
9083
9084 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
9085 defining.
9086 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
9087
9088 2000-11-07 Akim Demaille <akim@epita.fr>
9089
9090 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
9091 Merge in a single CPP if/else.
9092
9093 2000-11-07 Akim Demaille <akim@epita.fr>
9094
9095 * src/output.c (output): Remove useless variables.
9096 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
9097 argument `data' for consistency with the prototypes.
9098 Qualify it `const'.
9099 (obstack_copy, obstack_copy0): Rename the second argument as
9100 `address' for consistency. Qualify it `const'.
9101 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
9102 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
9103 `const' their input argument (`data' or `address').
9104 Adjust the corresponding macros to include `const' in casts.
9105
9106 2000-11-03 Akim Demaille <akim@epita.fr>
9107
9108 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
9109 s/PFILE1/BISON_HAIRY/.
9110 Adjust dependencies.
9111
9112 2000-11-03 Akim Demaille <akim@epita.fr>
9113
9114 For some reason, this was not applied.
9115
9116 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
9117 `unlink': it's no longer used.
9118
9119 2000-11-03 Akim Demaille <akim@epita.fr>
9120
9121 * src/files.c (skeleton_find): New function, eved out of...
9122 (open_files, open_extra_files): here.
9123
9124 2000-11-03 Akim Demaille <akim@epita.fr>
9125
9126 Don't use `atexit'.
9127
9128 * src/files.c (obstack_save): New function.
9129 (done): Rename as...
9130 (output_files): this.
9131 Use `obstack_save'.
9132 * src/main.c (main): Don't use `atexit' to register `done', since
9133 it no longer has to remove tmp files, just call `output_files'
9134 when there are no errors.
9135
9136 2000-11-02 Akim Demaille <akim@epita.fr>
9137
9138 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
9139 `unlink': it's no longer used.
9140 * src/files.h: Formatting changes.
9141
9142 2000-11-02 Akim Demaille <akim@epita.fr>
9143
9144 Remove the last uses of mktemp and unlink/delete.
9145
9146 * src/files.c (fdefines, ftable): Removed.
9147 (defines_ostack, table_obstack): New.
9148 Adjust dependencies of the former into uses of the latter.
9149 * src/output.c (output_short_or_char_table, output_short_table):
9150 Convert to using obstacks.
9151 * src/reader.c (copy_comment2): Accept one FILE * and two
9152 obstacks.
9153 (output_token_defines, reader_output_yylsp): Use obstacks.
9154 * src/system.h (obstack_fgrow3): New.
9155
9156 2000-11-01 Akim Demaille <akim@epita.fr>
9157
9158 Change each use of `fattrs' into a use of `attrs_obstack'.
9159
9160 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
9161 * src/files.c (fattrs): Remove.
9162 (attrs_obstack): New.
9163 Adjust all dependencies.
9164 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
9165
9166 2000-11-01 Akim Demaille <akim@epita.fr>
9167
9168 Introduce obstacks.
9169 Change each use of `faction' into a use of `action_obstack'.
9170
9171 * lib/obstack.h, lib/obstack.c: New files.
9172 * src/files.c (faction): Remove.
9173 (action_obstack): New.
9174 Adjust all dependencies.
9175
9176 2000-10-20 Akim Demaille <akim@epita.fr>
9177
9178 * lib/quote.h (PARAMS): New macro. Use it.
9179
9180 2000-10-16 Akim Demaille <akim@epita.fr>
9181
9182 * src/output.c (output_short_or_char_table): New function.
9183 (output_short_table, output_token_translations): Use it.
9184 (goto_actions): Use output_short_table.
9185
9186 2000-10-16 Akim Demaille <akim@epita.fr>
9187
9188 * src/symtab.c (bucket_new): New function.
9189 (getsym): Use it.
9190
9191 * src/output.c (output_short_table): New argument to display the
9192 comment associated with the table.
9193 Adjust dependencies.
9194 (output_gram): Use it.
9195 (output_rule_data): Nicer output layout for YYTNAME.
9196
9197 2000-10-16 Akim Demaille <akim@epita.fr>
9198
9199 * src/lex.c (read_typename): New function.
9200 (lex): Use it.
9201 * src/reader.c (copy_dollar): Likewise.
9202
9203 2000-10-16 Akim Demaille <akim@epita.fr>
9204
9205 * src/reader.c (copy_comment2): Expect the input stream to be on
9206 the `/' which is suspected to open a comment, instead of being
9207 called after `//' or `/*' was read.
9208 (copy_comment, copy_definition, parse_union_decl, copy_action)
9209 (copy_guard): Adjust.
9210
9211 2000-10-16 Akim Demaille <akim@epita.fr>
9212
9213 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
9214 `read_signed_integer'.
9215
9216 2000-10-16 Akim Demaille <akim@epita.fr>
9217
9218 * src/reader.c (copy_dollar): New function.
9219 (copy_guard, copy_action): Use it.
9220
9221 2000-10-16 Akim Demaille <akim@epita.fr>
9222
9223 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
9224 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
9225 New files, from Fileutils 4.0.27.
9226 * src/main.c (printable_version): Remove.
9227 * src/lex.c, src/reader.c: Use `quote'.
9228
9229 2000-10-04 Akim Demaille <akim@epita.fr>
9230
9231 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
9232
9233 2000-10-04 Akim Demaille <akim@epita.fr>
9234
9235 * doc/bison.texinfo: Various typos spotted by Neil Booth.
9236
9237 2000-10-04 Akim Demaille <akim@epita.fr>
9238
9239 When a literal string is used to define two different tokens,
9240 `bison -v' segfaults.
9241 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
9242
9243 * tests/regression.m4: New file.
9244 Include the core of the sample provided by Piotr Gackiewicz.
9245 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
9246 properly.
9247
9248 2000-10-04 Akim Demaille <akim@epita.fr>
9249
9250 * src/reader.c (parse_expect_decl): Keep `count' within the size
9251 of `buffer'.
9252 From Neil Booth.
9253
9254 2000-10-02 Paul Eggert <eggert@twinsun.com>
9255
9256 * bison.s1 (yyparse): Assign the default value
9257 unconditionally, to avoid a GCC warning and make the parser a
9258 tad smaller.
9259
9260 2000-10-02 Akim Demaille <akim@epita.fr>
9261
9262 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
9263 options.
9264
9265 2000-10-02 Akim Demaille <akim@epita.fr>
9266
9267 * src/derives.c, src/print.c, src/reduce.c: To ease the
9268 translation, move some `\n' out of the translated strings.
9269
9270 2000-10-02 Akim Demaille <akim@epita.fr>
9271
9272 The location tracking mechanism is precious for parse error
9273 messages. Nevertheless, it is enabled only when `@n' is used in
9274 the grammar, which is a different issue (you can use it in error
9275 message, but not in the grammar per se). Therefore, there should
9276 be another means to enable it.
9277
9278 * src/getargs.c (getargs): Support `--locations'.
9279 (usage): Report it.
9280 * src/getargs.h (locationsflag): Export it.
9281 * src/lex.c (percent_table): Support `%locations'.
9282 * src/reader.c (yylsp_needed): Remove this variable, now replaced
9283 with `locationsflag'.
9284 * doc/bison.texinfo: Document `--locations' and `%locations'.
9285 Sort the options.
9286 * tests/calc.m4: Test it.
9287
9288 For regularity of the names, replace each
9289 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
9290 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
9291 In addition replace each `flag' with `_flag'.
9292
9293 2000-10-02 Akim Demaille <akim@epita.fr>
9294
9295 Also test parse error messages, including with YYERROR_VERBOSE.
9296
9297 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
9298 associative).
9299 Use it to check the computations.
9300 Use it to check `nonassoc' is honored.
9301 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
9302 `--yyerror-verbose'.
9303 (_AT_CHECK_CALC): Adjust to this option.
9304 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
9305
9306 2000-10-02 Akim Demaille <akim@epita.fr>
9307
9308 Test also `--verbose', `--defines' and `--name-prefix'. Testing
9309 the latter demonstrates a flaw in the handling of non debugging
9310 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
9311 was used in order to simplify:
9312
9313 #if YYDEBUG
9314 if (yydebug)
9315 {
9316 ...
9317 }
9318 #endif
9319
9320 into
9321
9322 if (yydebug)
9323 {
9324 ...
9325 }
9326
9327 unfortunately this leads to a CPP conflict when
9328 `--name-prefix=foo' is used since it produces `#define yydebug
9329 foodebug'.
9330
9331 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
9332 (YYDPRINTF): New macro.
9333 Spread its use.
9334 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
9335 the bison options.
9336 Also test `--verbose', `--defines' and `--name-prefix'.
9337
9338 2000-10-02 Akim Demaille <akim@epita.fr>
9339
9340 Improve the readability of the produced parsers.
9341
9342 * src/bison.s1: Formatting changes.
9343 Improve the comment related to the `$' mark.
9344 (yydefault): Don't fall through to `yyresume': `goto' there.
9345 * src/output.c (output_parser): When the `$' is met, skip the end
9346 of its line.
9347 New variable, `number_of_dollar_signs', to check there's exactly
9348 one `$' in the parser skeleton.
9349
9350 2000-10-02 Akim Demaille <akim@epita.fr>
9351
9352 * lib/xstrdup.c: New file, from the fileutils.
9353 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
9354 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
9355 instead of strlen + xmalloc + strcpy.
9356 * src/symtab.c (copys): Remove, use xstrdup instead.
9357
9358 2000-10-02 Akim Demaille <akim@epita.fr>
9359
9360 * src/gram.h (associativity): New enum type which replaces the
9361 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
9362 `right_assoc', `left_assoc' and `non_assoc'.
9363 Adjust all dependencies.
9364 * src/reader.c: Formatting changes.
9365 (LTYPESTR): Don't define it, use it as a literal in
9366 `reader_output_yylsp'.
9367 * src/symtab.h (symbol_class): New enum type which replaces the
9368 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
9369 `sunknown', `stoken and `snterm'.
9370
9371 2000-10-02 Akim Demaille <akim@epita.fr>
9372
9373 * src/getargs.c (fixed_outfiles): Rename as...
9374 (yaccflag): for consistency and accuracy.
9375 Adjust dependencies.
9376
9377 2000-10-02 Akim Demaille <akim@epita.fr>
9378
9379 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
9380 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
9381 difficult and introduced a lot of core dump. It turns out that
9382 Bison used an implementation of `xmalloc' based on `calloc', and
9383 at various places it does depend upon the initialization to 0. I
9384 have not tried to isolate the pertinent places, and all the former
9385 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
9386 someone should address this issue.
9387
9388 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
9389 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
9390 files.
9391 Adjust dependencies.
9392 * src/warshall.h: New file.
9393 Propagate.
9394
9395 2000-10-02 Akim Demaille <akim@epita.fr>
9396
9397 Various anti-`extern in *.c' changes.
9398
9399 * src/system.h: Include `assert.h'.
9400
9401 2000-10-02 Akim Demaille <akim@epita.fr>
9402
9403 * src/state.h (nstates, final_state, first_state, first_shift)
9404 (first_reduction): Move their exportation from here...
9405 * src/LR0.h: to here.
9406 Adjust dependencies.
9407 * src/getargs.c (statisticsflag): New variable.
9408 Add support for `--statistics'.
9409 Adjust dependencies.
9410
9411 Remove a lot of now useless `extern' statements in most files.
9412
9413 2000-10-02 Akim Demaille <akim@epita.fr>
9414
9415 * src/LR0.h: New file.
9416 Propagate its use.
9417
9418 2000-10-02 Akim Demaille <akim@epita.fr>
9419
9420 * src/print.h: New file.
9421 Propagate its use.
9422 * src/print.c: Formatting and ordering changes.
9423 (verbose, terse): Replace with...
9424 (print_results): this new function.
9425 Adjust dependencies.
9426
9427 2000-10-02 Akim Demaille <akim@epita.fr>
9428
9429 * src/conflicts.c (conflict_report): New function.
9430 (conflict_log, verbose_conflict_log): Replace with...
9431 (print_conflicts): this function.
9432 Adjust dependencies.
9433 * src/conflicts.h: New file.
9434 Propagate its inclusion.
9435
9436 2000-10-02 Akim Demaille <akim@epita.fr>
9437
9438 * src/nullable.h: New file.
9439 Propagate its inclusion.
9440 * src/nullable.c: Formatting changes.
9441
9442 2000-10-02 Akim Demaille <akim@epita.fr>
9443
9444 * src/reduce.h: New file.
9445 Propagate its inclusion.
9446 * src/reduce.c: Topological sort and other formatting changes.
9447 (bool, TRUE, FALSE): Move their definition to...
9448 * src/system.h: here.
9449
9450 2000-10-02 Akim Demaille <akim@epita.fr>
9451
9452 * src/files.c: Formatting changes.
9453 (tryopen, tryclose, openfiles): Rename as...
9454 (xfopen, xfclose, open_files): this.
9455 (stringappend): static.
9456 * src/files.h: Complete the list of exported symbols.
9457 Propagate its use.
9458
9459 2000-10-02 Akim Demaille <akim@epita.fr>
9460
9461 * src/reader.h: New file.
9462 Propagate its use instead of tedious list of `extern' and
9463 prototypes.
9464 * src/reader.c: Formatting changes, topological sort,
9465 s/register//.
9466
9467 2000-10-02 Akim Demaille <akim@epita.fr>
9468
9469 * src/lex.h: Prototype `lex.c' exported functions.
9470 * src/reader.c: Adjust.
9471 * src/lex.c: Formatting changes.
9472 (safegetc): Rename as...
9473 (xgetc): this.
9474
9475 2000-10-02 Akim Demaille <akim@epita.fr>
9476
9477 * src/lalr.h: New file.
9478 Propagate its inclusion instead of prototypes and `extern'.
9479 * src/lalr.c: Formatting changes, topological sorting etc.
9480
9481 2000-10-02 Akim Demaille <akim@epita.fr>
9482
9483 * src/output.c (token_actions): Introduce a temporary array,
9484 YYDEFACT, that makes it possible for this function to use
9485 output_short_table.
9486
9487 2000-10-02 Akim Demaille <akim@epita.fr>
9488
9489 `user_toknums' is output as a `short[]' in `output.c', while it is
9490 defined as a `int[]' in `reader.c'. For consistency with the
9491 other output tables, `user_toknums' is now defined as a table of
9492 shorts.
9493
9494 * src/reader.c (user_toknums): Be a short table instead of an int
9495 table.
9496 Adjust dependencies.
9497
9498 Factor the short table outputs.
9499
9500 * src/output.c (output_short_table): New function.
9501 * src/output.c (output_gram, output_stos, output_rule_data)
9502 (output_base, output_table, output_check): Use it.
9503
9504 2000-10-02 Akim Demaille <akim@epita.fr>
9505
9506 * src/output.c (output): Topological sort of the functions, in
9507 order to get rid of the `static' prototypes.
9508 No longer use `register'.
9509 * src/output.h: New file.
9510 Propagate its inclusion in files explicitly prototyping functions
9511 from output.c.
9512
9513 2000-09-21 Akim Demaille <akim@epita.fr>
9514
9515 * src/atgeneral.m4: Update from Autoconf.
9516
9517 2000-09-21 Akim Demaille <akim@epita.fr>
9518
9519 * src/closure.h: New file.
9520 * src/closure.c: Formatting changes, topological sort over the
9521 functions, use of closure.h.
9522 (initialize_closure, finalize_closure): Rename as...
9523 (new_closure, free_closure): these. Adjust dependencies.
9524 * src/LR0.c: Formatting changes, topological sort, use of
9525 cloture.h.
9526 (initialize_states): Rename as...
9527 (new_states): this.
9528 * src/Makefile.am (noinst_HEADERS): Adjust.
9529
9530 2000-09-20 Akim Demaille <akim@epita.fr>
9531
9532 * src/acconfig.h: Don't protect config.h against multiple
9533 inclusion.
9534 Don't define PARAMS.
9535 * src/system.h: Define PARAMS.
9536 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
9537 purpose of config.h. system.h must not try to fix wrong
9538 definitions in config.h.
9539
9540 2000-09-20 Akim Demaille <akim@epita.fr>
9541
9542 * src/derives.h: New file.
9543 * src/main.c, src/derives.h: Use it.
9544 Formatting changes.
9545 * src/Makefile.am (noinst_HEADERS): Adjust.
9546
9547 2000-09-20 Akim Demaille <akim@epita.fr>
9548
9549 * tests/atgeneral.m4: Update from Autoconf.
9550 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
9551 (AT_CHECK_CALC): New macros.
9552 Use these macros to test bison with options `', `--raw',
9553 `--debug', `--yacc', `--yacc --debug'.
9554
9555 2000-09-19 Akim Demaille <akim@epita.fr>
9556
9557 * src/output.c: Formatting changes.
9558 * src/machine.h: Remove, leaving its contents in...
9559 * src/system.h: here.
9560 Include stdio.h.
9561 Adjust all dependencies on stdio.h and machine.h.
9562 * src/getargs.h: New file.
9563 Let all `extern' declarations about getargs.c be replaced with
9564 inclusion of `getargs.h'.
9565 * src/Makefile.am (noinst_HEADERS): Adjust.
9566
9567 * tests/calc.m4 (yyin): Be initialized in main, not on the global
9568 scope.
9569 (yyerror): Returns void, not int.
9570 * doc/bison.texinfo: Formatting changes.
9571
9572 2000-09-19 Akim Demaille <akim@epita.fr>
9573
9574 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
9575 portable.
9576
9577 2000-09-18 Akim Demaille <akim@epita.fr>
9578
9579 * configure.in: Append WARNING_CFLAGS to CFLAGS.
9580 * src/Makefile.am (INCLUDES): Don't.
9581 Be ready to fetch headers in lib/.
9582
9583 2000-09-18 Akim Demaille <akim@epita.fr>
9584
9585 * doc/bison.texinfo: Update the copyright.
9586 ANSIfy and GNUify the examples.
9587 Remove the old menu.
9588
9589 2000-09-18 Akim Demaille <akim@epita.fr>
9590
9591 First set of tests: use the `calc' example from the documentation.
9592
9593 * src/bison.s1 (yyparse): Condition the code using `yytname' which
9594 is defined only when YYDEBUG is.
9595 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
9596 * src/files.c (tryopen, tryclose): Formatting changes.
9597 Move to the top and be static.
9598 * src/reader.c (read_signed_integer): Likewise.
9599 * tests/calc.m4: New file.
9600 * Makefile.am, suite.m4: Adjust.
9601 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
9602
9603 2000-09-18 Akim Demaille <akim@epita.fr>
9604
9605 Add support for an Autotest test suite for Bison.
9606
9607 * m4/m4.m4, m4/atconfig.m4: New files.
9608 * m4/Makefile.am (EXTRA_DIST): Adjust.
9609 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
9610 files.
9611 * src/getargs.c: Display a more standard --version message.
9612 * src/reader.c (reader): Formatting changes.
9613 No longer depend upon VERSION_STRING.
9614 * configure.in: No longer use `dnl'.
9615 Set up the test suite and the new directory `tests/.
9616 (VERSION_STRING): Remove.
9617
9618 2000-04-14 Akim Demaille <akim@epita.fr>
9619
9620 * src/reader.c (copy_comment2): New function, same as former
9621 `copy_comment', but outputs into two FILE *.
9622 (copy_comment): Use it.
9623 (parse_union_decl): Use it.
9624 (get_type, parse_start_decl): Use the same `invalid' message.
9625 (parse_start_decl, parse_union_decl): Use the same `multiple'
9626 message.
9627 (parse_union_decl, copy_guard, copy_action): Use the same
9628 `unmatched' message.
9629 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
9630
9631 2000-03-31 Akim Demaille <akim@epita.fr>
9632
9633 * src/files.c (tryopen, tryclose): Move to the top.
9634 Be static.
9635
9636 2000-03-31 Akim Demaille <akim@epita.fr>
9637
9638 * src/main.c (main): Don't call `done', exit does it.
9639
9640 2000-03-31 Akim Demaille <akim@epita.fr>
9641
9642 * allocate.c: s/return (foo)/return foo/.
9643 * lalr.c: Likewise.
9644 * LR0.c: Likewise.
9645 * output.c: Likewise.
9646 * reader.c: Likewise.
9647 * symtab.c: Likewise.
9648 * vmsgetargs.c: Likewise.
9649
9650 2000-03-31 Akim Demaille <akim@epita.fr>
9651
9652 Clean up the error reporting functions.
9653
9654 * src/report.c: New file.
9655 * src/report.h: Likewise.
9656 * src/Makefile.am: Adjust.
9657 * m4/error.m4: New file.
9658 * m4/Makefile.am: Adjust.
9659 * configure.in (jm_PREREQ_ERROR): Call it.
9660 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
9661 Remove.
9662 (fatal, fatals): Remove. All callers use complain.c::fatal.
9663 (warn, warni, warns, warnss, warnss): Remove. All callers use
9664 complain.c::complain.
9665 (toomany): Remove, use fatal instead.
9666 * src/files.c (done): No argument, use complain_message_count.
9667 * src/main.c (main): Register `done' to `atexit'.
9668
9669 * src/getargs.c (usage): More `fputs', less `fprintf'.
9670
9671 2000-03-28 Akim Demaille <akim@epita.fr>
9672
9673 * lib/: New directory.
9674 * Makefile.am (SUBDIRS): Adjust.
9675 * configure.in: Adjust.
9676 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
9677 useless.
9678 * src/alloca.c: Moved to lib/.
9679 * src/getopt.c: Likewise.
9680 * src/getopt1.c: Likewise.
9681 * src/getopt.h: Likewise.
9682 * src/ansi2knr.c: Likewise.
9683 * src/ansi2knr.1: Likewise.
9684 * src/Makefile.am: Adjust.
9685 * lib/Makefile.am: New file.
9686
9687 2000-03-28 Akim Demaille <akim@epita.fr>
9688
9689 * src/getargs.c (usage): Refresh the help message.
9690
9691 2000-03-17 Akim Demaille <akim@epita.fr>
9692
9693 * src/getopt1.c: Updated from textutils 2.0e
9694 * src/getopt.c: Likewise.
9695 * src/getopt.h: Likewise.
9696
9697 2000-03-17 Akim Demaille <akim@epita.fr>
9698
9699 * src/Makefile.am (bison.simple): Fix the awk program: quote only
9700 the file name, not the whole `#line LINE FILE'.
9701
9702 2000-03-17 Akim Demaille <akim@epita.fr>
9703
9704 On syntax errors, report the token on which we choked.
9705
9706 * src/bison.s1 (yyparse): In the label yyerrlab, when
9707 YYERROR_VERBOSE, add yychar in msg.
9708
9709 2000-03-17 Akim Demaille <akim@epita.fr>
9710
9711 * src/reader.c (copy_at): New function.
9712 (copy_guard): Use it.
9713 (copy_action): Use it.
9714
9715 2000-03-17 Akim Demaille <akim@epita.fr>
9716
9717 Be kind to translators, save some useless translations.
9718
9719 * src/main.c (banner): New function.
9720 (fatal_banner): Use it.
9721 (warn_banner): Use it.
9722
9723 2000-03-17 Akim Demaille <akim@epita.fr>
9724
9725 * src/reader.c (copy_definition): Use copy_string and
9726 copy_comment. Removed now unused `match', `ended',
9727 `cplus_comment'.
9728 (copy_comment, copy_string): Moved, to be visible from
9729 copy_definition.
9730
9731 2000-03-17 Akim Demaille <akim@epita.fr>
9732
9733 * src/reader.c (copy_string): Declare `static inline'. No
9734 problems with inline, since it is checked by configure.
9735 (copy_comment): Likewise.
9736
9737 2000-03-17 Akim Demaille <akim@epita.fr>
9738
9739 * src/reader.c (packsymbols): Formatting changes.
9740
9741 2000-03-17 Akim Demaille <akim@epita.fr>
9742
9743 * src/reader.c (copy_comment): New function, factored out from:
9744 (copy_action): Use it. Removed now unused `match', `ended',
9745 `cplus_comment'.
9746 (copy_guard): Likewise.
9747
9748 2000-03-17 Akim Demaille <akim@epita.fr>
9749
9750 * src/reader.c (copy_string): New function, factored out from:
9751 (copy_action): Use it.
9752 (copy_guard): Likewise.
9753
9754 2000-03-17 Akim Demaille <akim@epita.fr>
9755
9756 Change the handling of @s so that they behave exactly like $s.
9757 There is now a pseudo variable @$ (readble and writable), location
9758 of the lhs of the rule (by default ranging from the location of
9759 the first symbol of the rhs, to the location of the last symbol,
9760 or, if the rhs is empty, YYLLOC).
9761
9762 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
9763 yyval.
9764 (yyparse): When providing a default semantic action, provide a
9765 default location action.
9766 (after the $): No longer change `*YYLSP', just stack YYLOC the
9767 same way you stack YYVAL.
9768 * src/reader.c (read_declarations): Use warns.
9769 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
9770 (copy_action, case '@'): Likewise.
9771 Use a standard error message, to save useless work from
9772 translators.
9773
9774 2000-03-17 Akim Demaille <akim@epita.fr>
9775
9776 * src/bison.s1: Formatting and cosmetics changes.
9777 * src/reader.c: Likewise.
9778 Update the Copyright notice.
9779
9780 2000-03-17 Akim Demaille <akim@epita.fr>
9781
9782 * src/bison.s1 (#line): All set to `#line' only, since the
9783 Makefile now handles them.
9784
9785 2000-03-16 Akim Demaille <akim@epita.fr>
9786
9787 * src/output.c (output_rule_data): Output the documentation of
9788 some of the tables.
9789 (Copyright notice): Update.
9790 Formatting changes.
9791
9792 2000-03-16 Akim Demaille <akim@epita.fr>
9793
9794 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
9795 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
9796 One `#if YYDEBUG' remains, since it uses variables which are
9797 defined only if `YYDEBUG != 0'.
9798
9799 2000-03-16 Akim Demaille <akim@epita.fr>
9800
9801 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
9802 and related variables so that the similarities are highlighted.
9803
9804 2000-03-16 Akim Demaille <akim@epita.fr>
9805
9806 * src/bison.s1: Properly indent CPP directives.
9807
9808 2000-03-16 Akim Demaille <akim@epita.fr>
9809
9810 * src/bison.s1: Properly indent the `alloca' CPP section.
9811
9812 2000-03-16 Akim Demaille <akim@epita.fr>
9813
9814 Do not hard code values of directories in `configure.in'.
9815 Update the `configure' tool chain.
9816
9817 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
9818 src/makefile.am.
9819 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
9820 (AC_OUTPUT): Add m4/Makefile.
9821 Bump to bison 1.28a, 1.29 has never been released.
9822 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
9823 handled via src/Makefile.am.
9824 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
9825 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
9826 autoheader.
9827 * Makefile.am (SUBDIRS): Add m4.
9828 (ACLOCAL_AM_FLAGS): New variable.
9829 (AUTOMAKE_OPTIONS): Add check-news.
9830 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
9831 the proper line number and file name.
9832 (DEFS): Propagate the location of bison library files and of the
9833 locale files.
9834 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
9835 builddir.
9836 * acinclude.m4: Remove, replaced by the directory m4.
9837 * m4/Makefile.am (EXTRA_DIST): New variable.
9838 * m4/gettext.m4: New file, from the fileutils.
9839 * m4/lcmessage.m4: Likewise
9840 * m4/progtest.m4: Likewise.
9841 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
9842
9843 2000-03-10 Akim Demaille <akim@epita.fr>
9844
9845 * src/closure.c:
9846 Formatting changes of various comments.
9847 Respect the GNU coding standards at various places.
9848 Don't use `_()' when no translation is needed.
9849
9850 1999-12-13 Jesse Thilo <jthilo@gnu.org>
9851
9852 * src/files.c:
9853 OS/2 honors TMPDIR environment variable.
9854
9855 1999-12-13 Jesse Thilo <jthilo@gnu.org>
9856
9857 * doc/bison.texinfo: Tweaked spelling and grammar.
9858 Updated ISBN.
9859 Removed reference to price of printed copy.
9860 Mention BISON_SIMPLE and BISON_HAIRY.
9861
9862 1999-12-13 Jesse Thilo <jthilo@gnu.org>
9863
9864 * configure.in, NEWS:
9865 Bison 1.29 released.
9866
9867 1999-10-27 Jesse Thilo <jthilo@gnu.org>
9868
9869 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
9870 Added reference card.
9871
9872 1999-07-26 Jesse Thilo <jthilo@gnu.org>
9873
9874 * po/ru.po: Added Russian translation.
9875
9876 1999-07-26 Jesse Thilo <jthilo@gnu.org>
9877
9878 * configure.in: Added Russian translation.
9879
9880 1999-07-06 Jesse Thilo <jthilo@gnu.org>
9881
9882 * configure.in, NEWS, README:
9883 Released version 1.28.
9884
9885 1999-06-14 Jesse Thilo <jthilo@gnu.org>
9886
9887 * src/system.h:
9888 Squashed redefinition warning on some systems.
9889
9890 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
9891 Have configure build version string instead of relying on ANSI string
9892 concatentation.
9893
9894 1999-06-14 Jesse Thilo <jthilo@gnu.org>
9895
9896 * po/POTFILES.in: Got rid of version.c.
9897
9898 1999-06-14 Jesse Thilo <jthilo@gnu.org>
9899
9900 * acconfig.h, configure.in:
9901 Have configure build version string instead of relying on ANSI string
9902 concatentation.
9903
9904 1999-06-08 Jesse Thilo <jthilo@gnu.org>
9905
9906 * doc/bison.1:
9907 Dropped mention of `+' for long-named options.
9908
9909 1999-05-30 Jesse Thilo <jthilo@gnu.org>
9910
9911 * src/files.c: Added <unistd.h> for unlink().
9912
9913 * src/Makefile.am, src/system.h:
9914 I18n fixes.
9915
9916 1999-05-30 Jesse Thilo <jthilo@gnu.org>
9917
9918 * README: Added a FAQ list.
9919
9920 * configure.in, acconfig.h:
9921 I18n fixes.
9922
9923 1999-05-30 Jesse Thilo <jthilo@gnu.org>
9924
9925 * doc/FAQ, doc/Makefile.am:
9926 Added a FAQ list.
9927
9928 1999-05-19 Jesse Thilo <jthilo@gnu.org>
9929
9930 * src/alloc.h, src/symtab.h, src/version.c:
9931 Protected inclusion of "config.h" with HAVE_CONFIG_H.
9932
9933 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9934
9935 * src/.cvsignore, src/Makefile.am:
9936 Reorganized: sources in `src', documentation in `doc'.
9937
9938 * src/lex.c (literalchar):
9939 fixed the code for escaping double quotes (thanks
9940 Jonathan Czisny.)
9941
9942 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9943
9944 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
9945 Adjusted paths to reflect directory reorganization.
9946
9947 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9948
9949 * doc/.cvsignore, doc/Makefile.am:
9950 Reorganized: sources in `src', documentation in `doc'.
9951
9952 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9953
9954 * configure.in:
9955 Updated AC_INIT file to reflect directory reorganization.
9956
9957 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
9958 Reorganized: sources in `src', documentation in `doc'.
9959
9960 1999-04-13 Jesse Thilo <jthilo@gnu.org>
9961
9962 * src/allocate.c:
9963 Don't declare calloc() and realloc() if not necessary.
9964
9965 1999-04-13 Jesse Thilo <jthilo@gnu.org>
9966
9967 * configure.in, acconfig.h, acinclude.m4:
9968 Don't declare calloc() and realloc() if not necessary.
9969
9970 1999-03-23 Jesse Thilo <jthilo@gnu.org>
9971
9972 * po/.cvsignore: Added i18n support.
9973
9974 1999-03-23 Jesse Thilo <jthilo@gnu.org>
9975
9976 * acconfig.h, configure.in, Makefile.am:
9977 Added i18n support.
9978
9979 1999-03-22 Jesse Thilo <jthilo@gnu.org>
9980
9981 * src/bison.s1: Fixed #line numbers.
9982
9983 1999-03-15 Jesse Thilo <jthilo@gnu.org>
9984
9985 * po/es.po, po/fr.po, po/nl.po, po/de.po:
9986 Added PO files from Translation Project.
9987
9988 1999-03-03 Jesse Thilo <jthilo@gnu.org>
9989
9990 * Makefile.am:
9991 Added support for non-ANSI compilers (ansi2knr).
9992
9993 1999-02-16 Jesse Thilo <jthilo@gnu.org>
9994
9995 * configure.in: Bumped version number to 1.27.
9996
9997 * Makefile.am:
9998 Added `bison.simple' to list of files removed by `make distclean'.
9999
10000 1999-02-12 Jesse Thilo <jthilo@gnu.org>
10001
10002 * src/files.c, src/files.h:
10003 Defined locations of parser files in config.h instead of Makefile.
10004
10005 1999-02-12 Jesse Thilo <jthilo@gnu.org>
10006
10007 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
10008 Defined locations of parser files in config.h instead of Makefile.
10009
10010 1999-02-09 Jesse Thilo <jthilo@gnu.org>
10011
10012 * Makefile.am:
10013 Removed inappropriate use of $< macro.
10014
10015 1999-02-05 Jesse Thilo <jthilo@gnu.org>
10016
10017 * po/Makefile.in.in, po/POTFILES.in:
10018 Add `po' directory skeleton.
10019
10020 1999-01-27 Jesse Thilo <jthilo@gnu.org>
10021
10022 * README: Document help-bison list.
10023
10024 * configure.in: Add check for mkstemp().
10025
10026 1999-01-20 Jesse Thilo <jthilo@gnu.org>
10027
10028 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
10029 Hush a few compiler warnings.
10030
10031 * src/files.c:
10032 Add tryclose(), which verifies that fclose was successful.
10033 Hush a couple of compiler warnings.
10034
10035 1999-01-20 Jesse Thilo <jthilo@gnu.org>
10036
10037 * Makefile.am, OChangeLog:
10038 ChangeLog is now automatically generated. Include the old version as
10039 OChangeLog.
10040
10041 1999-01-14 Jesse Thilo <jthilo@gnu.org>
10042
10043 * 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:
10044 Update FSF address.
10045
10046 1999-01-14 Jesse Thilo <jthilo@gnu.org>
10047
10048 * doc/bison.texinfo: Fix formatting glitch.
10049
10050 * doc/bison.texinfo: Update FSF address.
10051
10052 1999-01-14 Jesse Thilo <jthilo@gnu.org>
10053
10054 * acconfig.h: Update FSF address.
10055
10056 1999-01-08 Jesse Thilo <jthilo@gnu.org>
10057
10058 * src/system.h:
10059 Don't define PACKAGE here, since config.h defines it.
10060
10061 1998-12-30 Jesse Thilo <jthilo@gnu.org>
10062
10063 * src/reader.c: Update copyright date.
10064
10065 * src/main.c:
10066 Ditch sprintf to statically-sized buffers in fatal/warn functions in
10067 favor of output directly to stderr (avoids buffer overruns).
10068
10069 * src/reader.c: Some checks for premature EOF.
10070
10071 * 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:
10072 Use prototypes if the compiler understands them.
10073
10074 * src/files.c: Honor TMPDIR on Unix hosts.
10075 Use prototypes if the compiler understands them.
10076
10077 * src/reader.c:
10078 Fix a couple of buffer overrun bugs.
10079 Use prototypes if the compiler understands them.
10080
10081 * src/system.h: Include unistd.h and ctype.h.
10082 Use #ifdef instead of #if for NLS symbols.
10083
10084 1998-12-30 Jesse Thilo <jthilo@gnu.org>
10085
10086 * doc/bison.texinfo:
10087 Delete comment "consider using @set for edition number, etc..." since
10088 we now are doing so.
10089
10090 1998-12-30 Jesse Thilo <jthilo@gnu.org>
10091
10092 * configure.in:
10093 Use prototypes if the compiler understands them.
10094
10095 * NEWS: Document 1.26 highlights.
10096
10097 * Makefile.am: Require Automake 1.3 or later.
10098
10099 * acconfig.h:
10100 Use prototypes if the compiler understands them.
10101
10102 1998-12-29 Jesse Thilo <jthilo@gnu.org>
10103
10104 * src/version.c:
10105 Use VERSION symbol from automake for version number.
10106
10107 1998-12-29 Jesse Thilo <jthilo@gnu.org>
10108
10109 * acconfig.h, configure.in, version.cin:
10110 Use VERSION symbol from automake for version number.
10111
10112 1998-11-28 Jesse Thilo <jthilo@gnu.org>
10113
10114 * Makefile.am:
10115 Distribute original version of simple parser (bison.s1), not built
10116 version (bison.simple).
10117
10118 1998-11-28 Jesse Thilo <jthilo@gnu.org>
10119
10120 * doc/bison.texinfo: Add info dir entry.
10121
10122 * doc/bison.texinfo:
10123 Let automake put version number into documentation.
10124
10125 1998-11-26 Jesse Thilo <jthilo@gnu.org>
10126
10127 * src/bison.cld, src/build.com, src/vmshlp.mar:
10128 Add non-RCS files from /gd/gnu/bison.
10129
10130 1998-11-26 Jesse Thilo <jthilo@gnu.org>
10131
10132 * doc/bison.1:
10133 Document the BISON_HAIRY and BISON_SIMPLE variables.
10134
10135 1998-11-25 Jesse Thilo <jthilo@gnu.org>
10136
10137 * src/version.c: Build version.c automatically.
10138
10139 * src/reader.c:
10140 Fix token numbering (used to start at 258, not 257).
10141
10142 * src/system.h: Include config.h.
10143
10144 * src/getargs.c: Update bug report address.
10145
10146 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
10147 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
10148
10149 1998-11-25 Jesse Thilo <jthilo@gnu.org>
10150
10151 * Makefile.am:
10152 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
10153
10154 * configure.in, version.cin:
10155 Build version.c automatically.
10156
10157 * AUTHORS: Add AUTHORS file.
10158
10159 * README: Update bug report address.
10160
10161 * bison.simple:
10162 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
10163
10164 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
10165 Add automake stuff.
10166
10167 1998-11-25 Jesse Thilo <jthilo@gnu.org>
10168
10169 * doc/bison.texinfo: Clean up some formatting.
10170
10171 1998-05-05 Richard Stallman <rms@gnu.org>
10172
10173 * doc/bison.texinfo:
10174 Explain better why to make a pure parser.
10175
10176 1998-01-05 Richard Stallman <rms@gnu.org>
10177
10178 * src/files.c (openfiles):
10179 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
10180 find a temporary directory, if possible. Do not unlink files while
10181 they are open.
10182
10183 1997-08-25 Richard Stallman <rms@gnu.org>
10184
10185 * src/reader.c (stack_offset;):
10186 Change some warni to warns.
10187
10188 * src/lex.c (literalchar): Use warns, not warni.
10189
10190 1997-06-28 Richard Stallman <rms@gnu.org>
10191
10192 * src/bison.s1: Add a Bison version comment.
10193
10194 * src/main.c (fatal, warn, berror):
10195 Use program_name.
10196
10197 1997-06-28 Richard Stallman <rms@gnu.org>
10198
10199 * Makefile.in (bison_version): New variable.
10200 (dist): Use that variable.
10201 (bison.s1): Substitute the Bison version into bison.simple.
10202
10203 * bison.simple: Add a Bison version comment.
10204
10205 1997-06-18 Richard Stallman <rms@gnu.org>
10206
10207 * src/main.c (fatal, warn, berror):
10208 Make error messages standard.
10209 (toomany): Improve error message text.
10210
10211 * 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:
10212 new.h renamed to alloc.h.
10213
10214 1997-06-18 Richard Stallman <rms@gnu.org>
10215
10216 * Makefile.in: new.h renamed to alloc.h.
10217
10218 1997-05-24 Richard Stallman <rms@gnu.org>
10219
10220 * src/lex.c (literalchar):
10221 Fix the code for escaping \, " and '.
10222
10223 (lex): Avoid trouble when there are many chars
10224 to discard in a char literal with just several chars in it.
10225
10226 1997-05-17 Richard Stallman <rms@gnu.org>
10227
10228 * src/bison.s1:
10229 Use malloc, if using alloca is troublesome.
10230 (YYSTACK_USE_ALLOCA): New flag macro.
10231 Define it for some systems and compilers.
10232 (YYSTACK_ALLOC): New macro.
10233 (yyparse): Use YYSTACK_ALLOC to allocate stack.
10234 If it was malloc'd, free it.
10235
10236 1997-05-17 Richard Stallman <rms@gnu.org>
10237
10238 * bison.simple:
10239 Use malloc, if using alloca is troublesome.
10240 (YYSTACK_USE_ALLOCA): New flag macro.
10241 Define it for some systems and compilers.
10242 (YYSTACK_ALLOC): New macro.
10243 (yyparse): Use YYSTACK_ALLOC to allocate stack.
10244 If it was malloc'd, free it.
10245
10246 1997-04-23 Richard Stallman <rms@gnu.org>
10247
10248 * src/bison.s1:
10249 (alloca) [__hpux]: Always define as __builtin_alloca.
10250
10251 1997-04-23 Richard Stallman <rms@gnu.org>
10252
10253 * bison.simple:
10254 (alloca) [__hpux]: Always define as __builtin_alloca.
10255
10256 1997-04-22 Richard Stallman <rms@gnu.org>
10257
10258 * src/bison.s1:
10259 [__hpux]: Include alloca.h (right for HPUX 10)
10260 instead of declaring alloca (right for HPUX 9).
10261
10262 * src/bison.s1 (__yy_memcpy):
10263 Declare arg `count' as unsigned int.
10264 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
10265
10266 1997-04-22 Richard Stallman <rms@gnu.org>
10267
10268 * bison.simple:
10269 [__hpux]: Include alloca.h (right for HPUX 10)
10270 instead of declaring alloca (right for HPUX 9).
10271
10272 * bison.simple (__yy_memcpy):
10273 Declare arg `count' as unsigned int.
10274 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
10275
10276 1997-01-03 Richard Stallman <rms@gnu.org>
10277
10278 * src/allocate.c: [__STDC__ or _MSC_VER]:
10279 Declare calloc and realloc to return void *.
10280
10281 1997-01-02 Richard Stallman <rms@gnu.org>
10282
10283 * src/system.h:
10284 [_MSC_VER]: Include stdlib.h and process.h.
10285 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
10286
10287 * src/main.c (main): Return FAILURE as a value.
10288 (printable_version): Declare arg as int, not char.
10289
10290 1997-01-02 Richard Stallman <rms@gnu.org>
10291
10292 * Makefile.in (dist):
10293 Explicitly check for symlinks, and copy them.
10294
10295 1996-12-19 Richard Stallman <rms@gnu.org>
10296
10297 * src/files.c:
10298 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
10299
10300 1996-12-18 Paul Eggert <eggert@gnu.org>
10301
10302 * src/bison.s1 (yyparse):
10303 If __GNUC__ and YYPARSE_PARAM are both defined,
10304 declare yyparse to have a void * argument.
10305
10306 1996-12-18 Paul Eggert <eggert@gnu.org>
10307
10308 * bison.simple (yyparse):
10309 If __GNUC__ and YYPARSE_PARAM are both defined,
10310 declare yyparse to have a void * argument.
10311
10312 1996-12-17 Richard Stallman <rms@gnu.org>
10313
10314 * src/reduce.c (nbits): Add some casts.
10315
10316 1996-08-12 Richard Stallman <rms@gnu.org>
10317
10318 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
10319
10320 1996-08-12 Richard Stallman <rms@gnu.org>
10321
10322 * bison.simple: Test _MSDOS as well as _MSDOS_.
10323
10324 1996-07-31 Richard Stallman <rms@gnu.org>
10325
10326 * src/bison.s1:
10327 [__sun && __i386]: Include alloca.h.
10328
10329 1996-07-31 Richard Stallman <rms@gnu.org>
10330
10331 * bison.simple:
10332 [__sun && __i386]: Include alloca.h.
10333
10334 1996-07-30 Richard Stallman <rms@gnu.org>
10335
10336 * src/bison.s1: Comment change.
10337
10338 * src/bison.s1: Test _MSDOS_, not MSDOS.
10339
10340 1996-07-30 Richard Stallman <rms@gnu.org>
10341
10342 * bison.simple: Comment change.
10343
10344 * bison.simple: Test _MSDOS_, not MSDOS.
10345
10346 1996-06-01 Richard Stallman <rms@gnu.org>
10347
10348 * 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:
10349 Insert `_' macro around many string constants.
10350
10351 * src/main.c:
10352 Insert `_' macro around many string constants.
10353
10354 (main): Call setlocale, bindtextdomain and textdomain.
10355
10356 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
10357 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
10358 [ENABLE_NLS]: Include libintl.h.
10359 [ENABLE_NLS] (gettext): Define.
10360 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
10361 (N_, PACKAGE, LOCALEDIR): New macros.
10362
10363 1996-06-01 Richard Stallman <rms@gnu.org>
10364
10365 * POTFILES.in: New file.
10366
10367 * Makefile.in (allocate.o):
10368 Define target explicitly.
10369
10370 * Makefile.in (CFLAGS): Set to @CFLAGS@.
10371 (LDFLAGS): Set to @LDFLAGS@.
10372 (configure): Run autoconf only if preceding `cd' succeeds.
10373 (bison.s1): Redirect output to temporary file then move the
10374 temporary to the target, rather than redirecting directly to bison.s1.
10375 (clean): Remove config.status and config.log.
10376 (distclean): Don't remove config.status here.
10377
10378 1996-05-12 Richard Stallman <rms@gnu.org>
10379
10380 * src/bison.s1:
10381 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
10382
10383 1996-05-12 Richard Stallman <rms@gnu.org>
10384
10385 * bison.simple:
10386 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
10387
10388 1996-05-11 Richard Stallman <rms@gnu.org>
10389
10390 * src/bison.s1 (__yy_memcpy):
10391 Really reorder the args, as was supposedly done on Feb 14 1995.
10392 (yyparse): Calls changed accordingly.
10393
10394 1996-05-11 Richard Stallman <rms@gnu.org>
10395
10396 * Makefile.in (dist): Don't use $(srcdir).
10397
10398 * bison.simple (__yy_memcpy):
10399 Really reorder the args, as was supposedly done on Feb 14 1995.
10400 (yyparse): Calls changed accordingly.
10401
10402 1996-01-27 Richard Stallman <rms@gnu.org>
10403
10404 * src/output.c (output_rule_data):
10405 Test YYERROR_VERBOSE in the conditional
10406 around the definition of ttyname.
10407
10408 1995-12-29 Richard Stallman <rms@gnu.org>
10409
10410 * src/bison.s1:
10411 Fix line numbers in #line commands.
10412
10413 1995-12-29 Richard Stallman <rms@gnu.org>
10414
10415 * bison.simple:
10416 Fix line numbers in #line commands.
10417
10418 1995-12-27 Richard Stallman <rms@gnu.org>
10419
10420 * src/bison.s1 (YYPARSE_PARAM_DECL):
10421 In C++, make it always null.
10422 (YYPARSE_PARAM_ARG): New macro.
10423 (yyparse): Use YYPARSE_PARAM_ARG.
10424
10425 1995-12-27 Richard Stallman <rms@gnu.org>
10426
10427 * bison.simple (YYPARSE_PARAM_DECL):
10428 In C++, make it always null.
10429 (YYPARSE_PARAM_ARG): New macro.
10430 (yyparse): Use YYPARSE_PARAM_ARG.
10431
10432 1995-11-29 Richard Stallman <rms@gnu.org>
10433
10434 * doc/bison.texinfo:
10435 Describe literal string tokens, %raw, %no_lines, %token_table.
10436
10437 1995-11-29 Daniel Hagerty <hag@gnu.org>
10438
10439 * doc/bison.texinfo: Fixed update date
10440
10441 1995-10-16 Richard Stallman <rms@gnu.org>
10442
10443 * src/version.c: Version 1.25.
10444
10445 1995-10-16 Richard Stallman <rms@gnu.org>
10446
10447 * NEWS: *** empty log message ***
10448
10449 1995-10-16 Richard Stallman <rms@gnu.org>
10450
10451 * doc/bison.1, doc/bison.rnh:
10452 Add new options.
10453
10454 1995-10-15 Richard Stallman <rms@gnu.org>
10455
10456 * src/vmsgetargs.c, src/getargs.c:
10457 Added -n, -k, and -raw switches.
10458 (noparserflag, toknumflag, rawtoknumflag): New variables.
10459
10460 * src/symtab.h (SALIAS):
10461 New #define for adding aliases to %token.
10462 (struct bucket): Added `alias' field.
10463
10464 * src/reduce.c (reduce_grammar):
10465 Revise error message.
10466 (print_notices): Remove final `.' from error message.
10467
10468 * src/reader.c (reader_output_yylsp):
10469 New function.
10470 (readgram): Use `#if 0' around code that accepted %command
10471 inside grammar rules: The documentation doesn't allow it,
10472 and it will fail since the %command processors scan for the next %.
10473 (parse_token_decl): Extended the %token
10474 declaration to allow a multi-character symbol as an alias.
10475 (parse_thong_decl): New function.
10476 (read_declarations): Added %thong declarations.
10477 (read_declarations): Handle NOOP to deal with allowing
10478 % declarations as another means to specify the flags.
10479 (readgram): Allow %prec prior to semantics embedded in a rule.
10480 (skip_to_char, read_declarations, copy_definition)
10481 (parse_token_decl, parse_start_decl, parse_type_decl)
10482 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
10483 (get_type_name, copy_guard, copy_action, readgram)
10484 (get_type, packsymbols): Revised most error messages.
10485 Changed `fatal' to `warnxxx' to avoid aborting for error.
10486 Revised and use multiple warnxxx functions to avoid using VARARGS1.
10487 (read_declarations): Improve the error message for
10488 an invalid character. Do not abort.
10489 (read_declarations, copy_guard, copy_action): Use
10490 printable_version to avoid unprintable characters in printed output.
10491 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
10492 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
10493 Allow the type of a non-terminal can be given
10494 more than once, as long as all specifications give the same type.
10495
10496 * src/output.c:
10497 (output_headers, output_trailers, output, output_gram)
10498 (output_rule_data): Implement noparserflag variable.
10499 Implement toknumflag variable.
10500 (output): Call reader_output_yylsp to output LTYPESTR.
10501
10502 * src/main.c (main):
10503 If reader sees an error, don't process the grammar.
10504 (fatals): Updated to not use VARARGS1.
10505 (printable_version, int_to_string, warn, warni, warns, warnss)
10506 (warnsss): New error reporting functions. Avoid abort for error.
10507
10508 * src/lex.h:
10509 Added THONG and NOOP for alias processing.
10510 Added SETOPT for the new code that allows setting options with %flags.
10511
10512 * src/lex.c:
10513 Include getopt.h. Add some extern decls.
10514 (safegetc): New function to deal with EOF gracefully.
10515 (literalchar); new function to deal with reading \ escapes.
10516 (lex): Use literalchar.
10517 (lex): Implemented "..." tokens.
10518 (literalchar, lex, parse_percent_token): Made tokenbuffer
10519 always contain the token. This includes growing the token
10520 buffer while reading an integer.
10521 (parse_percent_token): Replaced if-else statement with percent_table.
10522 (parse_percent_token): Added % declarations as another
10523 way to specify the flags -n, -l, and -r. Also added hooks for
10524 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
10525 major changes to files.c.
10526 (lex) Retain in the incoming stream a character following
10527 an incorrect '/'.
10528 (skip_white_space, lex): Revised most error messages
10529 and changed fatal to warn to avoid aborting.
10530 (percent_table): Added %thong declarations.
10531
10532 * src/gram.h: Comment changes.
10533
10534 * src/files.c (openfiles, open_extra_files, done):
10535 Add faction flag
10536 and actfile file. Handle noparserflag. Both for -n switch.
10537
10538 * src/conflicts.c (resolve_sr_conflict):
10539 Remove use of alloca.
10540
10541 1995-06-01 Jim Meyering <meyering@gnu.org>
10542
10543 * doc/bison.texinfo: *** empty log message ***
10544
10545 1995-05-06 Richard Stallman <rms@gnu.org>
10546
10547 * src/bison.s1: Comment change.
10548
10549 1995-05-06 Richard Stallman <rms@gnu.org>
10550
10551 * bison.simple: Comment change.
10552
10553 1995-05-03 Richard Stallman <rms@gnu.org>
10554
10555 * src/version.c: Version now 1.24.
10556
10557 * src/bison.s1: Change distribution terms.
10558
10559 * src/version.c: Version now 1.23.
10560
10561 1995-05-03 Richard Stallman <rms@gnu.org>
10562
10563 * doc/bison.texinfo:
10564 Rewrite "Conditions for Using Bison".
10565 Update version to 1.24.
10566
10567 1995-05-03 Richard Stallman <rms@gnu.org>
10568
10569 * bison.simple: Change distribution terms.
10570
10571 1995-02-23 Richard Stallman <rms@gnu.org>
10572
10573 * src/files.c: Test __VMS_POSIX as well as VMS.
10574
10575 1995-02-14 Jim Meyering <meyering@gnu.org>
10576
10577 * src/bison.s1 (__yy_memcpy):
10578 Renamed from __yy_bcopy to avoid
10579 confusion. Reverse FROM and TO arguments to be consistent with
10580 those of memcpy.
10581
10582 1995-02-14 Jim Meyering <meyering@gnu.org>
10583
10584 * bison.simple (__yy_memcpy):
10585 Renamed from __yy_bcopy to avoid
10586 confusion. Reverse FROM and TO arguments to be consistent with
10587 those of memcpy.
10588
10589 1994-11-10 David J. MacKenzie <djm@gnu.org>
10590
10591 * NEWS: reformat
10592
10593 * NEWS: New file.
10594
10595 * Makefile.in (DISTFILES): Include NEWS.
10596
10597 * Makefile.in (DISTFILES):
10598 Include install-sh, not install.sh.
10599
10600 * configure.in: Update to Autoconf v2 macro names.
10601
10602 1994-10-05 David J. MacKenzie <djm@gnu.org>
10603
10604 * Makefile.in: fix typo
10605
10606 * Makefile.in (prefix, exec_prefix):
10607 Let configure set them.
10608
10609 1994-09-28 David J. MacKenzie <djm@gnu.org>
10610
10611 * Makefile.in: Set datadir to $(prefix)/share.
10612
10613 1994-09-15 Richard Stallman <rms@gnu.org>
10614
10615 * src/bison.s1:
10616 Update copyright notice and GPL version.
10617
10618 1994-09-15 Richard Stallman <rms@gnu.org>
10619
10620 * bison.simple:
10621 Update copyright notice and GPL version.
10622
10623 1994-07-12 Richard Stallman <rms@gnu.org>
10624
10625 * src/reduce.c, src/reader.c:
10626 entered into RCS
10627
10628 1994-05-05 David J. MacKenzie <djm@gnu.org>
10629
10630 * Makefile.in: entered into RCS
10631
10632 1994-03-26 Richard Stallman <rms@gnu.org>
10633
10634 * src/bison.s1: entered into RCS
10635
10636 1994-03-26 Richard Stallman <rms@gnu.org>
10637
10638 * bison.simple: entered into RCS
10639
10640 1994-03-25 Richard Stallman <rms@gnu.org>
10641
10642 * src/main.c: entered into RCS
10643
10644 1994-03-24 Richard Stallman <rms@gnu.org>
10645
10646 * src/conflicts.c: entered into RCS
10647
10648 1994-01-02 Richard Stallman <rms@gnu.org>
10649
10650 * Makefile.in: *** empty log message ***
10651
10652 1993-11-21 Richard Stallman <rms@gnu.org>
10653
10654 * src/bison.s1: *** empty log message ***
10655
10656 1993-11-21 Richard Stallman <rms@gnu.org>
10657
10658 * doc/bison.texinfo: entered into RCS
10659
10660 * doc/bison.texinfo: *** empty log message ***
10661
10662 1993-11-21 Richard Stallman <rms@gnu.org>
10663
10664 * bison.simple: *** empty log message ***
10665
10666 1993-10-25 David J. MacKenzie <djm@gnu.org>
10667
10668 * doc/bison.texinfo: *** empty log message ***
10669
10670 1993-10-19 Richard Stallman <rms@gnu.org>
10671
10672 * src/bison.s1: *** empty log message ***
10673
10674 1993-10-19 Richard Stallman <rms@gnu.org>
10675
10676 * bison.simple: *** empty log message ***
10677
10678 1993-10-14 Richard Stallman <rms@gnu.org>
10679
10680 * src/bison.s1: *** empty log message ***
10681
10682 1993-10-14 Richard Stallman <rms@gnu.org>
10683
10684 * bison.simple: *** empty log message ***
10685
10686 1993-09-14 David J. MacKenzie <djm@gnu.org>
10687
10688 * doc/bison.texinfo: *** empty log message ***
10689
10690 1993-09-13 Noah Friedman <friedman@gnu.org>
10691
10692 * Makefile.in: *** empty log message ***
10693
10694 1993-09-10 Richard Stallman <rms@gnu.org>
10695
10696 * src/conflicts.c: *** empty log message ***
10697
10698 * src/system.h: entered into RCS
10699
10700 1993-09-10 Richard Stallman <rms@gnu.org>
10701
10702 * doc/bison.1: entered into RCS
10703
10704 1993-09-06 Noah Friedman <friedman@gnu.org>
10705
10706 * src/version.c: entered into RCS
10707
10708 1993-09-06 Noah Friedman <friedman@gnu.org>
10709
10710 * Makefile.in: *** empty log message ***
10711
10712 1993-07-30 David J. MacKenzie <djm@gnu.org>
10713
10714 * Makefile.in: *** empty log message ***
10715
10716 1993-07-24 Richard Stallman <rms@gnu.org>
10717
10718 * src/bison.s1: *** empty log message ***
10719
10720 1993-07-24 Richard Stallman <rms@gnu.org>
10721
10722 * bison.simple: *** empty log message ***
10723
10724 1993-07-08 David J. MacKenzie <djm@gnu.org>
10725
10726 * Makefile.in: *** empty log message ***
10727
10728 1993-07-04 Richard Stallman <rms@gnu.org>
10729
10730 * src/bison.s1: *** empty log message ***
10731
10732 1993-07-04 Richard Stallman <rms@gnu.org>
10733
10734 * bison.simple: *** empty log message ***
10735
10736 1993-06-26 David J. MacKenzie <djm@gnu.org>
10737
10738 * src/getargs.c: entered into RCS
10739
10740 1993-06-26 David J. MacKenzie <djm@gnu.org>
10741
10742 * doc/bison.texinfo: *** empty log message ***
10743
10744 * doc/bison.1: New file.
10745
10746 1993-06-25 Richard Stallman <rms@gnu.org>
10747
10748 * src/getargs.c: New file.
10749
10750 1993-06-16 Richard Stallman <rms@gnu.org>
10751
10752 * src/bison.s1: *** empty log message ***
10753
10754 1993-06-16 Richard Stallman <rms@gnu.org>
10755
10756 * bison.simple: *** empty log message ***
10757
10758 1993-06-03 Richard Stallman <rms@gnu.org>
10759
10760 * src/bison.s1: New file.
10761
10762 1993-06-03 Richard Stallman <rms@gnu.org>
10763
10764 * doc/bison.texinfo: *** empty log message ***
10765
10766 1993-06-03 Richard Stallman <rms@gnu.org>
10767
10768 * bison.simple: New file.
10769
10770 1993-05-19 Richard Stallman <rms@gnu.org>
10771
10772 * doc/bison.texinfo: New file.
10773
10774 1993-05-07 Noah Friedman <friedman@gnu.org>
10775
10776 * Makefile.in: *** empty log message ***
10777
10778 1993-04-28 Noah Friedman <friedman@gnu.org>
10779
10780 * src/reader.c: *** empty log message ***
10781
10782 1993-04-23 Noah Friedman <friedman@gnu.org>
10783
10784 * src/alloc.h: entered into RCS
10785
10786 1993-04-20 David J. MacKenzie <djm@gnu.org>
10787
10788 * src/version.c: *** empty log message ***
10789
10790 * src/files.c, src/allocate.c:
10791 entered into RCS
10792
10793 * src/reader.c: *** empty log message ***
10794
10795 * src/lex.c: entered into RCS
10796
10797 * src/conflicts.c: New file.
10798
10799 * src/symtab.c: entered into RCS
10800
10801 * src/alloc.h: New file.
10802
10803 * src/LR0.c: entered into RCS
10804
10805 1993-04-18 Noah Friedman <friedman@gnu.org>
10806
10807 * src/reader.c: New file.
10808
10809 * src/version.c: *** empty log message ***
10810
10811 1993-04-18 Noah Friedman <friedman@gnu.org>
10812
10813 * Makefile.in: *** empty log message ***
10814
10815 1993-04-17 Noah Friedman <friedman@gnu.org>
10816
10817 * Makefile.in: *** empty log message ***
10818
10819 1993-04-15 Richard Stallman <rms@gnu.org>
10820
10821 * src/main.c, src/files.c:
10822 New file.
10823
10824 1993-04-15 Noah Friedman <friedman@gnu.org>
10825
10826 * configure.in: entered into RCS
10827
10828 * configure.in: *** empty log message ***
10829
10830 * configure.in: New file.
10831
10832 1993-04-14 Richard Stallman <rms@gnu.org>
10833
10834 * Makefile.in: New file.
10835
10836 1993-04-13 Richard Stallman <rms@gnu.org>
10837
10838 * src/version.c: New file.
10839
10840 1993-03-25 Richard Stallman <rms@gnu.org>
10841
10842 * src/output.c: entered into RCS
10843
10844 1992-09-25 Richard Stallman <rms@gnu.org>
10845
10846 * configure.bat: entered into RCS
10847
10848 1992-06-22 Richard Stallman <rms@gnu.org>
10849
10850 * src/vmsgetargs.c: entered into RCS
10851
10852 1992-06-22 Richard Stallman <rms@gnu.org>
10853
10854 * doc/bison.rnh: entered into RCS
10855
10856 1992-04-20 David J. MacKenzie <djm@gnu.org>
10857
10858 * README: entered into RCS
10859
10860 1992-01-22 Richard Stallman <rms@gnu.org>
10861
10862 * src/machine.h: entered into RCS
10863
10864 1991-12-21 Richard Stallman <rms@gnu.org>
10865
10866 * src/lalr.c, src/closure.c:
10867 entered into RCS
10868
10869 1991-12-20 Richard Stallman <rms@gnu.org>
10870
10871 * src/state.h: entered into RCS
10872
10873 1991-12-18 Richard Stallman <rms@gnu.org>
10874
10875 * src/print.c, src/nullable.c, src/derives.c:
10876 entered into RCS
10877
10878 1991-11-03 David J. MacKenzie <djm@gnu.org>
10879
10880 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
10881 entered into RCS
10882
10883 1988-09-09 Richard Stallman <rms@gnu.org>
10884
10885 * src/bison.hairy: entered into RCS
10886
10887 1987-12-16 Richard Stallman <rms@gnu.org>
10888
10889 * REFERENCES: entered into RCS
10890
10891 -----
10892
10893 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
10894 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
10895
10896 This file is part of Bison, the GNU Compiler Compiler.
10897
10898 Bison is free software; you can redistribute it and/or modify
10899 it under the terms of the GNU General Public License as published by
10900 the Free Software Foundation; either version 2, or (at your option)
10901 any later version.
10902
10903 Bison is distributed in the hope that it will be useful,
10904 but WITHOUT ANY WARRANTY; without even the implied warranty of
10905 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10906 GNU General Public License for more details.
10907
10908 You should have received a copy of the GNU General Public License
10909 along with Bison; see the file COPYING. If not, write to
10910 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
10911 Boston, MA 02111-1307, USA.