]> git.saurik.com Git - bison.git/blob - ChangeLog
* src/scan-gram.l: When it starts with `%', complain about the
[bison.git] / ChangeLog
1 2002-11-05 Akim Demaille <akim@epita.fr>
2
3 * src/scan-gram.l: When it starts with `%', complain about the
4 whole directive, not just that `invalid character: %'.
5
6 2002-11-04 Akim Demaille <akim@epita.fr>
7
8 * Makefile.maint: Update from Autoconf.
9 (update, cvs-update, po-update, do-po-update): New.
10
11 2002-11-04 Akim Demaille <akim@epita.fr>
12
13 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
14 and yyerror.
15 Have yyerror `use' its arguments.
16 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
17 returns true when location & yacc & pure & parse-param.
18 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
19
20 2002-11-04 Akim Demaille <akim@epita.fr>
21
22 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
23 clashes.
24 * src/scan-gram.l: Use [\'] instead of ['] to pacify
25 font-lock-mode.
26 Use complain_at.
27 Use quote, not quote_n since LOCATION_PRINT no longer uses the
28 slot 0.
29
30 2002-11-03 Paul Eggert <eggert@twinsun.com>
31
32 * src/reader.c (get_merge_function, grammar_current_rule_check):
33 Use consistent diagnostics for reporting type name clashes.
34 Quote the types with <>, for consistency with Yacc.
35 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
36
37 2002-11-03 Akim Demaille <akim@epita.fr>
38
39 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
40 New.
41 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
42 (b4_parse_param): Remove.
43 Use b4_identification.
44 Propagate b4_pure_args where needed to pass them to yyerror.
45 * data/glr.m4 (b4_parse_param): Remove.
46 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
47 (b4_lpure_formals): New.
48 Use b4_identification.
49 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
50 b4_user_formals and b4_user_args.
51 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
52 (yyreportAmbiguity): When using a pure parser, also need
53 the location, and the parse-params.
54 Adjust callers.
55 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
56 When using a pure parser, also need the parse-params.
57 Adjust callers.
58 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
59 (%pure-parser + %parse-param) LALR and GLR parsers.
60 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
61 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
62 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
63 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
64 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
65 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
66 * doc/bison.texinfo: Untabify the whole file.
67 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
68 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
69 (Error Reporting): Adjust to these new directives.
70 Document %error-verbose, deprecate YYERROR_VERBOSE.
71
72 2002-11-03 Akim Demaille <akim@epita.fr>
73
74 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
75 AT_CHECK_CALC_GLR invocations to use % directives, instead of
76 command line options.
77 * tests/cxx-type.at: Formatting changes.
78
79 2002-11-03 Paul Eggert <eggert@twinsun.com>
80
81 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
82 to count columns correctly, and to check for invalid inputs.
83
84 Use mbsnwidth to count columns correctly. Account for tabs, too.
85 Include mbswidth.h.
86 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
87 (extend_location): New function.
88 (YY_LINES): Remove.
89
90 Handle CRLF in C code rather than in Lex code.
91 (YY_INPUT): New macro.
92 (no_cr_read): New function.
93
94 Scan UCNs, even though we don't fully handle them yet.
95 (convert_ucn_to_byte): New function.
96
97 Handle backslash-newline correctly in C code.
98 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
99 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
100 all uses changed.
101 (tag, splice): New EREs. Do not allow NUL or newline in tags.
102 Use {splice} wherever C allows backslash-newline.
103 YY_STEP after space, newline, vertical-tab.
104 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
105
106 (letter, id): Don't assume ASCII; e.g., spell out a-z.
107
108 ({int}, handle_action_dollar, handle_action_at): Check for integer
109 overflow.
110
111 (YY_STEP): Omit trailing semicolon, so that it's more like C.
112
113 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
114 as well as \000. Check for UCHAR_MAX, not 255.
115 Allow \x with an arbitrary positive number of digits, as in C.
116 Check for overflow here.
117 Allow \? and UCNs, for compatibility with C.
118
119 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
120 with quote slot used by complain_at.
121
122 * tests/input.at: Add tests for backslash-newline, m4 quotes
123 in symbols, long literals, and funny escapes in strings.
124
125 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
126 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
127 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
128 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
129 * m4/mbswidth.m4: New file, from GNU coreutils.
130
131 * doc/bison.texinfo (Grammar Outline): Document // comments.
132 (Symbols): Document that trigraphs have no special meaning in Bison,
133 nor is backslash-newline allowed.
134 (Actions): Document that trigraphs have no special meaning.
135
136 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
137 no longer used.
138
139 2002-11-02 Paul Eggert <eggert@twinsun.com>
140
141 * src/reader.c: Don't include quote.h; not needed.
142 (get_merge_function): Reword warning to be consistent with
143 type clash diagnostic in grammar_current_rule_check.
144
145 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
146 bug in trigraph handling.
147
148 * src/output.c (prepare_symbols): When printing token names,
149 escape "[" as "@<:@" and likewise for "]".
150
151 * src/system.h (errno): Remove declaration, as we are now
152 assuming C89 or better, and C89 guarantees errno.
153
154 2002-10-30 Paul Eggert <eggert@twinsun.com>
155
156 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
157 Check for close failures.
158 * src/files.h (xfclose): Return void, not int, since it always
159 returned zero.
160 * src/files.c (xfclose): Likewise. Report I/O error if ferror
161 indicates one.
162 * src/output.c (output_skeleton): Use xfclose rather than fclose
163 and ferror. xfclose now checks ferror.
164
165 * data/glr.c (YYLEFTMOST_STATE): Remove.
166 (yyreportTree): Use a stack-based leftmost state. This avoids
167 our continuing battles with bogus warnings about initializers.
168
169 2002-10-30 Akim Demaille <akim@epita.fr>
170
171 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
172 #if.
173
174 2002-10-24 Paul Eggert <eggert@twinsun.com>
175
176 Version 1.75a.
177
178 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
179 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
180 we use malloc. Don't assume 'A' through 'Z' are contiguous.
181 Don't assume strdup exists; POSIX says its an XSI extension.
182 Check for buffer overflow on input.
183
184 2002-10-24 Akim Demaille <akim@epita.fr>
185
186 * src/output.c (output_skeleton): Don't disable M4sugar comments
187 too soon: it results in comments being expanded.
188 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
189 first output.
190
191 2002-10-24 Akim Demaille <akim@epita.fr>
192
193 * data/yacc.c (m4_int_type): New.
194 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
195 char' as only yacc.c wants K&R portability.
196 * data/glr.c (yysigned_char): Remove.
197 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
198 Reported by Quoc Peyrot.
199
200 2002-10-23 Paul Eggert <eggert@twinsun.com>
201
202 * src/main.c (main): With --trace=time, report times even if a
203 non-fatal error occurs. Formerly, the times were reported in some
204 such cases but not in others.
205 * src/reader.c (reader): Just return if a complaint has been issued,
206 instead of exiting, so that 'main' can report times.
207
208 2002-10-22 Akim Demaille <akim@epita.fr>
209
210 * src/system.h: Include sys/types.
211 Reported by Bert Deknuydt.
212
213 2002-10-23 Paul Eggert <eggert@twinsun.com>
214
215 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
216 Suggested by Art Haas.
217
218 2002-10-22 Paul Eggert <eggert@twinsun.com>
219
220 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
221 decl; not needed any more.
222 * src/main.c (main): Use return to exit, undoing yesterday's change.
223 The last OS that we could find where this wouldn't work is
224 SunOS 3.5, and that's too old to worry about now.
225
226 * data/glr.c (struct yyltype): Define members even when not
227 doing locations. This is more consistent with yacc.c, and it
228 works around the following bug reports:
229 http://mail.gnu.org/pipermail/bug-bison/2002-October/001764.html
230 http://mail.gnu.org/pipermail/bug-bison/2002-October/001769.html
231 and I hope it also fixes this bug report:
232 http://mail.gnu.org/pipermail/bug-bison/2002-October/001748.html
233
234 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
235 @acronym consistently. Standardize on "Yacc" instead of "YACC",
236 "Algol" instead of "ALGOL". Give a bit more history about BNF.
237
238 2002-10-22 Akim Demaille <akim@epita.fr>
239
240 * data/README: New.
241
242 2002-10-21 Paul Eggert <eggert@twinsun.com>
243
244 Be consistent about 'bool'; the old code used an enum in one
245 module and an int in another, and this violates the C standard.
246 * m4/stdbool.m4: New file, from coreutils 4.5.3.
247 * configure.ac (AC_HEADER_STDBOOL): Add.
248 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
249 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
250 * src/symtab.c (hash_compare_symbol_t): Likewise.
251 * src/system.h (bool, false, true): Use a definition consistent
252 with ../lib/hash.c. All uses changed.
253
254 * src/complain.c (warning_issued): Renamed from warn_message_count,
255 so that we needn't worry about integer overflow (!).
256 Now of type bool. All uses changed.
257 (complaint_issued): Renamed from complain_message_count; likewise.
258
259 * src/main.c (main): Use exit to exit with failure.
260
261 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
262 rather than 1 and 0.
263 * src/main.c (main): Likewise.
264 * src/getargs.c (getargs): Likewise.
265 * src/reader.c (reader): Likewise.
266
267 * src/getarg.c (getargs): Remove duplicate code for
268 "Try `bison --help'".
269
270 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
271 What was that "2" for?
272
273 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
274 * src/getargs.c (usage): Likewise.
275
276 * src/getargs.c (getargs): When there are too few operands, report
277 the last one. When there are too many, report the first extra
278 one. This is how diffutils does it.
279
280 2002-10-20 Paul Eggert <eggert@twinsun.com>
281
282 Remove K&R vestiges.
283 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
284 * src/complain.c (VA_START): Remove. Assume prototypes.
285 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
286 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
287 fatal): Assume prototypes.
288 * src/complain.h: Assume prototypes.
289 * src/system.h (PARAMS): Remove.
290 Include <limits.h> unconditionally, since it's guaranteeed even
291 for a freestanding C89 compiler.
292 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
293 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
294
295 2002-10-20 Akim Demaille <akim@epita.fr>
296
297 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
298 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
299 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
300 (yyresolveStates, yyresolveAction, yyresolveStack)
301 (yyprocessOneStack): Use them.
302 (yy_reduce_print): New.
303 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
304
305 2002-10-20 Akim Demaille <akim@epita.fr>
306
307 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
308 arguments and output `void'.
309 (b4_c_function): Rename as...
310 (b4_c_function_def): this.
311 (b4_c_function_decl, b4_c_ansi_function_def)
312 (b4_c_ansi_function_decl): New.
313 Change the interpretation of the arguments: before `int, foo', now
314 `int foo, foo'.
315 * data/yacc.c (yyparse): Prototype and define thanks to these.
316 Adjust b4_c_function_def uses.
317 * data/glr.c (yyparse): Likewise, but ANSI only.
318
319 2002-10-20 Akim Demaille <akim@epita.fr>
320
321 * src/output.c (prepare): Move the definition of `tokens_number',
322 `nterms_number', `undef_token_number', `user_token_number_max'
323 to...
324 (prepare_tokens): Here.
325 (prepare_tokens): Rename as...
326 (prepare_symbols): this.
327 (prepare): Move the definition of `rules_number' to...
328 (prepare_rules): here.
329 (prepare): Move the definition of `last', `final_state_number',
330 `states_number' to...
331 (prepare_states): here.
332 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
333
334 2002-10-20 Akim Demaille <akim@epita.fr>
335
336 * src/tables.h, src/tables.c, src/output.c: Comment changes.
337
338 2002-10-20 Akim Demaille <akim@epita.fr>
339
340 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
341 * data/c.m4: here.
342
343 2002-10-20 Akim Demaille <akim@epita.fr>
344
345 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
346 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
347 `pair'.
348 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
349 `name' to...
350 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
351 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
352 These.
353
354 2002-10-19 Paul Eggert <eggert@twinsun.com>
355
356 Do not create a temporary file, as that involves security and
357 cleanup headaches. Instead, use a pair of pipes.
358 Derived from a suggestion by Florian Krohm.
359 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
360 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
361 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
362 (BISON_PREREQ_SUBPIPE): Add.
363 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
364 Add subpipe.h, subpipe.c.
365 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
366 * po/POTFILES.in: Add lib/subpipe.c.
367 * src/output.c: Include "subpipe.h".
368 (m4_invoke): Remove decl.
369 (scan_skel): New decl.
370 (output_skeleton): Use pipe rather than temporary file for m4 input.
371 Check that m4sugar.m4 is readable, to avoid deadlock.
372 Check for pipe I/O error.
373 * src/scan-skel.l (readpipe): Remove decl.
374 (scan_skel): New function, to be used in place of m4_invoke.
375 Read from stream rather than file.
376
377 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
378 float, as this generates a warning on Solaris 8 + GCC 3.2 with
379 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
380 this generates a more-accurate value anyway.
381
382 * lib/timevar.c (timervar_accumulate): Rename locals to
383 avoid confusion with similarly-named more-global.
384 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
385
386 * src/output.c (prepare): Use xstrdup to convert char const *
387 to char *, to avoid GCC warning.
388
389 2002-10-19 Akim Demaille <akim@epita.fr>
390
391 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
392 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
393 Use them to have `calc.y' ready for %pure-parser.
394 * data/yacc.c (YYLEX): Pass a yylex return type to
395 b4_c_function_call.
396
397 2002-10-19 Akim Demaille <akim@epita.fr>
398
399 Prototype support of %lex-param and %parse-param.
400
401 * src/parse-gram.y: Add the definition of the %lex-param and
402 %parse-param tokens, plus their rules.
403 Drop the `_' version of %glr-parser.
404 Add the "," token.
405 * src/scan-gram.l (INITIAL): Scan them.
406 * src/muscle_tab.c: Comment changes.
407 (muscle_insert, muscle_find): Rename `pair' as `probe'.
408 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
409 (muscle_entry_s): The `value' member is no longer const.
410 Adjust all dependencies.
411 * src/muscle_tab.c (muscle_init): Adjust: use
412 MUSCLE_INSERT_STRING.
413 Initialize the obstack earlier.
414 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
415 (muscle_pair_list_grow): New.
416 * data/c.m4 (b4_c_function_call, b4_c_args): New.
417 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
418 * tests/calc.at: Use %locations, not --locations.
419 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
420
421 2002-10-19 Akim Demaille <akim@epita.fr>
422
423 * src/getargs.c (usage): Take status as argument and exit
424 accordingly.
425 Report the traditional `Try ... --help' message when status != 0.
426 (usage, version): Don't take a FILE * as arg, it is pointless.
427 (getargs): When there is an incorrect number of arguments, make it
428 an error, and report it GNUlically thanks to `usage ()'.
429
430 2002-10-18 Paul Eggert <eggert@twinsun.com>
431
432 * data/glr.c (yyreportParseError): Don't assume that sprintf
433 yields the length of the printed string, as this is not true
434 on SunOS 4.1.4. Reported by Peter Klein.
435
436 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
437 * tests/conflicts.at (%nonassoc and eof): Likewise.
438 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
439
440 2002-10-17 Akim Demaille <akim@epita.fr>
441
442 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
443 * src/getargs.c (trace_types, trace_args): Adjust.
444 * src/reader.c (grammar_current_rule_prec_set)
445 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
446 Standardize error messages.
447 And s/@prec/%prec/!
448 (reader): Use trace_flag to enable scanner/parser debugging,
449 instead of an adhoc scheme.
450 * src/scan-gram.l: Remove trailing debugging code.
451
452 2002-10-16 Paul Eggert <eggert@twinsun.com>
453
454 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
455 MUSCLE_TAB_H.
456
457 * NEWS: Officially drop support for building Bison with K&R C,
458 since it didn't work anyway and it's not worth worrying about.
459 * Makefile.maint (wget_files): Remove ansi2knr.c.
460 (ansi2knr.c-url_prefix): Remove.
461 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
462 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
463 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
464
465 2002-10-15 Paul Eggert <eggert@twinsun.com>
466
467 Stop using the "enum_" trick for K&R-style function definitions;
468 it confused me, and I was the author! Instead, assume that people
469 who want to use K&R C compilers (when using these modules in GCC,
470 perhaps?) will run ansi2knr.
471
472 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
473 All uses of "enum_" changed to "enum ".
474 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
475 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
476
477 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
478 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
479 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
480 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
481 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
482 abitset_not, abitset_ones, abitset_or, abitset_or_and,
483 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
484 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
485 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
486 Use function prototypes; this removes the need for declaring
487 static functions simply to provide their prototypes.
488 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
489 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
490 bitset_count_, bitset_create, bitset_dump, bitset_first,
491 bitset_free, bitset_init, bitset_last, bitset_next,
492 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
493 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
494 bitset_print, bitset_release_memory, bitset_toggle_,
495 bitset_type_choose, bitset_type_get, bitset_type_name_get,
496 debug_bitset): Likewise.
497 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
498 * lib/bitset_stats.c (bitset_log_histogram_print,
499 bitset_percent_histogram_print, bitset_stats_and,
500 bitset_stats_and_cmp, bitset_stats_and_or,
501 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
502 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
503 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
504 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
505 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
506 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
507 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
508 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
509 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
510 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
511 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
512 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
513 bitset_stats_zero): Likewise.
514 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
515 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
516 bitsetv_dump, debug_bitsetv): Likewise.
517 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
518 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
519 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
520 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
521 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
522 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
523 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
524 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
525 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
526 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
527 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
528 Likewise.
529 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
530 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
531 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
532 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
533 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
534 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
535 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
536 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
537 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
538 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
539 lbitset_xor_cmp, lbitset_zero): Likewise.
540
541 2002-10-14 Akim Demaille <akim@epita.fr>
542
543 Version 1.75.
544
545 2002-10-14 Akim Demaille <akim@epita.fr>
546
547 * tests/Makefile.am (maintainer-check-posix): New.
548
549 2002-10-14 Akim Demaille <akim@epita.fr>
550
551 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
552 member.
553
554 2002-10-14 Akim Demaille <akim@epita.fr>
555
556 * src/tables.c (table_ninf_remap): base -> tab.
557 Reported by Matt Rosing.
558
559 2002-10-14 Paul Eggert <eggert@twinsun.com>
560
561 * tests/action.at, tests/calc.at, tests/conflicts.at,
562 tests/cxx-type.at, tests/headers.at, tests/input.at,
563 tests/regression.at, tests/synclines.at, tests/torture.at:
564 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
565 so that the tests still work even if POSIXLY_CORRECT is set.
566 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
567
568 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
569 for portability to K&R hosts. Fix typo: signed char is guaranteed
570 only to 127, not to 128.
571 * data/glr.c (yysigned_char): New type.
572 * data/yacc.c (yysigned_char): Likewise.
573 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
574
575 2002-10-13 Paul Eggert <eggert@twinsun.com>
576
577 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
578 true due to limited range of data type" warning from GCC.
579
580 * data/c.m4 (b4_token_defines): Protect against double-inclusion
581 by wrapping enum yytokentype's definition inside #ifndef
582 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
583
584 2002-10-13 Akim Demaille <akim@epita.fr>
585
586 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
587 Un yy- yyrhs to avoid the name clash with the global YYRHS.
588
589 2002-10-13 Akim Demaille <akim@epita.fr>
590
591 * Makefile.maint: Update from Autoconf 2.54.
592 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
593
594 2002-10-13 Akim Demaille <akim@epita.fr>
595
596 * src/print.c (print_state): Separate the list of solved conflicts
597 from the other items.
598 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
599
600 2002-10-13 Akim Demaille <akim@epita.fr>
601
602 Let nondeterministic skeletons be usable with deterministic
603 tables.
604
605 With the patch, GAWK compiled by GCC without -O2 passes its test
606 suite using a GLR parser driven by LALR tables. It fails with -O2
607 because `struct stat' gives two different answers on my machine:
608 88 (definition of an auto var) and later 96 (memset on this var).
609 Hence the stack is badly corrumpted. The headers inclusion is to
610 blame: if I move the awk.h inclusion before GLR's system header
611 inclusion, the two struct stat have the same size.
612
613 * src/tables.c (pack_table): Always create conflict_table.
614 (token_actions): Always create conflict_list.
615 * data/glr.c (YYFLAG): Remove, unused.
616
617 2002-10-13 Akim Demaille <akim@epita.fr>
618
619 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
620 (O0FLAGS): New.
621 (VALGRIND, GXX): New.
622 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
623 * tests/bison.in: Run $PREBISON a pre-command.
624 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
625 (maintainer-check-g++): New.
626 * Makefile.am (maintainer-check): New.
627
628 2002-10-13 Akim Demaille <akim@epita.fr>
629
630 * data/glr.c: Formatting changes.
631 Tweak some trace messages to match yacc.c's.
632
633 2002-10-13 Akim Demaille <akim@epita.fr>
634
635 GLR parsers sometimes raise parse errors instead of performing the
636 default reduction.
637 Reported by Charles-Henry de Boysson.
638
639 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
640 check the length of the traces when %glr.
641 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
642 GLR's traces.
643 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
644 Test GLR parsers.
645 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
646 (yyltype): Remove the yy prefix from the member names.
647 (yytable): Complete its comment.
648 (yygetLRActions): Map error action number from YYTABLE from
649 YYTABLE_NINF to 0.
650 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
651 (which was a bug: it should have been YYTABEL_NINF, and yet it was
652 not satisfying as we could compare an YYACTION computed from
653 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
654 only value for error actions.
655 (yyreportParseError): In verbose parse error messages, don't issue
656 `error' in the list of expected tokens.
657 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
658 next action to perform to match glr.c's decoding.
659 (yytable): Complete its comment.
660
661 2002-10-13 Paul Eggert <eggert@twinsun.com>
662
663 Fix problem reported by Henrik Grubbstroem in
664 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001670.html>:
665 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
666 because the Bison parser reads the second action before reducing
667 the first one.
668 * src/scan-gram.l (rule_length): New static var.
669 Use it to keep track of the rule length in the scanner, since
670 we can't expect the parser to be in lock-step sync with the scanner.
671 (handle_action_dollar, handle_action_at): Use this var.
672 * tests/actions.at (Exotic Dollars): Test for the problem.
673
674 2002-10-12 Paul Eggert <eggert@twinsun.com>
675
676 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
677 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
678 Include <sys/time.h> when checking for clock_t and struct tms.
679 Use same include order as source.
680 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
681 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001674.html>.
682
683 * lib/timevar.c: Update copyright date and clarify comments.
684 (get_time) [IN_GCC]: Keep the GCC version for reference.
685
686 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
687 GCC version as of today, then merge Bison's changes.
688 Change "GCC" to "Bison" in copyright notice. timevar.def's
689 author is Akim, so change that too.
690
691 * src/reader.c (grammar_current_rule_check):
692 Don't worry about the default action if $$ is untyped.
693 Prevents bogus warnings reported by Jim Gifford in
694 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001673.html>.
695
696 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
697 * data/glr.c, data/lalr1.cc, data/yacc.c:
698 Output token definitions before the first part of user declarations.
699 Fixes compatibility problem reported by Jim Gifford for kbd in
700 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001672.html>.
701
702 2002-10-11 Paul Eggert <eggert@twinsun.com>
703
704 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
705 (yyparse): here. This undoes some of the 2002-07-25 change.
706 Compatibility problem reported by Ralf S. Engelschall with
707 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
708
709 2002-10-11 Akim Demaille <akim@epita.fr>
710
711 * tests/regression.at Characters Escapes): New.
712 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
713 characters.
714 Reported by Jan Nieuwenhuizen.
715
716 2002-10-11 Akim Demaille <akim@epita.fr>
717
718 * po/id.po: New.
719
720 2002-10-10 Paul Eggert <eggert@twinsun.com>
721
722 Portability fixes for bitsets; this also avoids several GCC
723 warnings.
724
725 * lib/abitset.c: Include <stddef.h>, for offsetof.
726 * lib/lbitset.c: Likewise.
727
728 * lib/abitset.c (abitset_bytes): Return a size that is aligned
729 properly for vectors of objects. Do not assume that adding a
730 header size to a multiple of a word size yields a value that is
731 properly aligned for the whole union.
732 * lib/bitsetv.c (bitsetv_alloc): Likewise.
733
734 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
735 unique names for structures.
736 * lib/ebitset.c (ebitset_bytes): Likewise.
737 * lib/lbitset.c (lbitset_bytes): Likewise.
738
739 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
740 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
741 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
742 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
743 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
744 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
745 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
746 to improve the type-checking that GCC can do.
747 * lib/bitset.c (bitset_op4_cmp): Likewise.
748 * lib/bitset_stats.c (bitset_stats_count,
749 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
750 bitset_stats_copy, bitset_stats_disjoint_p,
751 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
752 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
753 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
754 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
755 bitset_stats_and_or_cmp, bitset_stats_andn_or,
756 bitset_stats_andn_or_cmp, bitset_stats_or_and,
757 bitset_stats_or_and_cmp): Likewise.
758 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
759 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
760 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
761 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
762
763 * lib/abitset.h: Include bitset.h, not bbitset.h.
764 * lib/ebitset.h: Likewise.
765 * lib/lbitset.h: Likewise.
766
767 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
768 All instances of parameters of type enum bitset_opts are now of
769 type enum_bitset_opts, to conform to the C Standard, and similarly
770 for enum_bitset_type.
771 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
772 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
773
774 Do not use "struct bitset_struct" to mean different things in
775 different modules. Not only is this confusing, it violates
776 the C Standard, which requires that structure types in different
777 modules must be compatible if one is to be passed to the other.
778 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
779 All instances of "struct bitset_struct *" replaced with "bitset".
780 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
781 (union bitset_union, struct abitset_struct, struct ebitset_struct,
782 struct lbitset_struct, struct bitset_stats_struct): New types.
783 All uses of struct bitset_struct changed to union bitset_union,
784 etc.
785 * lib/abitset.c (struct abitset_struct, abitset,
786 struct bitset_struct): Remove.
787 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
788 struct bitset_struct): Remove.
789 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
790 bitset_struct): Remove.
791 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
792 Likewise.
793
794 Do not call a function of type T using a call that assumes the
795 function is of a different type U. Standard C requires that a
796 function must be called with a type that is compatible with its
797 definition.
798 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
799 New decls.
800 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
801 New functions.
802 * lib/ebitset.c (PFV): Remove.
803 * lib/lbitset.c (PFV): Likewise.
804 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
805 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
806 decls.
807 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
808 (ebitset_vtable): Use them.
809 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
810 lbitset_xor): New functions.
811 (lbitset_vtable): Use them.
812
813 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
814 Declare.
815
816 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
817 GCC warning.
818 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
819 Use offsetof, for simplicity.
820
821 2002-10-06 Paul Eggert <eggert@twinsun.com>
822
823 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
824 the same width as int. This reapplies a hunk of the 2002-08-12 patch
825 <http://mail.gnu.org/pipermail/bison-patches/2002-August/001111.html>,
826 which was inadvertently undone by the 2002-09-30 patch.
827 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
828 the same width as int.
829
830 2002-10-04 Paul Eggert <eggert@twinsun.com>
831
832 Version 1.50.
833
834 * configure.ac (AC_INIT), NEWS: Increment version number.
835
836 * doc/bison.texinfo: Minor spelling, grammar, and white space
837 fixes.
838 (Symbols): Mention that any negative value returned from yylex
839 signifies end-of-input. Warn about negative chars. Mention
840 the portable Standard C character set.
841
842 The GNU coding standard says CFLAGS and YFLAGS are reserved
843 for the installer to set.
844 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
845 * src/Makefile.am (AM_CFLAGS): Likewise.
846 (AM_YFLAGS): Renamed from YFLAGS.
847
848 Fix some MAX and MIN problems.
849 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
850 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
851 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
852 * src/reader.c (reader): Use it.
853
854 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
855 POSIX 1003.1-2001 has removed fgrep.
856
857 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
858
859 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
860 interpreted as signed.
861 * lib/ebitset.c (ebitset_list): Fix bug.
862
863 2002-10-01 Paul Eggert <eggert@twinsun.com>
864
865 More fixes for 64-bit hosts and large bitsets.
866
867 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
868 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
869 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
870 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
871 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
872 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
873 bitset_count_): Likewise.
874 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
875 bitset_first, bitset_last): Likewise.
876 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
877 bitset_stats_list_reverse, bitset_stats_size,
878 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
879 Likewise.
880 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
881 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
882 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
883 bitsetv_reflexive_transitive_closure): Likewise.
884 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
885 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
886 Likewise.
887 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
888 Likewise.
889
890 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
891 Use size_t, not unsigned int, to count bytes.
892 * lib/abitset.h (abitset_bytes): Likewise.
893 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
894 Likewise.
895 * lib/bitset.h (bitset_bytes): Likewise.
896 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
897 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
898 * lib/bitsetv.c (bitsetv_alloc): Likewise.
899 * lib/ebitset.c (ebitset_bytes): Likewise.
900 * lib/ebitset.h (ebitset_bytes): Likewise.
901 * lib/lbitset.c (lbitset_bytes): Likewise.
902 * lib/lbitset.h (lbitset_bytes): Likewise.
903
904 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
905 abitset_subset_p, abitset_disjoint_p, abitset_and,
906 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
907 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
908 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
909 abitset_or_and, abitset_or_and_cmp):
910 Use bitset_windex instead of unsigned int.
911 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
912 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
913 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
914 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
915 Likewise.
916 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
917
918 * lib/bitset.c (bitset_print):
919 Use proper printf formats for widths of integer types.
920 * lib/bitset_stats.c (bitset_percent_histogram_print,
921 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
922 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
923 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
924 * lib/lbitset.c (lbitset_bytes): Likewise.
925
926 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
927 BITSET_SIZE_MAX): New macros.
928 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
929 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
930 to BITSET_WINDEX_MAX.
931
932 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
933 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
934 since we now return the bitset_bindex type (not int).
935
936 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
937 when computing sizes.
938 * lib/ebitset.c (ebitset_elts_grow): Likewise.
939
940 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
941 and avoid cast to unsigned.
942
943 2002-09-30 Akim Demaille <akim@epita.fr>
944
945 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
946 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
947 Updates from Michael Hayes.
948
949 2002-09-30 Art Haas <ahaas@neosoft.com>
950
951 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
952 invocations.
953 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
954 defined.
955
956 2002-09-27 Akim Demaille <akim@epita.fr>
957
958 Version 1.49c.
959
960 2002-09-27 Akim Demaille <akim@epita.fr>
961
962 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
963 (Because of AC_LIBSOURCE).
964
965 2002-09-27 Akim Demaille <akim@epita.fr>
966
967 Playing with Autoscan.
968
969 * configure.ac: Remove the old LIBOBJ tweaks.
970 (AC_REPLACE_FUNCS): Add strrchr and strtol.
971 * lib/strrchr.c: New.
972 * lib/strtol.c: New, from the Coreutils 4.5.1.
973
974 2002-09-27 Akim Demaille <akim@epita.fr>
975
976 Playing with Autoscan.
977
978 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
979 * lib/Makefile.am (libbison_a_SOURCES): No longer include
980 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
981 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
982 Coreutils 4.5.1.
983
984 2002-09-24 Akim Demaille <akim@epita.fr>
985
986 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
987 (Frequently Asked Questions, Parser Stack Overflow): New.
988
989 2002-09-13 Akim Demaille <akim@epita.fr>
990
991 Playing with autoscan.
992
993 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
994 * src/files.c (skeleton_find): Remove, unused.
995 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
996 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
997
998 2002-09-13 Akim Demaille <akim@epita.fr>
999
1000 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
1001 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
1002
1003 2002-09-13 Akim Demaille <akim@epita.fr>
1004
1005 * configure.ac: Require 2.54.
1006 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
1007 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
1008 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
1009 Remove, provided by Autoconf macros.
1010
1011 2002-09-12 Akim Demaille <akim@epita.fr>
1012
1013 * m4/prereq.m4: Update, from Coreutils 4.5.1.
1014
1015 2002-09-12 Akim Demaille <akim@epita.fr>
1016
1017 * m4/prereq.m4: Update, from Fileutils 4.1.5.
1018 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
1019 Reported by Martin Mokrejs.
1020
1021 2002-09-10 Akim Demaille <akim@epita.fr>
1022
1023 * src/parse-gram.y: Associate a human readable string to each
1024 token type.
1025 * tests/regression.at (Invalid inputs): Adjust.
1026
1027 2002-09-10 Gary V. Vaughan <gary@gnu.org>
1028
1029 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
1030 with an Autoconf-2.5x style configure.ac.
1031
1032 2002-09-06 Paul Eggert <eggert@twinsun.com>
1033
1034 * doc/bison.texinfo (Conditions): Make explicit that the GPL
1035 exception applies only to yacc.c. This is a modification of a
1036 patch originally suggested by Akim Demaille.
1037
1038 2002-09-06 Akim Demaille <akim@epita.fr>
1039
1040 * data/c.m4 (b4_copyright): Move the GPL exception comment from
1041 here to...
1042 * data/yacc.c: here.
1043
1044 * data/lalr1.cc (struct yyltype): Don't define it, since we use
1045 LocationType.
1046 (b4_ltype): Default to yy::Location from location.hh.
1047
1048 2002-09-04 Jim Meyering <jim@meyering.net>
1049
1050 * data/yacc.c: Guard the declaration of yytoknum also with
1051 `#ifdef YYPRINT', so it is declared only when used.
1052
1053 2002-09-04 Akim Demaille <akim@epita.fr>
1054
1055 * configure.in: Rename as...
1056 * configure.ac: this.
1057 Bump to 1.49c.
1058
1059 2002-09-04 Akim Demaille <akim@epita.fr>
1060
1061 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
1062 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
1063 translate maintainer only messages.
1064
1065 2002-08-12 Paul Eggert <eggert@twinsun.com>
1066
1067 Version 1.49b.
1068
1069 * Makefile.am (SUBDIRS): Remove intl.
1070 (DISTCLEANFILES): Remove.
1071 * NEWS: Mention that GNU M4 is now required. Clarify what is
1072 meant by "larger grammars". Mention the pt_BR translation.
1073 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
1074 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
1075 Bump version from 0.11.2 to 0.11.5.
1076 (BISON_PREREQ_STAGE): Remove.
1077 (AM_GNU_GETTEXT): Use external gettext.
1078 (AC_OUTPUT): Remove intl/Makefile.
1079
1080 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
1081
1082 * data/glr.c: Include string.h, for strlen.
1083 (yyreportParseError): Use size_t for yysize.
1084 (yy_yypstack): No longer nested inside yypstates, as nested
1085 functions are not portable. Do not assume size_t is the
1086 same width as int.
1087 (yypstates): Do not assume that ptrdiff_t is the same width
1088 as int, and similarly for yyposn and YYINDEX.
1089
1090 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
1091
1092 * lib/Makefile.am (INCLUDES): Do not include from the intl
1093 directory, which has been removed.
1094 * src/Makefile.am (INCLUDES): Likewise.
1095
1096 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
1097 (bitsets_sources, additional_bitsets_sources, timevars_sources):
1098 New vars.
1099
1100 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
1101 * tests/Makefile.am (EXTRA_DIST): Likewise.
1102
1103 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
1104 Do not assume that bitset_windex is the same width as unsigned.
1105
1106 * lib/abitset.c (abitset_unused_clear): Do not assume that
1107 bitset_word is the same width as int.
1108 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
1109 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
1110 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
1111 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
1112 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
1113
1114 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
1115 portability to one's complement hosts!).
1116 * lib/ebitset.c (ebitset_op1): Likewise.
1117 * lib/lbitset.c (lbitset_op1): Likewise.
1118
1119 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
1120 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
1121 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
1122 Sync with fileutils.
1123 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
1124 lib/gettext.h: Sync with diffutils.
1125
1126 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
1127 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
1128
1129 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
1130 PROTOTYPES to check for prototypes, and "defined __STDC__" to
1131 check for void *.
1132
1133 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
1134 size_t; the old version tried to do this but casted improperly.
1135 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
1136 (bitset_test): Now returns int, not unsigned long.
1137
1138 * lib/bitset_stats.c: Include "gettext.h".
1139 (_): New macro.
1140 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
1141 name locals "index", as it generates unnecessary warnings on some
1142 hosts that have an "index" function.
1143
1144 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
1145 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
1146 they need translation.
1147 * src/LR0.c (state_list_append, new_itemsets, get_state,
1148 append_states, generate_states): Likewise.
1149 * src/assoc.c (assoc_to_string): Likewise.
1150 * src/closure.c (print_closure, set_firsts, closure): Likewise.
1151 * src/gram.c (grammar_dump): Likewise.
1152 * src/injections.c (injections_compute): Likewise.
1153 * src/lalr.c (lookaheads_print): Likewise.
1154 * src/relation.c (relation_transpose): Likewise.
1155 * src/scan-gram.l: Likewise.
1156 * src/tables.c (table_grow, pack_vector): Likewise.
1157
1158 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
1159 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
1160 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
1161 * m4/mbstate_t.m4: Sync with fileutils.
1162 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
1163
1164 * po/LINGUAS: Add pt_BR.
1165 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
1166 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
1167 lib/timevar.c.
1168 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
1169 manual recommends.
1170 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
1171
1172 * src/complain.c (strerror_r): Remove decl; not needed.
1173 (strerror): Use same pattern as ../lib/error.c.
1174
1175 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
1176
1177 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
1178
1179 * src/main.c (main): Cast result of bindtextdomain and textdomain
1180 to void, to avoid a GCC warning when --disable-nls is in effect.
1181
1182 * src/scan-gram.l: Use strings rather than escapes when possible,
1183 to minimize the number of warnings from xgettext.
1184 (handle_action_dollar, handle_action_at): Don't use isdigit,
1185 as it mishandles negative chars and it may not work as expected
1186 outside the C locale.
1187
1188 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
1189 this is a GCC extension and is not portable to other compilers.
1190
1191 * src/system.h (alloca): Use same pattern as ../lib/error.c.
1192 Do not include <ctype.h>; no longer needed.
1193 Do not include <malloc.h>; no longer needed (and generates
1194 warnings on OpenBSD 3.0).
1195
1196 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
1197 it's not portable.
1198
1199 * tests/regression.at: Do not use 'cc -c input.c -o input';
1200 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
1201
1202 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
1203 exit status as failure, not just exit status 1. Sun C exits
1204 with status 2 sometimes.
1205
1206 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
1207 Use it for the two large tests.
1208
1209 2002-08-02 Akim Demaille <akim@epita.fr>
1210
1211 * src/conflicts.c (conflicts_output): Don't output rules never
1212 reduced here, since anyway that computation doesn't work.
1213 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
1214 (rule_useless_p, rule_never_reduced_p): New.
1215 (grammar_rules_partial_print): Use a filter instead of a range.
1216 Display the title only if needed.
1217 (grammar_rules_print): Adjust.
1218 (grammar_rules_never_reduced_report): New.
1219 * src/tables.c (action_row): Move the computation of rules never
1220 reduced to...
1221 (token_actions): here.
1222 * src/main.c (main): Make the parser before making the report, so
1223 that rules never reduced are computed.
1224 Call grammar_rules_never_reduced_report.
1225 * src/print.c (print_results): Report rules never reduced.
1226 * tests/conflicts.at, tests/reduce.at: Adjust.
1227
1228 2002-08-01 Akim Demaille <akim@epita.fr>
1229
1230 Instead of attaching lookaheads and duplicating the rules being
1231 reduced by a state, attach the lookaheads to the reductions.
1232
1233 * src/state.h (state_t): Remove the `lookaheads',
1234 `lookaheads_rule' member.
1235 (reductions_t): Add a `lookaheads' member.
1236 Use a regular array for the `rules'.
1237 * src/state.c (reductions_new): Initialize the lookaheads member
1238 to 0.
1239 (state_rule_lookaheads_print): Adjust.
1240 * src/state.h, src/state.c (state_reductions_find): New.
1241 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
1242 (count_rr_conflicts): Adjust.
1243 * src/lalr.c (LArule): Remove.
1244 (add_lookback_edge): Adjust.
1245 (state_lookaheads_count): New.
1246 (states_lookaheads_initialize): Merge into...
1247 (initialize_LA): this.
1248 (lalr_free): Adjust.
1249 * src/main.c (main): Don't free nullable and derives too early: it
1250 is used by --verbose.
1251 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
1252
1253 2002-08-01 Akim Demaille <akim@epita.fr>
1254
1255 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
1256 `rule_number_t**'.
1257 (set_derives, free_derives): Rename as...
1258 (derives_compute, derives_free): this.
1259 Adjust all dependencies.
1260 * src/nullable.c (set_nullable, free_nullable): Rename as...
1261 (nullable_compute, nullable_free): these.
1262 (rule_list_t): Store rule_t *, not rule_number_t.
1263 * src/state.c (state_rule_lookaheads_print): Directly compare rule
1264 pointers, instead of their numbers.
1265 * src/main.c (main): Call nullable_free, and derives_free earlier,
1266 as they were lo longer used.
1267
1268 2002-08-01 Akim Demaille <akim@epita.fr>
1269
1270 * lib/timevar.c (get_time): Include children time.
1271 * src/lalr.h (LA, LArule): Don't export them: used with the
1272 state_t.
1273 * src/lalr.c (LA, LArule): Static.
1274 * src/lalr.h, src/lalr.c (lalr_free): New.
1275 * src/main.c (main): Call it.
1276 * src/tables.c (pack_vector): Check whether loc is >= to the
1277 table_size, not >.
1278 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
1279 (tables_generate): do it, since that's also it which allocates
1280 them.
1281 Don't free LA and LArule, main does.
1282
1283 2002-07-31 Akim Demaille <akim@epita.fr>
1284
1285 Separate parser tables computation and output.
1286
1287 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
1288 (conflict_list, conflict_list_cnt, table, check, table_ninf)
1289 (yydefgoto, yydefact, high): Move to...
1290 * src/tables.h, src/tables.c: here.
1291 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
1292 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
1293 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
1294 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
1295 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
1296 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
1297 (action_row, save_row, token_actions, save_column, default_goto)
1298 (goto_actions, sort_actions, matching_state, pack_vector)
1299 (table_ninf_remap, pack_table, prepare_actions): Move to...
1300 * src/tables.c: here.
1301 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
1302 * src/output.c (token_actions, output_base, output_conflicts)
1303 (output_check): Merge into...
1304 (prepare_actions): this.
1305 (actions_output): Rename as...
1306 (user_actions_output): this.
1307 * src/main.c (main): Call tables_generate and tables_free.
1308
1309 2002-07-31 Akim Demaille <akim@epita.fr>
1310
1311 Steal GCC's --time-report support.
1312
1313 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
1314 stolen/adjusted from GCC.
1315 * m4/stage.m4: Remove time related checks.
1316 * m4/timevar.m4: New.
1317 * configure.in: Adjust.
1318 * src/system.h: Adjust to using timevar.h.
1319 * src/getargs.h, src/getargs.c: Support trace_time for
1320 --trace=time.
1321 * src/main.c (stage): Remove.
1322 (main): Replace `stage' invocations with timevar calls.
1323 * src/output.c: Insert pertinent timevar calls.
1324
1325 2002-07-31 Akim Demaille <akim@epita.fr>
1326
1327 Let --trace have arguments.
1328
1329 * src/getargs.h (enum trace_e): New.
1330 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
1331 (long_options, short_options): --trace/-T takes an optional
1332 argument.
1333 Change all the uses of trace_flag to reflect the new flags.
1334 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
1335
1336 Strengthen `stage' portability.
1337
1338 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
1339 * configure.in: Use it.
1340 Don't check for malloc.h and sys/times.h.
1341 * src/system.h: Include them when appropriate.
1342 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
1343 times and struct tms are available.
1344
1345 2002-07-30 Akim Demaille <akim@epita.fr>
1346
1347 In verbose parse error message, don't report `error' as an
1348 expected token.
1349 * tests/actions.at (Printers and Destructors): Adjust.
1350 * tests/calc.at (Calculator $1): Adjust.
1351 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
1352 error message, do not report the parser accepts the error token in
1353 that state.
1354
1355 2002-07-30 Akim Demaille <akim@epita.fr>
1356
1357 Normalize conflict related messages.
1358
1359 * src/complain.h, src/complain.c (warn, complain): New.
1360 * src/conflicts.c (conflicts_print): Use them.
1361 (conflict_report_yacc): New, extracted from...
1362 (conflicts_print): here.
1363 * tests/conflicts.at, tests/existing.at: Adjust.
1364
1365 2002-07-30 Akim Demaille <akim@epita.fr>
1366
1367 Report rules which are never reduced by the parser: those hidden
1368 by conflicts.
1369
1370 * src/LR0.c (save_reductions): Don't make the final state too
1371 different: save its reduction (accept) instead of having a state
1372 without any action (no shift or goto, no reduce).
1373 Note: the final state is now a ``regular'' state, i.e., the
1374 parsers now contain `reduce 0' as default reduction.
1375 Nevertheless, since they decide to `accept' when yystate =
1376 final_state, they still will not reduce rule 0.
1377 * src/print.c (print_actions, print_reduction): Adjust.
1378 * src/output.c (action_row): Track reduced rules.
1379 (token_actions): Report rules never reduced.
1380 * tests/conflicts.at, tests/regression.at: Adjust.
1381
1382 2002-07-30 Akim Demaille <akim@epita.fr>
1383
1384 `stage' was accidently included in a previous patch.
1385 Initiate its autoconfiscation.
1386
1387 * configure.in: Look for malloc.h and sys/times.h.
1388 * src/main.c (stage): Adjust.
1389 Report only when trace_flag.
1390
1391 2002-07-29 Akim Demaille <akim@epita.fr>
1392
1393 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
1394 state_number_t.
1395 (errs_t): symbol_t*, not symbol_number_t.
1396 (reductions_t): rule_t*, not rule_number_t.
1397 (FOR_EACH_SHIFT): New.
1398 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
1399 * src/print.c, src/print_graph.c: Adjust.
1400
1401 2002-07-29 Akim Demaille <akim@epita.fr>
1402
1403 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
1404
1405 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
1406 (endtoken, accept): these.
1407 * src/reader.c (reader): Set endtoken's default tag to "$end".
1408 Set undeftoken's tag to "$undefined" instead of "$undefined.".
1409 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
1410 Adjust.
1411
1412 2002-07-29 Akim Demaille <akim@epita.fr>
1413
1414 * src/reduce.c (reduce_grammar): When the language is empty,
1415 complain about the start symbol, not the axiom.
1416 Use its location.
1417 * tests/reduce.at (Empty Language): New.
1418
1419 2002-07-26 Akim Demaille <akim@epita.fr>
1420
1421 * src/reader.h, src/reader.c (gram_error): ... can't get
1422 yycontrol without making too strong assumptions on the parser
1423 itself.
1424 * src/output.c (prepare_tokens): Use the real 0th value of
1425 token_translations instead of `0'.
1426 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
1427 visible here.
1428 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
1429 for the time being: %locations ought to provide it to yyerror.
1430
1431 2002-07-25 Akim Demaille <akim@epita.fr>
1432
1433 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
1434 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
1435 * tests/regression.at (Web2c Actions): Adjust.
1436
1437 2002-07-25 Akim Demaille <akim@epita.fr>
1438
1439 Stop storing rules from 1 to nrules + 1.
1440
1441 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
1442 * src/nullable.c, src/output.c, src/print.c, src/reader.c
1443 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
1444 Iterate from 0 to nrules.
1445 Use rule_number_as_item_number and item_number_as_rule_number.
1446 Adjust to `derive' now containing possibly 0.
1447 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
1448 Handle the `- 1' part in rule numbers from/to item numbers.
1449 * src/conflicts.c (log_resolution): Fix the message which reversed
1450 shift and reduce.
1451 * src/output.c (action_row): Initialize default_rule to -1.
1452 (token_actions): Adjust.
1453 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
1454 expected output.
1455 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
1456
1457 2002-07-25 Akim Demaille <akim@epita.fr>
1458
1459 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
1460 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
1461 (b4_c_knr_arg_decl): New.
1462 * data/yacc.c: Use it to define yysymprint, yydestruct, and
1463 yyreport_parse_error.
1464
1465 2002-07-25 Akim Demaille <akim@epita.fr>
1466
1467 * data/yacc.c (yyreport_parse_error): New, extracted from...
1468 (yyparse): here.
1469 (yydestruct, yysymprint): Move above yyparse.
1470 Be K&R compliant.
1471
1472 2002-07-25 Akim Demaille <akim@epita.fr>
1473
1474 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
1475 replace...
1476 (b4_sint_type, b4_uint_type): these.
1477 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
1478 * tests/regression.at (Web2c Actions): Adjust.
1479
1480 2002-07-25 Akim Demaille <akim@epita.fr>
1481
1482 * src/gram.h (TIEM_NUMBER_MAX): New.
1483 (item_number_of_rule_number, rule_number_of_item_number): Rename
1484 as...
1485 (rule_number_as_item_number, item_number_as_rule_number): these.
1486 Adjust dependencies.
1487 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
1488 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
1489 (symbol_number_to_vector_number): New.
1490 (order): Of vector_number_t* type.
1491 (base_t, BASE_MAX, BASE_MIN): New.
1492 (froms, tos, width, pos, check): Of base_t type.
1493 (action_number_t, ACTION_MIN, ACTION_MAX): New.
1494 (actrow): Of action_number_t type.
1495 (conflrow): Of unsigned int type.
1496 (table_ninf, base_ninf): New.
1497 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
1498 (muscle_insert_int_table, muscle_insert_base_table)
1499 (muscle_insert_rule_number_table): New.
1500 (prepare_tokens): Output `toknum' as int_table.
1501 (action_row): Returns a rule_number_t.
1502 Use ACTION_MIN, not SHRT_MIN.
1503 (token_actions): yydefact is rule_number_t*.
1504 (table_ninf_remap): New.
1505 (pack_table): Use it for `base' and `table'.
1506 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
1507 replaced with...
1508 (YYPACT_NINF, YYTABLE_NINF): these.
1509 (yypact, yytable): Compute their types instead of hard-coded
1510 `short'.
1511 * tests/regression.at (Web2c Actions): Adjust.
1512
1513 2002-07-19 Akim Demaille <akim@epita.fr>
1514
1515 * src/scan-gram.l (id): Can start with an underscore.
1516
1517 2002-07-16 Akim Demaille <akim@epita.fr>
1518
1519 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
1520 Adjust all former `associativity' dependencies.
1521 * src/symtab.c (symbol_new): Default associativity is `undef', not
1522 `right'.
1523 (symbol_check_alias_consistence): Adjust.
1524
1525 2002-07-09 Akim Demaille <akim@epita.fr>
1526
1527 * doc/bison.texinfo: Properly set the ``header'' part.
1528 Use @dircategory ``GNU programming tools'' as per Texinfo's
1529 documentation.
1530 Use @copying.
1531
1532 2002-07-09 Akim Demaille <akim@epita.fr>
1533
1534 * lib/quotearg.h: Protect against multiple inclusions.
1535 * src/location.h (location_t): Add a `file' member.
1536 (LOCATION_RESET, LOCATION_PRINT): Adjust.
1537 * src/complain.c (warn_at, complain_at, fatal_at): Drop
1538 `error_one_per_line' support.
1539
1540 2002-07-09 Akim Demaille <akim@epita.fr>
1541
1542 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
1543 * src/reader.c (lineno): Remove.
1544 Adjust all dependencies.
1545 (get_merge_function): Take a location and use complain_at.
1546 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
1547 * tests/regression.at (Invalid inputs, Mixing %token styles):
1548 Adjust.
1549
1550 2002-07-09 Akim Demaille <akim@epita.fr>
1551
1552 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
1553 recovery rule, and forbid extensions when --yacc.
1554 (gram_error): Use complain_at.
1555 * src/reader.c (reader): Exit if there were parse errors.
1556
1557 2002-07-09 Akim Demaille <akim@epita.fr>
1558
1559 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
1560 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
1561 Reported by R Blake <blakers@mac.com>.
1562
1563 2002-07-09 Akim Demaille <akim@epita.fr>
1564
1565 * data/yacc.c: Output the copyright notive in the header.
1566
1567 2002-07-03 Akim Demaille <akim@epita.fr>
1568
1569 * src/output.c (froms, tos): Are state_number_t.
1570 (save_column): sp, sp1, and sp2 are state_number_t.
1571 (prepare): Rename `final' as `final_state_number', `nnts' as
1572 `nterms_number', `nrules' as `rules_number', `nstates' as
1573 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
1574 unused.
1575 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
1576 * data/lalr1.cc (nsym_): Remove, unused.
1577
1578 2002-07-03 Akim Demaille <akim@epita.fr>
1579
1580 * src/lalr.h, src/lalr.c (goto_number_t): New.
1581 * src/lalr.c (goto_list_t): New.
1582 Propagate them.
1583 * src/nullable.c (rule_list_t): New.
1584 Propagate.
1585 * src/types.h: Remove.
1586
1587 2002-07-03 Akim Demaille <akim@epita.fr>
1588
1589 * src/closure.c (print_fderives): Use rule_rhs_print.
1590 * src/derives.c (print_derives): Use rule_rhs_print.
1591 (rule_list_t): New, replaces `shorts'.
1592 (set_derives): Add comments.
1593 * tests/sets.at (Nullable, Firsts): Adjust.
1594
1595 2002-07-03 Akim Demaille <akim@epita.fr>
1596
1597 * src/output.c (prepare_actions): Free `tally' and `width'.
1598 (prepare_actions): Allocate and free `order'.
1599 * src/symtab.c (symbols_free): Free `symbols'.
1600 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
1601 * src/output.c (m4_invoke): Move to...
1602 * src/scan-skel.l: here.
1603 (<<EOF>>): Close yyout, and free its name.
1604
1605 2002-07-03 Akim Demaille <akim@epita.fr>
1606
1607 Fix some memory leaks, and fix a bug: state 0 was examined twice.
1608
1609 * src/LR0.c (new_state): Merge into...
1610 (state_list_append): this.
1611 (new_states): Merge into...
1612 (generate_states): here.
1613 (set_states): Don't ensure a proper `errs' state member here, do it...
1614 * src/conflicts.c (conflicts_solve): here.
1615 * src/state.h, src/state.c: Comment changes.
1616 (state_t): Rename member `shifts' as `transitions'.
1617 Adjust all dependencies.
1618 (errs_new): For consistency, also take the values as argument.
1619 (errs_dup): Remove.
1620 (state_errs_set): New.
1621 (state_reductions_set, state_transitions_set): Assert that no
1622 previous value was assigned.
1623 (state_free): New.
1624 (states_free): Use it.
1625 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
1626 temporary storage: use `errs' and `nerrs' as elsewhere.
1627 (set_conflicts): Allocate and free this `errs'.
1628
1629 2002-07-02 Akim Demaille <akim@epita.fr>
1630
1631 * lib/libiberty.h: New.
1632 * lib: Update the bitset implementation from upstream.
1633 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
1634 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
1635 * src/main.c: Adjust bitset stats calls.
1636
1637 2002-07-01 Paul Eggert <eggert@twinsun.com>
1638
1639 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
1640 char, so that negative chars don't collide with $.
1641
1642 2002-06-30 Akim Demaille <akim@epita.fr>
1643
1644 Have the GLR tests be `warning' checked, and fix the warnings.
1645
1646 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
1647 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
1648 (yyremoveDeletes): `yyi' and `yyj' are size_t.
1649 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
1650 (yyaddDeferredAction): static.
1651 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
1652 (yyreportParseError): yyprefix is const.
1653 yytokenp is used only when verbose.
1654 (yy__GNUC__): Replace with __GNUC__.
1655 (yypdumpstack): yyi is size_t.
1656 (yypreference): Un-yy local variables and arguments, to avoid
1657 clashes with `yyr1'. Anyway, we are not in the user name space.
1658 (yytname_size): be an int, as is compared with ints.
1659 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
1660 Use them.
1661 * tests/cxx-gram.at: Use quotation to protect $1.
1662 Use AT_COMPILE to enable warnings hunts.
1663 Prototype yylex and yyerror.
1664 `Use' argc.
1665 Include `string.h', not `strings.h'.
1666 Produce and prototype stmtMerge only when used.
1667 yylex takes a location.
1668
1669 2002-06-30 Akim Demaille <akim@epita.fr>
1670
1671 We spend a lot of time in quotearg, in particular when --verbose.
1672
1673 * src/symtab.c (symbol_get): Store a quoted version of the key.
1674 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
1675 Adjust all callers.
1676
1677 2002-06-30 Akim Demaille <akim@epita.fr>
1678
1679 * src/state.h (reductions_t): Rename member `nreds' as num.
1680 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
1681 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
1682
1683 2002-06-30 Akim Demaille <akim@epita.fr>
1684
1685 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
1686 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
1687 (shifts_to): Rename as...
1688 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
1689 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
1690 (TRANSITION_IS_DISABLED, transitions_to): these.
1691
1692 2002-06-30 Akim Demaille <akim@epita.fr>
1693
1694 * src/print.c (print_shifts, print_gotos): Merge into...
1695 (print_transitions): this.
1696 (print_transitions, print_errs, print_reductions): Align the
1697 lookaheads columns.
1698 (print_core, print_transitions, print_errs, print_state,
1699 print_grammar): Output empty lines separator before, not after.
1700 (state_default_rule_compute): Rename as...
1701 (state_default_rule): this.
1702 * tests/conflicts.at (Defaulted Conflicted Reduction),
1703 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
1704 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
1705
1706 2002-06-30 Akim Demaille <akim@epita.fr>
1707
1708 Display items as we display rules.
1709
1710 * src/gram.h, src/gram.c (rule_lhs_print): New.
1711 * src/gram.c (grammar_rules_partial_print): Use it.
1712 * src/print.c (print_core): Likewise.
1713 * tests/conflicts.at (Defaulted Conflicted Reduction),
1714 (Unresolved SR Conflicts): Adjust.
1715 (Unresolved SR Conflicts): Adjust and rename as...
1716 (Resolved SR Conflicts): this, as was meant.
1717 * tests/regression.at (Web2c Report): Adjust.
1718
1719 2002-06-30 Akim Demaille <akim@epita.fr>
1720
1721 * src/print.c (state_default_rule_compute): New, extracted from...
1722 (print_reductions): here.
1723 Pessimize, but clarify the code.
1724 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
1725
1726 2002-06-30 Akim Demaille <akim@epita.fr>
1727
1728 * src/output.c (action_row): Let default_rule be always a rule
1729 number.
1730
1731 2002-06-30 Akim Demaille <akim@epita.fr>
1732
1733 * src/closure.c (print_firsts, print_fderives, closure):
1734 Use BITSET_EXECUTE.
1735 * src/lalr.c (lookaheads_print): Likewise.
1736 * src/state.c (state_rule_lookaheads_print): Likewise.
1737 * src/print_graph.c (print_core): Likewise.
1738 * src/print.c (print_reductions): Likewise.
1739 * src/output.c (action_row): Likewise.
1740 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
1741
1742 2002-06-30 Akim Demaille <akim@epita.fr>
1743
1744 * src/print_graph.c: Use report_flag.
1745
1746 2002-06-30 Akim Demaille <akim@epita.fr>
1747
1748 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
1749 to...
1750 * src/relation.h, src/relation.c (traverse, relation_digraph)
1751 (relation_print, relation_transpose): New.
1752
1753 2002-06-30 Akim Demaille <akim@epita.fr>
1754
1755 * src/state.h, src/state.c (shifts_to): New.
1756 * src/lalr.c (build_relations): Use it.
1757
1758 2002-06-30 Akim Demaille <akim@epita.fr>
1759
1760 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
1761 (item_number_of_rule_number, rule_number_of_item_number): New.
1762 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
1763 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
1764 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
1765 Propagate their use.
1766 Much remains to be done, in particular wrt `shorts' from types.h.
1767
1768 2002-06-30 Akim Demaille <akim@epita.fr>
1769
1770 * src/symtab.c (symbol_new): Initialize the `printer' member.
1771
1772 2002-06-30 Akim Demaille <akim@epita.fr>
1773
1774 * src/LR0.c (save_reductions): Remove, replaced by...
1775 * src/state.h, src/state.c (state_reductions_set): New.
1776 (reductions, errs): Rename as...
1777 (reductions_t, errs_t): these.
1778 Adjust all dependencies.
1779
1780 2002-06-30 Akim Demaille <akim@epita.fr>
1781
1782 * src/LR0.c (state_list_t, state_list_append): New.
1783 (first_state, last_state): Now symbol_list_t.
1784 (this_state): Remove.
1785 (new_itemsets, append_states, save_reductions): Take a state_t as
1786 argument.
1787 (set_states, generate_states): Adjust.
1788 (save_shifts): Remove, replaced by...
1789 * src/state.h, src/state.c (state_shifts_set): New.
1790 (shifts): Rename as...
1791 (shifts_t): this.
1792 Adjust all dependencies.
1793 * src/state.h (state_t): Remove the `next' member.
1794
1795 2002-06-30 Akim Demaille <akim@epita.fr>
1796
1797 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
1798 escaped in slot 0.
1799
1800 2002-06-30 Akim Demaille <akim@epita.fr>
1801
1802 Use hash.h for the state hash table.
1803
1804 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
1805 (allocate_storage): Use state_hash_new.
1806 (free_storage): Use state_hash_free.
1807 (new_state, get_state): Adjust.
1808 * src/lalr.h, src/lalr.c (states): Move to...
1809 * src/states.h (state_t): Remove the `link' member, no longer
1810 used.
1811 * src/states.h, src/states.c: here.
1812 (state_hash_new, state_hash_free, state_hash_lookup)
1813 (state_hash_insert, states_free): New.
1814 * src/states.c (state_table, state_compare, state_hash): New.
1815 * src/output.c (output_actions): Do not free states now, since we
1816 still need to know the final_state number in `prepare', called
1817 afterwards. Do it...
1818 * src/main.c (main): here: call states_free after `output'.
1819
1820 2002-06-30 Akim Demaille <akim@epita.fr>
1821
1822 * src/state.h, src/state.c (state_new): New, extracted from...
1823 * src/LR0.c (new_state): here.
1824 * src/state.h (STATE_ALLOC): Move to...
1825 * src/state.c: here.
1826 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
1827 * src/state.h, src/state.c: here.
1828
1829 2002-06-30 Akim Demaille <akim@epita.fr>
1830
1831 * src/reader.c (gensym): Rename as...
1832 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
1833 (getsym): Rename as...
1834 (symbol_get): this.
1835
1836 2002-06-30 Akim Demaille <akim@epita.fr>
1837
1838 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
1839 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
1840 * src/output.c, src/print.c, src/print_graph.c: Propagate.
1841 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
1842
1843 2002-06-30 Akim Demaille <akim@epita.fr>
1844
1845 Make the test suite pass with warnings checked.
1846
1847 * tests/actions.at (Printers and Destructors): Improve.
1848 Avoid unsigned vs. signed issues.
1849 * tests/calc.at: Don't exercise the scanner here, do it...
1850 * tests/input.at (Torturing the Scanner): here.
1851
1852 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1853
1854 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
1855 reorganize first lines parallel to yacc.c.
1856
1857 2002-06-28 Akim Demaille <akim@epita.fr>
1858
1859 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
1860 (b4_token_enum, b4_token_defines): New, factored from...
1861 * data/lalr1.cc, data/yacc.c, glr.c: here.
1862
1863 2002-06-28 Akim Demaille <akim@epita.fr>
1864
1865 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
1866 unused variables.
1867 * src/output.c (merger_output): static.
1868
1869 2002-06-28 Akim Demaille <akim@epita.fr>
1870
1871 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
1872 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
1873 pacify GCC.
1874 * src/output.c (save_row): Initialize all the variables to pacify GCC.
1875
1876 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1877
1878 Accumulated changelog for new GLR parsing features.
1879
1880 * src/conflicts.c (count_total_conflicts): Change name to
1881 conflicts_total_count.
1882 * src/conflicts.h: Ditto.
1883 * src/output.c (token_actions): Use the new name.
1884 (output_conflicts): Change conflp => conflict_list_heads, and
1885 confl => conflict_list for better readability.
1886 * data/glr.c: Use the new names.
1887 * NEWS: Add self to GLR announcement.
1888
1889 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
1890
1891 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
1892 Akim Demaille.
1893
1894 * data/bison.glr: Change name to glr.c
1895 * data/glr.c: Renamed from bison.glr.
1896 * data/Makefile.am: Add glr.c
1897
1898 * src/getargs.c:
1899
1900 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
1901 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
1902
1903 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1904
1905 * data/bison.glr: Be sure to restore the
1906 current #line when returning to the skeleton contents after having
1907 exposed the input file's #line.
1908
1909 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1910
1911 * data/bison.glr: Bring up to date with changes to bison.simple.
1912
1913 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1914
1915 * data/bison.glr: Correct definitions that use b4_prefix.
1916 Various reformatting.
1917 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
1918 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
1919 yytokenp argument; now part of stack.
1920 (yychar): Define to behave as documented.
1921 (yyclearin): Ditto.
1922
1923 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1924
1925 * src/reader.h: Add declaration for free_merger_functions.
1926
1927 * src/reader.c (merge_functions): New variable.
1928 (get_merge_function): New function.
1929 (free_merger_functions): New function.
1930 (readgram): Check for %prec that is not followed by a symbol.
1931 Handle %dprec and %merge declarations.
1932 (packgram): Initialize dprec and merger fields in rules array.
1933
1934 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
1935 conflict_list_cnt, conflict_list_free): New variables.
1936 (table_grow): Also grow conflict_table.
1937 (prepare_rules): Output dprec and merger tables.
1938 (conflict_row): New function.
1939 (action_row): Output conflict lists for GLR parser. Don't use
1940 default reduction in conflicted states for GLR parser so that there
1941 are spaces for the conflict lists.
1942 (save_row): Also save conflict information.
1943 (token_actions): Allocate conflict list.
1944 (merger_output): New function.
1945 (pack_vector): Pack conflict table, too.
1946 (output_conflicts): New function to output yyconflp and yyconfl.
1947 (output_check): Allocate conflict_tos.
1948 (output_actions): Output conflict tables, also.
1949 (output_skeleton): Output b4_mergers definition.
1950 (prepare): Output b4_max_rhs_length definition.
1951 Use 'bison.glr' as default skeleton for GLR parsers.
1952
1953 * src/gram.c (glr_parser): New flag.
1954 (grammar_free): Call free_merger_functions.
1955
1956 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
1957 all pairs of conflicting reductions, rather than just all tokens
1958 causing conflicts. Needed to size conflict tables.
1959 (conflicts_output): Modify call to count_rr_conflicts for new
1960 interface.
1961 (conflicts_print): Ditto.
1962 (count_total_conflicts): New function.
1963
1964 * src/reader.h (merger_list): New type.
1965 (merge_functions): New variable.
1966
1967 * src/lex.h (tok_dprec, tok_merge): New token types.
1968
1969 * src/gram.h (rule_s): Add dprec and merger fields.
1970 (glr_parser): New flag.
1971
1972 * src/conflicts.h (count_total_conflicts): New function.
1973
1974 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
1975
1976 * doc/bison.texinfo (Generalized LR Parsing): New section.
1977 (GLR Parsers): New section.
1978 (Language and Grammar): Mention GLR parsing.
1979 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
1980 Correct typo ("tge" -> "the").
1981
1982 * data/bison.glr: New skeleton for GLR parsing.
1983
1984 * tests/cxx-gram.at: New tests for GLR parsing.
1985
1986 * tests/testsuite.at: Include cxx-gram.at.
1987
1988 * tests/Makefile.am: Add cxx-gram.at.
1989
1990 * src/parse-gram.y:
1991
1992 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
1993
1994 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
1995
1996 2002-06-27 Akim Demaille <akim@epita.fr>
1997
1998 * src/options.h, src/options.c: Remove.
1999 * src/getargs.c (short_options, long_options): New.
2000
2001 2002-06-27 Akim Demaille <akim@epita.fr>
2002
2003 * data/bison.simple, data/bison.c++: Rename as...
2004 * data/yacc.c, data/lalr1.cc: these.
2005 * doc/bison.texinfo (Environment Variables): Remove.
2006
2007 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
2008
2009 * src/getargs.c (report_argmatch): Initialize strtok().
2010
2011 2002-06-20 Akim Demaille <akim@epita.fr>
2012
2013 * data/bison.simple (b4_symbol_actions): New, replaces...
2014 (b4_symbol_destructor, b4_symbol_printer): these.
2015 (yysymprint): Be sure to call YYPRINT only for tokens, and using
2016 user token numbers.
2017
2018 2002-06-20 Akim Demaille <akim@epita.fr>
2019
2020 * data/bison.simple (yydestructor): Rename as...
2021 (yydestruct): this.
2022
2023 2002-06-20 Akim Demaille <akim@epita.fr>
2024
2025 * src/symtab.h, src/symtab.c (symbol_type_set)
2026 (symbol_destructor_set, symbol_precedence_set): The location is
2027 the last argument.
2028 Adjust all callers.
2029
2030 2002-06-20 Akim Demaille <akim@epita.fr>
2031
2032 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
2033 internals.
2034 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
2035 Takes a location.
2036 * src/symtab.h, src/symtab.c (symbol_class_set)
2037 (symbol_user_token_number_set): Likewise.
2038 Adjust all callers.
2039 Promote complain_at.
2040 * tests/input.at (Type Clashes): Adjust.
2041
2042 2002-06-20 Akim Demaille <akim@epita.fr>
2043
2044 * data/bison.simple (YYLEX): Fix the declaration when
2045 %pure-parser.
2046
2047 2002-06-20 Akim Demaille <akim@epita.fr>
2048
2049 * data/bison.simple (yysymprint): Don't print the token number,
2050 just its name.
2051 * tests/actions.at (Destructors): Rename as...
2052 (Printers and Destructors): this.
2053 Also exercise %printer.
2054
2055 2002-06-20 Akim Demaille <akim@epita.fr>
2056
2057 * data/bison.simple (YYDSYMPRINT): New.
2058 Use it to remove many of the #if YYDEBUG/if (yydebug).
2059
2060 2002-06-20 Akim Demaille <akim@epita.fr>
2061
2062 * src/symtab.h, src/symtab.c (symbol_t): printer and
2063 printer_location are new members.
2064 (symbol_printer_set): New.
2065 * src/parse-gram.y (PERCENT_PRINTER): New token.
2066 Handle its associated rule.
2067 * src/scan-gram.l: Adjust.
2068 (handle_destructor_at, handle_destructor_dollar): Rename as...
2069 (handle_symbol_code_at, handle_symbol_code_dollar): these.
2070 * src/output.c (symbol_printers_output): New.
2071 (output_skeleton): Call it.
2072 * data/bison.simple (yysymprint): New. Cannot be named yyprint
2073 since there are already many grammar files with a user `yyprint'.
2074 Replace the calls to YYPRINT to calls to yysymprint.
2075 * tests/calc.at: Adjust.
2076 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
2077 taking advantage of parser very internal details (stack size!).
2078
2079 2002-06-20 Akim Demaille <akim@epita.fr>
2080
2081 * src/scan-gram.l: Complete the scanner with the missing patterns
2082 to pacify Flex.
2083 Use `quote' and `symbol_tag_get' where appropriate.
2084
2085 2002-06-19 Akim Demaille <akim@epita.fr>
2086
2087 * tests/actions.at (Destructors): Augment to test locations.
2088 * data/bison.simple (yydestructor): Pass it the current location
2089 if locations are enabled.
2090 Prototype only when __STDC__ or C++.
2091 Change the argument names to move into the yy name space: there is
2092 user code here.
2093
2094 2002-06-19 Akim Demaille <akim@epita.fr>
2095
2096 * data/bison.simple (b4_pure_if): New.
2097 Use it instead of #ifdef YYPURE.
2098
2099 2002-06-19 Akim Demaille <akim@epita.fr>
2100
2101 * data/bison.simple (b4_location_if): New.
2102 Use it instead of #ifdef YYLSP_NEEDED.
2103
2104 2002-06-19 Akim Demaille <akim@epita.fr>
2105
2106 Prepare @$ in %destructor, but currently don't bind it in the
2107 skeleton, as %location use is not cleaned up yet.
2108
2109 * src/scan-gram.l (handle_dollar, handle_destructor_at)
2110 (handle_action_at): New.
2111 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
2112 a braced_code_t and a location as additional arguments.
2113 (handle_destructor_dollar): Instead of requiring `b4_eval', just
2114 unquote one when outputting `b4_dollar_dollar'.
2115 Adjust callers.
2116 * data/bison.simple (b4_eval): Remove.
2117 (b4_symbol_destructor): Adjust.
2118 * tests/input.at (Invalid @n): Adjust.
2119
2120 2002-06-19 Zack Weinberg <zack@codesourcery.com>
2121
2122 * doc/bison.texinfo: Document ability to have multiple
2123 prologue sections.
2124
2125 2002-06-18 Akim Demaille <akim@epita.fr>
2126
2127 * src/files.c (compute_base_names): When computing the output file
2128 names from the input file name, strip the directory part.
2129
2130 2002-06-18 Akim Demaille <akim@epita.fr>
2131
2132 * data/bison.simple.new: Comment changes.
2133 Reported by Andreas Schwab.
2134
2135 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
2136
2137 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
2138 there are no `label `yyoverflowlab' defined but not used' warnings
2139 when yyoverflow is defined.
2140
2141 2002-06-18 Akim Demaille <akim@epita.fr>
2142
2143 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
2144 new member.
2145 (symbol_destructor_set): Adjust.
2146 * src/output.c (symbol_destructors_output): Output the destructor
2147 locations.
2148 Output the symbol name.
2149 * data/bison.simple (b4_symbol_destructor): Adjust.
2150
2151 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
2152 and Akim Demaille <akim@epita.fr>
2153
2154 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
2155 what's left on the stack when the error recovery hits EOF.
2156 * tests/actions.at (Destructors): Complete to exercise this case.
2157
2158 2002-06-17 Akim Demaille <akim@epita.fr>
2159
2160 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
2161 arguments is really empty, not only equal to `[]'.
2162 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
2163 member.
2164 (symbol_destructor_set): New.
2165 * src/output.c (symbol_destructors_output): New.
2166 * src/reader.h (brace_code_t, current_braced_code): New.
2167 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
2168 (handle_dollar): Rename as...
2169 (handle_action_dollar): this.
2170 (handle_destructor_dollar): New.
2171 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
2172 (grammar_declaration): Use it.
2173 * data/bison.simple (yystos): Is always defined.
2174 (yydestructor): New.
2175 * tests/actions.at (Destructors): New.
2176 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
2177
2178 2002-06-17 Akim Demaille <akim@epita.fr>
2179
2180 * src/symlist.h, src/symlist.c (symbol_list_length): New.
2181 * src/scan-gram.l (handle_dollar, handle_at): Compute the
2182 rule_length only when needed.
2183 * src/output.c (actions_output, token_definitions_output): Output
2184 the full M4 block.
2185 * src/symtab.c: Don't access directly to the symbol tag, use
2186 symbol_tag_get.
2187 * src/parse-gram.y: Use symbol_list_free.
2188
2189 2002-06-17 Akim Demaille <akim@epita.fr>
2190
2191 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
2192 (symbol_list_prepend, get_type_name): Move to...
2193 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
2194 (symbol_list_prepend, symbol_list_n_type_name_get): here.
2195 Adjust all callers.
2196 (symbol_list_free): New.
2197 * src/scan-gram.l (handle_dollar): Takes a location.
2198 * tests/input.at (Invalid $n): Adjust.
2199
2200 2002-06-17 Akim Demaille <akim@epita.fr>
2201
2202 * src/reader.h, src/reader.c (symbol_list_new): Export it.
2203 (symbol_list_prepend): New.
2204 * src/parse-gram.y (%union): `list' is a new member.
2205 (symbols.1): New, replaces...
2206 (terms_to_prec.1, nterms_to_type.1): these.
2207 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
2208 Take a location as additional argument.
2209 Adjust all callers.
2210
2211 2002-06-15 Akim Demaille <akim@epita.fr>
2212
2213 * src/parse-gram.y: Move %token in the declaration section so that
2214 we don't depend upon CVS Bison.
2215
2216 2002-06-15 Akim Demaille <akim@epita.fr>
2217
2218 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
2219 * src/print.c (print_core): Use it.
2220
2221 2002-06-15 Akim Demaille <akim@epita.fr>
2222
2223 * src/conflicts.c (log_resolution): Accept the rule involved in
2224 the sr conflicts instead of the lookahead number that points to
2225 that rule.
2226 (flush_reduce): Accept the current lookahead vector as argument,
2227 instead of the index in LA.
2228 (resolve_sr_conflict): Accept the current number of lookahead
2229 bitset to consider for the STATE, instead of the index in LA.
2230 (set_conflicts): Adjust.
2231 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
2232
2233 2002-06-15 Akim Demaille <akim@epita.fr>
2234
2235 * src/state.h (state_t): Replace the `lookaheadsp' member, a
2236 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
2237 Adjust all dependencies.
2238 * src/lalr.c (initialize_lookaheads): Split into...
2239 (states_lookaheads_count, states_lookaheads_initialize): these.
2240 (lalr): Adjust.
2241
2242 2002-06-15 Akim Demaille <akim@epita.fr>
2243
2244 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
2245 out of...
2246 (grammar_rules_print): here.
2247 * src/reduce.c (reduce_output): Use it.
2248 * tests/reduce.at (Useless Rules, Reduced Automaton)
2249 (Underivable Rules): Adjust.
2250
2251 2002-06-15 Akim Demaille <akim@epita.fr>
2252
2253 Copy BYacc's nice way to report the grammar.
2254
2255 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
2256 New.
2257 Don't print the rules' location, it is confusing and useless.
2258 (rule_print): Use grammar_rhs_print.
2259 * src/print.c (print_grammar): Use grammar_rules_print.
2260
2261 2002-06-15 Akim Demaille <akim@epita.fr>
2262
2263 Complete and rationalize `useless thing' warnings.
2264
2265 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
2266 (symbol_tag_print): New.
2267 Use them everywhere in place of accessing directly the tag member.
2268 * src/gram.h, src/gram.c (rule_print): New.
2269 Use it where a rule used to be printed `by hand'.
2270 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
2271 (reduce_grammar_tables): Report the useless rules.
2272 (reduce_print): Useless things are a warning, not an error.
2273 Report it as such.
2274 * tests/reduce.at (Useless Nonterminals, Useless Rules):
2275 (Reduced Automaton, Underivable Rules): Adjust.
2276 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
2277 * tests/conflicts.at (Unresolved SR Conflicts)
2278 (Solved SR Conflicts): Adjust.
2279
2280 2002-06-15 Akim Demaille <akim@epita.fr>
2281
2282 Let symbols have a location.
2283
2284 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
2285 (getsym): Adjust.
2286 Adjust all callers.
2287 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
2288 Use location_t, not int.
2289 * src/symtab.c (symbol_check_defined): Take advantage of the
2290 location.
2291 * tests/regression.at (Invalid inputs): Adjust.
2292
2293 2002-06-15 Akim Demaille <akim@epita.fr>
2294
2295 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
2296 (input): Don't try to initialize yylloc here, do it in the
2297 scanner.
2298 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
2299 * src/gram.h (rule_t): Change line and action_line into location
2300 and action_location, of location_t type.
2301 Adjust all dependencies.
2302 * src/location.h, src/location.c (empty_location): New.
2303 * src/reader.h, src/reader.c (grammar_start_symbol_set)
2304 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
2305 (grammar_current_rule_symbol_append)
2306 (grammar_current_rule_action_append): Expect a location as argument.
2307 * src/reader.c (grammar_midrule_action): Adjust to attach an
2308 action's location as dummy symbol location.
2309 * src/symtab.h, src/symtab.c (startsymbol_location): New.
2310 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
2311 the line numbers.
2312
2313 2002-06-14 Akim Demaille <akim@epita.fr>
2314
2315 Grammar declarations may be found in the grammar section.
2316
2317 * src/parse-gram.y (rules_or_grammar_declaration): New.
2318 (declarations): Each declaration may end with a semicolon, not
2319 just...
2320 (grammar_declaration): `"%union"'.
2321 (grammar): Branch to rules_or_grammar_declaration.
2322
2323 2002-06-14 Akim Demaille <akim@epita.fr>
2324
2325 * src/main.c (main): Invoke scanner_free.
2326
2327 2002-06-14 Akim Demaille <akim@epita.fr>
2328
2329 * src/output.c (m4_invoke): Extracted from...
2330 (output_skeleton): here.
2331 Free tempfile.
2332
2333 2002-06-14 Akim Demaille <akim@epita.fr>
2334
2335 * src/parse-gram.y (directives, directive, gram)
2336 (grammar_directives, precedence_directives, precedence_directive):
2337 Rename as...
2338 (declarations, declaration, grammar, grammar_declaration)
2339 (precedence_declaration, precedence_declarator): these.
2340 (symbol_declaration): New.
2341
2342 2002-06-14 Akim Demaille <akim@epita.fr>
2343
2344 * src/files.c (action_obstack): Remove, unused.
2345 (output_obstack): Remove it, and all its dependencies, as it is no
2346 longer needed.
2347 * src/reader.c (epilogue_set): Build the epilogue in the
2348 muscle_obstack.
2349 * src/output.h, src/output.c (muscle_obstack): Move to...
2350 * src/muscle_tab.h, src/muscle_tab.h: here.
2351 (muscle_init): Initialize muscle_obstack.
2352 (muscle_free): New.
2353 * src/main.c (main): Call it.
2354
2355 2002-06-14 Akim Demaille <akim@epita.fr>
2356
2357 * src/location.h: New, extracted from...
2358 * src/reader.h: here.
2359 * src/Makefile.am (noinst_HEADERS): Merge into
2360 (bison_SOURCES): this.
2361 Add location.h.
2362 * src/parse-gram.y: Use location_t instead of Bison's.
2363 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
2364 Use location_t instead of ints.
2365
2366 2002-06-14 Akim Demaille <akim@epita.fr>
2367
2368 * data/bison.simple, data/bison.c++: Be sure to restore the
2369 current #line when returning to the skeleton contents after having
2370 exposed the input file's #line.
2371
2372 2002-06-12 Akim Demaille <akim@epita.fr>
2373
2374 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
2375 eager.
2376 * tests/actions.at (Exotic Dollars): New.
2377
2378 2002-06-12 Akim Demaille <akim@epita.fr>
2379
2380 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
2381 ['"/] too eagerly.
2382 * tests/input.at (Torturing the Scanner): New.
2383
2384 2002-06-11 Akim Demaille <akim@epita.fr>
2385
2386 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
2387 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
2388 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
2389 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
2390 * src/reader.c (reader): Use it.
2391
2392 2002-06-11 Akim Demaille <akim@epita.fr>
2393
2394 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
2395 Adjust all callers.
2396 (scanner_last_string_free): New.
2397
2398 2002-06-11 Akim Demaille <akim@epita.fr>
2399
2400 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
2401 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
2402 (last_string, YY_OBS_FREE): New.
2403 Use them when returning an ID.
2404
2405 2002-06-11 Akim Demaille <akim@epita.fr>
2406
2407 Have Bison grammars parsed by a Bison grammar.
2408
2409 * src/reader.c, src/reader.h (prologue_augment): New.
2410 * src/reader.c (copy_definition): Remove.
2411
2412 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
2413 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
2414 (grammar_current_rule_prec_set, grammar_current_rule_check)
2415 (grammar_current_rule_symbol_append)
2416 (grammar_current_rule_action_append): Export.
2417 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
2418 (symbol_list_action_append): Remove.
2419 Hook the routines from reader.
2420 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
2421 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
2422
2423 * src/reader.c (read_declarations): Remove, unused.
2424
2425 * src/parse-gram.y: Handle the epilogue.
2426 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
2427 (grammar_start_symbol_set): this.
2428 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
2429 * src/reader.c (readgram): Remove, unused.
2430 (reader): Adjust to insert eoftoken and axiom where appropriate.
2431
2432 * src/reader.c (copy_dollar): Replace with...
2433 * src/scan-gram.h (handle_dollar): this.
2434 * src/parse-gram.y: Remove `%thong'.
2435
2436 * src/reader.c (copy_at): Replace with...
2437 * src/scan-gram.h (handle_at): this.
2438
2439 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
2440 New.
2441
2442 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
2443 time being.
2444
2445 * src/reader.h, src/reader.c (grammar_rule_end): New.
2446
2447 * src/parse.y (current_type, current_class): New.
2448 Implement `%nterm', `%token' support.
2449 Merge `%term' into `%token'.
2450 (string_as_id): New.
2451 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
2452 type name.
2453
2454 * src/parse-gram.y: Be sure to handle properly the beginning of
2455 rules.
2456
2457 * src/parse-gram.y: Handle %type.
2458 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
2459
2460 * src/parse-gram.y: More directives support.
2461 * src/options.c: No longer handle source directives.
2462
2463 * src/parse-gram.y: Fix %output.
2464
2465 * src/parse-gram.y: Handle %union.
2466 Use the prologue locations.
2467 * src/reader.c (parse_union_decl): Remove.
2468
2469 * src/reader.h, src/reader.c (epilogue_set): New.
2470 * src/parse-gram.y: Use it.
2471
2472 * data/bison.simple, data/bison.c++: b4_stype is now either not
2473 defined, then default to int, or to the contents of %union,
2474 without `union' itself.
2475 Adjust.
2476 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
2477
2478 * src/output.c (actions_output): Don't output braces, as they are
2479 already handled by the scanner.
2480
2481 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
2482 characters to themselves.
2483
2484 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
2485 that the epilogue has a proper #line.
2486
2487 * src/parse-gram.y: Handle precedence/associativity.
2488
2489 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
2490 a terminal.
2491 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
2492 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
2493 at all to define terminals that cannot be emitted.
2494
2495 * src/scan-gram.l: Escape M4 characters.
2496
2497 * src/scan-gram.l: Working properly with escapes in user
2498 strings/characters.
2499
2500 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
2501 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
2502 grammar.
2503 Use more modest sizes, as for the time being the parser does not
2504 release memory, and therefore the process swallows a huge amount
2505 of memory.
2506
2507 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
2508 stricter %token grammar.
2509
2510 * src/symtab.h (associativity): Add `undef_assoc'.
2511 (symbol_precedence_set): Do nothing when passed an undef_assoc.
2512 * src/symtab.c (symbol_check_alias_consistence): Adjust.
2513
2514 * tests/regression.at (Invalid %directive): Remove, as it is now
2515 meaningless.
2516 (Invalid inputs): Adjust to the new error messages.
2517 (Token definitions): The new grammar doesn't allow too many
2518 eccentricities.
2519
2520 * src/lex.h, src/lex.c: Remove.
2521 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
2522 (copy_character, copy_string2, copy_string, copy_identifier)
2523 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
2524 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
2525 (parse_action): Remove.
2526 * po/POTFILES.in: Adjust.
2527
2528 2002-06-11 Akim Demaille <akim@epita.fr>
2529
2530 * src/reader.c (parse_action): Don't store directly into the
2531 rule's action member: return the action as a string.
2532 Don't require `rule_length' as an argument: compute it.
2533 (grammar_current_rule_symbol_append)
2534 (grammar_current_rule_action_append): New, eved out from
2535 (readgram): here.
2536 Remove `action_flag', `rulelength', unused now.
2537
2538 2002-06-11 Akim Demaille <akim@epita.fr>
2539
2540 * src/reader.c (grammar_current_rule_prec_set).
2541 (grammar_current_rule_check): New, eved out from...
2542 (readgram): here.
2543 Remove `xaction', `first_rhs': useless.
2544 * tests/input.at (Type clashes): New.
2545 * tests/existing.at (GNU Cim Grammar): Adjust.
2546
2547 2002-06-11 Akim Demaille <akim@epita.fr>
2548
2549 * src/reader.c (grammar_midrule_action): New, Eved out from
2550 (readgram): here.
2551
2552 2002-06-11 Akim Demaille <akim@epita.fr>
2553
2554 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
2555 New.
2556 (readgram): Use them as replacement of inlined code, crule and
2557 crule1.
2558
2559 2002-06-11 Akim Demaille <akim@epita.fr>
2560
2561 * src/reader.c (grammar_end, grammar_symbol_append): New.
2562 (readgram): Use them.
2563 Make the use of `p' as local as possible.
2564
2565 2002-06-10 Akim Demaille <akim@epita.fr>
2566
2567 GCJ's parser requires the tokens to be defined before the prologue.
2568
2569 * data/bison.simple: Output the token definition before the user's
2570 prologue.
2571 * tests/regression.at (Braces parsing, Duplicate string)
2572 (Mixing %token styles): Check the output from bison.
2573 (Early token definitions): New.
2574
2575 2002-06-10 Akim Demaille <akim@epita.fr>
2576
2577 * src/symtab.c (symbol_user_token_number_set): Don't complain when
2578 assigning twice the same user number to a token, so that we can
2579 use it in...
2580 * src/lex.c (lex): here.
2581 Also use `symbol_class_set' instead of hand written code.
2582 * src/reader.c (parse_assoc_decl): Likewise.
2583
2584 2002-06-10 Akim Demaille <akim@epita.fr>
2585
2586 * src/symtab.c, src/symtab.c (symbol_class_set)
2587 (symbol_user_token_number_set): New.
2588 * src/reader.c (parse_token_decl): Use them.
2589 Use a switch instead of ifs.
2590 Use a single argument.
2591
2592 2002-06-10 Akim Demaille <akim@epita.fr>
2593
2594 Remove `%thong' support as it is undocumented, unused, duplicates
2595 `%token's job, and creates useless e-mail traffic with people who
2596 want to know what it is, why it is undocumented, unused, and
2597 duplicates `%token's job.
2598
2599 * src/reader.c (parse_thong_decl): Remove.
2600 * src/options.c (option_table): Remove "thong".
2601 * src/lex.h (tok_thong): Remove.
2602
2603 2002-06-10 Akim Demaille <akim@epita.fr>
2604
2605 * src/symtab.c, src/symtab.c (symbol_type_set)
2606 (symbol_precedence_set): New.
2607 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
2608 (value_components_used): Remove, unused.
2609
2610 2002-06-09 Akim Demaille <akim@epita.fr>
2611
2612 Move symbols handling code out of the reader.
2613
2614 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
2615 (axiom): Move to...
2616 * src/symtab.h, src/symtab.c: here.
2617
2618 * src/gram.c (start_symbol): Remove: use startsymbol->number.
2619 * src/reader.c (startval): Rename as...
2620 * src/symtab.h, src/symtab.c (startsymbol): this.
2621 * src/reader.c: Adjust.
2622
2623 * src/reader.c (symbol_check_defined, symbol_make_alias)
2624 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
2625 (token_translations_init)
2626 Move to...
2627 * src/symtab.c: here.
2628 * src/reader.c (packsymbols): Move to...
2629 * src/symtab.h, src/symtab.c (symbols_pack): here.
2630 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
2631 argument.
2632
2633 2002-06-03 Akim Demaille <akim@epita.fr>
2634
2635 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
2636 then statements.
2637
2638 2002-06-03 Akim Demaille <akim@epita.fr>
2639
2640 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
2641 structs with non literals.
2642 * src/scan-skel.l: never-interactive.
2643 * src/conflicts.c (enum conflict_resolution_e): No trailing
2644 comma.
2645 * src/getargs.c (usage): Split long literal strings.
2646 Reported by Hans Aberg.
2647
2648 2002-05-28 Akim Demaille <akim@epita.fr>
2649
2650 * data/bison.c++: Use C++ ostreams.
2651 (cdebug_): New member.
2652
2653 2002-05-28 Akim Demaille <akim@epita.fr>
2654
2655 * src/output.c (output_skeleton): Be sure to allocate enough room
2656 for `/' _and_ for `\0' in full_skeleton.
2657
2658 2002-05-28 Akim Demaille <akim@epita.fr>
2659
2660 * data/bison.c++: Catch up with bison.simple:
2661 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2662 and Paul Eggert <eggert@twinsun.com>: `error' handing.
2663 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
2664 and popping traces.
2665
2666 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2667
2668 * src/output.c (output_skeleton): Put an explicit path in front of
2669 the skeleton file name, rather than relying on the -I directory,
2670 to partially alleviate effects of having a skeleton file lying around
2671 in the current directory.
2672
2673 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2674
2675 * src/conflicts.c (log_resolution): Correct typo:
2676 obstack_printf should be obstack_fgrow1.
2677
2678 2002-05-26 Akim Demaille <akim@epita.fr>
2679
2680 * src/state.h (state_t): `solved_conflicts' is a new member.
2681 * src/LR0.c (new_state): Set it to 0.
2682 * src/conflicts.h, src/conflicts.c (print_conflicts)
2683 (free_conflicts, solve_conflicts): Rename as...
2684 (conflicts_print, conflicts_free, conflicts_solve): these.
2685 Adjust callers.
2686 * src/conflicts.c (enum conflict_resolution_e)
2687 (solved_conflicts_obstack): New, used by...
2688 (log_resolution): this.
2689 Adjust to attach the conflict resolution to each state.
2690 Complete the description with the precedence/associativity
2691 information.
2692 (resolve_sr_conflict): Adjust.
2693 * src/print.c (print_state): Output its solved_conflicts.
2694 * tests/conflicts.at (Unresolved SR Conflicts)
2695 (Solved SR Conflicts): Exercise --report=all.
2696
2697 2002-05-26 Akim Demaille <akim@epita.fr>
2698
2699 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
2700 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
2701 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
2702 (token_number_t, item_number_as_token_number)
2703 (token_number_as_item_number, muscle_insert_token_number_table):
2704 Rename as...
2705 (symbol_number_t, item_number_as_symbol_number)
2706 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
2707 these, since it is more appropriate.
2708
2709 2002-05-26 Akim Demaille <akim@epita.fr>
2710
2711 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
2712 `Error:' lines.
2713 * data/bison.simple (yystos) [YYDEBUG]: New.
2714 (yyparse) [YYDEBUG]: Display the symbols which are popped during
2715 error recovery.
2716 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
2717
2718 2002-05-25 Akim Demaille <akim@epita.fr>
2719
2720 * doc/bison.texinfo (Debugging): Split into...
2721 (Tracing): this new section, its former contents, and...
2722 (Understanding): this new section.
2723 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
2724 by...
2725 (report_flag): this.
2726 Adjust all dependencies.
2727 (report_args, report_types, report_argmatch): New.
2728 (usage, getargs): Report/support -r, --report.
2729 * src/options.h
2730 (struct option_table_struct): Rename as..,
2731 (struct option_table_s): this.
2732 Rename the `set_flag' member to `flag' to match with getopt_long's
2733 struct.
2734 * src/options.c (option_table): Split verbose into an entry for
2735 %verbose, and another for --verbose.
2736 Support --report/-r, so remove -r from the obsolete --raw.
2737 * src/print.c: Attach full item sets and lookaheads reports to
2738 report_flag instead of trace_flag.
2739 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
2740
2741 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2742 and Paul Eggert <eggert@twinsun.com>
2743
2744 * data/bison.simple (yyparse): Correct error handling to conform to
2745 POSIX and yacc. Specifically, after syntax error is discovered,
2746 do not reduce further before shifting the error token.
2747 Clean up the code a bit by removing the labels yyerrdefault,
2748 yyerrhandle, yyerrpop.
2749 * NEWS: Document the above.
2750
2751 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2752
2753 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
2754 type; it isn't always big enough, since it doesn't necessarily
2755 include non-terminals.
2756 (yytranslate): Expand definition of yy_token_number_type, so that
2757 the latter can be removed.
2758 (yy_token_number_type): Remove, only one use.
2759 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
2760 don't use TokenNumberType as element type.
2761
2762 * tests/regression.at: Modify expected output to agree with change
2763 to yyr1 and yytranslate.
2764
2765 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
2766
2767 * src/reader.c (parse_action): Use copy_character instead of
2768 obstack_1grow.
2769
2770 2002-05-13 Akim Demaille <akim@epita.fr>
2771
2772 * tests/regression.at (Token definitions): Prototype yylex and
2773 yyerror.
2774
2775 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2776
2777 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
2778 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
2779 32-bit arithmetic.
2780 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
2781
2782 2002-05-07 Akim Demaille <akim@epita.fr>
2783
2784 * tests/synclines.at: Be sure to prototype yylex and yyerror to
2785 avoid GCC warnings.
2786
2787 2002-05-07 Akim Demaille <akim@epita.fr>
2788
2789 Kill GCC warnings.
2790
2791 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
2792 over the RHS of each rule.
2793 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
2794 * src/state.h (state_t): Member `nitems' is unsigned short.
2795 * src/LR0.c (get_state): Adjust.
2796 * src/reader.c (packgram): Likewise.
2797 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
2798 `Type'.
2799 (muscle_insert_int_table): Remove, unused.
2800 (prepare_rules): Remove `max'.
2801
2802 2002-05-06 Akim Demaille <akim@epita.fr>
2803
2804 * src/closure.c (print_firsts): Display of the symbol tags.
2805 (bitmatrix_print): Move to...
2806 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
2807 here.
2808 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
2809
2810 2002-05-06 Akim Demaille <akim@epita.fr>
2811
2812 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
2813 hash_do_for_each.
2814
2815 2002-05-06 Akim Demaille <akim@epita.fr>
2816
2817 * src/LR0.c (new_state, get_state): Instead of using the global
2818 `kernel_size' and `kernel_base', have two new arguments:
2819 `core_size' and `core'.
2820 Adjust callers.
2821
2822 2002-05-06 Akim Demaille <akim@epita.fr>
2823
2824 * src/reader.c (packgram): No longer end `ritem' with a 0
2825 sentinel: it is not used.
2826
2827 2002-05-05 Akim Demaille <akim@epita.fr>
2828
2829 New experimental feature: display the lookaheads in the report and
2830 graph.
2831
2832 * src/print (print_core): When --trace-flag, display the rules
2833 lookaheads.
2834 * src/print_graph.c (print_core): Likewise.
2835 Swap the arguments.
2836 Adjust caller.
2837
2838 2002-05-05 Akim Demaille <akim@epita.fr>
2839
2840 * tests/torture.at (Many lookaheads): New test.
2841
2842 2002-05-05 Akim Demaille <akim@epita.fr>
2843
2844 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
2845 (GENERATE_MUSCLE_INSERT_TABLE): this.
2846 (output_int_table, output_unsigned_int_table, output_short_table)
2847 (output_token_number_table, output_item_number_table): Replace with...
2848 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
2849 (muscle_insert_short_table, muscle_insert_token_number_table)
2850 (muscle_insert_item_number_table): these.
2851 Adjust all callers.
2852 (prepare_tokens): Don't free `translations', since...
2853 * src/reader.h, src/reader.c (grammar_free): do it.
2854 Move to...
2855 * src/gram.h, src/gram.c (grammar_free): here.
2856 * data/bison.simple, data/bison.c++: b4_token_number_max is now
2857 b4_translate_max.
2858
2859 2002-05-05 Akim Demaille <akim@epita.fr>
2860
2861 * src/output.c (output_unsigned_int_table): New.
2862 (prepare_rules): `i' is unsigned.
2863 `prhs', `rline', `r2' are unsigned int.
2864 Rename muscle `rhs_number_max' as `rhs_max'.
2865 Output muscles `prhs_max', `rline_max', and `r2_max'.
2866 Free rline and r1.
2867 * data/bison.simple, data/bison.c++: Adjust to use these muscles
2868 to compute types instead of constant types.
2869 * tests/regression.at (Web2c Actions): Adjust.
2870
2871 2002-05-04 Akim Demaille <akim@epita.fr>
2872
2873 * src/symtab.h (SALIAS, SUNDEF): Rename as...
2874 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
2875 Adjust dependencies.
2876 * src/output.c (token_definitions_output): Be sure not to output a
2877 `#define 'a'' when fed with `%token 'a' "a"'.
2878 * tests/regression.at (Token definitions): New.
2879
2880 2002-05-03 Paul Eggert <eggert@twinsun.com>
2881
2882 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
2883 for K&R C.
2884
2885 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
2886
2887 * Makefile.am (SUBDIRS): Remove intl.
2888 (EXTRA_DIST): Add config/config.rpath.
2889
2890 2002-05-03 Akim Demaille <akim@epita.fr>
2891
2892 * data/bison.simple (m4_if): Don't output empty enums.
2893 And actually, output valid enum definitions :(.
2894
2895 2002-05-03 Akim Demaille <akim@epita.fr>
2896
2897 * configure.bat: Remove, completely obsolete.
2898 * Makefile.am (EXTRA_DIST): Adjust.
2899 Don't distribute config.rpath...
2900 * config/Makefile.am (EXTRA_DIST): Do it.
2901
2902 2002-05-03 Akim Demaille <akim@epita.fr>
2903
2904 * configure.in (GETTEXT_VERSION): New.
2905 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
2906
2907 2002-05-03 Akim Demaille <akim@epita.fr>
2908
2909 * data/bison.simple (b4_token_enum): New.
2910 (b4_token_defines): Use it to output tokens both as #define and
2911 enums.
2912 Suggested by Paul Eggert.
2913 * src/output.c (token_definitions_output): Don't output spurious
2914 white spaces.
2915
2916 2002-05-03 Akim Demaille <akim@epita.fr>
2917
2918 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
2919
2920 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
2921
2922 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
2923 Update the stack class, give a try to deque as the default container.
2924
2925 2002-05-02 Akim Demaille <akim@epita.fr>
2926
2927 * data/bison.simple (yyparse): Do not implement @$ = @1.
2928 (YYLLOC_DEFAULT): Adjust to do it.
2929 * doc/bison.texinfo (Location Default Action): Fix.
2930
2931 2002-05-02 Akim Demaille <akim@epita.fr>
2932
2933 * src/reader.c (parse_braces): Merge into...
2934 (parse_action): this.
2935
2936 2002-05-02 Akim Demaille <akim@epita.fr>
2937
2938 * configure.in (ALL_LINGUAS): Remove.
2939 * po/LINGUAS, hr.po: New.
2940
2941 2002-05-02 Akim Demaille <akim@epita.fr>
2942
2943 Remove the so called hairy (semantic) parsers.
2944
2945 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
2946 * src/gram.h, src/gram.c (semantic_parser): Remove.
2947 (rule_t): Remove the guard and guard_line members.
2948 * src/lex.h (token_t): remove tok_guard.
2949 * src/options.c (option_table): Remove %guard and %semantic_parser
2950 support.
2951 * src/output.c, src/output.h (guards_output): Remove.
2952 (prepare): Adjust.
2953 (token_definitions_output): Don't output the `T'
2954 tokens (???).
2955 (output_skeleton): Don't output the guards.
2956 * src/files.c, src/files.c (attrsfile): Remove.
2957 * src/reader.c (symbol_list): Remove the guard and guard_line
2958 members.
2959 Adjust dependencies.
2960 (parse_guard): Remove.
2961 * data/bison.hairy: Remove.
2962 * doc/bison.texinfo (Environment Variables): Remove occurrences of
2963 BISON_HAIRY.
2964
2965 2002-05-02 Akim Demaille <akim@epita.fr>
2966
2967 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
2968 (parse_guard): Rename the formal argument `stack_offset' as
2969 `rule_length', which is more readable.
2970 Adjust callers.
2971 (copy_at, copy_dollar): Instead of outputting the hard coded
2972 values of $$, $n and so forth, output invocation to b4_lhs_value,
2973 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
2974 Note: this patch partially drops `semantic-parser' support: it
2975 always does `rule_length - n', where semantic parsers ought to
2976 always use `-n'.
2977 * data/bison.simple, data/bison.c++ (b4_lhs_value)
2978 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
2979
2980 2002-05-02 Akim Demaille <akim@epita.fr>
2981
2982 * configure.in (AC_INIT): Bump to 1.49b.
2983 (AM_INIT_AUTOMAKE): Short invocation.
2984
2985 2002-05-02 Akim Demaille <akim@epita.fr>
2986
2987 Version 1.49a.
2988
2989 2002-05-01 Akim Demaille <akim@epita.fr>
2990
2991 * src/skeleton.h: Remove.
2992
2993 2002-05-01 Akim Demaille <akim@epita.fr>
2994
2995 * src/skeleton.h: Fix the #endif.
2996 Reported by Magnus Fromreide.
2997
2998 2002-04-26 Paul Eggert <eggert@twinsun.com>
2999
3000 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
3001 Define if we define YYSTYPE and YYLTYPE, respectively.
3002 (YYCOPY): Fix [] quoting problem in the non-GCC case.
3003
3004 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
3005
3006 * src/scan-skel.l: Postprocess quadrigraphs.
3007
3008 * src/reader.c (copy_character): New function, used to output
3009 single characters while replacing `[' and `]' with quadrigraphs, to
3010 avoid troubles with M4 quotes.
3011 (copy_comment): Output characters with copy_character.
3012 (read_additionnal_code): Likewise.
3013 (copy_string2): Likewise.
3014 (copy_definition): Likewise.
3015
3016 * tests/calc.at: Exercise M4 quoting.
3017
3018 2002-04-25 Akim Demaille <akim@epita.fr>
3019
3020 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
3021 between `!' and the command.
3022 Reported by Paul Eggert.
3023
3024 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
3025
3026 * tests/calc.at: Exercise prologue splitting.
3027
3028 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
3029 `b4_post_prologue' instead of `b4_prologue'.
3030
3031 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
3032 muscles.
3033 (output): Free pre_prologue_obstack and post_prologue_obstack.
3034 * src/files.h, src/files.c (attrs_obstack): Remove.
3035 (pre_prologue_obstack, post_prologue_obstack): New.
3036 * src/reader.c (copy_definition): Add a parameter to specify the
3037 obstack to fill, instead of using attrs_obstack unconditionally.
3038 (read_declarations): Pass pre_prologue_obstack to copy_definition if
3039 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
3040
3041 2002-04-23 Paul Eggert <eggert@twinsun.com>
3042
3043 * data/bison.simple: Remove unnecessary commentary and white
3044 space differences from 1_29-branch.
3045 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
3046
3047 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
3048 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
3049 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
3050 constructors or destructors.
3051
3052 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
3053
3054 2002-04-23 Akim Demaille <akim@epita.fr>
3055
3056 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
3057 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
3058 location with columns.
3059 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
3060 All reported by Paul Eggert.
3061
3062 2002-04-22 Akim Demaille <akim@epita.fr>
3063
3064 * src/reduce.c (dump_grammar): Move to...
3065 * src/gram.h, src/gram.c (grammar_dump): here.
3066 Be sure to separate long item numbers.
3067 Don't read the members of a rule's prec if its nil.
3068
3069 2002-04-22 Akim Demaille <akim@epita.fr>
3070
3071 * src/output.c (table_size, table_grow): New.
3072 (MAXTABLE): Remove, replace uses with table_size.
3073 (pack_vector): Instead of dying when the table is too big, grow it.
3074
3075 2002-04-22 Akim Demaille <akim@epita.fr>
3076
3077 * data/bison.simple (yyr1): Its type is that of a token number.
3078 * data/bison.c++ (r1_): Likewise.
3079 * tests/regression.at (Web2c Actions): Adjust.
3080
3081 2002-04-22 Akim Demaille <akim@epita.fr>
3082
3083 * src/reader.c (token_translations_init): 256 is now the default
3084 value for the error token, i.e., it will be assigned another
3085 number if the user assigned 256 to one of her tokens.
3086 (reader): Don't force 256 to error.
3087 * doc/bison.texinfo (Symbols): Adjust.
3088 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
3089 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
3090 etc. instead of 10, 20, 30 (which was used to `jump' over error
3091 (256) and undefined (2)).
3092
3093 2002-04-22 Akim Demaille <akim@epita.fr>
3094
3095 Propagate more token_number_t.
3096
3097 * src/gram.h (token_number_as_item_number)
3098 (item_number_as_token_number): New.
3099 * src/output.c (GENERATE_OUTPUT_TABLE): New.
3100 Use it to create output_item_number_table and
3101 output_token_number_table.
3102 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
3103 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
3104 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
3105 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
3106
3107 2002-04-22 Akim Demaille <akim@epita.fr>
3108
3109 * src/output.h, src/output.c (get_lines_number): Remove.
3110
3111 2002-04-19 Akim Demaille <akim@epita.fr>
3112
3113 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
3114 as Lex/Flex'.
3115 (Debugging): More details about enabling the debugging features.
3116 (Table of Symbols): Describe $$, $n, @$, and @n.
3117 Suggested by Tim Josling.
3118
3119 2002-04-19 Akim Demaille <akim@epita.fr>
3120
3121 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
3122
3123 2002-04-10 Akim Demaille <akim@epita.fr>
3124
3125 * src/system.h: Rely on HAVE_LIMITS_H.
3126 Suggested by Paul Eggert.
3127
3128 2002-04-09 Akim Demaille <akim@epita.fr>
3129
3130 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
3131 full stderr, and strip it according to the bison options, instead
3132 of composing the error message from different bits.
3133 This makes it easier to check for several error messages.
3134 Adjust all the invocations.
3135 Add an invocation exercising the error token.
3136 Add an invocation demonstrating a stupid error message.
3137 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
3138 Adjust the tests.
3139 Error message are for stderr, not stdout.
3140
3141 2002-04-09 Akim Demaille <akim@epita.fr>
3142
3143 * src/gram.h, src/gram.c (error_token_number): Remove, use
3144 errtoken->number.
3145 * src/reader.c (reader): Don't specify the user token number (2)
3146 for $undefined, as it uselessly prevents using it.
3147 * src/gram.h (token_number_t): Move to...
3148 * src/symtab.h: here.
3149 (state_t.number): Is a token_number_t.
3150 * src/print.c, src/reader.c: Use undeftoken->number instead of
3151 hard coded 2.
3152 (Even though this 2 is not the same as above: the number of the
3153 undeftoken remains being 2, it is its user token number which
3154 might not be 2).
3155 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
3156 `user_token_number_max'.
3157 Output `undef_token_number'.
3158 * data/bison.simple, data/bison.c++: Use them.
3159 Be sure to map invalid yylex return values to
3160 `undef_token_number'. This saves us from gratuitous SEGV.
3161
3162 * tests/conflicts.at (Solved SR Conflicts)
3163 (Unresolved SR Conflicts): Adjust.
3164 * tests/regression.at (Web2c Actions): Adjust.
3165
3166 2002-04-08 Akim Demaille <akim@epita.fr>
3167
3168 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
3169 Adding #line.
3170 Remove the duplicate `typedefs'.
3171 (RhsNumberType): Fix the declaration and various other typos.
3172 Use __ofile__.
3173 * data/bison.simple: Use __ofile__.
3174 * src/scan-skel.l: Handle __ofile__.
3175
3176 2002-04-08 Akim Demaille <akim@epita.fr>
3177
3178 * src/gram.h (item_number_t): New, the type of item numbers in
3179 RITEM. Note that it must be able to code symbol numbers as
3180 positive number, and the negation of rule numbers as negative
3181 numbers.
3182 Adjust all dependencies (pretty many).
3183 * src/reduce.c (rule): Remove this `short *' pointer: use
3184 item_number_t.
3185 * src/system.h (MINSHORT, MAXSHORT): Remove.
3186 Include `limits.h'.
3187 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
3188 (shortcpy): Remove.
3189 (MAXTABLE): Move to...
3190 * src/output.c (MAXTABLE): here.
3191 (prepare_rules): Use output_int_table to output rhs.
3192 * data/bison.simple, data/bison.c++: Adjust.
3193 * tests/torture.at (Big triangle): Move the limit from 254 to
3194 500.
3195 * tests/regression.at (Web2c Actions): Ajust.
3196
3197 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
3198 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
3199 passes, but produces negative #line number, once fixed, GCC is
3200 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
3201 C), it passes.
3202 * src/state.h (state_h): Code input lines on ints, not shorts.
3203
3204 2002-04-08 Akim Demaille <akim@epita.fr>
3205
3206 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
3207 and then the grammar.
3208
3209 2002-04-08 Akim Demaille <akim@epita.fr>
3210
3211 * src/system.h: No longer using strndup.
3212
3213 2002-04-07 Akim Demaille <akim@epita.fr>
3214
3215 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
3216 * src/output.c (output_table_data): Return the longest number.
3217 (prepare_tokens): Output `token_number_max').
3218 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
3219 New.
3220 Use them to define yy_token_number_type/TokenNumberType.
3221 Use this type for yytranslate.
3222 * tests/torture.at (Big triangle): Push the limit from 124 to
3223 253.
3224 * tests/regression.at (Web2c Actions): Adjust.
3225
3226 2002-04-07 Akim Demaille <akim@epita.fr>
3227
3228 * tests/torture.at (Big triangle): New.
3229 (GNU AWK Grammar, GNU Cim Grammar): Move to...
3230 * tests/existing.at: here.
3231
3232 2002-04-07 Akim Demaille <akim@epita.fr>
3233
3234 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
3235 nritems.
3236 Adjust dependencies.
3237
3238 2002-04-07 Akim Demaille <akim@epita.fr>
3239
3240 * src/reader.c: Normalize increments to prefix form.
3241
3242 2002-04-07 Akim Demaille <akim@epita.fr>
3243
3244 * src/reader.c, symtab.c: Remove debugging code.
3245
3246 2002-04-07 Akim Demaille <akim@epita.fr>
3247
3248 Rename all the `bucket's as `symbol_t'.
3249
3250 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
3251 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
3252 * src/symtab.c, src/symtab.h (bucket): Rename as...
3253 (symbol_t): this.
3254 (symbol_list_new, bucket_check_defined, bucket_make_alias)
3255 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
3256 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
3257 (buckets_new, buckets_free, buckets_do): Rename as...
3258 (symbol_list_new, symbol_check_defined, symbol_make_alias)
3259 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
3260 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
3261 (symbols_new, symbols_free, symbols_do): these.
3262
3263 2002-04-07 Akim Demaille <akim@epita.fr>
3264
3265 Use lib/hash for the symbol table.
3266
3267 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
3268 EOF.
3269 * src/lex.c (lex): Set the `number' member of new terminals.
3270 * src/reader.c (bucket_check_defined, bucket_make_alias)
3271 (bucket_check_alias_consistence, bucket_translation): New.
3272 (reader, grammar_free, readgram, token_translations_init)
3273 (packsymbols): Adjust.
3274 (reader): Number the predefined tokens.
3275 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
3276 for predefined tokens.
3277 * src/symtab.h (bucket): Remove all the hash table related
3278 members.
3279 * src/symtab.c (symtab): Replace by...
3280 (bucket_table): this.
3281 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
3282 (buckets_new, buckets_do): New.
3283
3284 2002-04-07 Akim Demaille <akim@epita.fr>
3285
3286 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
3287 (start_symbol, max_user_token_number, semantic_parser)
3288 (error_token_number): Initialize.
3289 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
3290 Initialize.
3291 (reader): Don't.
3292 (errtoken, eoftoken, undeftoken, axiom): Extern.
3293
3294 2002-04-07 Akim Demaille <akim@epita.fr>
3295
3296 * src/gram.h (rule_s): prec and precsym are now pointers
3297 to the bucket giving the priority/associativity.
3298 Member `associativity' removed: useless.
3299 * src/reduce.c, src/conflicts.c: Adjust.
3300
3301 2002-04-07 Akim Demaille <akim@epita.fr>
3302
3303 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
3304 Properly escape the symbols' TAG when outputting them.
3305
3306 2002-04-07 Akim Demaille <akim@epita.fr>
3307
3308 * src/lalr.h (LA): Is a bitsetv, not bitset*.
3309
3310 2002-04-07 Akim Demaille <akim@epita.fr>
3311
3312 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
3313 (LArule): this, which is an array to rule_t*.
3314 * src/print.c, src/conflicts.c: Adjust.
3315
3316 2002-04-07 Akim Demaille <akim@epita.fr>
3317
3318 * src/gram.h (rule_t): Rename `number' as `user_number'.
3319 `number' is a new member.
3320 Adjust dependencies.
3321 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
3322
3323 2002-04-07 Akim Demaille <akim@epita.fr>
3324
3325 As a result of the previous patch, it is no longer needed
3326 to reorder ritem itself.
3327
3328 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
3329
3330 2002-04-07 Akim Demaille <akim@epita.fr>
3331
3332 Be sure never to walk through RITEMS, but use only data related to
3333 the rules themselves. RITEMS should be banished.
3334
3335 * src/output.c (output_token_translations): Rename as...
3336 (prepare_tokens): this.
3337 In addition to `translate', prepare the muscles `tname' and
3338 `toknum', which were handled by...
3339 (output_rule_data): this.
3340 Remove, and move the remainder of its outputs into...
3341 (prepare_rules): this new routines, which also merges content from
3342 (output_gram): this.
3343 (prepare_rules): Be sure never to walk through RITEMS.
3344 (output_stos): Rename as...
3345 (prepare_stos): this.
3346 (output): Always invoke prepare_states, after all, just don't use it
3347 in the output if you don't need it.
3348
3349 2002-04-07 Akim Demaille <akim@epita.fr>
3350
3351 * src/LR0.c (new_state): Display `nstates' as the name of the
3352 newly created state.
3353 Adjust to initialize first_state and last_state if needed.
3354 Be sure to distinguish the initial from the final state.
3355 (new_states): Create the itemset of the initial state, and use
3356 new_state.
3357 * src/closure.c (closure): Now that the initial state has its
3358 items properly set, there is no need for a special case when
3359 creating `ruleset'.
3360
3361 As a result, now the rule 0, reducing to $axiom, is visible in the
3362 outputs. Adjust the test suite.
3363
3364 * tests/conflicts.at (Solved SR Conflicts)
3365 (Unresolved SR Conflicts): Adjust.
3366 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
3367 * tests/conflicts.at (S/R in initial): New.
3368
3369 2002-04-07 Akim Demaille <akim@epita.fr>
3370
3371 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
3372 the RHS of the rules.
3373 * src/output.c (output_gram): Likewise.
3374
3375 2002-04-07 Akim Demaille <akim@epita.fr>
3376
3377 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
3378 bucket.
3379 Adjust all dependencies.
3380 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
3381 `number' of the buckets too.
3382 * src/gram.h: Include `symtab.h'.
3383 (associativity): Move to...
3384 * src/symtab.h: here.
3385 No longer include `gram.h'.
3386
3387 2002-04-07 Akim Demaille <akim@epita.fr>
3388
3389 * src/gram.h, src/gram.c (rules_rhs_length): New.
3390 (ritem_longest_rhs): Use it.
3391 * src/gram.h (rule_t): `number' is a new member.
3392 * src/reader.c (packgram): Set it.
3393 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
3394 the end of `rules', and count them out of `nrules'.
3395 (reduce_output, dump_grammar): Adjust.
3396 * src/print.c (print_grammar): It is no longer needed to check for
3397 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
3398 * tests/reduce.at (Reduced Automaton): New test.
3399
3400 2002-04-07 Akim Demaille <akim@epita.fr>
3401
3402 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
3403 lacking `+ 1' to nrules, Bison reported as useless a token if it
3404 was used solely to set the precedence of the last rule...
3405
3406 2002-04-07 Akim Demaille <akim@epita.fr>
3407
3408 * data/bison.c++, data/bison.simple: Don't output the current file
3409 name in #line, to avoid useless diffs between two identical
3410 outputs under different names.
3411
3412 2002-04-07 Akim Demaille <akim@epita.fr>
3413
3414 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
3415 Normalize loops to using `< nrules + 1', not `<= nrules'.
3416
3417 2002-04-07 Akim Demaille <akim@epita.fr>
3418
3419 * TODO: Update.
3420
3421 2002-04-07 Akim Demaille <akim@epita.fr>
3422
3423 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
3424 bucket.value as bucket.number.
3425
3426 2002-04-07 Akim Demaille <akim@epita.fr>
3427
3428 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
3429 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
3430 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
3431 RHS, instead of being an index in RITEMS.
3432
3433 2002-04-04 Paul Eggert <eggert@twinsun.com>
3434
3435 * doc/bison.texinfo: Update copyright date.
3436 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
3437 (Symbols): Warn about running Bison in one character set,
3438 but compiling and/or running in an incompatible one.
3439 Warn about character code 256, too.
3440
3441 2002-04-03 Paul Eggert <eggert@twinsun.com>
3442
3443 * src/bison.data (YYSTACK_ALLOC): Depend on whether
3444 YYERROR_VERBOSE is nonzero, not whether it is defined.
3445
3446 Merge changes from bison-1_29-branch.
3447
3448 2002-03-20 Paul Eggert <eggert@twinsun.com>
3449
3450 Merge fixes from Debian bison_1.34-1.diff.
3451
3452 * configure.in (AC_PREREQ): 2.53.
3453
3454 2002-03-20 Akim Demaille <akim@epita.fr>
3455
3456 * src/conflicts.c (log_resolution): Argument `resolution' is const.
3457
3458 2002-03-19 Paul Eggert <eggert@twinsun.com>
3459
3460 * src/bison.simple (YYCOPY): New macro.
3461 (YYSTACK_RELOCATE): Use it.
3462 Remove Type arg; no longer needed. All callers changed.
3463 (yymemcpy): Remove; no longer needed.
3464
3465 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
3466 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
3467
3468 2002-03-19 Akim Demaille <akim@epita.fr>
3469
3470 Test and fix the #line outputs.
3471
3472 * tests/atlocal.at (GCC): New.
3473 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
3474 (Prologue synch line, ,%union synch line, Postprologue synch line)
3475 (Action synch line, Epilogue synch line): New tests.
3476 * src/reader.c (parse_union_decl): Define the muscle stype_line.
3477 * data/bison.simple, data/bison.c++: Use it.
3478
3479 2002-03-19 Akim Demaille <akim@epita.fr>
3480
3481 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
3482 (Solved SR Conflicts, %expect not enough, %expect right)
3483 (%expect too much): Move to...
3484 * tests/conflicts.at: this new file.
3485
3486 2002-03-19 Akim Demaille <akim@epita.fr>
3487
3488 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
3489 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
3490 that we can move to enums for instance.
3491 * src/output.c (token_definitions_output): Output a list of
3492 `token-name, token-number' instead of the #define.
3493 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
3494
3495 2002-03-14 Akim Demaille <akim@epita.fr>
3496
3497 Use Gettext 0.11.1.
3498
3499 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
3500
3501 * data/bison.c++: Make the user able to add members to the generated
3502 parser by subclassing.
3503
3504 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
3505
3506 * src/reader.c (read_additionnal_code): `c' should be an integer, not
3507 a character.
3508 Reported by Nicolas Tisserand and Nicolas Burrus.
3509
3510 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
3511
3512 * src/reader.c: Warn about lacking semi-colons, do not complain.
3513
3514 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
3515
3516 * data/bison.c++: Remove a debug line.
3517
3518 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
3519
3520 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
3521 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
3522 provide a default implementation.
3523
3524 2002-03-04 Akim Demaille <akim@epita.fr>
3525
3526 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
3527 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
3528 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
3529 * tests/semantic.at (Parsing Guards): Similarly.
3530 * src/reader.at (readgram): Complain if the last rule is not ended
3531 with a semi-colon.
3532
3533 2002-03-04 Akim Demaille <akim@epita.fr>
3534
3535 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
3536 * src/closure.c: here.
3537 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
3538 RTC.
3539 * src/warshall.h, src/warshall.c: Remove.
3540 * tests/sets.at (Broken Closure): Adjust.
3541
3542 2002-03-04 Akim Demaille <akim@epita.fr>
3543
3544 * src/output.c (output_skeleton): tempdir is const.
3545 bytes_read is unused.
3546
3547 2002-03-04 Akim Demaille <akim@epita.fr>
3548
3549 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
3550 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
3551 Update.
3552 From Michael Hayes.
3553
3554 2002-03-04 Akim Demaille <akim@epita.fr>
3555
3556 * src/closure.c (closure): `r' is unused.
3557
3558 2002-03-04 Akim Demaille <akim@epita.fr>
3559
3560 * tests/sets.at (Broken Closure): Add the ending `;'.
3561 * src/reader.at (readgram): Complain if a rule is not ended with a
3562 semi-colon.
3563
3564 2002-03-04 Akim Demaille <akim@epita.fr>
3565
3566 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
3567 (count_sr_conflicts): Use bitset_count.
3568 * src/reduce.c (inaccessable_symbols): Ditto.
3569 (bits_size): Remove.
3570 * src/warshall.h, src/warshall.c: Convert to bitsetv.
3571
3572 2002-03-04 Akim Demaille <akim@epita.fr>
3573
3574 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
3575 * src/reduce.c: Remove the `bitset_zero's following the
3576 `bitset_create's, as now it is performed by the latter.
3577
3578 2002-03-04 Akim Demaille <akim@epita.fr>
3579
3580 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
3581 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
3582 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
3583 latest sources from Michael.
3584
3585 2002-03-04 Akim Demaille <akim@epita.fr>
3586
3587 * src/output.c (output): Don't free the grammar.
3588 * src/reader.c (grammar_free): New.
3589 * src/main.c (main): Call it and don't free symtab here.
3590
3591 2002-03-04 Akim Demaille <akim@epita.fr>
3592
3593 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
3594 before returning.
3595 Reported by Benoit Perrot.
3596
3597 2002-03-04 Akim Demaille <akim@epita.fr>
3598
3599 Use bitset operations when possible, not loops over bits.
3600
3601 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
3602 bitset_or.
3603 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
3604 * src/reduce.c (useless_nonterminals): Formatting changes.
3605 * src/warshall.c (TC): Use bitset_or.
3606
3607 2002-03-04 Akim Demaille <akim@epita.fr>
3608
3609 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
3610 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
3611 Ditto.
3612
3613 2002-03-04 Akim Demaille <akim@epita.fr>
3614
3615 * src/lalr.c (F): Now a bitset*.
3616 Adjust all dependencies.
3617
3618 2002-03-04 Akim Demaille <akim@epita.fr>
3619
3620 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
3621 Adjust all dependencies.
3622
3623 2002-03-04 Akim Demaille <akim@epita.fr>
3624
3625 * src/L0.c, src/LR0.h (nstates): Be size_t.
3626 Adjust comparisons (signed vs unsigned).
3627 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
3628 bitset*.
3629 Adjust all dependencies.
3630
3631 2002-03-04 Akim Demaille <akim@epita.fr>
3632
3633 * src/closure.c (firsts): Now, also a bitset.
3634 Adjust all dependencies.
3635 (varsetsize): Remove, now unused.
3636 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
3637
3638 2002-03-04 Akim Demaille <akim@epita.fr>
3639
3640 * src/print.c: Convert to use bitset.h, not hand coded iterations
3641 over ints.
3642
3643 2002-03-04 Akim Demaille <akim@epita.fr>
3644
3645 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
3646
3647 2002-03-04 Akim Demaille <akim@epita.fr>
3648
3649 * src/closure.c (ruleset): Be a bitset.
3650 (rulesetsize): Remove.
3651
3652 2002-03-04 Akim Demaille <akim@epita.fr>
3653
3654 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
3655 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
3656 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
3657 * src/closure.c (fderives): Be an array of bitsets.
3658
3659 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
3660
3661 * data/bison.c++: Merge the two generated headers. Insert a copyright
3662 notice in each output file.
3663
3664 2002-02-28 Akim Demaille <akim@epita.fr>
3665
3666 * data/bison.c++: Copy the prologue of bison.simple to fetch
3667 useful M4 definitions, such as b4_header_guard.
3668
3669 2002-02-25 Akim Demaille <akim@epita.fr>
3670
3671 * src/getargs.c (version): Give the name of the authors, and use a
3672 translator friendly scheme for the bgr
3673 copyright notice.
3674
3675 2002-02-25 Akim Demaille <akim@epita.fr>
3676
3677 * src/output.c (header_output): Remove, now handled completely via
3678 M4.
3679
3680 2002-02-25 Akim Demaille <akim@epita.fr>
3681
3682 * m4/m4.m4: New, from CVS Autoconf.
3683 * configure.in: Invoke it.
3684 * src/output.c (output_skeleton): Use its result instead of the
3685 hard coded name.
3686
3687 2002-02-25 Akim Demaille <akim@epita.fr>
3688
3689 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
3690 Fileutils 4.1.5.
3691 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
3692 * src/output.c (output_skeleton): Use mkstemp to create a real
3693 temporary file.
3694 Move the filling of `skeleton' and its muscle to...
3695 (prepare): here.
3696 (output): Move the definition of the prologue muscle to...
3697 (prepare): here.
3698 * src/system.h (DEFAULT_TMPDIR): New.
3699
3700 2002-02-14 Paul Eggert <eggert@twinsun.com>
3701
3702 Remove the support for C++ namespace cleanliness; it was
3703 causing more problems than it was curing, since it didn't work
3704 properly on some nonstandard C++ compilers. This can wait
3705 for a proper C++ parser.
3706
3707 * NEWS: Document this.
3708 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
3709 of C++, as it's treated like C now.
3710 * src/bison.simple (YYSTD): Remove.
3711 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
3712 Treat C++ just like Standard C instead of trying to support
3713 namespace cleanliness.
3714
3715 2002-02-14 Akim Demaille <akim@epita.fr>
3716
3717 * tests/regression.at (else): Adjust to Andreas' change.
3718
3719 2002-02-14 Akim Demaille <akim@epita.fr>
3720
3721 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
3722
3723 2002-02-13 Andreas Schwab <schwab@suse.de>
3724
3725 * src/output.c (output_rule_data): Don't output NULL, it might
3726 not be defined yet.
3727
3728 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
3729
3730 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
3731 (Copyright notice): Update.
3732
3733 2002-02-11 Akim Demaille <akim@epita.fr>
3734
3735 * tests/regression.at (%nonassoc and eof): Don't include
3736 nonportable headers.
3737
3738 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
3739
3740 * data/bison.c++: Correct error recovery. Make the user able to
3741 initialize the starting location.
3742
3743 2002-02-07 Akim Demaille <akim@epita.fr>
3744
3745 * tests/input.at: New.
3746
3747 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
3748
3749 * data/bison.c++: Replace some direct m4 expansions by constants. Be
3750 more consistent when naming methods and variables. Put preprocessor
3751 directives around tables only needed for debugging.
3752
3753 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
3754
3755 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
3756 C++ parsers.
3757 (yy::b4_name::parse): Use print_.
3758
3759 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
3760
3761 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
3762
3763 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
3764
3765 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
3766 C++ parsers.
3767 (yy::b4_name::parse): Build verbose error messages, and use error_.
3768
3769 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
3770
3771 * data/bison.c++: Fix m4 quoting in comments.
3772
3773 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
3774
3775 * data/bison.c++: Adjust the parser code. Fix some muscles that were
3776 not expanded by m4.
3777
3778 2002-02-05 Akim Demaille <akim@epita.fr>
3779
3780 * data/bison.c++: Adjust to the M4 back end.
3781 More is certainly needed.
3782
3783 2002-02-05 Akim Demaille <akim@epita.fr>
3784
3785 Give a try to M4 as a back end.
3786
3787 * lib/readpipe.c: New, from wdiff.
3788 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
3789 BISON_HAIRY.
3790 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
3791 specific values. Now it is m4 that performs the lookup.
3792 * src/parse-skel.y: Remove.
3793 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
3794 * src/output.c (actions_output, guards_output)
3795 (token_definitions_output): No longer keeps track of the output
3796 line number, hence remove the second argument.
3797 (guards_output): Check against the guard member of a rule, not the
3798 action member.
3799 Adjust callers.
3800 (output_skeleton): Don't look for the skeleton location, let m4 do
3801 that.
3802 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
3803 file will be used.
3804 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
3805 (prepare): Given that for the time being changesyntax is not
3806 usable in M4, rename the muscles using `-' to `_'.
3807 Define `defines_flag', `output_parser_name' and `output_header_name'.
3808 * src/output.h (actions_output, guards_output)
3809 (token_definitions_output): Adjust prototypes.
3810 * src/scan-skel.l: Instead of scanning the skeletons, it now
3811 processes the output of m4: `__oline__' and `#output'.
3812 * data/bison.simple: Adjust to be used by M4(sugar).
3813 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
3814 to date.
3815 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
3816 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
3817 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
3818 shamelessly stolen from CVS Autoconf.
3819
3820 2002-02-05 Akim Demaille <akim@epita.fr>
3821
3822 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
3823 * configure.in: Check for the declarations of free and malloc.
3824 * src/muscle_tab.c: Adjust.
3825
3826 2002-02-05 Akim Demaille <akim@epita.fr>
3827
3828 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
3829 which have no values.
3830
3831 2002-02-05 Akim Demaille <akim@epita.fr>
3832
3833 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
3834 * data/: here.
3835
3836 2002-01-29 Paul Eggert <eggert@twinsun.com>
3837
3838 * src/bison.simple (YYSIZE_T): Do not define merely because
3839 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
3840 On some platforms, <alloca.h> does not declare YYSTD (size_t).
3841
3842 2002-01-27 Akim Demaille <akim@epita.fr>
3843
3844 Fix `%nonassoc and eof'.
3845
3846 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
3847 which were not properly copied! Replace
3848 memcpy (res->errs, src->errs, src->nerrs);
3849 with
3850 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
3851 !!!
3852 * tests/regression.at (%nonassoc and eof): Adjust to newest
3853 Autotest: `.' is not in the PATH.
3854
3855 2002-01-27 Akim Demaille <akim@epita.fr>
3856
3857 * tests/sets.at (AT_EXTRACT_SETS): New.
3858 (Nullable): Use it.
3859 (Firsts): New.
3860
3861 2002-01-26 Akim Demaille <akim@epita.fr>
3862
3863 * tests/actions.at, tests/calc.at, tests/headers.at,
3864 * tests/torture.at: Adjust to the newest Autotest which no longer
3865 forces `.' in the PATH.
3866
3867 2002-01-25 Akim Demaille <akim@epita.fr>
3868
3869 * tests/regression.at (%nonassoc and eof): New.
3870 Suggested by Robert Anisko.
3871
3872 2002-01-24 Akim Demaille <akim@epita.fr>
3873
3874 Bison dumps core when trying to complain about broken input files.
3875 Reported by Cris van Pelt.
3876
3877 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
3878 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
3879 into...
3880 (Invalid inputs): Strengthen: exercise parse_percent_token.
3881
3882 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
3883
3884 * src/Makefile.am: Add bison.c++.
3885 * src/bison.c++: New skeleton.
3886
3887 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
3888
3889 * po/it.po: New.
3890
3891 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
3892
3893 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
3894
3895 2002-01-20 Marc Autret <marc@gnu.org>
3896
3897 * src/files.c (compute_output_file_names): Fix
3898
3899 2002-01-20 Marc Autret <marc@gnu.org>
3900
3901 * tests/output.at: New test.
3902 * src/files.c (compute_base_names): Don't map extensions when
3903 the YACC flag is set, use defaults.
3904 Reported by Evgeny Stambulchik.
3905
3906 2002-01-20 Marc Autret <marc@gnu.org>
3907
3908 * src/system.h: Need to define __attribute__ away for non-GCC
3909 compilers as well (i.e. the vendor C compiler).
3910 Suggested by Albert Chin-A-Young.
3911
3912 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
3913
3914 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
3915 canonical definition.
3916 * src/system.h: Use the canonical definition for PARAMS (avoids
3917 a conflict with the macro from lib/hash.h).
3918
3919 2002-01-11 Akim Demaille <akim@epita.fr>
3920
3921 * configure.in: Use AC_FUNC_STRNLEN.
3922 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
3923
3924 2002-01-09 Akim Demaille <akim@epita.fr>
3925
3926 * src/files.c, src/files.h (output_infix): New.
3927 (tab_extension): Remove.
3928 (compute_base_names): Compute the former, drop the latter.
3929 * src/output.c (prepare): Insert the muscles `output-infix', and
3930 `output-suffix'.
3931 * src/parse-skel.y (string, string.1): New.
3932 (section.header): Use it.
3933 (section.yacc): Remove.
3934 (prefix): Remove too.
3935 * src/scan-skel.l: Adjust.
3936 * src/bison.simple, src/bison.hairy: Adjust.
3937
3938 2002-01-09 Akim Demaille <akim@epita.fr>
3939
3940 * configure.in (WERROR_CFLAGS): Compute it.
3941 * src/Makefile.am (CFLAGS): Pass it.
3942 * tests/atlocal.in (CFLAGS): Idem.
3943 * src/files.c: Fix a few warnings.
3944 (get_extension_index): Remove, unused.
3945
3946 2002-01-08 Akim Demaille <akim@epita.fr>
3947
3948 * src/getargs.c (AS_FILE_NAME): New.
3949 (getargs): Use it to convert DOSish file names.
3950 * src/files.c (base_name): Rename as full_base_name to avoid
3951 clashes with `base_name ()'.
3952 (filename_split): New.
3953 (compute_base_names): N-th rewrite, using filename_split.
3954
3955 2002-01-08 Akim Demaille <akim@epita.fr>
3956
3957 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
3958 New, stolen from the Fileutils 4.1.
3959 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
3960 * configure.in: Check for the presence of memrchr, and of its
3961 prototype.
3962
3963 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
3964
3965 * lib/hash.h (__P): Added definition for this macro.
3966 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
3967 BUILT_SOURCES, to ensure they are generated first.
3968 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
3969 %error-verbose to allow bootstrapping with bison 1.30x.
3970
3971 2002-01-06 Akim Demaille <akim@epita.fr>
3972
3973 * src/reader.c (parse_braces): Don't fetch the next char, the
3974 convention is to fetch on entry.
3975 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
3976 'switch' without a following semicolon.
3977 * tests/regression.at (braces parsing): New.
3978
3979 2002-01-06 Akim Demaille <akim@epita.fr>
3980
3981 Bison is dead wrong in its RR conflict reports.
3982
3983 * tests/torture.at (GNU Cim Grammar): New.
3984 * src/conflicts.c (count_rr_conflicts): Fix.
3985
3986 2002-01-06 Akim Demaille <akim@epita.fr>
3987
3988 Creating package.m4 from configure.ac causes too many problems.
3989
3990 * tests/Makefile.am (package.m4): Create it by hand,
3991 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
3992
3993 2002-01-06 Akim Demaille <akim@epita.fr>
3994
3995 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
3996 skeleton.h.
3997
3998 2002-01-04 Paul Eggert <eggert@twinsun.com>
3999
4000 * doc/bison.texinfo (Debugging):
4001 Remove YYSTDERR; it's no longer defined or used.
4002 Also, s/cstdio.h/cstdio/.
4003
4004 2002-01-03 Akim Demaille <akim@epita.fr>
4005
4006 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
4007
4008 2002-01-03 Akim Demaille <akim@epita.fr>
4009
4010 * src/parse-skel.y (process_skeleton): Don't bind the parser's
4011 tracing code to --trace, wait for a better --trace option, with
4012 args.
4013
4014 2002-01-03 Akim Demaille <akim@epita.fr>
4015
4016 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
4017 The ISO C++ standard is extremely clear about it: stderr is
4018 considered a macro, not a regular symbol (see table 94 `Header
4019 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
4020 Therefore std:: does not apply to it. It still does with fprintf.
4021 Also, s/cstdio.h/cstdio/.
4022
4023 2002-01-03 Akim Demaille <akim@epita.fr>
4024
4025 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
4026 for non system headers.
4027
4028 2002-01-02 Akim Demaille <akim@epita.fr>
4029
4030 Equip the skeleton chain with location tracking, runtime trace,
4031 pure parser and scanner.
4032
4033 * src/parse-skel.y: Request a pure parser, locations, and prefix
4034 renaming.
4035 (%union): Having several members with the same type does not help
4036 type mismatches, simplify.
4037 (YYPRINT, yyprint): New.
4038 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
4039 (skel_error): this.
4040 Handle locations.
4041 * src/scan-skel.l: Adjust to these changes.
4042 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
4043 (LOCATION_PRINT, skel_control_t): New.
4044
4045 2001-12-30 Akim Demaille <akim@epita.fr>
4046
4047 * src/parse-skel.y: Get rid of the shift/reduce conflict:
4048 replace `gb' with BLANKS.
4049 * src/scan-skel.l: Adjust.
4050
4051 2001-12-30 Akim Demaille <akim@epita.fr>
4052
4053 * src/system.h: We don't need nor want bcopy.
4054 Throw away MS-DOS crap: we don't need getpid.
4055 * configure.in: We don't need strndup. It was even causing
4056 problems: because Flex includes the headers *before* us,
4057 _GNU_SOURCE is not defined by config.h, and therefore strndup was
4058 not visible.
4059 * lib/xstrndup.c: New.
4060 * src/scan-skel.l: Use it.
4061 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
4062 * src/parse-skel.y: Use %directives instead of #defines.
4063
4064 2001-12-30 Akim Demaille <akim@epita.fr>
4065
4066 * src/skeleton.h: New.
4067 * src/output.c (output_parser, output_master_parser): Remove, dead
4068 code.
4069 * src/output.h (get_lines_number, actions_output, guards_output)
4070 (token_definitions_output): Prototype them.
4071 * src/parse-skel.y: Add the license notice.
4072 Include output.h and skeleton.h.
4073 (process_skeleton): Returns void, and takes a single parameter.
4074 * src/scan-skel.l: Add the license notice.
4075 Include skeleton.h.
4076 Don't use %option yylineno: it seems that then Flex imagines
4077 REJECT has been used, and therefore it won't reallocate its
4078 buffers (which makes no other sense to me than a bug). It results
4079 in warnings for `unused: yy_flex_realloc'.
4080
4081 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
4082
4083 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
4084 (MUSCLE_INSERT_PREFIX): ...to there.
4085 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
4086 (MUSCLE_INSERT_PREFIX): Move from here...
4087
4088 * src/bison.hairy: Add a section directive. Put braces around muscle
4089 names. This parser skeleton is still broken, but Bison should not
4090 choke on a bad muscle 'syntax'.
4091 * src/bison.simple: Add a section directive. Put braces around muscle
4092 names.
4093
4094 * src/files.h (strsuffix, stringappend): Add declarations.
4095 (tab_extension): Add declaration.
4096 (short_base_name): Add declaration.
4097
4098 * src/files.c (strsuffix, stringappend): No longer static. These
4099 functions are used in the skeleton parser.
4100 (tab_extension): New.
4101 (compute_base_names): Use the computations done in this function
4102 to guess if the generated parsers should have '.tab' in their
4103 names.
4104 (short_base_name): No longer static.
4105
4106 * src/output.c (output_skeleton): New.
4107 (output): Disable call to output_master_parser, and give a try to
4108 a new skeleton handling system.
4109 (guards_output, actions_output): No longer static.
4110 (token_definitions_output, get_lines_number): No longer static.
4111
4112 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
4113
4114 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
4115 parse-skel.y.
4116
4117 * src/parse-skel.y: New file.
4118 * src/scan-skel.l: New file.
4119
4120 2001-12-29 Akim Demaille <akim@epita.fr>
4121
4122 %name-prefix is broken.
4123
4124 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
4125 Adjust all dependencies.
4126 * tests/headers.at (export YYLTYPE): Strengthen this test: use
4127 %name-prefix.
4128
4129 Renaming yylval but not yylloc is not consistent. Now we do.
4130
4131 * src/bison.simple: Prefix yylloc if used.
4132 * doc/bison.texinfo (Decl Summary): Document that.
4133
4134 2001-12-29 Akim Demaille <akim@epita.fr>
4135
4136 * doc/bison.texinfo: Promote `%long-directive' over
4137 `%long_directive'.
4138 Remove all references to fixed-output-files, yacc is enough.
4139
4140 2001-12-29 Akim Demaille <akim@epita.fr>
4141
4142 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
4143 user prologue. These are defaults.
4144 * tests/actions.at (Mid-rule actions): Make sure the user can
4145 define YYDEBUG and YYERROR_VERBOSE.
4146
4147 2001-12-29 Akim Demaille <akim@epita.fr>
4148
4149 * src/output.c (header_output): Don't forget to export YYLTYPE and
4150 yylloc.
4151 * tests/headers.at (export YYLTYPE): New, make sure it does.
4152 * tests/regression.at (%union and --defines, Invalid CPP headers):
4153 Move to...
4154 * tests/headers.at: here.
4155
4156 2001-12-29 Akim Demaille <akim@epita.fr>
4157
4158 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
4159
4160 2001-12-29 Akim Demaille <akim@epita.fr>
4161
4162 * tests/actions.at (Mid-rule actions): Output on a single line
4163 instead of several.
4164
4165 2001-12-29 Akim Demaille <akim@epita.fr>
4166
4167 * doc/bison.texinfo: Formatting changes.
4168
4169 2001-12-29 Akim Demaille <akim@epita.fr>
4170
4171 Don't store the token defs in a muscle, just be ready to output it
4172 on command. Now possible via `symbols'. Fixes a memory leak.
4173
4174 * src/output.c (token_definitions_output): New.
4175 (output_parser, header_output): Use it.
4176 * src/reader.c (symbols_save): Remove.
4177
4178 2001-12-29 Akim Demaille <akim@epita.fr>
4179
4180 * src/bison.simple: Do not provide a default for YYSTYPE and
4181 YYLTYPE before the user's prologue. Otherwise it's hardly... a
4182 default.
4183
4184 2001-12-29 Akim Demaille <akim@epita.fr>
4185
4186 Mid-rule actions are simply... ignored!
4187
4188 * src/reader.c (readgram): Be sure to attach mid-rule actions to
4189 the empty-rule associated to the dummy symbol, not to the host
4190 rule.
4191 * tests/actions.at (Mid-rule actions): New.
4192
4193 2001-12-29 Akim Demaille <akim@epita.fr>
4194
4195 Memory leak.
4196
4197 * src/reader.c (reader): Free grammar.
4198
4199 2001-12-29 Akim Demaille <akim@epita.fr>
4200
4201 Memory leak.
4202
4203 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
4204 since it allocates it for each state, although only one is needed.
4205 (allocate_storage): Do it here.
4206
4207 2001-12-29 Akim Demaille <akim@epita.fr>
4208
4209 * src/options.h, src/options.c (create_long_option_table): Rename
4210 as...
4211 (long_option_table_new): this, with a clearer prototype.
4212 (percent_table): Remove, unused,
4213 * src/getargs.c (getargs): Adjust.
4214
4215 2001-12-29 Akim Demaille <akim@epita.fr>
4216
4217 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
4218 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
4219 as states.
4220
4221 2001-12-29 Akim Demaille <akim@epita.fr>
4222
4223 * src/lalr.c (build_relations): Rename `states' as `states1'.
4224 Sorry, I don't understand exactly what it is, no better name...
4225
4226 2001-12-29 Akim Demaille <akim@epita.fr>
4227
4228 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
4229 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
4230 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
4231 as rules.
4232
4233 2001-12-29 Akim Demaille <akim@epita.fr>
4234
4235 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
4236 ago.
4237
4238 2001-12-29 Akim Demaille <akim@epita.fr>
4239
4240 * src/reader.c, src/reader.h (user_toknums): Remove.
4241 Adjust all users to use symbols[i]->user_token_number.
4242
4243 2001-12-29 Akim Demaille <akim@epita.fr>
4244
4245 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
4246 Adjust all users to use symbols[i]->prec or ->assoc.
4247
4248 2001-12-29 Akim Demaille <akim@epita.fr>
4249
4250 * src/reader.c, src/reader.h (tags): Remove.
4251 Adjust all users to use symbols[i]->tag.
4252
4253 2001-12-29 Akim Demaille <akim@epita.fr>
4254
4255 * src/gram.h, src/gram.c (symbols): New, similar to state_table
4256 and rule_table.
4257 * src/reader.c (packsymbols): Fill this table.
4258 Drop sprec.
4259 * src/conflicts.c (resolve_sr_conflict): Adjust.
4260 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
4261 single table.
4262 Use symbols[i]->tag instead of tags[i].
4263
4264 2001-12-29 Akim Demaille <akim@epita.fr>
4265
4266 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
4267 In addition, put a comment in there, to replace...
4268 * tests/regression.at (%union and C comments): Remove.
4269
4270 2001-12-29 Akim Demaille <akim@epita.fr>
4271
4272 * tests/regression.at (Web2c Actions): Blindly move the actual
4273 output as expected output. The contents *seem* right to me, but I
4274 can't pretend reading perfectly parser tables... Nonetheless, all
4275 the other tests pass correctly, the table look OK, even though the
4276 presence of `$axiom' is to be noted: AFAICS it is useless (but
4277 harmless).
4278
4279 2001-12-29 Akim Demaille <akim@epita.fr>
4280
4281 * src/reader.c (readgram): Don't add the rule 0 if there were no
4282 rules read. In other words, add it _after_ having performed
4283 grammar sanity checks.
4284 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
4285
4286 2001-12-29 Akim Demaille <akim@epita.fr>
4287
4288 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
4289 visible, and some states have now a different number.
4290
4291 2001-12-29 Akim Demaille <akim@epita.fr>
4292
4293 * src/reader.c (readgram): Bind the initial rule's lineno to that
4294 of the first rule.
4295 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
4296 (Solved SR Conflicts): Adjust rule 0's line number.
4297
4298 2001-12-29 Akim Demaille <akim@epita.fr>
4299
4300 Fix the `GAWK Grammar' failure.
4301
4302 * src/LR0.c (final_state): Initialize to -1 so that we do compute
4303 the reductions of the first state which was mistakenly confused
4304 with the final state because precisely final_state was initialized
4305 to 0.
4306 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
4307 now noticed by Bison.
4308 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
4309 have a reduction on $default.
4310
4311 2001-12-29 Akim Demaille <akim@epita.fr>
4312
4313 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
4314 rule line numbers.
4315 * src/closure.c (print_closure): Likewise.
4316 * src/derives.c (print_derives): Likewise.
4317 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
4318 now.
4319
4320 2001-12-29 Akim Demaille <akim@epita.fr>
4321
4322 * src/lalr.c (lookaheads_print): New.
4323 (lalr): Call it when --trace-flag.
4324 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
4325 are dumped.
4326
4327 2001-12-29 Akim Demaille <akim@epita.fr>
4328
4329 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
4330 when walking through ritem, even via rule->rhs.
4331 * src/reduce.c (dump_grammar, useful_production, reduce_output)
4332 (useful_production, useless_nonterminals): Likewise.
4333 (reduce_grammar_tables): Likewise, plus update nritems.
4334 * src/nullable.c (set_nullable): Likewise.
4335 * src/lalr.c (build_relations): Likewise.
4336 * tests/sets.at (Nullable): Adjust.
4337 Fortunately, now, the $axiom is no longer nullable.
4338
4339 2001-12-29 Akim Demaille <akim@epita.fr>
4340
4341 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
4342 the 0-sentinel.
4343 * src/gram.c (ritem_longest_rhs): Likewise.
4344 * src/reduce.c (nonterminals_reduce): Likewise.
4345 * src/print_graph.c (print_graph): Likewise.
4346 * src/output.c (output_rule_data): Likewise.
4347 * src/nullable.c (set_nullable): Likewise.
4348
4349 2001-12-29 Akim Demaille <akim@epita.fr>
4350
4351 * src/output.c: Comment changes.
4352
4353 2001-12-27 Paul Eggert <eggert@twinsun.com>
4354
4355 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
4356 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
4357 Sparc, as they were causing more porting problems than the
4358 (minor) performance improvement was worth.
4359
4360 Also, catch up with 1.31's YYSTD.
4361
4362 2001-12-27 Akim Demaille <akim@epita.fr>
4363
4364 * src/output.c (output_gram): Rely on nritems, not the
4365 0-sentinel. See below.
4366 Use -1 as separator, not 0.
4367 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
4368 Rely on -1 as separator in yyrhs, instead of 0.
4369 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
4370 twice `Now at end of input', therefore there are two lines less to
4371 expect.
4372
4373 2001-12-27 Akim Demaille <akim@epita.fr>
4374
4375 * tests/regression.at (Unresolved SR Conflicts):
4376 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
4377 below.
4378
4379 2001-12-27 Akim Demaille <akim@epita.fr>
4380
4381 * src/LR0.c (new_state): Recognize the final state by the fact it
4382 is reached by eoftoken.
4383 (insert_start_shifting_state, insert_eof_shifting_state)
4384 (insert_accepting_state, augment_automaton): Remove, since now
4385 these states are automatically computed from the initial state.
4386 (generate_states): Adjust.
4387 * src/print.c: When reporting a rule number to the user, substract
4388 1, so that the axiom rule is rule 0, and the first user rule is 1.
4389 * src/reduce.c: Likewise.
4390 * src/print_graph.c (print_core): For the time being, just as for
4391 the report, depend upon --trace-flags to dump the full set of
4392 items.
4393 * src/reader.c (readgram): Once the grammar read, insert the rule
4394 0: `$axiom: START-SYMBOL $'.
4395 * tests/set.at: Adjust: rule 0 is now displayed, and since the
4396 number of the states has changed (the final state is no longer
4397 necessarily the last), catch up.
4398
4399 2001-12-27 Akim Demaille <akim@epita.fr>
4400
4401 Try to make the use of the eoftoken valid. Given that its value
4402 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
4403 is used instead of > 0 where appropriate, (ii), depend upon nritems
4404 instead of the 0-sentinel.
4405
4406 * src/gram.h, src/gram.c (nritems): New.
4407 Expected to be duplication of nitems, but for the time being...
4408 * src/reader.c (packgram): Assert nritems and nitems are equal.
4409 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
4410 * src/closure.c (print_closure, print_fderives): Likewise.
4411 * src/gram.c (ritem_print): Likewise.
4412 * src/print.c (print_core, print_grammar): Likewise.
4413 * src/print_graph.c: Likewise.
4414
4415 2001-12-27 Akim Demaille <akim@epita.fr>
4416
4417 * src/main.c (main): If there are complains after grammar
4418 reductions, then output the report anyway if requested, then die.
4419 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
4420 * src/reader.c (eoftoken): New.
4421 (parse_token_decl): If the token being defined has value `0', it
4422 is the eoftoken.
4423 (packsymbols): No longer hack `tags' to insert `$' by hand.
4424 Be sure to preserve the value of the eoftoken.
4425 (reader): Make sure eoftoken is defined.
4426 Initialize nsyms to 0: now eoftoken is created just like the others.
4427 * src/print.c (print_grammar): Don't special case the eof token.
4428 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
4429 lie anyway, albeit pleasant.
4430 * tests/calc.at: Exercise error messages with eoftoken.
4431 Change the grammar so that empty input is invalid.
4432 Adjust expectations.
4433 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
4434
4435 2001-12-27 Akim Demaille <akim@epita.fr>
4436
4437 * configure.in: Check the protos of strchr ans strspn.
4438 Replace strchr if needed.
4439 * src/system.h: Provide the protos of strchr, strspn and memchr if
4440 missing.
4441 * lib/strchr.c: New.
4442 * src/reader.c (symbols_save): Use strchr.
4443
4444 2001-12-27 Akim Demaille <akim@epita.fr>
4445
4446 * src/print.c, src/print_graph.c (escape): New.
4447 Use it to quote the TAGS outputs.
4448 * src/print_graph.c (print_state): Now errors are in red, and
4449 reductions in green.
4450 Prefer high to wide: output the state number on a line of its own.
4451
4452 2001-12-27 Akim Demaille <akim@epita.fr>
4453
4454 * src/state.h, src/state.c (reductions_new): New.
4455 * src/LR0.c (set_state_table): Let all the states have a
4456 `reductions', even if reduced to 0.
4457 (save_reductions): Adjust.
4458 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
4459 * src/print.c (print_reductions, print_actions): Adjust.
4460 * src/output.c (action_row): Adjust.
4461
4462 2001-12-27 Akim Demaille <akim@epita.fr>
4463
4464 * src/state.h, src/state.c (errs_new, errs_dup): New.
4465 * src/LR0.c (set_state_table): Let all the states have an errs,
4466 even if reduced to 0.
4467 * src/print.c (print_errs, print_reductions): Adjust.
4468 * src/output.c (output_actions, action_row): Adjust.
4469 * src/conflicts.c (resolve_sr_conflict): Adjust.
4470
4471 2001-12-27 Akim Demaille <akim@epita.fr>
4472
4473 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
4474
4475 2001-12-27 Akim Demaille <akim@epita.fr>
4476
4477 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
4478 * src/print.c: here.
4479 (lookaheadset, shiftset): New, used as additional storage by
4480 print_reductions.
4481 (print_results): Adjust.
4482 (print_shifts, print_gotos, print_errs): New, extracted from...
4483 (print_actions): here.
4484 * src/print_graph.c (print_actions): Remove dead code.
4485
4486 2001-12-27 Akim Demaille <akim@epita.fr>
4487
4488 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
4489 `$n' and `@n'.
4490
4491 2001-12-27 Akim Demaille <akim@epita.fr>
4492
4493 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
4494 (build_relations): Adjust.
4495
4496 2001-12-27 Akim Demaille <akim@epita.fr>
4497
4498 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
4499 duplication.
4500
4501 2001-12-27 Akim Demaille <akim@epita.fr>
4502
4503 * src/reader.c (packgram): Catch nitems overflows.
4504
4505 2001-12-27 Akim Demaille <akim@epita.fr>
4506
4507 * src/files.c, src/files.h (guard_obstack): Remove.
4508 * src/output.c (output): Adjust.
4509 * src/reader.c (parse_braces): New, factoring...
4510 (copy_action, copy_guard): these two which are renamed as...
4511 (parse_action, parse_guard): these.
4512 As a voluntary consequence, using braces around guards is now
4513 mandatory.
4514
4515 2001-12-27 Akim Demaille <akim@epita.fr>
4516
4517 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
4518 * src/reader.c (symbol_list): `guard' and `guard_line' are new
4519 members.
4520 (symbol_list_new): Adjust.
4521 (copy_action): action_line is the first line, not the last.
4522 (copy_guard): Just as for actions, store the `action' only, not
4523 the switch/case/break flesh.
4524 Don't parse the user action that might follow the guard, let...
4525 (readgram): do it, i.e., now, there can be an action after a
4526 guard.
4527 In other words the guard is just explicitly optional.
4528 (packgram): Adjust.
4529 * src/output.c (guards_output): New.
4530 (output_parser): Call it when needed.
4531 (output): Also free the guard and attrs obstacks.
4532 * src/files.c, src/files.h (obstack_save): Remove.
4533 (output_files): Remove.
4534 As a result, if one needs the former `.act' file, using an
4535 appropriate skeleton which requires actions and guards is now
4536 required.
4537 * src/main.c (main): Adjust.
4538 * tests/semantic.at: New.
4539 * tests/regression.at: Use `input.y' as input file name.
4540 Avoid 8+3 problems by requiring input.c when the test needs the
4541 parser.
4542
4543 2001-12-27 Akim Demaille <akim@epita.fr>
4544
4545 * src/reader.c (symbol_list_new): Be sure to initialize all the
4546 fields.
4547
4548 2001-12-27 Akim Demaille <akim@epita.fr>
4549
4550 All the hacks using a final pseudo state are now useless.
4551
4552 * src/LR0.c (set_state_table): state_table holds exactly nstates.
4553 * src/lalr.c (nLA): New.
4554 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
4555 instead of lookaheadsp from the pseudo state (nstate + 1).
4556
4557 2001-12-27 Akim Demaille <akim@epita.fr>
4558
4559 * src/output.c (action_row, token_actions): Use a state_t instead
4560 of a integer, and nlookaheads instead of the following state's
4561 lookaheadsp.
4562
4563 2001-12-27 Akim Demaille <akim@epita.fr>
4564
4565 * src/conflicts.c (log_resolution, flush_shift)
4566 (resolve_sr_conflict, set_conflicts, solve_conflicts)
4567 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
4568 (conflicts_print, print_reductions): Use a state_t instead of an
4569 integer when referring to a state.
4570 As much as possible, depend upon nlookaheads, instead of the
4571 `lookaheadsp' member of the following state (since lookaheads of
4572 successive states are successive, the difference between state n + 1
4573 and n served as the number of lookaheads for state n).
4574 * src/lalr.c (add_lookback_edge): Likewise.
4575 * src/print.c (print_core, print_actions, print_state)
4576 (print_results): Likewise.
4577 * src/print_graph.c (print_core, print_actions, print_state)
4578 (print_graph): Likewise.
4579 * src/conflicts.h: Adjust.
4580
4581 2001-12-27 Akim Demaille <akim@epita.fr>
4582
4583 * src/bison.hairy: Formatting/comment changes.
4584 ANSIfy.
4585 Remove `register' indications.
4586 Add plenty of `static'.
4587
4588 2001-12-27 Akim Demaille <akim@epita.fr>
4589
4590 * src/output.c (prepare): Drop the muscle `ntbase' which
4591 duplicates ntokens.
4592 * src/bison.simple: Formatting/comment changes.
4593 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
4594 is an undocumented synonym.
4595
4596 2001-12-22 Akim Demaille <akim@epita.fr>
4597
4598 * src/output.c (output_table_data): Change the prototype to use
4599 `int' for array ranges: some invocations do pass an int, not a
4600 short.
4601 Reported by Wayne Green.
4602
4603 2001-12-22 Akim Demaille <akim@epita.fr>
4604
4605 Some actions of web2c.y are improperly triggered.
4606 Reported by Mike Castle.
4607
4608 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
4609 * tests/regression.at (Web2c): Rename as...
4610 (Web2c Report): this.
4611 (Web2c Actions): New.
4612
4613 2001-12-22 Akim Demaille <akim@epita.fr>
4614
4615 Reductions in web2c.y are improperly reported.
4616 Reported by Mike Castle.
4617
4618 * src/conflicts.c (print_reductions): Fix.
4619 * tests/regression.at (Web2c): New.
4620
4621 2001-12-18 Akim Demaille <akim@epita.fr>
4622
4623 Some host fail on `assert (!"foo")', which expands to
4624 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
4625 Reported by Nelson Beebee.
4626
4627 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
4628 `#define it_succeeded 0' and `assert (it_succeeded)'.
4629
4630 2001-12-17 Marc Autret <autret_m@epita.fr>
4631
4632 * src/bison.simple: Don't hard code the skeleton line and filename.
4633 * src/output.c (output_parser): Rename 'line' as 'output_line'.
4634 New line counter 'skeleton_line' (skeleton-line muscle).
4635
4636 2001-12-17 Paul Eggert <eggert@twinsun.com>
4637
4638 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
4639 YYDEBUG must be defined to a nonzero value.
4640
4641 * src/bison.simple (yytname): Do not assume that the user defines
4642 YYDEBUG to a properly parenthesized expression.
4643
4644 2001-12-17 Akim Demaille <akim@epita.fr>
4645
4646 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
4647 nlookaheads is a new member.
4648 Adjust all users.
4649 * src/lalr.h (nlookaheads): Remove this orphan declaration.
4650 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
4651 state.
4652
4653 2001-12-17 Akim Demaille <akim@epita.fr>
4654
4655 * src/files.h, src/files.c (open_files, close_files): Remove.
4656 * src/main.c (main): Don't open/close files, nor invoke lex_free,
4657 let...
4658 * src/reader.c (reader): Do it.
4659
4660 2001-12-17 Akim Demaille <akim@epita.fr>
4661
4662 * src/conflicts.c (print_reductions): Formatting changes.
4663
4664 2001-12-17 Akim Demaille <akim@epita.fr>
4665
4666 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
4667 (flush_reduce): New.
4668 (resolve_sr_conflict): Adjust.
4669
4670 2001-12-17 Akim Demaille <akim@epita.fr>
4671
4672 * src/output.c (output_obstack): Be static and rename as...
4673 (format_obstack): this, to avoid any confusion with files.c's
4674 output_obstack.
4675 * src/reader.h (muscle_obstack): Move to...
4676 * src/output.h: here, since it's defined in output.c.
4677
4678 2001-12-17 Akim Demaille <akim@epita.fr>
4679
4680 * src/output.c (action_row, save_column, default_goto)
4681 (sort_actions, matching_state, pack_vector): Better variable
4682 locality.
4683
4684 2001-12-17 Akim Demaille <akim@epita.fr>
4685
4686 * src/output.c: Various formatting changes.
4687
4688 2001-12-17 Akim Demaille <akim@epita.fr>
4689
4690 * src/files.c (output_files): Free the output_obstack.
4691 * src/main.c (main): Call print and print_graph conditionally.
4692 * src/print.c (print): Work unconditionally.
4693 * src/print_graph.c (print_graph): Work unconditionally.
4694 * src/conflicts.c (log_resolution): Output only if verbose_flag.
4695
4696 2001-12-16 Marc Autret <autret_m@epita.fr>
4697
4698 * src/output.c (actions_output): Fix. When we use %no-lines,
4699 there is one less line per action.
4700
4701 2001-12-16 Marc Autret <autret_m@epita.fr>
4702
4703 * src/bison.simple: Remove a useless #line directive.
4704 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
4705 * src/output.c (get_lines_number): New.
4706 (output_parser): Adjust, now takes care about the lines of a
4707 output muscles.
4708 Fix line numbering.
4709 (actions_output): Computes the number of lines taken by actions.
4710 (output_master_parser): Insert new skeleton which is the name of
4711 the output parser file name.
4712
4713 2001-12-15 Marc Autret <autret_m@epita.fr>
4714
4715 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
4716
4717 2001-12-15 Marc Autret <autret_m@epita.fr>
4718
4719 * src/output.c (output_gram): Keep track of the hairy one.
4720
4721 2001-12-15 Akim Demaille <akim@epita.fr>
4722
4723 Make `make distcheck' work.
4724
4725 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
4726 system.h which uses libgettext.h.
4727
4728 2001-12-15 Akim Demaille <akim@epita.fr>
4729
4730 * src/nullable.c (set_nullable): Useless rules must be skipped,
4731 otherwise, since we range over their symbols, we might look at a
4732 nonterminal which no longer ``exists'', i.e., it is not counted in
4733 `nvars', hence we overflow our arrays.
4734
4735 2001-12-15 Akim Demaille <akim@epita.fr>
4736
4737 The header can also be produced directly, without any obstack!
4738 Yahoo!
4739
4740 * src/files.c, src/files.h (defines_obstack): Remove.
4741 (compute_header_macro): Global.
4742 (defines_obstack_save): Remove.
4743 * src/reader.c (parse_union_decl): No longer output to
4744 defines_obstack: its content can be found in the `stype' muscle
4745 anyway.
4746 (output_token_translations): Merge into...
4747 (symbols_output): this.
4748 Rename as...
4749 (symbols_save): this.
4750 (reader): Adjust.
4751 * src/output.c (header_output): New.
4752 (output): Call it.
4753
4754 2001-12-15 Akim Demaille <akim@epita.fr>
4755
4756 * src/reader.c (parse_union_decl): Instead of handling two obstack
4757 simultaneously, use one to define the `stype' muscle, and use the
4758 value of the latter to fill defines_obstack.
4759 (copy_comment): Remove.
4760 (copy_comment2): Work for a single obstack.
4761 Rename as...
4762 (copy_comment): this.
4763
4764 2001-12-15 Akim Demaille <akim@epita.fr>
4765
4766 * src/lex.c, src/lex.h (xgetc): No longer static.
4767 * src/reader.c (parse_union_decl): Revamp.
4768
4769 2001-12-15 Akim Demaille <akim@epita.fr>
4770
4771 Still making progress in separating Bison into (i) input, (ii)
4772 process, (iii) output: now we can directly output the parser file
4773 without using table_obstack at all.
4774
4775 * src/files.c, src/files.h (table_obstack): Bye bye.
4776 (parser_file_name): New.
4777 * src/files.c (compute_output_file_names): Compute it.
4778 * src/output.c (actions_output, output_parser)
4779 (output_master_parser): To a file instead of an obstack.
4780
4781 2001-12-15 Akim Demaille <akim@epita.fr>
4782
4783 Attach actions to rules, instead of pre-outputting them to
4784 actions_obstack.
4785
4786 * src/gram.h (rule_t): action and action_line are new members.
4787 * src/reader.c (symbol_list): Likewise.
4788 (copy_action): Save the actions within the rule.
4789 (packgram): Save them in rule_table.
4790 * src/output.c (actions_output): New.
4791 (output_parser): Use it on `%%actions'.
4792 (output_rule_data): Don't free rule_table.
4793 (output): Do it.
4794 (prepare): Don't save the `action' muscle.
4795 * src/bison.simple: s/%%action/%%actions/.
4796
4797 2001-12-15 Akim Demaille <akim@epita.fr>
4798
4799 * src/reader.c (copy_action): When --yacc, don't append a `;'
4800 to the user action: let it fail if lacking.
4801 Suggested by Arnold Robbins and Tom Tromey.
4802
4803 2001-12-14 Akim Demaille <akim@epita.fr>
4804
4805 * src/lex.c (literalchar): Simply return the char you decoded, non
4806 longer mess around with obstacks and int pointers.
4807 Adjust all callers.
4808
4809 2001-12-14 Akim Demaille <akim@epita.fr>
4810
4811 * src/lex.c (literalchar): Don't escape the special characters,
4812 just decode them, and keep them as char (before, eol was output as
4813 the 2 char string `\n' etc.).
4814 * src/output.c (output_rule_data): Use quotearg to output the
4815 token strings.
4816
4817 2001-12-13 Paul Eggert <eggert@twinsun.com>
4818
4819 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
4820 Do not infringe on the global user namespace when using C++.
4821 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
4822 All uses of `fprintf' and `stderr' changed.
4823
4824 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
4825
4826 2001-12-13 Akim Demaille <akim@epita.fr>
4827
4828 The computation of nullable is broken: it doesn't handle empty
4829 RHS's properly.
4830
4831 * tests/torture.at (GNU AWK Grammar): New.
4832 * tests/sets.at (Nullable): New.
4833 * src/nullable.c (set_nullable): Instead of blindly looping over
4834 `ritems', loop over the rules, and then over their rhs's.
4835
4836 Work around Autotest bugs.
4837
4838 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
4839 frame, because Autotest understand lines starting with a `+' as
4840 traces from the shell. Then, they are not processed properly.
4841 Admittedly an Autotest bug, but we don't have time to wait for
4842 Autotest to catch up.
4843 * tests/regression.at (Broken Closure): Adjust to the new table
4844 frames.
4845 Move to...
4846 * tests/sets.at: here.
4847
4848 2001-12-13 Akim Demaille <akim@epita.fr>
4849
4850 * src/closure.c (closure): Use nrules instead of playing tricks
4851 with BITS_PER_WORD.
4852
4853 2001-12-13 Akim Demaille <akim@epita.fr>
4854
4855 * src/print.c (print_actions): Output the handling of `$' as the
4856 traces do: shifting the token EOF. Before EOF was treated as a
4857 nonterminal.
4858 * tests/regression.at: Adjust some tests.
4859 * src/print_graph.c (print_core): Complete the set of items via
4860 closure. The next-to-final and final states are still unsatisfying,
4861 but that's to be addressed elsewhere.
4862 No longer output the rule numbers, but do output the state number.
4863 A single loop for the shifts + gotos is enough, but picked a
4864 distinct color for each.
4865 (print_graph): Initialize and finalize closure.
4866
4867 2001-12-13 Akim Demaille <akim@epita.fr>
4868
4869 * src/reader.c (readgram): Remove dead code, an strip useless
4870 braces.
4871 (get_type): Remove, unused.
4872
4873 2001-12-12 Akim Demaille <akim@epita.fr>
4874
4875 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
4876 on that of lib/error.c.
4877
4878 2001-12-12 Akim Demaille <akim@epita.fr>
4879
4880 Some hosts don't like `/' in includes.
4881
4882 * src/system.h: Include libgettext.h without qualifying the path.
4883 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
4884 $(top_srcdir).
4885
4886 2001-12-11 Marc Autret <autret_m@epita.fr>
4887
4888 * src/output.c (output_parser): Remove useless muscle.
4889
4890 2001-12-11 Marc Autret <autret_m@epita.fr>
4891
4892 * src/bison.simple: Remove #line just before %%epilogue. It
4893 is now handled in ...
4894 * src/reader.c (read_additionnal_code): Add the output of a
4895 #line for the epilogue.
4896
4897 2001-12-10 Marc Autret <autret_m@epita.fr>
4898
4899 * src/reader.c (copy_definition): Re-use CPP-outed code which
4900 replace precedent remove.
4901 * src/bison.simple: Remove #line before %%prologue because
4902 %%input-line is wrong at this time.
4903
4904 2001-12-10 Marc Autret <autret_m@epita.fr>
4905
4906 * src/reader.c (symbols_output): Clean up.
4907 * src/output.c (output_gram, output): Clean up.
4908
4909 2001-12-10 Akim Demaille <akim@epita.fr>
4910
4911 * src/lalr.c (initialize_lookaheads): New. Extracted from...
4912 * src/LR0.c (set_state_table): here.
4913 * src/lalr.c (lalr): Call it.
4914
4915 2001-12-10 Akim Demaille <akim@epita.fr>
4916
4917 * src/state.h (shifts): Remove the `number' member: shifts are
4918 attached to state, hence no longer need to be labelled with a
4919 state number.
4920
4921 2001-12-10 Akim Demaille <akim@epita.fr>
4922
4923 Now that states have a complete set of members, the linked list of
4924 shifts is useless: just fill directly the state's shifts member.
4925
4926 * src/state.h (shifts): Remove the `next' member.
4927 * src/LR0.c (first_state, last_state): Remove.
4928 Adjust the callers.
4929 (augment_automaton): Don't look for the shifts that must be added
4930 a shift on EOF: it is those of the state we looked for! But now,
4931 since shifts are attached, it is no longer needed to looking
4932 merely by its id: its number.
4933
4934 2001-12-10 Akim Demaille <akim@epita.fr>
4935
4936 * src/LR0.c (augment_automaton): Better variable locality.
4937 Remove an impossible branch: if there is a state corresponding to
4938 the start symbol being shifted, then there is shift for the start
4939 symbol from the initial state.
4940
4941 2001-12-10 Akim Demaille <akim@epita.fr>
4942
4943 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
4944 only when appropriate: when insert_start_shifting_state' is not
4945 invoked.
4946 * tests/regression.at (Rule Line Numbers): Adjust.
4947
4948 2001-12-10 Akim Demaille <akim@epita.fr>
4949
4950 * src/LR0.c (augment_automaton): Now that all states have shifts,
4951 merge the two cases addition shifts to the initial state.
4952
4953 2001-12-10 Akim Demaille <akim@epita.fr>
4954
4955 * src/lalr.c (set_state_table): Move to...
4956 * src/LR0.c: here.
4957 * src/lalr.c (lalr): Don't call it...
4958 * src/LR0.c (generate_states): do it.
4959 * src/LR0.h (first_state): Remove, only the table is used.
4960
4961 2001-12-10 Akim Demaille <akim@epita.fr>
4962
4963 * src/LR0.h (first_shift, first_reduction): Remove.
4964 * src/lalr.c: Don't use first_shift: find shifts through the
4965 states.
4966
4967 2001-12-10 Akim Demaille <akim@epita.fr>
4968
4969 * src/LR0.c: Attach shifts to states as soon as they are
4970 computed.
4971 * src/lalr.c (set_state_table): Instead of assigning shifts to
4972 state, just assert that the mapping was properly done.
4973
4974 2001-12-10 Akim Demaille <akim@epita.fr>
4975
4976 * src/LR0.c (insert_start_shift): Rename as...
4977 (insert_start_shifting_state): this.
4978 (insert_eof_shifting_state, insert_accepting_state): New.
4979 (augment_automaton): Adjust.
4980 Better locality of the variables.
4981 When looking if the start_symbol is shifted from the initial
4982 state, using `while (... symbol != start_symbol ...)' sounds
4983 better than `while (... symbol < start_symbol ...)': If fail
4984 to see how the order between symbols could be relevant!
4985
4986 2001-12-10 Akim Demaille <akim@epita.fr>
4987
4988 * src/getargs.h: Don't declare `spec_name_prefix' and
4989 `spec_file_prefix', declared by src/files.h.
4990 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
4991 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
4992 * src/output.c (prepare): Adjust.
4993 * src/reader.c (symbols_output): Likewise.
4994 * src/vmsgetargs.c: Vaguely adjust, but who cares?
4995
4996 2001-12-10 Akim Demaille <akim@epita.fr>
4997
4998 * src/muscle_tab.c (muscle_init): NULL is a better default than
4999 `"0"'.
5000
5001 2001-12-10 Akim Demaille <akim@epita.fr>
5002
5003 * src/reader.c (reader): Calling symbols_output once is enough.
5004
5005 2001-12-10 Akim Demaille <akim@epita.fr>
5006
5007 Now that states have a complete set of members, the linked list of
5008 reductions is useless: just fill directly the state's reductions
5009 member.
5010
5011 * src/state.h (struct reductions): Remove member `number' and
5012 `next'.
5013 * src/LR0.c (first_reduction, last_reduction): Remove.
5014 (save_reductions): Don't link the new reductions, store them in
5015 this_state.
5016 * src/lalr.c (set_state_table): No need to attach reductions to
5017 states, it's already done.
5018 * src/output.c (output_actions): No longer free the shifts, then
5019 the reductions, then the states: free all the states and their
5020 members.
5021
5022 2001-12-10 Akim Demaille <akim@epita.fr>
5023
5024 * src/options.c (OPTN, DRTV, BOTH): New.
5025 (option_table): Use them.
5026
5027 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
5028 the job of system.h.
5029 * src/options.c: Don't include stdio.h and xalloc.h for the same
5030 reasons.
5031
5032 2001-12-10 Akim Demaille <akim@epita.fr>
5033
5034 * src/output.c (output, prepare): Make sure the values of the
5035 muscles `action' and `prologue' are 0-terminated.
5036
5037 2001-12-10 Akim Demaille <akim@epita.fr>
5038
5039 Clean up GCC warnings.
5040
5041 * src/reader.c (copy_action): `buf' is not used.
5042 (parse_skel_decl): Be static.
5043 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
5044 * src/options.h (create_long_option_table): Have a real prototype.
5045 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
5046 (hash_delete_at): Return const void *.
5047 Adjust casts to preserve the const.
5048
5049 2001-12-10 Akim Demaille <akim@epita.fr>
5050
5051 * configure.in: Require 2.52g.
5052 M4 is not needed, but AUTOM4TE is.
5053 * m4/m4.m4: Remove.
5054 * tests/Makefile.am: Adjust.
5055
5056 2001-12-10 Akim Demaille <akim@epita.fr>
5057
5058 One structure for states is enough, even though theoretically
5059 there are LR(0) states and LALR(1) states.
5060
5061 * src/lalr.h (state_t): Remove.
5062 (state_table): Be state_t **, not state_t *.
5063 * src/state.h (core, CORE_ALLOC): Rename as...
5064 (state_t, STATE_ALLOC): this.
5065 Add the LALR(1) members: shifts, reductions, errs.
5066 * src/LR0.c (state_table): Rename as...
5067 (state_hash): this, to avoid name clashes with the global
5068 `state_table'.
5069 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
5070 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
5071
5072 2001-12-10 Akim Demaille <akim@epita.fr>
5073
5074 Bison dumps core on bash.y.
5075 Reported by Pascal Bart.
5076
5077 * src/warshall.c (bitmatrix_print): New.
5078 (TC): Use it.
5079 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
5080 j must be the outer loop.
5081 * tests/regression.at (Broken Closure): New.
5082
5083 2001-12-05 Akim Demaille <akim@epita.fr>
5084
5085 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
5086 its argument.
5087 Reported by Peter Hámorský.
5088
5089 2001-12-05 Akim Demaille <akim@epita.fr>
5090
5091 * src/conflicts.c (err_table): Remove.
5092 (resolve_sr_conflict): Adjust.
5093 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
5094 Rename as...
5095 (state_t.reductions, state_t.shifts): this.
5096
5097 2001-12-05 Akim Demaille <akim@epita.fr>
5098
5099 * src/reduce.c (reduce_grammar_tables): No longer disable the
5100 removal of useless rules via CPP but via `if (0)', so that the
5101 compiler still check the code is valid.
5102 For instance, it should have noticed `rline' no longer exists: use
5103 the `line' member of rule_t.
5104 * src/gram.c (dummy, rline): Remove, unused.
5105
5106 2001-12-05 Akim Demaille <akim@epita.fr>
5107
5108 * src/output.c (pack_vector): Use assert, not berror.
5109 * src/main.c (berror): Remove, unused.
5110
5111 2001-12-05 Akim Demaille <akim@epita.fr>
5112
5113 New experimental feature: if --verbose --trace output all the
5114 items of a state, not only its kernel.
5115
5116 * src/print.c (print_core): If `trace_flag', then invoke closure
5117 before outputting the items of the state (print_core is no longer
5118 a correct name them).
5119 (print_results): Invoke new_closure/free_closure if needed.
5120
5121 2001-12-05 Akim Demaille <akim@epita.fr>
5122
5123 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
5124 * src/closure.c, src/closure.h (itemsetsize): Rename as...
5125 (nitemset): for consistency with the rest of the project.
5126
5127 2001-12-05 Akim Demaille <akim@epita.fr>
5128
5129 * src/closure.c (print_closure): Improve.
5130 (closure): Use it for printing input and output.
5131
5132 2001-12-05 Akim Demaille <akim@epita.fr>
5133
5134 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
5135 indexed by nonterminals.
5136
5137 2001-12-05 Akim Demaille <akim@epita.fr>
5138
5139 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
5140 what it was!).
5141 * src/warshall.h: Remove accidental duplication of the content.
5142
5143 2001-12-05 Akim Demaille <akim@epita.fr>
5144
5145 * src/closure.c (set_fderives): De-obfuscate.
5146
5147 2001-12-05 Akim Demaille <akim@epita.fr>
5148
5149 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
5150
5151 2001-12-05 Akim Demaille <akim@epita.fr>
5152
5153 * src/closure.c (set_firsts): De-obfuscate.
5154
5155 2001-12-05 Akim Demaille <akim@epita.fr>
5156
5157 * src/output.c (action_row): De-obfuscate
5158 using the good o' techniques: arrays not pointers, variable
5159 locality, BITISSET, RESETBIT etc.
5160
5161 2001-12-05 Akim Demaille <akim@epita.fr>
5162
5163 Pessimize the code to simplify it: from now on, all the states
5164 have a valid SHIFTS, which NSHIFTS is possibly 0.
5165
5166 * src/LR0.c (shifts_new): Be global and move to..
5167 * src/state.c, src/state.h: here.
5168 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
5169 * src/print_graph: Adjust.
5170
5171 2001-12-05 Akim Demaille <akim@epita.fr>
5172
5173 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
5174 * src/conflicts.c: Use it.
5175 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
5176 incorrectly ``simplified''.
5177
5178 2001-12-05 Akim Demaille <akim@epita.fr>
5179
5180 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
5181 using the good o' techniques: arrays not pointers, variable
5182 locality, BITISSET, RESETBIT etc.
5183
5184 2001-12-05 Akim Demaille <akim@epita.fr>
5185
5186 * src/state.h (SHIFT_SYMBOL): New.
5187 * src/conflicts.c: Use it to deobfuscate.
5188
5189 2001-12-05 Akim Demaille <akim@epita.fr>
5190
5191 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
5192 (print_reductions): De-obfuscate using the good o' techniques:
5193 arrays not pointers, variable locality, BITISSET.
5194
5195 2001-12-05 Akim Demaille <akim@epita.fr>
5196
5197 * src/conflicts.c (print_reductions): Arrays, not pointers.
5198 Use BITISSET.
5199
5200 2001-12-05 Akim Demaille <akim@epita.fr>
5201
5202 * src/conflicts.c (print_reductions): Pessimize, but clarify.
5203
5204 2001-12-05 Akim Demaille <akim@epita.fr>
5205
5206 * src/conflicts.c (print_reductions): Improve variable locality.
5207
5208 2001-12-05 Akim Demaille <akim@epita.fr>
5209
5210 * src/conflicts.c (print_reductions): Pessimize, but clarify.
5211
5212 2001-12-05 Akim Demaille <akim@epita.fr>
5213
5214 * src/conflicts.c (print_reductions): Improve variable locality.
5215
5216 2001-12-05 Akim Demaille <akim@epita.fr>
5217
5218 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
5219 * src/lalr.c: Use them.
5220
5221 2001-12-05 Akim Demaille <akim@epita.fr>
5222
5223 * src/LR0.c (augment_automaton): Formatting changes.
5224 Better variable locality.
5225
5226 2001-12-05 Akim Demaille <akim@epita.fr>
5227
5228 * src/lalr.c (matrix_print): New.
5229 (transpose): Use it.
5230 Use arrays instead of pointers.
5231
5232 2001-12-05 Akim Demaille <akim@epita.fr>
5233
5234 * src/lalr.c (maxrhs): Move to...
5235 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
5236 * src/lalr.c (build_relations): Adjust.
5237
5238 2001-12-05 Akim Demaille <akim@epita.fr>
5239
5240 * src/lalr.c (transpose): Free the memory allocated to the
5241 argument, as it is replaced by the results by the unique caller.
5242 (build_relations): Merely invoke transpose: it handles the memory
5243 deallocation.
5244 Improve variable locality.
5245 Avoid variables used as mere abbreviations.
5246 (compute_lookaheads): Use arrays instead of pointers.
5247
5248 2001-12-05 Akim Demaille <akim@epita.fr>
5249
5250 * src/lalr.c (initialize_F): Improve variable locality.
5251 Avoid variables used as mere abbreviations.
5252
5253 2001-12-05 Akim Demaille <akim@epita.fr>
5254
5255 * src/derives.c (print_derives): Display the ruleno.
5256 * src/lalr.c (initialize_F, transpose): Better variable locality
5257 to improve readability.
5258 Avoid variables used as mere abbreviations.
5259
5260 2001-12-05 Akim Demaille <akim@epita.fr>
5261
5262 * src/lalr.c (traverse): Use arrays instead of pointers.
5263
5264 2001-12-05 Akim Demaille <akim@epita.fr>
5265
5266 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
5267 the handling of squeue.
5268 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
5269
5270 2001-12-05 Akim Demaille <akim@epita.fr>
5271
5272 Because useless nonterminals are now kept alive (instead of being
5273 `destroyed'), we now sometimes examine them, and store information
5274 related to them. Hence we need to know their number, and adjust
5275 memory allocations.
5276
5277 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
5278 static.
5279 * src/LR0.c (allocate_itemsets): The memory allocated to
5280 `symbol_count' was used for two different purpose: once to count
5281 the number of occurrences of each symbol, and later reassigned to
5282 `shift_symbol', containing the symbol that can be shifted from a
5283 given state.
5284 Deobfuscate, i.e., allocate, use and free `symbol_count' here
5285 only, and...
5286 (new_itemsets): Allocate `shift_symbol' here.
5287 (allocate_itemsets): symbol_count includes useless nonterminals.
5288 Make room for them.
5289 (free_storage): Use `free', not `XFREE', for pointers that cannot
5290 be null.
5291
5292 2001-12-05 Akim Demaille <akim@epita.fr>
5293
5294 * src/nullable.c (set_nullable): Deobfuscate the handling of
5295 ritem.
5296 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
5297
5298 2001-12-05 Akim Demaille <akim@epita.fr>
5299
5300 * src/gram.c, src/gram.h (ritem_print): New.
5301 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
5302 (This useless function was defined only to work around VMS linkers
5303 that can't handle compilation units with variables only).
5304 * src/reduce.c (dump_grammar): Use it to trace the construction of
5305 ritem.
5306
5307 2001-12-04 Paul Eggert <eggert@twinsun.com>
5308
5309 * src/bison.simple (union yyalloc): Change member names
5310 to be the same as the stack names.
5311 (yyparse): yyptr is now union yyalloc *, not char *.
5312 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
5313 and may generate better code on some machines.
5314 (yystpcpy): Use prototype if __STDC__ is defined, not just
5315 if __cplusplus is defined.
5316
5317 2001-11-30 Akim Demaille <akim@epita.fr>
5318
5319 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
5320 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
5321 Gettext doesn't compile cleanly, and dies with -Werror.
5322 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
5323 Include WARNING_CFLAGS here.
5324 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
5325 before being defined.
5326
5327 2001-11-27 Paul Eggert <eggert@twinsun.com>
5328
5329 * lib/quotearg.h (quotearg_n, quotearg_n_style):
5330 First arg is int, not unsigned.
5331 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
5332 (SIZE_MAX, UINT_MAX): New macros.
5333 (quotearg_n_options): Abort if N is negative.
5334 Avoid overflow check on hosts where size_t is 64 bits and int
5335 is 32 bits, as overflow is impossible there.
5336 Fix off-by-one typo that caused unnecessary reallocation.
5337
5338 2001-11-29 Paul Eggert <eggert@twinsun.com>
5339
5340 Name space cleanup in generated parser.
5341
5342 * doc/bison.texinfo (Bison Parser): Discuss system headers
5343 and their effect on the user name space.
5344
5345 * src/bison.simple:
5346 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
5347 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
5348 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
5349
5350 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
5351 on user names when possible.
5352
5353 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
5354 Simplify test for whather <alloca.h> exists.
5355
5356 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
5357
5358 (<stdio.h>): Include if YYDEBUG.
5359
5360 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
5361 ! defined (yyoverflow) && ! defined (yymemcpy).
5362
5363 (yymemcpy, yyparse): Rename local variables as needed so that
5364 they all begin with 'yy'.
5365
5366 (yystrlen, yystpcpy): New functions.
5367
5368 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
5369 All uses changed.
5370
5371 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
5372 instead of relying on string.h functions. Use YYSTACK_ALLOC
5373 and YYSTACK_FREE instead of malloc and free.
5374
5375 2001-11-30 Akim Demaille <akim@epita.fr>
5376
5377 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
5378 before their first uses.
5379 (YYBISON, YYPURE): Move to the top of the output.
5380
5381 2001-11-30 Akim Demaille <akim@epita.fr>
5382
5383 * tests/reduce.at (Useless Nonterminals): Fix.
5384
5385 2001-11-30 Akim Demaille <akim@epita.fr>
5386
5387 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
5388 if body instead of `;' to pacify GCC's warnings.
5389
5390 2001-11-30 Akim Demaille <akim@epita.fr>
5391
5392 Instead of mapping the LHS of unused rules to -1, keep the LHS
5393 valid, but flag the rules as invalid.
5394
5395 * src/gram.h (rule_t): `useful' is a new member.
5396 * src/print.c (print_grammar): Adjust.
5397 * src/derives.c (set_derives): Likewise.
5398 * src/reader.c (packgram, reduce_output): Likewise.
5399 * src/reduce.c (reduce_grammar_tables): Likewise.
5400 * tests/reduce.at (Underivable Rules, Useless Rules): New.
5401
5402 2001-11-30 Akim Demaille <akim@epita.fr>
5403
5404 * src/reduce.c (reduce_output): Formatting changes.
5405 * src/print.c (print_results, print_grammar): Likewise.
5406 * tests/regression.at (Rule Line Numbers)
5407 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
5408
5409 2001-11-30 Akim Demaille <akim@epita.fr>
5410
5411 * src/reduce.c (nonterminals_reduce): Instead of throwing away
5412 useless nonterminals, move them at the end of the symbol arrays.
5413 (reduce_output): Adjust.
5414 * tests/reduce.at (Useless Nonterminals): Adjust.
5415
5416 2001-11-30 Akim Demaille <akim@epita.fr>
5417
5418 * src/reduce.c: Various comment/formatting changes.
5419 (nonterminals_reduce): New, extracted from...
5420 (reduce_grammar_tables): here.
5421 (reduce_grammar): Call nonterminals_reduce.
5422
5423 2001-11-29 Paul Eggert <eggert@twinsun.com>
5424
5425 * src/bison.simple (YYSTACK_REALLOC): Remove.
5426 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
5427 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
5428 New macros.
5429 (union yyalloc): New type.
5430 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
5431 an arbitrary restriction on hosts where size_t is wider than int.
5432
5433 (yyparse): Don't dump core if alloca or malloc fails; instead, report
5434 a parser stack overflow. Allocate just one block of memory for all
5435 three stacks, instead of allocating three blocks; this typically is
5436 faster and reduces fragmentation.
5437
5438 Do not limit the number of items in the stack to a value that fits
5439 in 'int', as this is an arbitrary limit on hosts with 64-bit
5440 size_t and 32-bit int.
5441
5442 2001-11-29 Marc Autret <autret_m@epita.fr>
5443
5444 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
5445 of defining YYERROR_VERBOSE.
5446 [AT_DATA]: $4 is now out of C declarations in the prologue.
5447
5448 2001-11-28 Marc Autret <autret_m@epita.fr>
5449
5450 * src/reader.c (parse_dquoted_param): New.
5451 (parse_skel_decl): Use it.
5452 * src/lex.h: Add its prototype.
5453 * src/lex.c (literalchar): Become not static.
5454
5455 2001-11-28 Marc Autret <autret_m@epita.fr>
5456
5457 * src/output.h: And put its extern declaration here.
5458 * src/output.c (error_verbose): Define here.
5459 (prepare): Echo name modification.
5460 * src/getargs.h: Clean its extern declaration.
5461 * src/getargs.c (error_verbose_flag): Remove.
5462 (getargs): Remove case 'e'.
5463 * src/options.c (option_table): 'error-verbose' is now seen as simple
5464 percent option.
5465 Include output.h.
5466
5467 * src/reader.c (read_declarations): Remove case tok_include.
5468 (parse_include_decl): Remove.
5469 * src/lex.h (token_t): Remove tok_include.
5470 * src/options.c (option_table): 'include' is now a simple command line
5471 option.
5472
5473 2001-11-28 Marc Autret <autret_m@epita.fr>
5474
5475 * src/bison.simple: Adjust muscle names.
5476 * src/muscle_tab.c (muscle_init): Also rename the muscles.
5477 * src/output.c (prepare): s/_/-/ for the muscles names.
5478 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
5479
5480 2001-11-28 Marc Autret <autret_m@epita.fr>
5481
5482 * src/bison.simple: Fix debug.
5483 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
5484
5485 2001-11-28 Akim Demaille <akim@epita.fr>
5486
5487 * src/LR0.c (shifts_new): New.
5488 (save_shifts, insert_start_shift, augment_automaton): Use it.
5489
5490 2001-11-28 Akim Demaille <akim@epita.fr>
5491
5492 * src/closure.c (closure): `b' and `ruleno' denote the same value:
5493 keep ruleno only.
5494
5495 2001-11-28 Akim Demaille <akim@epita.fr>
5496
5497 * src/closure.c (closure): Instead of looping over word in array
5498 then bits in words, loop over bits in array.
5499
5500 2001-11-28 Akim Demaille <akim@epita.fr>
5501
5502 * src/closure.c (closure): No longer optimize the special case
5503 where all the bits of `ruleset[r]' are set to 0, to make the code
5504 clearer.
5505
5506 2001-11-28 Akim Demaille <akim@epita.fr>
5507
5508 * src/closure.c (closure): `r' and `c' are new variables, used to
5509 de-obfuscate accesses to RULESET and CORE.
5510
5511 2001-11-28 Akim Demaille <akim@epita.fr>
5512
5513 * src/reduce.c (reduce_print): Use ngettext.
5514 (dump_grammar): Improve the trace accuracy.
5515
5516 2001-11-28 Akim Demaille <akim@epita.fr>
5517
5518 * src/reduce.c (dump_grammar): Don't translate trace messages.
5519
5520 2001-11-28 Akim Demaille <akim@epita.fr>
5521
5522 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
5523 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
5524 as all tags are free'ed afterwards.
5525 From Enrico Scholz.
5526
5527 2001-11-27 Paul Eggert <eggert@twinsun.com>
5528
5529 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
5530 use alloca when we didn't want to, and vice versa.
5531
5532 2001-11-27 Marc Autret <autret_m@epita.fr>
5533
5534 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
5535 initialization.
5536 * src/output.c (prepare): Remove its update.
5537
5538 2001-11-27 Marc Autret <autret_m@epita.fr>
5539
5540 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
5541 Use %error-verbose.
5542
5543 2001-11-27 Marc Autret <autret_m@epita.fr>
5544
5545 * src/bison.simple: Remove YYERROR_VERBOSE using.
5546 Use %%error_verbose.
5547 (yyparse): Likewise.
5548 * src/output.c (prepare): Give its final value.
5549 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
5550 * src/getargs.h: Add its extern declaration.
5551 * src/getargs.c (error_verbose_flag): New int.
5552 (getargs): Update to catch new case.
5553 * src/options.c (option_table): 'error-verbose' is a new option.
5554 (shortopts): Update.
5555
5556 2001-11-27 Akim Demaille <akim@epita.fr>
5557
5558 * src/system.h: Use intl/libgettext.h.
5559 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
5560
5561 2001-11-27 Akim Demaille <akim@epita.fr>
5562
5563 * tests/torture.at (Exploding the Stack Size with Malloc):
5564 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
5565
5566 2001-11-27 Akim Demaille <akim@epita.fr>
5567
5568 * src/files.c: Include error.h.
5569 Reported by Hans Aberg.
5570
5571 2001-11-26 Marc Autret <autret_m@epita.fr>
5572
5573 * src/reader.c (parse_include_decl): New, not yet implemented.
5574 (read_declarations): Add case tok_include.
5575 * src/getargs.h (include): Add its extern definition.
5576 * src/getargs.c (include): New const char *.
5577 (getargs): Add case '-I'.
5578 * src/options.c (option_table): Add include as command line and
5579 percent option.
5580 * src/lex.h (token_t): Add tok_include.
5581
5582 2001-11-26 Akim Demaille <akim@epita.fr>
5583
5584 * src/reader.c (readgram): Make sure rules for mid-rule actions
5585 have a lineno equal to that of their host rule.
5586 Reported by Hans Aberg.
5587 * tests/regression.at (Rule Line Numbers): New.
5588
5589 2001-11-26 Akim Demaille <akim@epita.fr>
5590
5591 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
5592 size_ts.
5593
5594 2001-11-26 Akim Demaille <akim@epita.fr>
5595
5596 * src/complain.c, src/complain.h (error): Remove, provided by
5597 lib/error.[ch].
5598
5599 2001-11-26 Akim Demaille <akim@epita.fr>
5600
5601 * src/reader.c (read_declarations): Don't abort on tok_illegal,
5602 issue an error message.
5603 * tests/regression.at (Invalid %directive): New.
5604 Reported by Hans Aberg.
5605
5606 2001-11-26 Akim Demaille <akim@epita.fr>
5607
5608 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
5609 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
5610
5611 2001-11-26 Akim Demaille <akim@epita.fr>
5612
5613 * src/conflicts.c (conflicts_print): Don't complain at all when
5614 there are no reduce/reduce conflicts, and as many shift/reduce
5615 conflicts as expected.
5616 * tests/regression.at (%expect right): Adjust.
5617
5618 2001-11-23 Akim Demaille <akim@epita.fr>
5619
5620 * lib/alloca.c: Update, from fileutils.
5621
5622 2001-11-23 Akim Demaille <akim@epita.fr>
5623
5624 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
5625
5626 2001-11-23 Akim Demaille <akim@epita.fr>
5627
5628 * src/system.h: Include alloca.h.
5629 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
5630
5631 2001-11-23 Akim Demaille <akim@epita.fr>
5632
5633 * src/print_graph.c (print_actions): Remove `rule', unused.
5634 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
5635 pacify GCC's signed < unsigned warnings.
5636 * src/closure.c (itemsetsize): Likewise.
5637 * src/reader.c (symbol_list_new): Static.
5638
5639 2001-11-23 Akim Demaille <akim@epita.fr>
5640
5641 Attaching lineno to buckets is stupid, since only one copy of each
5642 symbol is kept, only the line of the first occurrence is kept too.
5643
5644 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
5645 * src/reader.c (rline_allocated): Remove, unused.
5646 (symbol_list): Have a `line' member.
5647 (symbol_list_new): New.
5648 (readgram): Use it.
5649 * src/print.c (print_grammar): Output the rule line numbers.
5650 * tests/regression.at (Solved SR Conflicts)
5651 (Unresolved SR Conflicts): Adjust.
5652 Reported by Hans Aberg.
5653
5654 2001-11-22 Marc Autret <autret_m@epita.fr>
5655
5656 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
5657
5658 2001-11-22 Marc Autret <autret_m@epita.fr>
5659
5660 * src/muscle_tab.c (muscle_init): Remove initialization of
5661 skeleton muscle.
5662 * src/output.c (output_master_parser): Do it here.
5663
5664 2001-11-20 Akim Demaille <akim@epita.fr>
5665
5666 * po/sv.po: New.
5667 * configure.in (ALL_LINGUAS): Adjust.
5668 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
5669 longer contains strings to translate.
5670
5671 2001-11-19 Akim Demaille <akim@epita.fr>
5672
5673 * src/conflicts.c (conflicts_print): Add a missing \n.
5674
5675 2001-11-19 Akim Demaille <akim@epita.fr>
5676
5677 * src/nullable.c (nullable_print): New.
5678 (set_nullable): Call it when tracing.
5679 Better locality of variables.
5680
5681 2001-11-19 Akim Demaille <akim@epita.fr>
5682
5683 * src/print.c (print_actions): Better locality of variables.
5684
5685 2001-11-19 Akim Demaille <akim@epita.fr>
5686
5687 * src/derives.c (print_derives): Fix and enrich.
5688 * src/closure.c (print_fderives): Likewise.
5689
5690 2001-11-19 Akim Demaille <akim@epita.fr>
5691
5692 * src/closure.c (itemsetend): Remove, replaced with...
5693 (itemsetsize): new.
5694
5695 2001-11-19 Akim Demaille <akim@epita.fr>
5696
5697 * src/LR0.c (kernel_end): Remove, replaced with...
5698 (kernel_size): new.
5699
5700 2001-11-19 Akim Demaille <akim@epita.fr>
5701
5702 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
5703 to clarify.
5704
5705 2001-11-19 Akim Demaille <akim@epita.fr>
5706
5707 * src/closure.c (closure): Use arrays instead of pointers to clarify.
5708
5709 2001-11-19 Akim Demaille <akim@epita.fr>
5710
5711 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
5712 trace messages.
5713 * src/LR0.c: Likewise.
5714 (allocate_itemsets): Use arrays instead of pointers to clarify.
5715
5716 2001-11-19 Akim Demaille <akim@epita.fr>
5717
5718 * src/getargs.c (statistics_flag): Replace with...
5719 (trace_flag): New.
5720 (longopts): Accept --trace instead of --statistics.
5721 * src/getargs.h, src/options.c: Adjust.
5722 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
5723 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
5724
5725 2001-11-19 Akim Demaille <akim@epita.fr>
5726
5727 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
5728 pointers to clarify the code.
5729 (save_reductions, save_shifts): Factor common parts of alternatives.
5730
5731 2001-11-19 Akim Demaille <akim@epita.fr>
5732
5733 * src/LR0.c (new_state, get_state): Complete TRACE code.
5734 * src/closure.c: Include `reader.h' to get `tags', needed by the
5735 trace code.
5736 Rename the conditional DEBUG as TRACE.
5737 Output consistently TRACEs to stderr, not stdout.
5738 * src/derives.c: Likewise.
5739 * src/reduce.c: (inaccessable_symbols): Using if is better style
5740 than goto.
5741 Use `#if TRACE' instead of `#if 0' for tracing code.
5742
5743 2001-11-19 Akim Demaille <akim@epita.fr>
5744
5745 * src/system.h (LIST_FREE, shortcpy): New.
5746 * src/LR0.c: Use them.
5747 * src/output.c (free_itemsets, free_reductions, free_shifts):
5748 Remove, replaced by LIST_FREE.
5749
5750 2001-11-19 Akim Demaille <akim@epita.fr>
5751
5752 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
5753 (REDUCTIONS_ALLOC): New.
5754 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
5755 allocation.
5756
5757 2001-11-19 Akim Demaille <akim@epita.fr>
5758
5759 * src/LR0.c (new_state): Complete trace code.
5760 * src/nullable.c (set_nullable): Don't translate traces.
5761
5762 2001-11-19 Akim Demaille <akim@epita.fr>
5763
5764 * src/print_graph.c (print_core): Better locality of variables.
5765 * src/print.c (print_core): Likewise.
5766
5767 2001-11-19 Akim Demaille <akim@epita.fr>
5768
5769 * src/vcg.c: You do the output, so you are responsible of the
5770 handling of VCG syntax, in particular: use quotearg.
5771 * src/print_graph.c: Don't.
5772 (print_actions): Don't output the actions as part of the nodes,
5773 since that's the job of the edges.
5774 (print_state): Don't output by hand: fill the node description,
5775 and ask for its output.
5776
5777 2001-11-19 Akim Demaille <akim@epita.fr>
5778
5779 * src/bison.simple (yyparse): When verbosely reporting an error,
5780 no longer put additional quotes around token names.
5781 * tests/calc.at: Adjust.
5782
5783 2001-11-19 Akim Demaille <akim@epita.fr>
5784
5785 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
5786 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
5787 * src/output.c: Adjust.
5788
5789 2001-11-19 Akim Demaille <akim@epita.fr>
5790
5791 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
5792 (rule_t): this.
5793 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
5794
5795 2001-11-19 Akim Demaille <akim@epita.fr>
5796
5797 * src/gram.h (rule_t): New.
5798 (rule_table): New.
5799 (rrhs, rlhs): Remove, part of state_t.
5800 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
5801 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
5802 * src/reader.c, src/reduce.c: Adjust.
5803
5804 2001-11-19 Akim Demaille <akim@epita.fr>
5805
5806 * src/reader.c (symbols_output): New, extracted from...
5807 (packsymbols): Here.
5808 (reader): Call it.
5809
5810 2001-11-19 Akim Demaille <akim@epita.fr>
5811
5812 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
5813 (maxrhs): this new function.
5814
5815 2001-11-19 Akim Demaille <akim@epita.fr>
5816
5817 * src/lalr.c (F): New macro to access the variable F.
5818 Adjust.
5819
5820 2001-11-19 Akim Demaille <akim@epita.fr>
5821
5822 * src/lalr.h (LA): New macro to access the variable LA.
5823 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
5824 * src/lalr.c: Adjust.
5825
5826 2001-11-19 Akim Demaille <akim@epita.fr>
5827
5828 * src/lalr.c (initialize_LA): Only initialize LA. Let...
5829 (set_state_table): handle the `lookaheads' members.
5830
5831 2001-11-19 Akim Demaille <akim@epita.fr>
5832
5833 * src/lalr.h (lookaheads): Removed array, whose contents is now
5834 a member of...
5835 (state_t): this structure.
5836 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
5837 Adjust.
5838
5839 2001-11-19 Akim Demaille <akim@epita.fr>
5840
5841 * src/lalr.h (consistent): Removed array, whose contents is now
5842 a member of...
5843 (state_t): this structure.
5844 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
5845 Adjust.
5846
5847 2001-11-19 Akim Demaille <akim@epita.fr>
5848
5849 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
5850 contents are now members of...
5851 (state_t): this structure.
5852 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
5853 Adjust.
5854
5855 2001-11-19 Akim Demaille <akim@epita.fr>
5856
5857 * src/lalr.h (state_t): New.
5858 (state_table): Be a state_t * instead of a core **.
5859 (accessing_symbol): Remove, part of state_t.
5860 * src/lalr.c: Adjust.
5861 (set_accessing_symbol): Merge into...
5862 (set_state_table): this.
5863 * src/print_graph.c, src/conflicts.c: Adjust.
5864
5865 2001-11-14 Akim Demaille <akim@epita.fr>
5866
5867 * tests/calc.at, tests/output.at, tests/regression.at,
5868 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
5869 now the tests are run in private dirs, therefore AC_CLEANUP and
5870 family can be simplified to 0-ary.
5871 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
5872 use abs. path to find config.h.
5873 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
5874 stderr, there can be way too much random noise.
5875 Instead pass -Werror to GCC and rely on the exit status.
5876 Reported by Wolfram Wagner.
5877
5878 2001-11-14 Akim Demaille <akim@epita.fr>
5879
5880 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
5881 defined only if yyoverflow is defined, to avoid `warning: unused
5882 variable `yyvs1''.
5883 Reported by The Test Suite.
5884
5885 2001-11-14 Akim Demaille <akim@epita.fr>
5886
5887 * src/print.c: Include reduce.h.
5888 Reported by Hans Aberg.
5889
5890 2001-11-14 Akim Demaille <akim@epita.fr>
5891
5892 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
5893 Revert a previous patch: these are really const.
5894 * src/conflicts.c (conflict_report): Additional useless pair of
5895 braces to pacify GCC's warnings for `if () if () {} else {}'.
5896 * src/lex.c (parse_percent_token): Replace equal_offset with
5897 arg_offset.
5898 arg is const.
5899 Be sure to strdup `arg' when used, since there is no reason for
5900 token_buffer not to change.
5901
5902 2001-11-14 Akim Demaille <akim@epita.fr>
5903
5904 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
5905 definition.
5906 * src/main.c (main): Use them.
5907 Suggested by Hans Aberg.
5908
5909 2001-11-12 Akim Demaille <akim@epita.fr>
5910
5911 * src/system.h (ngettext): Now that we use ngettext, be sure to
5912 provide a default definition when NLS are not used.
5913
5914 2001-11-12 Akim Demaille <akim@epita.fr>
5915
5916 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
5917 Use @kbd to denote user input.
5918 (Language and Grammar): ANSIfy the example.
5919 Adjust its layout for info/notinfo.
5920 (Location Tracking Calc): Output error messages to stderr.
5921 Output locations in a more GNUtically correct way.
5922 Fix a couple of Englishos.
5923 Adjust @group/@end group pairs.
5924
5925 2001-11-12 Akim Demaille <akim@epita.fr>
5926
5927 %expext was not functioning at all.
5928
5929 * src/conflicts.c (expected_conflicts): Set to -1.
5930 (conflict_report): Use ngettext.
5931 (conflicts_print): Check %expect and make its violation an error.
5932 * doc/bison.texinfo (Expect Decl): Adjust.
5933 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
5934 * tests/regression.at (%expect not enough, %expect right)
5935 (%expect too much): New.
5936
5937 2001-11-12 Akim Demaille <akim@epita.fr>
5938
5939 * tests/regression.at (Conflicts): Rename as...
5940 (Unresolved SR Conflicts): this.
5941 (Solved SR Conflicts): New.
5942
5943 2001-11-12 Akim Demaille <akim@epita.fr>
5944
5945 * src/reduce.c (print_results): Rename as...
5946 (reduce_output): This.
5947 Output to OUT, passed as argument, instead of output_obstack.
5948 (dump_grammar): Likewise.
5949 (reduce_free): New.
5950 Also free V1.
5951 (reduce_grammar): No longer call reduce_output, since...
5952 * src/print.c (print_results): do it.
5953 * src/main.c (main): Call reduce_free;
5954
5955 2001-11-12 Akim Demaille <akim@epita.fr>
5956
5957 * src/conflicts.c (print_reductions): Accept OUT as argument.
5958 Output to it, not to output_obstack.
5959 * src/print.c (print_actions): Adjust.
5960
5961 2001-11-12 Akim Demaille <akim@epita.fr>
5962
5963 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
5964 the result instead of using...
5965 (src_total, rrc_total, src_count, rrc_count): Remove.
5966 (any_conflicts): Remove.
5967 (print_conflicts): Split into...
5968 (conflicts_print, conflicts_output): New.
5969 * src/conflicts.h: Adjust.
5970 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
5971 * src/print.c (print_grammar): Issue `\n' between two rules.
5972 * tests/regression.at (Conflicts): New.
5973 Reported by Tom Lane.
5974
5975 2001-11-12 Akim Demaille <akim@epita.fr>
5976
5977 * tests/regression.at (Invalid input): Remove, duplicate with
5978 ``Invalid input: 1''.
5979
5980 2001-11-12 Akim Demaille <akim@epita.fr>
5981
5982 * tests/torture.at (AT_DATA_STACK_TORTURE)
5983 (Exploding the Stack Size with Alloca)
5984 (Exploding the Stack Size with Malloc): New.
5985
5986 2001-11-12 Akim Demaille <akim@epita.fr>
5987
5988 * src/bison.simple (YYSTACK_REALLOC): New.
5989 (yyparse) [!yyoverflow]: Use it and free the old stack.
5990 Reported by Per Allansson.
5991
5992 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
5993
5994 * src/bison.simple: Define type yystype instead of YYSTYPE, and
5995 define CPP macro, which substitute YYSTYPE by yystype.
5996 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
5997 with yyltype/YYLTYPE. This allows inclusion of the generated
5998 header within the parser if the compiler, such as GGC, accepts
5999 multiple equivalent #defines.
6000 From Akim.
6001
6002 2001-11-05 Akim Demaille <akim@epita.fr>
6003
6004 * src/reader.c (symbols_output): New, extracted from...
6005 (packsymbols): here.
6006 (reader): Adjust.
6007
6008 2001-11-05 Akim Demaille <akim@epita.fr>
6009
6010 * src/lex.c (parse_percent_token): s/quotearg/quote/.
6011
6012 2001-11-05 Akim Demaille <akim@epita.fr>
6013
6014 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
6015 pattern.
6016
6017 2001-11-05 Akim Demaille <akim@epita.fr>
6018
6019 * src/options.h (struct option_table_struct): set_flags is void*.
6020 * src/options.c (longopts): Support `--output' and `%output'.
6021 (usage): Adjust.
6022 * src/lex.h (tok_setopt): Remove, replaced with...
6023 (tok_intopt, tok_stropt): these new guys.
6024 * src/lex.c (getopt.h): Not needed.
6025 (token_buffer, unlexed_token_buffer): Not const.
6026 (percent_table): Promote `-' over `_' in directive names.
6027 Active `%name-prefix', `file-prefix', and `output'.
6028 (parse_percent_token): Accept possible arguments to directives.
6029 Promote `-' over `_' in directive names.
6030
6031 2001-11-04 Akim Demaille <akim@epita.fr>
6032
6033 * doc/bison.texinfo (Decl Summary): Split the list into
6034 `directives for grammars' and `directives for bison'.
6035 Sort'em.
6036 Add description of `%name-prefix', `file-prefix', and `output'.
6037 Promote `-' over `_' in directive names.
6038 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
6039 Simplify the description of `--name-prefix'.
6040 Promote `-' over `_' in directive names.
6041 Promote `--output' over `--output-file'.
6042 Fix the description of `--defines'.
6043 * tests/output.at: Exercise %file-prefix and %output.
6044
6045 2001-11-02 Akim Demaille <akim@epita.fr>
6046
6047 * doc/refcard.tex: Update.
6048
6049 2001-11-02 Akim Demaille <akim@epita.fr>
6050
6051 * src/symtab.h (SUNDEF): New.
6052 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
6053 stand for `uninitialized', instead of 0.
6054 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
6055 * src/lex.c (lex): Adjust.
6056
6057 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
6058 Number it 0.
6059 Let yylex return it instead of a plain 0.
6060 Reported by Dick Streefland.
6061
6062 2001-11-02 Akim Demaille <akim@epita.fr>
6063
6064 * tests/regression.at (Mixing %token styles): New test.
6065
6066 2001-11-02 Akim Demaille <akim@epita.fr>
6067
6068 * src/reader.c (parse_thong_decl): Formatting changes.
6069 (token_translations_init): New, extracted from...
6070 (packsymbols): Here.
6071 Adjust.
6072
6073 2001-11-01 Akim Demaille <akim@epita.fr>
6074
6075 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
6076 Check that `9foo.y' produces correct cpp guards.
6077 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
6078 guards.
6079 Reported by Wwp.
6080
6081 2001-11-01 Akim Demaille <akim@epita.fr>
6082
6083 * tests/regression.at (Invalid input: 2): New.
6084 * src/lex.c (unlexed_token_buffer): New.
6085 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
6086 too.
6087 Reported by Wwp.
6088
6089 2001-11-01 Akim Demaille <akim@epita.fr>
6090
6091 * tests/calc.at: Catch up with 1.30.
6092 * configure.in: Bump to 1.49a.
6093 Adjust to newer Autotest.
6094
6095 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
6096
6097 * src/conflicts.c: Move global variables rrc_total and src_total ...
6098 (print_conflicts): here.
6099 * src/output.c (output): Free global variable user_toknums.
6100 * src/lex.c (token_obstack): Become static.
6101
6102 2001-10-18 Akim Demaille <akim@epita.fr>
6103
6104 * tests/atlocal.in (GCC): Add.
6105 * tests/calc.at: s/m4_match/m4_bmatch/.
6106 s/m4_patsubst/m4_bpatsubst/.
6107 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
6108 * configure.in: AC_SUBST(GCC).
6109
6110 2001-10-14 Marc Autret <autret_m@epita.fr>
6111
6112 * src/options.c (create_long_option_table): Fix.
6113
6114 2001-10-10 Akim Demaille <akim@epita.fr>
6115
6116 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
6117
6118 2001-10-04 Akim Demaille <akim@epita.fr>
6119
6120 * src/reader.c (parse_union_decl): Push the caracters in
6121 union_obstack, not attrs_obstack.
6122
6123 2001-10-04 Akim Demaille <akim@epita.fr>
6124
6125 Merge in the branch 1.29.
6126
6127 * src/reader.c (packsymbols): Use a temporary obstack for
6128 `%%tokendef', since output_stack is already used elsewhere.
6129
6130 2001-10-02 Akim Demaille <akim@epita.fr>
6131
6132 Bump 1.29d.
6133
6134 2001-10-02 Akim Demaille <akim@epita.fr>
6135
6136 Version 1.29c.
6137
6138 2001-10-02 Akim Demaille <akim@epita.fr>
6139
6140 * tests/regression.at (Invalid CPP headers): New.
6141 From Alexander Belopolsky.
6142 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
6143
6144 2001-10-02 Akim Demaille <akim@epita.fr>
6145
6146 * tests/regression.at (Invalid input): New.
6147 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
6148 Reported by Shura.
6149
6150 2001-10-02 Akim Demaille <akim@epita.fr>
6151
6152 * tests/calc.at: Now that --debug works, the tests must be adjusted.
6153
6154 2001-10-02 Akim Demaille <akim@epita.fr>
6155
6156 * src/output.c (output_parser): Assert `skeleton'.
6157 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
6158 systems.
6159 From Shura.
6160
6161 2001-10-01 Marc Autret <autret_m@epita.fr>
6162
6163 * src/lex.h: Echo modifications.
6164 * src/lex.c (unlex): Parameter is now token_t.
6165 From Hans Aberg.
6166
6167 2001-10-01 Marc Autret <autret_m@epita.fr>
6168
6169 * src/main.c: Include lex.h.
6170 From Hans Aberg.
6171
6172 2001-09-29 Akim Demaille <akim@epita.fr>
6173
6174 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
6175
6176 2001-09-28 Akim Demaille <akim@epita.fr>
6177
6178 * tests/testsuite.at: Update to newer Autotest.
6179 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
6180
6181 2001-09-27 Akim Demaille <akim@epita.fr>
6182
6183 Position independent wrapper.
6184
6185 * tests/bison: Remove.
6186 * tests/bison.in: New.
6187 * configure.in: Adjust.
6188
6189 2001-09-27 Paul Eggert <eggert@twinsun.com>
6190
6191 Port quotearg fixes from tar 1.13.24.
6192
6193 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
6194 tm to be declared.
6195 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
6196 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
6197
6198 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
6199 * m4/mbrtowc.m4: New file.
6200 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
6201 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
6202
6203 2001-09-27 Akim Demaille <akim@epita.fr>
6204
6205 Bump to 1.29c.
6206
6207 2001-09-27 Akim Demaille <akim@epita.fr>
6208
6209 Version 1.29b.
6210
6211 2001-09-25 Akim Demaille <akim@epita.fr>
6212
6213 * src/system.h: Include `xalloc.h'.
6214 Remove it from the C files.
6215 * src/files.c (output_files): Free the obstacks.
6216 * src/lex.c (init_lex): Rename as...
6217 (lex_init): this.
6218 (lex_free): New.
6219 * src/main.c (main): Use it.
6220
6221 2001-09-24 Marc Autret <autret_m@epita.fr>
6222
6223 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
6224 to output informations in fout (FILE*).
6225 (open_graph, close_graph): Likewise.
6226 (output_graph, output_edge, output_node): Likewise.
6227 * src/vcg.h: Update function prototypes.
6228 * src/print_graph.c (print_graph): Open output graph file.
6229 (print_actions): Adjust.
6230 * src/files.h: Remove extern declaration.
6231 * src/files.c: Remove graph_obstack declaration.
6232 (open_files): Remove graph_obstack initialization.
6233 (output_files): Remove graph_obstack saving.
6234
6235 2001-09-24 Marc Autret <autret_m@epita.fr>
6236
6237 * src/files.c (compute_output_file_names): Fix.
6238
6239 2001-09-24 Marc Autret <autret_m@epita.fr>,
6240 Akim Demaille <akim@epita.fr>
6241
6242 * src/reader.c (reader): Remove call to free_symtab ().
6243 * src/main.c (main): Call it here.
6244 Include symtab.h.
6245 * src/conflicts.c (initialize_conflicts): Rename as...
6246 (solve_conflicts): this.
6247 * src/print.c (print_core, print_actions, print_state)
6248 (print_grammar): Dump to a file instead a `output_obstack'.
6249 (print_results): Dump `output_obstack', and then proceed with the
6250 FILE *.
6251 * src/files.c (compute_output_file_names, close_files): New.
6252 (output_files): Adjust.
6253 * src/main.c (main): Adjust.
6254
6255 2001-09-23 Marc Autret <autret_m@epita.fr>
6256
6257 * src/files.c (compute_header_macro): Computes header macro name
6258 from spec_defines_file when given.
6259
6260 2001-09-23 Marc Autret <autret_m@epita.fr>
6261
6262 * src/files.c (output_files): Add default extensions.
6263
6264 2001-09-22 Akim Demaille <akim@epita.fr>
6265
6266 * src/conflicts.c (finalize_conflicts): Rename as...
6267 (free_conflicts): this.
6268
6269 2001-09-22 Akim Demaille <akim@epita.fr>
6270
6271 * src/gram.c (gram_free): Rename back as...
6272 (dummy): this.
6273 (output_token_translations): Free `token_translations'.
6274 * src/symtab.c (free_symtab): Free the tag field.
6275
6276 2001-09-22 Akim Demaille <akim@epita.fr>
6277
6278 Remove `translations' as it is always set to true.
6279
6280 * src/gram.h: Adjust.
6281 * src/reader.c (packsymbols, parse_token_decl): Adjust
6282 * src/print.c (print_grammar): Adjust.
6283 * src/output.c (output_token_translations): Adjust.
6284 * src/lex.c (lex): Adjust.
6285 * src/gram.c: Be sure the set pointers to NULL.
6286 (dummy): Rename as...
6287 (gram_free): this.
6288
6289 2001-09-22 Akim Demaille <akim@epita.fr>
6290
6291 * configure.in: Invoke AM_LIB_DMALLOC.
6292 * src/system.h: Use dmalloc.
6293 * src/LR0.c: Be sure to have pointers initialized to NULL.
6294 (allocate_itemsets): Allocate kernel_items only if needed.
6295
6296 2001-09-22 Akim Demaille <akim@epita.fr>
6297
6298 * configure.in: Bump to 1.29b.
6299 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
6300 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
6301 need xmalloc.c in calc.y.
6302 From Pascal Bart.
6303
6304 2001-09-21 Akim Demaille <akim@epita.fr>
6305
6306 Version 1.29a.
6307 * Makefile.maint, config/config.guess, config/config.sub,
6308 * config/missing: Update from masters.
6309 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
6310 upon package.m4.
6311 * configure.in (ALL_LINGUAS): Add `tr'.
6312
6313 2001-09-21 Akim Demaille <akim@epita.fr>
6314
6315 * tests/Makefile.am (package.m4): Move to...
6316 ($(srcdir)/$(TESTSUITE)): here.
6317
6318 2001-09-20 Akim Demaille <akim@epita.fr>
6319
6320 * src/complain.c: No longer try to be standalone: use system.h.
6321 Don't assume __STDC__ is defined to 1. Just test if it is defined.
6322 * src/complain.h: Likewise.
6323 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
6324 Remove the unused variable `n'.
6325 From Albert Chin-A-Young.
6326
6327 2001-09-18 Marc Autret <autret_m@epita.fr>
6328
6329 * doc/bison.1: Update.
6330 * doc/bison.texinfo (Bison Options): Update --defines and --graph
6331 descriptions.
6332 (Option Cross Key): Update.
6333 Add --graph.
6334
6335 2001-09-18 Marc Autret <autret_m@epita.fr>
6336
6337 * tests/regression.at: New test (comment in %union).
6338
6339 2001-09-18 Marc Autret <autret_m@epita.fr>
6340
6341 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
6342 do that.
6343 Reported by Keith Browne.
6344
6345 2001-09-18 Marc Autret <autret_m@epita.fr>
6346
6347 * tests/output.at: Add tests for --defines and --graph.
6348
6349 2001-09-18 Marc Autret <autret_m@epita.fr>
6350
6351 * tests/output.at: Removes tests of %{header,src}_extension features.
6352
6353 2001-09-18 Akim Demaille <akim@epita.fr>
6354
6355 * tests/Makefile.am (package.m4): New.
6356 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
6357 (_AT_CHECK_CALC_ERROR): Likewise.
6358 Factor the `, ' part of verbose error messages.
6359
6360 2001-09-18 Marc Autret <autret_m@epita.fr>
6361
6362 * src/getargs.c (longopts): Declare --defines and --graph as options
6363 with optional arguments.
6364 * src/files.h: Add extern declarations.
6365 * src/files.c (spec_graph_file, spec_defines_file): New.
6366 (output_files): Update.
6367 Remove CPP-outed code.
6368
6369 2001-09-18 Marc Autret <autret_m@epita.fr>
6370
6371 Turn off %{source,header}_extension feature.
6372
6373 * src/files.c (compute_exts_from_gf): Update.
6374 (compute_exts_from_src): Update.
6375 (output_files): CPP-out useless code.
6376 * src/files.h: Remove {header,source}_extension extern declarations.
6377 * src/reader.c (parse_dquoted_param): CPP-out.
6378 (parse_header_extension_decl): Remove.
6379 (parse_source_extension_decl): Remove.
6380 (read_declarations): Remove cases tok_{hdrext,srcext}.
6381 * src/lex.c (percent_table): Remove {header,source}_extension entries.
6382 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
6383
6384 2001-09-10 Akim Demaille <akim@epita.fr>
6385
6386 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
6387 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
6388 (AT_CHECK_OUTPUT): this.
6389 Merely check ls' exit status, its output is useless.
6390
6391 2001-09-10 Akim Demaille <akim@epita.fr>
6392
6393 * tests/calc.at: Use m4_match.
6394 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
6395
6396 2001-09-10 Marc Autret <autret_m@epita.fr>,
6397 Akim Demaille <akim@epita.fr>
6398
6399 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
6400 enum color_e.
6401 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
6402 to `normal'.
6403 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
6404 * src/lex.h: Adjust prototype.
6405 (token_t): Add `tok_undef'.
6406 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
6407 (parse_percent_token): Now returns token_t.
6408 Add default statement in switch.
6409 (lex): Separate `c' as an input variable, from the token_t result
6410 part.
6411 (unlexed): Is a token_t.
6412
6413 2001-09-10 Akim Demaille <akim@epita.fr>
6414
6415 * configure.in: Bump to 1.29a.
6416
6417 2001-09-07 Akim Demaille <akim@epita.fr>
6418
6419 Version 1.29.
6420
6421 2001-08-30 Akim Demaille <akim@epita.fr>
6422
6423 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
6424 * m4/atconfig.m4: Remove.
6425 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
6426 * tests/bison: New.
6427 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
6428 m4_if, m4_patsubst, and m4_regexp.
6429 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
6430 `input' file instead of echo.
6431
6432 2001-08-29 Akim Demaille <akim@epita.fr>
6433
6434 Bump to 1.28e.
6435
6436 2001-08-29 Akim Demaille <akim@epita.fr>
6437
6438 Version 1.28d.
6439
6440 2001-08-29 Paul Eggert <eggert@twinsun.com>
6441
6442 * src/bison.simple (yyparse): Don't take the address of an
6443 item before the start of an array, as that doesn't conform to
6444 the C Standard.
6445
6446 2001-08-29 Robert Anisko <anisko_r@epita.fr>
6447
6448 * doc/bison.texinfo (Location Tracking Calc): New node.
6449
6450 2001-08-29 Paul Eggert <eggert@twinsun.com>
6451
6452 * src/output.c (output): Do not define const, as this now
6453 causes more problems than it cures.
6454
6455 2001-08-29 Akim Demaille <akim@epita.fr>
6456
6457 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
6458 the nodes.
6459 Be sure to tag the `detailmenu'.
6460
6461 2001-08-29 Akim Demaille <akim@epita.fr>
6462
6463 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
6464 download in a tmp dir.
6465
6466 2001-08-28 Marc Autret <autret_m@epita.fr>
6467
6468 * config/depcomp: New file.
6469
6470 2001-08-28 Marc Autret <autret_m@epita.fr>
6471
6472 * doc/bison.1 (mandoc): Adjust.
6473 From Juan Manuel Guerrero.
6474
6475 2001-08-28 Marc Autret <autret_m@epita.fr>
6476
6477 * src/print_graph.c (print_state): Fix.
6478
6479 2001-08-27 Marc Autret <autret_m@epita.fr>
6480
6481 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
6482 char * members.
6483 Echo modifications to the functions prototypes.
6484 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
6485
6486 2001-08-27 Marc Autret <autret_m@epita.fr>
6487
6488 * src/vcg.c: Include `xalloc.h'.
6489 (add_colorentry): New.
6490 (add_classname): New.
6491 (add_infoname): New.
6492 * src/vcg.h: Add new prototypes.
6493
6494 2001-08-27 Akim Demaille <akim@epita.fr>
6495
6496 * Makefile.maint: Sync. again with CVS Autoconf.
6497
6498 2001-08-27 Akim Demaille <akim@epita.fr>
6499
6500 * Makefile.maint: Formatting changes.
6501 (po-update, cvs-update, update): New targets.
6502 (AMTAR): Remove.
6503
6504 2001-08-27 Akim Demaille <akim@epita.fr>
6505
6506 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
6507 * Makefile.maint: Sync. with CVS Autoconf.
6508
6509 2001-08-27 Marc Autret <autret_m@epita.fr>
6510
6511 * src/vcg.h (struct infoname_s): New.
6512 (struct colorentry_s): New.
6513 (graph_s): New fields {vertical,horizontal}_order in structure.
6514 Add `infoname' field.
6515 Add `colorentry' field;
6516 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
6517 (G_HORIZONTAL_ORDER): New.
6518 (G_INFONAME): New.
6519 (G_COLORENTRY): New.
6520 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
6521 Add output of `infoname'.
6522 Add output of `colorentry'.
6523
6524 2001-08-27 Marc Autret <autret_m@epita.fr>
6525
6526 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
6527 This one shadowed a global parameter.
6528
6529 2001-08-24 Marc Autret <autret_m@epita.fr>
6530
6531 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
6532 instead of `unsigned'.
6533 (print_state): Do not call obstack_object_size () in obstack_grow ()
6534 to avoid macro variables shadowing.
6535
6536 2001-08-23 Marc Autret <autret_m@epita.fr>
6537
6538 * src/lex.c (percent_table): Typo: s/naem/name/.
6539 Add graph option.
6540 Normalize new options declarations.
6541
6542 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
6543
6544 * tests/suite.at: Exercise %header_extension and %source_extension.
6545
6546 2001-08-16 Marc Autret <autret_m@epita.fr>
6547
6548 * src/reader.c (parse_dquoted_param): New.
6549 (parse_header_extension_decl): Use it.
6550 (parse_source_extension_decl): Likewise.
6551
6552 2001-08-16 Marc Autret <autret_m@epita.fr>
6553
6554 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
6555 (get_xxxx_str): Use assert () instead of complain ().
6556 Remove return invokations in default cases.
6557 (get_decision_str): Modify default behaviour. Remove second argument.
6558 Echo modifications on calls.
6559 (output_graph): Fix.
6560
6561 2001-08-16 Marc Autret <autret_m@epita.fr>
6562
6563 * src/getargs.c (usage): Update with ``-g, --graph''.
6564
6565 2001-08-16 Marc Autret <autret_m@epita.fr>
6566
6567 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
6568 (Option Cross Key): Likewise.
6569 * doc/bison.1: Update.
6570
6571 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
6572
6573 * src/output.c (output_master_parser): Don't finish action_obstack.
6574 (output_parser): Don't care about the muscle action, here.
6575 (prepare): Copy the action_obstack in the action muscle.
6576 (output): Free action_obstack.
6577
6578 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
6579
6580 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
6581 will contain `%union' declaration.
6582 (parse_union_decl): Delete #line directive output.
6583 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
6584 informations about %union.
6585 (parse_union_decl): Copy the union_obstack in the muscle stype.
6586 * src/bison.simple: Add new #line directive.
6587 Add typdef %%stype YYSTYPE.
6588
6589 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
6590
6591 * src/bison.simple: Add new `#line' directive.
6592
6593 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
6594
6595 * src/bison.simple: New `#line' directive.
6596 * src/output.c (output_parser): Support new dynamic muscle input_line.
6597
6598 2001-09-22 Marc Autret <autret_m@epita.fr>
6599
6600 * src/output.c (output_master_parser): New.
6601 (output_parser): Be more re-entrant.
6602
6603 2001-09-21 Marc Autret <autret_m@epita.fr>
6604
6605 * src/reader.c (copy_definition, parse_union_decl): Update and use
6606 `linef' muscle.
6607 (copy_action): Likewise.
6608 Use obstack_1grow ().
6609 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
6610
6611 2001-09-21 Marc Autret <autret_m@epita.fr>
6612
6613 * src/options.c (option_table): Adjust.
6614 * src/lex.c (parse_percent_token): Fix.
6615
6616 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
6617
6618 * src/options.c (symtab.h): Include it, need by lex.h.
6619
6620 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
6621
6622 * src/lex.c (parse_percent_token): Change type of variable `tx', which
6623 is now an option_table_struct*.
6624 (option_strcmp): New function option_strcmp.
6625 (parse_percent_token): Call option_strcmp.
6626 * src/getargs.c (xalloc.h, options.h): Include it.
6627 (getargs): Call create_long_option_table.
6628 (getargs): Free longopts at the end of the function.
6629 (shortopts): Move in options.c.
6630 * src/options.c (create_long_option_table): New function. Convert
6631 information from option_table to option structure.
6632 * src/reader.c (options.h): Include it.
6633
6634 * src/Makefile.am: Adjust.
6635 * src/options.c (option_table): Create from longopts and percent_table.
6636 * src/getargs.c (longopts): Delete.
6637 * src/lex.c (struct percent_table_struct): Delete.
6638 (percent_table): Delete.
6639 (options.h): Include it.
6640 * src/options.c: Create.
6641 * src/options.h: Create.
6642 Declare enum opt_access_e.
6643 Define struct option_table_struct.
6644
6645 2001-09-20 Marc Autret <autret_m@epita.fr>
6646
6647 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
6648 sections of Bison.
6649
6650 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
6651
6652 * src/bison.simple: s/%%filename/%%skeleton.
6653 * src/muscle_tab.c (getargs.h): Include it.
6654 (muscle_init): Insert new muscle skeleton.
6655
6656 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
6657
6658 * src/output.c (output_parser): Delete unused variable actions_dumped.
6659
6660 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
6661
6662 * src/output.c (output): Delete call to reader_output_yylsp.
6663 * src/reader.c (reader): Likewise.
6664 * src/reader.h: Delete declaration of reader_output_yylsp.
6665
6666 2001-09-02 Marc Autret <autret_m@epita.fr>
6667
6668 * src/reader.c: Include muscle_tab.h.
6669 (parse_union_decl): Update.
6670 (parse_macro_decl): Rename parse_muscle_decl.
6671 Update to use renamed functions and variable.
6672 (read_declarations, copy_action, read_additionnal_code, : Updated
6673 with correct variables and functions names.
6674 (packsymbols, reader): Likewise.
6675
6676 * src/reader.h (muscle_obstack): Extern declaration update.
6677
6678 * src/output.c: Include muscle_tab.h
6679 In all functions using macro_insert, change by using muscle_insert ().
6680 (macro_obstack): Rename muscle_obstack.
6681 Echo modifications in the whole file.
6682 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
6683 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
6684 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
6685
6686 * src/muscle_tab.h: Update double inclusion macros.
6687 (macro_entry_s): Rename muscle_entry_s.
6688 Update prototypes.
6689
6690 * src/muscle_tab.c: Include muscle_tab.h.
6691 Rename macro_tabble to muscle_table.
6692 (mhash1, mhash2, mcmp): Use muscle_entry.
6693 (macro_init): Rename muscle_init. Update.
6694 (macro_insert): Rename muscle_insert. Update.
6695 (macro_find): Rename muscle_find. Update.
6696
6697 * src/main.c: Include muscle_tab.h.
6698 (main): Call muscle_init ().
6699 * src/Makefile.am (bison_SOURCES): Echo modifications.
6700
6701 2001-09-02 Marc Autret <autret_m@epita.fr>
6702
6703 Now the files macro_tab.[ch] are named muscle_tab.[ch].
6704
6705 * src/muscle_tab.c, src/muscle_tab.h: Add files.
6706
6707 2001-09-02 Marc Autret <autret_m@epita.fr>
6708
6709 * src/macrotab.c, src/macrotab.h: Remove.
6710
6711 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
6712
6713 * src/reader.c (copy_guard): Use muscle to specify the `#line'
6714 filename.
6715
6716 2001-09-01 Marc Autret <autret_m@epita.fr>
6717
6718 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
6719 to an explicit value to activate the feature. We do it here.
6720
6721 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
6722
6723 * src/output.c (prepare): Delete the `filename' muscule insertion.
6724 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
6725 (parse_union_decl): Likewise.
6726 * src/macrotab.c (macro_init): Initialize filename by infile.
6727
6728 2001-08-31 Marc Autret <autret_m@epita.fr>
6729
6730 * src/bison.simple (YYLSP_NEEDED): New definition.
6731 * src/output.c (prepare): Add macro insertion of `locations_flag'
6732
6733 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
6734
6735 * src/output.c (prepare): Delete insertion of previous muscles,
6736 and insert the `prefix' muscles.
6737 * src/macrotab.c (macro_init): Likewise.
6738 (macro_init): Initialization prefix directive by `yy'.
6739 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
6740 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
6741 yylval, yydebug, yyerror, yynerrs and yyparse.
6742 New directive `#define' to substitute yydebug, ... with option
6743 name_prefix.
6744
6745 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
6746
6747 * src/main.c (main): Standardize.
6748 * src/output.c (output_table_data, output_parser): Likewise.
6749 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
6750
6751 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
6752
6753 * src/reader.c (read_additionnal_code): Rename %%user_code to
6754 %%epilogue.
6755 * src/output.c (output): Rename %%declarations to %%prologue.
6756 * src/bison.simple: Echo modifications.
6757
6758 2001-08-31 Marc Autret <autret_m@epita.fr>
6759
6760 * src/reader.c (readgram): CleanUp.
6761 (output_token_defines): Likewise.
6762 (packsymbols): Likewise.
6763 (reader): Likewise.
6764 * src/output.c (output): CPP-out useless code.
6765
6766 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
6767
6768 * src/reader.c (reader): Delete obsolete call to function
6769 output_trailers and output_headers.
6770 * src/output.h: Remove obsolete functions prototypes of output_headers
6771 and output_trailers.
6772
6773 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
6774
6775 * src/main.c: Include macrotab.h.
6776 * src/macrotab.h (macro_entry_s): Constify fields.
6777 Adjust functions prototypes.
6778 * src/macrotab.c (macro_insert): Constify key and value.
6779 (macro_find): Constify key.
6780 (macro_insert): Include 'xalloc.h'
6781 (macro_insert): Use XMALLOC.
6782 (macro_find): Constify return value.
6783 * src/output.c (output_table_data): Rename table to table_data.
6784 (output_parser): Constify macro_key, macro_value.
6785
6786 2001-08-30 Marc Autret <autret_m@epita.fr>
6787
6788 * src/reader.c (parse_skel_decl): New.
6789 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
6790 * src/lex.h (token_t): New token `tok_skel'.
6791 * src/lex.c (percent_table): Add skeleton option entry.
6792 Standardize.
6793
6794 2001-08-29 Marc Autret <autret_m@epita.fr>
6795
6796 * src/bison.simple: Add %%user_code directive at the end.
6797 * src/reader.c (read_additionnal_code): New.
6798 (reader): Use it.
6799 * src/output.c (output_program): Remove.
6800 (output): Update.
6801
6802 2001-08-28 Marc Autret <autret_m@epita.fr>
6803
6804 * src/output.c (output_actions): Clean up.
6805 (output_gram): CPP-out useless code.
6806 * src/reader.c (reader): Clean up, CPP-out useless code.
6807
6808 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
6809
6810 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
6811 directive.
6812 * src/bison.simple: Add `%%definitions'.
6813
6814 2001-08-28 Marc Autret <autret_m@epita.fr>
6815
6816 * config/depcomp: New file.
6817
6818 2001-08-27 Paul Eggert <eggert@twinsun.com>
6819
6820 * src/bison.simple (yyparse): Don't take the address of an
6821 item before the start of an array, as that doesn't conform to
6822 the C Standard.
6823
6824 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
6825
6826 * src/output.c (output): Remove the initialization of the macro
6827 obstack. It was done too late here.
6828
6829 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
6830 completely wrong.
6831 (reader): Initialize the macro obstack here, since we need it to grow
6832 '%define' directives.
6833
6834 * src/reader.h: Declare the macro obstack as extern.
6835
6836 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
6837
6838 * src/output.c (output_parser): Fix. Store single '%' characters in
6839 the output obstack instead of throwing them away.
6840
6841 2001-08-27 Akim Demaille <akim@epita.fr>
6842
6843 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
6844
6845 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
6846
6847 * lib/Makefile.am: Adjust.
6848
6849 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
6850
6851 * src/bison.simple: Update and add '%%' directives.
6852
6853 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
6854
6855 * src/reader.c (reader): Remove calls to 'output_headers' and
6856 'output_trailers'. Remove some C output.
6857 (readgram): Disable a piece of code that was writing a default
6858 definition for 'YYSTYPE'.
6859 (reader_output_yylsp): Remove.
6860 (packsymbols): Output token defintions to a macro.
6861 (copy_definition): Disable C output.
6862
6863 * src/reader.c (parse_macro_decl): New function used to parse macro
6864 declarations.
6865 (copy_string2): Put the body of copy_string into this new function.
6866 Add a parameter to let the caller choose whether he wants to copy the
6867 string delimiters or not.
6868 (copy_string): Be a simple call to copy_string2 with the last argument
6869 bound to true.
6870 (read_declarations): Add case for macro definition.
6871 (copy_identifier): New.
6872 (parse_macro_decl): Read macro identifiers using copy_identifier
6873 rather than lex.
6874
6875 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
6876
6877 * src/output.c (prepare): Add prefixed names.
6878 (output_parser): Output semantic actions.
6879 (output_parser): Fix bug on '%%line' directives.
6880
6881 * src/output.c (output_headers): Remove. The C code printed by this
6882 function should now be in the skeletons.
6883 (output_trailers): Remove.
6884 (output): Disable call to 'reader_output_yylsp'.
6885 (output_rule_data): Do not output tables to the table obstack.
6886
6887 * src/output.c: Remove some C dedicated output.
6888 Improve the use of macro and output obstacks.
6889 (output_defines): Remove.
6890
6891 * src/output.c (output_token_translations): Associate 'translate'
6892 table with a macro. No output to the table obstack.
6893 (output_gram): Same for 'rhs' and 'prhs'.
6894 (output_stos): Same for 'stos'.
6895 (output_rule_data): Same for 'r1' and 'r2'.
6896 (token_actions): Same for 'defact'.
6897 (goto_actions): Same for 'defgoto'.
6898 (output_base): Same for 'pact' and 'pgoto'.
6899 (output_table): Same for 'table'.
6900 (output_check): Same for 'check'.
6901
6902 * src/output.c (output_table_data): New function.
6903 (output_short_table): Remove.
6904 (output_short_or_char_table): Remove.
6905
6906 * src/output.c (output_parser): Replace most of the skeleton copy code
6907 with something new. Skeletons are now processed character by character
6908 rather than line by line, and Bison looks for '%%' macros. This is the
6909 first step in making Bison's output process (a lot) more flexible.
6910 (output_parser): Use the macro table.
6911
6912 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
6913
6914 * src/main.c (main): Initialize the macro table.
6915
6916 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
6917
6918 * src/lex.c (percent_table): Add tok_define.
6919 * src/lex.h: Add tok_define.
6920
6921 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
6922
6923 * src/macrotab.c: New file.
6924 * src/macrotab.h: New file.
6925 * src/Makefile.am: Update.
6926
6927 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
6928
6929 * lib/hash.c: New file.
6930 * lib/hash.h: New file.
6931 * lib/Makefile.am: Update.
6932
6933 2001-08-15 Akim Demaille <akim@epita.fr>
6934
6935 Version 1.28c.
6936
6937 2001-08-15 Marc Autret <autret_m@epita.fr>
6938
6939 * src/reader.c (readgram): Indent output macro YYSTYPE.
6940 (packsymbols): Likewise.
6941 (output_token_defines): Likewise.
6942 * src/files.c: Standardize.
6943 (compute_header_macro): New.
6944 (defines_obstack_save): New. Use compute_header_macro.
6945 (output_files): Update. Use defines_obstack_save.
6946
6947 2001-08-15 Akim Demaille <akim@epita.fr>
6948
6949 * doc/bison.texinfo (Table of Symbols): Document
6950 YYSTACK_USE_ALLOCA.
6951
6952 2001-08-15 Akim Demaille <akim@epita.fr>
6953
6954 * missing: Update from CVS Automake.
6955 * config/config.guess, config/config.sub, config/texinfo.tex:
6956 Update from gnu.org.
6957
6958 2001-08-15 Akim Demaille <akim@epita.fr>
6959
6960 * Makefile.maint: Sync with CVS Autoconf.
6961
6962 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
6963
6964 * doc/bison.texinfo: Include GNU Free Documentation License from
6965 `fdl.texi'.
6966 * doc/fdl.texi: Add to package.
6967
6968 2001-08-14 Marc Autret <autret_m@epita.fr>
6969
6970 Turn on %{source,header}_extension features.
6971
6972 * src/lex.c (percent_table): Un-CPP out header_extension and
6973 source_extension.
6974 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
6975 (compute_exts_from_src): Remove conditions. It restores priorities
6976 between options.
6977
6978 2001-08-14 Marc Autret <autret_m@epita.fr>
6979
6980 * src/files.c (compute_base_names): Add extensions computing when
6981 `--file-prefix' used.
6982 Standardize function calls.
6983
6984 2001-08-13 Marc Autret <autret_m@epita.fr>
6985
6986 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
6987 defining it (defined but null disables alloca).
6988
6989 2001-08-13 Marc Autret <autret_m@epita.fr>
6990
6991 * src/bison.simple (_yy_memcpy): CPP reformat.
6992
6993 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
6994
6995 * tests/atconfig.in (CPPFLAGS): Fix.
6996
6997 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
6998
6999 * doc/bison.texinfo: Include GNU General Public License from
7000 `gpl.texi'.
7001 * doc/gpl.texi: Add to package.
7002
7003 2001-08-10 Marc Autret <autret_m@epita.fr>
7004
7005 * src/print_graph.h: Fix.
7006 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
7007
7008 2001-08-10 Akim Demaille <akim@epita.fr>
7009
7010 * src/system.h: Provide default declarations for stpcpy, strndup,
7011 and strnlen.
7012
7013 2001-08-10 Robert Anisko <anisko_r@epita.fr>
7014
7015 * doc/bison.texinfo (Locations): Update @$ stuff.
7016
7017 2001-08-09 Robert Anisko <anisko_r@epita.fr>
7018
7019 * src/bison.simple (YYLLOC_DEFAULT): Update.
7020 (yyparse): Adjust.
7021
7022 2001-08-08 Marc Autret <autret_m@epita.fr>
7023
7024 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
7025 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
7026 Reported by Fabrice Bauzac.
7027
7028 2001-08-08 Marc Autret <autret_m@epita.fr>
7029
7030 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
7031 * src/vcg.c (output_node): Fix.
7032 * src/vcg.h: Cleanup.
7033 * src/print_graph.c: Add comments.
7034 (node_output_size): New global variable. Simplify the formatting of
7035 the VCG graph output.
7036 (print_actions): Unused code is now used. It notifies the final state
7037 and no action states in the VCG graph. It also give the reduce actions.
7038 The `shift and goto' edges are red and the `go to state' edges are
7039 blue.
7040 Get the current node name and node_obstack by argument.
7041 (node_obstack): New variable.
7042 (print_state): Manage node_obstack.
7043 (print_core): Use node_obstack given by argument.
7044 A node is not only computed here but in print_actions also.
7045 (print_graph): CPP out useless code instead of commenting it.
7046
7047 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
7048
7049 * tests/atconfig.in (CPPFLAGS): Fix.
7050
7051 2001-08-07 Akim Demaille <akim@epita.fr>
7052
7053 * src/print_graph.c (quote): New.
7054 (print_core): Use it.
7055
7056 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
7057
7058 * src/vcg.c (complain.h): Include it.
7059 Unepitaize `return' invocations.
7060 [NDEBUG] (main): Remove.
7061 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
7062 * src/files.c (open_files): Initialize graph_obstack.
7063 * src/print_graph.c (print_actions): CPP out useless code.
7064 (print_core): Don't output the last `\n' in labels.
7065 Use `quote'.
7066 * src/files.c (output_files): Output the VCG file.
7067 * src/main.c (main): Invoke print_graph ();
7068
7069 2001-08-06 Marc Autret <autret_m@epita.fr>
7070
7071 Automaton VCG graph output.
7072 Using option ``-g'' or long option ``--graph'', you can generate
7073 a gram_filename.vcg file containing a VCG description of the LALR (1)
7074 automaton of your grammar.
7075
7076 * src/main.c: Call to print_graph() function.
7077 * src/getargs.h: Update.
7078 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
7079 (graph_flag): New flag.
7080 (longopts): Update.
7081 (getargs): Add case `g'.
7082 * src/files.c (graph_obstack): New obstack struct.
7083 (open_files): Initialize new obstack.
7084 (output_files): Saves graph_obstack if required.
7085 * src/files.h (graph_obstack): New extern declaration.
7086 * src/Makefile.am: Add new source files.
7087
7088 2001-08-06 Marc Autret <autret_m@epita.fr>
7089
7090 * src/print_graph.c, src/print_graph.h (graph): New.
7091 * src/vcg.h: New file.
7092 * src/vcg.c: New file, VCG graph handling.
7093
7094 2001-08-06 Marc Autret <autret_m@epita.fr>
7095
7096 Add of %source_extension and %header_extension which specify
7097 the source or/and the header output file extension.
7098
7099 * src/files.c (compute_base_names): Remove initialisation of
7100 src_extension and header_extension.
7101 (compute_exts_from_gf): Update.
7102 (compute_exts_from_src): Update.
7103 (output_files): Update.
7104 * src/reader.c (parse_header_extension_decl): New.
7105 (parse_source_extension_decl): New.
7106 (read_declarations): New case statements for the new tokens.
7107 * src/lex.c (percent_table): Add entries for %source_extension
7108 and %header_extension.
7109 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
7110
7111 2001-08-06 Marc Autret <autret_m@epita.fr>
7112
7113 * configure.in: Bump to 1.28c.
7114 * doc/bison.texinfo: Texinfo thingies.
7115
7116 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
7117
7118 * tests/atconfig.in (CPPFLAGS): Add.
7119 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
7120
7121 2001-08-03 Akim Demaille <akim@epita.fr>
7122
7123 Version 1.28b.
7124
7125 2001-08-03 Akim Demaille <akim@epita.fr>
7126
7127 * tests/Makefile.am (check-local): Ship testsuite.
7128 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
7129 Include `string.h'.
7130
7131 2001-08-03 Akim Demaille <akim@epita.fr>
7132
7133 * configure.in: Try using -Wformat when compiling.
7134
7135 2001-08-03 Akim Demaille <akim@epita.fr>
7136
7137 * configure.in: Bump to 1.28b.
7138
7139 2001-08-03 Akim Demaille <akim@epita.fr>
7140
7141 * src/complain.c: Adjust strerror_r portability issues.
7142
7143 2001-08-03 Akim Demaille <akim@epita.fr>
7144
7145 Version 1.28a.
7146
7147 2001-08-03 Akim Demaille <akim@epita.fr>
7148
7149 * src/getargs.c, src/getarg.h (skeleton)): Constify.
7150 * src/lex.c (literalchar): Avoid name clashes on `buf'.
7151 * src/getargs.c: Include complain.h.
7152 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
7153 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
7154
7155 2001-08-03 Akim Demaille <akim@epita.fr>
7156
7157 * src/reader.c (readgram): Display hidden chars in error messages.
7158
7159 2001-08-03 Akim Demaille <akim@epita.fr>
7160
7161 Update to gettext 0.10.39.
7162
7163 2001-08-03 Akim Demaille <akim@epita.fr>
7164
7165 * lib/strspn.c: New.
7166
7167 2001-08-01 Marc Autret <autret_m@epita.fr>
7168
7169 * doc/bison.texinfo: Update.
7170 * doc/bison.1 (mandoc): Update.
7171 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
7172 * src/files.c: Support output files extensions computing.
7173 (src_extension): New static variable.
7174 (header_extension): New static variable.
7175 (tr): New function.
7176 (get_extension_index): New function, gets the index of an extension
7177 filename in a string.
7178 (compute_exts_from_gf): New function, computes extensions from the
7179 grammar file extension.
7180 (compute_exts_from_src): New functions, computes extensions from the
7181 C source file extension, file given by ``-o'' option.
7182 (compute_base_names): Update.
7183 (output_files): Update.
7184
7185 2001-08-01 Robert Anisko <anisko_r@epita.fr>
7186
7187 * doc/bison.texi: Document @$.
7188 (Locations): New section.
7189
7190 2001-07-18 Akim Demaille <akim@epita.fr>
7191
7192 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
7193 * config/prev-version.txt, config/move-if-change: New.
7194 * Makefile.am: Adjust.
7195
7196 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
7197
7198 * src/bison.simple (yyparse): Suppress warning `comparaison
7199 between signed and unsigned'.
7200
7201 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
7202
7203 * src/getargs.h (raw_flag): Remove.
7204 * src/getargs.c: Die on `-r'/`--raw'.
7205 * src/lex.c (parse_percent_token): Die on `%raw'.
7206 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
7207 * tests/calc.at: Suppress test with option `--raw'.
7208
7209 2001-07-14 Akim Demaille <akim@epita.fr>
7210
7211 * config/: New.
7212 * configure.in: Require Autoconf 2.50.
7213 Update to gettext 0.10.38.
7214
7215 2001-03-16 Akim Demaille <akim@epita.fr>
7216
7217 * doc/bison.texinfo: ANSIfy the examples.
7218
7219 2001-03-16 Akim Demaille <akim@epita.fr>
7220
7221 * getargs.c (skeleton): New variable.
7222 (longopts): --skeleton is a new option.
7223 (shortopts, getargs): -S is a new option.
7224 * getargs.h: Declare skeleton.
7225 * output.c (output_parser): Use it.
7226
7227 2001-03-16 Akim Demaille <akim@epita.fr>
7228
7229 * m4/strerror_r.m4: New.
7230 * m4/error.m4: Run AC_FUNC_STRERROR_R.
7231 * lib/error.h, lib/error.c: Update.
7232
7233 2001-03-16 Akim Demaille <akim@epita.fr>
7234
7235 * src/getargs.c (longopts): Clean up.
7236
7237 2001-02-21 Akim Demaille <akim@epita.fr>
7238
7239 * src/reader.c (gensym): `gensym_count' is your own.
7240 Use a static buf to create the symbol name, as token_buffer is no
7241 longer a buffer.
7242
7243 2001-02-08 Akim Demaille <akim@epita.fr>
7244
7245 * src/conflicts.c (conflict_report): Be sure not to append to res
7246 between two calls, which could happen if both first sprintf were
7247 skipped, but not the first cp += strlen.
7248
7249 2001-02-08 Akim Demaille <akim@epita.fr>
7250
7251 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
7252 New, from fileutils 4.0.37.
7253 * configure.in: Require Autoconf 2.49c. I took some time before
7254 making this decision. This is the only way out for portability
7255 issues in Bison, it would mean way too much duplicate effort to
7256 import in Bison features implemented in 2.49c since 2.13.
7257 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
7258
7259 2001-02-02 Akim Demaille <akim@epita.fr>
7260
7261 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
7262 * lib/xalloc.h, lib/xmalloc.c: Update.
7263
7264 2001-01-19 Akim Demaille <akim@epita.fr>
7265
7266 Get rid of the ad hoc handling of token_buffer in the scanner: use
7267 the obstacks.
7268
7269 * src/lex.c (token_obstack): New.
7270 (init_lex): Initialize it. No longer call...
7271 (grow_token_buffer): this. Remove it.
7272 Adjust all the places which used it to use the obstack.
7273
7274 2001-01-19 Akim Demaille <akim@epita.fr>
7275
7276 * src/lex.h: Rename all the tokens:
7277 s/\bENDFILE\b/tok_eof/g;
7278 s/\bIDENTIFIER\b/tok_identifier/g;
7279 etc.
7280 Let them be enums, not #define, to ease debugging.
7281 Adjust all the code.
7282
7283 2001-01-18 Akim Demaille <akim@epita.fr>
7284
7285 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
7286 * src/lex.c (maxtoken, grow_token_buffer): Static.
7287
7288 2001-01-18 Akim Demaille <akim@epita.fr>
7289
7290 Since we now use obstacks, more % directives can be enabled.
7291
7292 * src/lex.c (percent_table): Also accept `%yacc',
7293 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
7294 `%debug'.
7295 Handle the actions for `%semantic_parser' and `%pure_parser' here,
7296 instead of returning a token.
7297 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
7298 * src/reader.c (read_declarations): Adjust.
7299 * src/files.c (open_files): Don't call `compute_base_names', don't
7300 compute `attrsfile' since they depend upon data which might be
7301 *in* the input file now.
7302 (output_files): Do it here.
7303 * src/output.c (output_headers): Document the fact that this patch
7304 introduces a guaranteed SEGV for semantic parsers.
7305 * doc/bison.texinfo: Document them.
7306 * tests/suite.at: Exercise these %options.
7307
7308 2000-12-20 Akim Demaille <akim@epita.fr>
7309
7310 Also handle the output file (--verbose) with obstacks.
7311
7312 * files.c (foutput): Remove.
7313 (output_obstack): New.
7314 Adjust all dependencies.
7315 * src/conflicts.c: Return a string.
7316 * src/system.h (obstack_grow_string): Rename as...
7317 (obstack_sgrow): this. Be ready to work with non literals.
7318 (obstack_fgrow4): New.
7319
7320 2000-12-20 Akim Demaille <akim@epita.fr>
7321
7322 * src/files.c (open_files): Fix the computation of short_base_name
7323 in the case of `-o foo.tab.c'.
7324
7325 2000-12-20 Akim Demaille <akim@epita.fr>
7326
7327 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
7328 (copy_dollar): Now that everything uses obstacks, get rid of the
7329 FILE * parameters.
7330
7331 2000-12-20 Akim Demaille <akim@epita.fr>
7332
7333 * src/files.c (open_files): Actually the `.output' file is based
7334 on the short_base_name, not base_name.
7335 * tests/suite.at (Checking output file names): Adjust.
7336
7337 2000-12-20 Akim Demaille <akim@epita.fr>
7338
7339 * src/bison.s1: Remove, we now use directly...
7340 * src/bison.simple: this.
7341 * src/Makefile.am: Use pkgdata instead of data.
7342
7343 2000-12-20 Akim Demaille <akim@epita.fr>
7344
7345 * src/files.c (guard_obstack): New.
7346 (open_files): Initialize it.
7347 (output_files): Dump it...
7348 * src/files.h: Export it.
7349 * src/reader.c (copy_guard): Use it.
7350
7351 2000-12-19 Akim Demaille <akim@epita.fr>
7352
7353 * src/files.c (outfile, defsfile, actfile): Removed as global
7354 vars.
7355 (open_files): Don't compute them.
7356 (output_files): Adjust.
7357 (base_name, short_base_name): Be global.
7358 Adjust dependencies.
7359
7360 2000-12-19 Akim Demaille <akim@epita.fr>
7361
7362 * src/files.c (strsuffix): New.
7363 (stringappend): Be just like strcat but allocate.
7364 (base_names): Eve out from open_files.
7365 Try to simplify the rather hairy computation of base_name and
7366 short_base_name.
7367 (open_files): Use it.
7368 * tests/suite.at (Checking output file names): New test.
7369
7370 2000-12-19 Akim Demaille <akim@epita.fr>
7371
7372 * src/system.h (obstack_grow_literal_string): Rename as...
7373 (obstack_grow_string): this.
7374 * src/output.c (output_parser): Recognize `%% actions' instead of
7375 `$'.
7376 * src/bison.s1: s/$/%% actions/.
7377 * src/bison.hairy: Likewise.
7378
7379 2000-12-19 Akim Demaille <akim@epita.fr>
7380
7381 * src/output.c (output_parser): Compute the `#line' lines when
7382 there are.
7383 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
7384 Suggested by Hans Aberg.
7385
7386 2000-12-19 Akim Demaille <akim@epita.fr>
7387
7388 Let the handling of the skeleton files be local to the procedures
7389 that use it.
7390
7391 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
7392 longer static.
7393 (fparser, open_extra_files): Remove.
7394 (open_files, output_files): Don't take care of fparser.
7395 * src/files.h: Adjust.
7396 * src/output.c (output_parser): Open and close the file to the
7397 skeleton.
7398 * src/reader.c (read_declarations): When %semantic_parser, open
7399 fguard.
7400
7401 2000-12-19 Akim Demaille <akim@epita.fr>
7402
7403 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
7404 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
7405
7406 2000-12-19 Akim Demaille <akim@epita.fr>
7407
7408 * src/files.c (open_files): Yipee! We no longer need all the code
7409 looking for `/tmp' since we have no tmp file.
7410
7411 2000-12-19 Akim Demaille <akim@epita.fr>
7412
7413 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
7414 New macros.
7415 * src/files.c (open_files): Less dependency on MSDOS etc.
7416
7417 2000-12-14 Akim Demaille <akim@epita.fr>
7418
7419 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
7420 Provide a default definition.
7421 Use it when executing the default @ action.
7422 * src/reader.c (reader_output_yylsp): No longer include
7423 `timestamp' and `text' in the default YYLTYPE.
7424
7425 2000-12-12 Akim Demaille <akim@epita.fr>
7426
7427 * src/reader.c (copy_definition, parse_union_decl, copy_action)
7428 (copy_guard): Quote the file names.
7429 Reported by Laurent Mascherpa.
7430
7431 2000-12-12 Akim Demaille <akim@epita.fr>
7432
7433 * src/output.c (output_headers, output_program, output): Be sure
7434 to escape special characters when outputting filenames.
7435 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
7436 (output_headers): Don't depend on them, Use ACTSTR.
7437
7438 2000-11-17 Akim Demaille <akim@epita.fr>
7439
7440 * lib/obstack.h: Formatting changes.
7441 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
7442 prevents type checking.
7443 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
7444 cast the value to (void *): assigning a `foo *' to a `void *'
7445 variable is valid.
7446 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
7447 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
7448 append characters.
7449
7450 2000-11-17 Akim Demaille <akim@epita.fr>
7451
7452 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
7453 as...
7454 (suite.m4, regression.m4, calc.m4): these.
7455 * tests/atgeneral.m4: Update from CVS Autoconf.
7456
7457 2000-11-17 Akim Demaille <akim@epita.fr>
7458
7459 * tests/regression.m4 (%union and --defines): New test,
7460 demonstrating a current bug in the obstack implementation.
7461
7462 2000-11-17 Akim Demaille <akim@epita.fr>
7463
7464 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
7465 macros.
7466 Use them to declare the variables which are global or local to
7467 `yyparse'.
7468
7469 2000-11-17 Akim Demaille <akim@epita.fr>
7470
7471 * acconfig.h: Remove, no longer used.
7472
7473 2000-11-07 Akim Demaille <akim@epita.fr>
7474
7475 * src: s/Copyright (C)/Copyright/g.
7476
7477 2000-11-07 Akim Demaille <akim@epita.fr>
7478
7479 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
7480 defining.
7481 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
7482
7483 2000-11-07 Akim Demaille <akim@epita.fr>
7484
7485 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
7486 Merge in a single CPP if/else.
7487
7488 2000-11-07 Akim Demaille <akim@epita.fr>
7489
7490 * src/output.c (output): Remove useless variables.
7491 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
7492 argument `data' for consistency with the prototypes.
7493 Qualify it `const'.
7494 (obstack_copy, obstack_copy0): Rename the second argument as
7495 `address' for consistency. Qualify it `const'.
7496 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
7497 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
7498 `const' their input argument (`data' or `address').
7499 Adjust the corresponding macros to include `const' in casts.
7500
7501 2000-11-03 Akim Demaille <akim@epita.fr>
7502
7503 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
7504 s/PFILE1/BISON_HAIRY/.
7505 Adjust dependencies.
7506
7507 2000-11-03 Akim Demaille <akim@epita.fr>
7508
7509 For some reason, this was not applied.
7510
7511 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
7512 `unlink': it's no longer used.
7513
7514 2000-11-03 Akim Demaille <akim@epita.fr>
7515
7516 * src/files.c (skeleton_find): New function, eved out of...
7517 (open_files, open_extra_files): here.
7518
7519 2000-11-03 Akim Demaille <akim@epita.fr>
7520
7521 Don't use `atexit'.
7522
7523 * src/files.c (obstack_save): New function.
7524 (done): Rename as...
7525 (output_files): this.
7526 Use `obstack_save'.
7527 * src/main.c (main): Don't use `atexit' to register `done', since
7528 it no longer has to remove tmp files, just call `output_files'
7529 when there are no errors.
7530
7531 2000-11-02 Akim Demaille <akim@epita.fr>
7532
7533 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
7534 `unlink': it's no longer used.
7535 * src/files.h: Formatting changes.
7536
7537 2000-11-02 Akim Demaille <akim@epita.fr>
7538
7539 Remove the last uses of mktemp and unlink/delete.
7540
7541 * src/files.c (fdefines, ftable): Removed.
7542 (defines_ostack, table_obstack): New.
7543 Adjust dependencies of the former into uses of the latter.
7544 * src/output.c (output_short_or_char_table, output_short_table):
7545 Convert to using obstacks.
7546 * src/reader.c (copy_comment2): Accept one FILE * and two
7547 obstacks.
7548 (output_token_defines, reader_output_yylsp): Use obstacks.
7549 * src/system.h (obstack_fgrow3): New.
7550
7551 2000-11-01 Akim Demaille <akim@epita.fr>
7552
7553 Change each use of `fattrs' into a use of `attrs_obstack'.
7554
7555 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
7556 * src/files.c (fattrs): Remove.
7557 (attrs_obstack): New.
7558 Adjust all dependencies.
7559 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
7560
7561 2000-11-01 Akim Demaille <akim@epita.fr>
7562
7563 Introduce obstacks.
7564 Change each use of `faction' into a use of `action_obstack'.
7565
7566 * lib/obstack.h, lib/obstack.c: New files.
7567 * src/files.c (faction): Remove.
7568 (action_obstack): New.
7569 Adjust all dependencies.
7570
7571 2000-10-20 Akim Demaille <akim@epita.fr>
7572
7573 * lib/quote.h (PARAMS): New macro. Use it.
7574
7575 2000-10-16 Akim Demaille <akim@epita.fr>
7576
7577 * src/output.c (output_short_or_char_table): New function.
7578 (output_short_table, output_token_translations): Use it.
7579 (goto_actions): Use output_short_table.
7580
7581 2000-10-16 Akim Demaille <akim@epita.fr>
7582
7583 * src/symtab.c (bucket_new): New function.
7584 (getsym): Use it.
7585
7586 * src/output.c (output_short_table): New argument to display the
7587 comment associated with the table.
7588 Adjust dependencies.
7589 (output_gram): Use it.
7590 (output_rule_data): Nicer output layout for YYTNAME.
7591
7592 2000-10-16 Akim Demaille <akim@epita.fr>
7593
7594 * src/lex.c (read_typename): New function.
7595 (lex): Use it.
7596 * src/reader.c (copy_dollar): Likewise.
7597
7598 2000-10-16 Akim Demaille <akim@epita.fr>
7599
7600 * src/reader.c (copy_comment2): Expect the input stream to be on
7601 the `/' which is suspected to open a comment, instead of being
7602 called after `//' or `/*' was read.
7603 (copy_comment, copy_definition, parse_union_decl, copy_action)
7604 (copy_guard): Adjust.
7605
7606 2000-10-16 Akim Demaille <akim@epita.fr>
7607
7608 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
7609 `read_signed_integer'.
7610
7611 2000-10-16 Akim Demaille <akim@epita.fr>
7612
7613 * src/reader.c (copy_dollar): New function.
7614 (copy_guard, copy_action): Use it.
7615
7616 2000-10-16 Akim Demaille <akim@epita.fr>
7617
7618 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
7619 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
7620 New files, from Fileutils 4.0.27.
7621 * src/main.c (printable_version): Remove.
7622 * src/lex.c, src/reader.c: Use `quote'.
7623
7624 2000-10-04 Akim Demaille <akim@epita.fr>
7625
7626 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
7627
7628 2000-10-04 Akim Demaille <akim@epita.fr>
7629
7630 * doc/bison.texinfo: Various typos spotted by Neil Booth.
7631
7632 2000-10-04 Akim Demaille <akim@epita.fr>
7633
7634 When a literal string is used to define two different tokens,
7635 `bison -v' segfaults.
7636 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
7637
7638 * tests/regression.m4: New file.
7639 Include the core of the sample provided by Piotr Gackiewicz.
7640 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
7641 properly.
7642
7643 2000-10-04 Akim Demaille <akim@epita.fr>
7644
7645 * src/reader.c (parse_expect_decl): Keep `count' within the size
7646 of `buffer'.
7647 From Neil Booth.
7648
7649 2000-10-02 Paul Eggert <eggert@twinsun.com>
7650
7651 * bison.s1 (yyparse): Assign the default value
7652 unconditionally, to avoid a GCC warning and make the parser a
7653 tad smaller.
7654
7655 2000-10-02 Akim Demaille <akim@epita.fr>
7656
7657 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
7658 options.
7659
7660 2000-10-02 Akim Demaille <akim@epita.fr>
7661
7662 * src/derives.c, src/print.c, src/reduce.c: To ease the
7663 translation, move some `\n' out of the translated strings.
7664
7665 2000-10-02 Akim Demaille <akim@epita.fr>
7666
7667 The location tracking mechanism is precious for parse error
7668 messages. Nevertheless, it is enabled only when `@n' is used in
7669 the grammar, which is a different issue (you can use it in error
7670 message, but not in the grammar per se). Therefore, there should
7671 be another means to enable it.
7672
7673 * src/getargs.c (getargs): Support `--locations'.
7674 (usage): Report it.
7675 * src/getargs.h (locationsflag): Export it.
7676 * src/lex.c (percent_table): Support `%locations'.
7677 * src/reader.c (yylsp_needed): Remove this variable, now replaced
7678 with `locationsflag'.
7679 * doc/bison.texinfo: Document `--locations' and `%locations'.
7680 Sort the options.
7681 * tests/calc.m4: Test it.
7682
7683 For regularity of the names, replace each
7684 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
7685 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
7686 In addition replace each `flag' with `_flag'.
7687
7688 2000-10-02 Akim Demaille <akim@epita.fr>
7689
7690 Also test parse error messages, including with YYERROR_VERBOSE.
7691
7692 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
7693 associative).
7694 Use it to check the computations.
7695 Use it to check `nonassoc' is honored.
7696 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
7697 `--yyerror-verbose'.
7698 (_AT_CHECK_CALC): Adjust to this option.
7699 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
7700
7701 2000-10-02 Akim Demaille <akim@epita.fr>
7702
7703 Test also `--verbose', `--defines' and `--name-prefix'. Testing
7704 the latter demonstrates a flaw in the handling of non debugging
7705 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
7706 was used in order to simplify:
7707
7708 #if YYDEBUG
7709 if (yydebug)
7710 {
7711 ...
7712 }
7713 #endif
7714
7715 into
7716
7717 if (yydebug)
7718 {
7719 ...
7720 }
7721
7722 unfortunately this leads to a CPP conflict when
7723 `--name-prefix=foo' is used since it produces `#define yydebug
7724 foodebug'.
7725
7726 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
7727 (YYDPRINTF): New macro.
7728 Spread its use.
7729 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
7730 the bison options.
7731 Also test `--verbose', `--defines' and `--name-prefix'.
7732
7733 2000-10-02 Akim Demaille <akim@epita.fr>
7734
7735 Improve the readability of the produced parsers.
7736
7737 * src/bison.s1: Formatting changes.
7738 Improve the comment related to the `$' mark.
7739 (yydefault): Don't fall through to `yyresume': `goto' there.
7740 * src/output.c (output_parser): When the `$' is met, skip the end
7741 of its line.
7742 New variable, `number_of_dollar_signs', to check there's exactly
7743 one `$' in the parser skeleton.
7744
7745 2000-10-02 Akim Demaille <akim@epita.fr>
7746
7747 * lib/xstrdup.c: New file, from the fileutils.
7748 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
7749 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
7750 instead of strlen + xmalloc + strcpy.
7751 * src/symtab.c (copys): Remove, use xstrdup instead.
7752
7753 2000-10-02 Akim Demaille <akim@epita.fr>
7754
7755 * src/gram.h (associativity): New enum type which replaces the
7756 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
7757 `right_assoc', `left_assoc' and `non_assoc'.
7758 Adjust all dependencies.
7759 * src/reader.c: Formatting changes.
7760 (LTYPESTR): Don't define it, use it as a literal in
7761 `reader_output_yylsp'.
7762 * src/symtab.h (symbol_class): New enum type which replaces the
7763 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
7764 `sunknown', `stoken and `snterm'.
7765
7766 2000-10-02 Akim Demaille <akim@epita.fr>
7767
7768 * src/getargs.c (fixed_outfiles): Rename as...
7769 (yaccflag): for consistency and accuracy.
7770 Adjust dependencies.
7771
7772 2000-10-02 Akim Demaille <akim@epita.fr>
7773
7774 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
7775 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
7776 difficult and introduced a lot of core dump. It turns out that
7777 Bison used an implementation of `xmalloc' based on `calloc', and
7778 at various places it does depend upon the initialization to 0. I
7779 have not tried to isolate the pertinent places, and all the former
7780 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
7781 someone should address this issue.
7782
7783 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
7784 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
7785 files.
7786 Adjust dependencies.
7787 * src/warshall.h: New file.
7788 Propagate.
7789
7790 2000-10-02 Akim Demaille <akim@epita.fr>
7791
7792 Various anti-`extern in *.c' changes.
7793
7794 * src/system.h: Include `assert.h'.
7795
7796 2000-10-02 Akim Demaille <akim@epita.fr>
7797
7798 * src/state.h (nstates, final_state, first_state, first_shift)
7799 (first_reduction): Move their exportation from here...
7800 * src/LR0.h: to here.
7801 Adjust dependencies.
7802 * src/getargs.c (statisticsflag): New variable.
7803 Add support for `--statistics'.
7804 Adjust dependencies.
7805
7806 Remove a lot of now useless `extern' statements in most files.
7807
7808 2000-10-02 Akim Demaille <akim@epita.fr>
7809
7810 * src/LR0.h: New file.
7811 Propagate its use.
7812
7813 2000-10-02 Akim Demaille <akim@epita.fr>
7814
7815 * src/print.h: New file.
7816 Propagate its use.
7817 * src/print.c: Formatting and ordering changes.
7818 (verbose, terse): Replace with...
7819 (print_results): this new function.
7820 Adjust dependencies.
7821
7822 2000-10-02 Akim Demaille <akim@epita.fr>
7823
7824 * src/conflicts.c (conflict_report): New function.
7825 (conflict_log, verbose_conflict_log): Replace with...
7826 (print_conflicts): this function.
7827 Adjust dependencies.
7828 * src/conflicts.h: New file.
7829 Propagate its inclusion.
7830
7831 2000-10-02 Akim Demaille <akim@epita.fr>
7832
7833 * src/nullable.h: New file.
7834 Propagate its inclusion.
7835 * src/nullable.c: Formatting changes.
7836
7837 2000-10-02 Akim Demaille <akim@epita.fr>
7838
7839 * src/reduce.h: New file.
7840 Propagate its inclusion.
7841 * src/reduce.c: Topological sort and other formatting changes.
7842 (bool, TRUE, FALSE): Move their definition to...
7843 * src/system.h: here.
7844
7845 2000-10-02 Akim Demaille <akim@epita.fr>
7846
7847 * src/files.c: Formatting changes.
7848 (tryopen, tryclose, openfiles): Rename as...
7849 (xfopen, xfclose, open_files): this.
7850 (stringappend): static.
7851 * src/files.h: Complete the list of exported symbols.
7852 Propagate its use.
7853
7854 2000-10-02 Akim Demaille <akim@epita.fr>
7855
7856 * src/reader.h: New file.
7857 Propagate its use instead of tedious list of `extern' and
7858 prototypes.
7859 * src/reader.c: Formatting changes, topological sort,
7860 s/register//.
7861
7862 2000-10-02 Akim Demaille <akim@epita.fr>
7863
7864 * src/lex.h: Prototype `lex.c' exported functions.
7865 * src/reader.c: Adjust.
7866 * src/lex.c: Formatting changes.
7867 (safegetc): Rename as...
7868 (xgetc): this.
7869
7870 2000-10-02 Akim Demaille <akim@epita.fr>
7871
7872 * src/lalr.h: New file.
7873 Propagate its inclusion instead of prototypes and `extern'.
7874 * src/lalr.c: Formatting changes, topological sorting etc.
7875
7876 2000-10-02 Akim Demaille <akim@epita.fr>
7877
7878 * src/output.c (token_actions): Introduce a temporary array,
7879 YYDEFACT, that makes it possible for this function to use
7880 output_short_table.
7881
7882 2000-10-02 Akim Demaille <akim@epita.fr>
7883
7884 `user_toknums' is output as a `short[]' in `output.c', while it is
7885 defined as a `int[]' in `reader.c'. For consistency with the
7886 other output tables, `user_toknums' is now defined as a table of
7887 shorts.
7888
7889 * src/reader.c (user_toknums): Be a short table instead of an int
7890 table.
7891 Adjust dependencies.
7892
7893 Factor the short table outputs.
7894
7895 * src/output.c (output_short_table): New function.
7896 * src/output.c (output_gram, output_stos, output_rule_data)
7897 (output_base, output_table, output_check): Use it.
7898
7899 2000-10-02 Akim Demaille <akim@epita.fr>
7900
7901 * src/output.c (output): Topological sort of the functions, in
7902 order to get rid of the `static' prototypes.
7903 No longer use `register'.
7904 * src/output.h: New file.
7905 Propagate its inclusion in files explicitly prototyping functions
7906 from output.c.
7907
7908 2000-09-21 Akim Demaille <akim@epita.fr>
7909
7910 * src/atgeneral.m4: Update from Autoconf.
7911
7912 2000-09-21 Akim Demaille <akim@epita.fr>
7913
7914 * src/closure.h: New file.
7915 * src/closure.c: Formatting changes, topological sort over the
7916 functions, use of closure.h.
7917 (initialize_closure, finalize_closure): Rename as...
7918 (new_closure, free_closure): these. Adjust dependencies.
7919 * src/LR0.c: Formatting changes, topological sort, use of
7920 cloture.h.
7921 (initialize_states): Rename as...
7922 (new_states): this.
7923 * src/Makefile.am (noinst_HEADERS): Adjust.
7924
7925 2000-09-20 Akim Demaille <akim@epita.fr>
7926
7927 * src/acconfig.h: Don't protect config.h against multiple
7928 inclusion.
7929 Don't define PARAMS.
7930 * src/system.h: Define PARAMS.
7931 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
7932 purpose of config.h. system.h must not try to fix wrong
7933 definitions in config.h.
7934
7935 2000-09-20 Akim Demaille <akim@epita.fr>
7936
7937 * src/derives.h: New file.
7938 * src/main.c, src/derives.h: Use it.
7939 Formatting changes.
7940 * src/Makefile.am (noinst_HEADERS): Adjust.
7941
7942 2000-09-20 Akim Demaille <akim@epita.fr>
7943
7944 * tests/atgeneral.m4: Update from Autoconf.
7945 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
7946 (AT_CHECK_CALC): New macros.
7947 Use these macros to test bison with options `', `--raw',
7948 `--debug', `--yacc', `--yacc --debug'.
7949
7950 2000-09-19 Akim Demaille <akim@epita.fr>
7951
7952 * src/output.c: Formatting changes.
7953 * src/machine.h: Remove, leaving its contents in...
7954 * src/system.h: here.
7955 Include stdio.h.
7956 Adjust all dependencies on stdio.h and machine.h.
7957 * src/getargs.h: New file.
7958 Let all `extern' declarations about getargs.c be replaced with
7959 inclusion of `getargs.h'.
7960 * src/Makefile.am (noinst_HEADERS): Adjust.
7961
7962 * tests/calc.m4 (yyin): Be initialized in main, not on the global
7963 scope.
7964 (yyerror): Returns void, not int.
7965 * doc/bison.texinfo: Formatting changes.
7966
7967 2000-09-19 Akim Demaille <akim@epita.fr>
7968
7969 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
7970 portable.
7971
7972 2000-09-18 Akim Demaille <akim@epita.fr>
7973
7974 * configure.in: Append WARNING_CFLAGS to CFLAGS.
7975 * src/Makefile.am (INCLUDES): Don't.
7976 Be ready to fetch headers in lib/.
7977
7978 2000-09-18 Akim Demaille <akim@epita.fr>
7979
7980 * doc/bison.texinfo: Update the copyright.
7981 ANSIfy and GNUify the examples.
7982 Remove the old menu.
7983
7984 2000-09-18 Akim Demaille <akim@epita.fr>
7985
7986 First set of tests: use the `calc' example from the documentation.
7987
7988 * src/bison.s1 (yyparse): Condition the code using `yytname' which
7989 is defined only when YYDEBUG is.
7990 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
7991 * src/files.c (tryopen, tryclose): Formatting changes.
7992 Move to the top and be static.
7993 * src/reader.c (read_signed_integer): Likewise.
7994 * tests/calc.m4: New file.
7995 * Makefile.am, suite.m4: Adjust.
7996 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
7997
7998 2000-09-18 Akim Demaille <akim@epita.fr>
7999
8000 Add support for an Autotest test suite for Bison.
8001
8002 * m4/m4.m4, m4/atconfig.m4: New files.
8003 * m4/Makefile.am (EXTRA_DIST): Adjust.
8004 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
8005 files.
8006 * src/getargs.c: Display a more standard --version message.
8007 * src/reader.c (reader): Formatting changes.
8008 No longer depend upon VERSION_STRING.
8009 * configure.in: No longer use `dnl'.
8010 Set up the test suite and the new directory `tests/.
8011 (VERSION_STRING): Remove.
8012
8013 2000-04-14 Akim Demaille <akim@epita.fr>
8014
8015 * src/reader.c (copy_comment2): New function, same as former
8016 `copy_comment', but outputs into two FILE *.
8017 (copy_comment): Use it.
8018 (parse_union_decl): Use it.
8019 (get_type, parse_start_decl): Use the same `invalid' message.
8020 (parse_start_decl, parse_union_decl): Use the same `multiple'
8021 message.
8022 (parse_union_decl, copy_guard, copy_action): Use the same
8023 `unmatched' message.
8024 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
8025
8026 2000-03-31 Akim Demaille <akim@epita.fr>
8027
8028 * src/files.c (tryopen, tryclose): Move to the top.
8029 Be static.
8030
8031 2000-03-31 Akim Demaille <akim@epita.fr>
8032
8033 * src/main.c (main): Don't call `done', exit does it.
8034
8035 2000-03-31 Akim Demaille <akim@epita.fr>
8036
8037 * allocate.c: s/return (foo)/return foo/.
8038 * lalr.c: Likewise.
8039 * LR0.c: Likewise.
8040 * output.c: Likewise.
8041 * reader.c: Likewise.
8042 * symtab.c: Likewise.
8043 * vmsgetargs.c: Likewise.
8044
8045 2000-03-31 Akim Demaille <akim@epita.fr>
8046
8047 Clean up the error reporting functions.
8048
8049 * src/report.c: New file.
8050 * src/report.h: Likewise.
8051 * src/Makefile.am: Adjust.
8052 * m4/error.m4: New file.
8053 * m4/Makefile.am: Adjust.
8054 * configure.in (jm_PREREQ_ERROR): Call it.
8055 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
8056 Remove.
8057 (fatal, fatals): Remove. All callers use complain.c::fatal.
8058 (warn, warni, warns, warnss, warnss): Remove. All callers use
8059 complain.c::complain.
8060 (toomany): Remove, use fatal instead.
8061 * src/files.c (done): No argument, use complain_message_count.
8062 * src/main.c (main): Register `done' to `atexit'.
8063
8064 * src/getargs.c (usage): More `fputs', less `fprintf'.
8065
8066 2000-03-28 Akim Demaille <akim@epita.fr>
8067
8068 * lib/: New directory.
8069 * Makefile.am (SUBDIRS): Adjust.
8070 * configure.in: Adjust.
8071 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
8072 useless.
8073 * src/alloca.c: Moved to lib/.
8074 * src/getopt.c: Likewise.
8075 * src/getopt1.c: Likewise.
8076 * src/getopt.h: Likewise.
8077 * src/ansi2knr.c: Likewise.
8078 * src/ansi2knr.1: Likewise.
8079 * src/Makefile.am: Adjust.
8080 * lib/Makefile.am: New file.
8081
8082 2000-03-28 Akim Demaille <akim@epita.fr>
8083
8084 * src/getargs.c (usage): Refresh the help message.
8085
8086 2000-03-17 Akim Demaille <akim@epita.fr>
8087
8088 * src/getopt1.c: Updated from textutils 2.0e
8089 * src/getopt.c: Likewise.
8090 * src/getopt.h: Likewise.
8091
8092 2000-03-17 Akim Demaille <akim@epita.fr>
8093
8094 * src/Makefile.am (bison.simple): Fix the awk program: quote only
8095 the file name, not the whole `#line LINE FILE'.
8096
8097 2000-03-17 Akim Demaille <akim@epita.fr>
8098
8099 On syntax errors, report the token on which we choked.
8100
8101 * src/bison.s1 (yyparse): In the label yyerrlab, when
8102 YYERROR_VERBOSE, add yychar in msg.
8103
8104 2000-03-17 Akim Demaille <akim@epita.fr>
8105
8106 * src/reader.c (copy_at): New function.
8107 (copy_guard): Use it.
8108 (copy_action): Use it.
8109
8110 2000-03-17 Akim Demaille <akim@epita.fr>
8111
8112 Be kind to translators, save some useless translations.
8113
8114 * src/main.c (banner): New function.
8115 (fatal_banner): Use it.
8116 (warn_banner): Use it.
8117
8118 2000-03-17 Akim Demaille <akim@epita.fr>
8119
8120 * src/reader.c (copy_definition): Use copy_string and
8121 copy_comment. Removed now unused `match', `ended',
8122 `cplus_comment'.
8123 (copy_comment, copy_string): Moved, to be visible from
8124 copy_definition.
8125
8126 2000-03-17 Akim Demaille <akim@epita.fr>
8127
8128 * src/reader.c (copy_string): Declare `static inline'. No
8129 problems with inline, since it is checked by configure.
8130 (copy_comment): Likewise.
8131
8132 2000-03-17 Akim Demaille <akim@epita.fr>
8133
8134 * src/reader.c (packsymbols): Formatting changes.
8135
8136 2000-03-17 Akim Demaille <akim@epita.fr>
8137
8138 * src/reader.c (copy_comment): New function, factored out from:
8139 (copy_action): Use it. Removed now unused `match', `ended',
8140 `cplus_comment'.
8141 (copy_guard): Likewise.
8142
8143 2000-03-17 Akim Demaille <akim@epita.fr>
8144
8145 * src/reader.c (copy_string): New function, factored out from:
8146 (copy_action): Use it.
8147 (copy_guard): Likewise.
8148
8149 2000-03-17 Akim Demaille <akim@epita.fr>
8150
8151 Change the handling of @s so that they behave exactly like $s.
8152 There is now a pseudo variable @$ (readble and writable), location
8153 of the lhs of the rule (by default ranging from the location of
8154 the first symbol of the rhs, to the location of the last symbol,
8155 or, if the rhs is empty, YYLLOC).
8156
8157 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
8158 yyval.
8159 (yyparse): When providing a default semantic action, provide a
8160 default location action.
8161 (after the $): No longer change `*YYLSP', just stack YYLOC the
8162 same way you stack YYVAL.
8163 * src/reader.c (read_declarations): Use warns.
8164 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
8165 (copy_action, case '@'): Likewise.
8166 Use a standard error message, to save useless work from
8167 translators.
8168
8169 2000-03-17 Akim Demaille <akim@epita.fr>
8170
8171 * src/bison.s1: Formatting and cosmetics changes.
8172 * src/reader.c: Likewise.
8173 Update the Copyright notice.
8174
8175 2000-03-17 Akim Demaille <akim@epita.fr>
8176
8177 * src/bison.s1 (#line): All set to `#line' only, since the
8178 Makefile now handles them.
8179
8180 2000-03-16 Akim Demaille <akim@epita.fr>
8181
8182 * src/output.c (output_rule_data): Output the documentation of
8183 some of the tables.
8184 (Copyright notice): Update.
8185 Formatting changes.
8186
8187 2000-03-16 Akim Demaille <akim@epita.fr>
8188
8189 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
8190 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
8191 One `#if YYDEBUG' remains, since it uses variables which are
8192 defined only if `YYDEBUG != 0'.
8193
8194 2000-03-16 Akim Demaille <akim@epita.fr>
8195
8196 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
8197 and related variables so that the similarities are highlighted.
8198
8199 2000-03-16 Akim Demaille <akim@epita.fr>
8200
8201 * src/bison.s1: Properly indent CPP directives.
8202
8203 2000-03-16 Akim Demaille <akim@epita.fr>
8204
8205 * src/bison.s1: Properly indent the `alloca' CPP section.
8206
8207 2000-03-16 Akim Demaille <akim@epita.fr>
8208
8209 Do not hard code values of directories in `configure.in'.
8210 Update the `configure' tool chain.
8211
8212 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
8213 src/makefile.am.
8214 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
8215 (AC_OUTPUT): Add m4/Makefile.
8216 Bump to bison 1.28a, 1.29 has never been released.
8217 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
8218 handled via src/Makefile.am.
8219 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
8220 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
8221 autoheader.
8222 * Makefile.am (SUBDIRS): Add m4.
8223 (ACLOCAL_AM_FLAGS): New variable.
8224 (AUTOMAKE_OPTIONS): Add check-news.
8225 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
8226 the proper line number and file name.
8227 (DEFS): Propagate the location of bison library files and of the
8228 locale files.
8229 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
8230 builddir.
8231 * acinclude.m4: Remove, replaced by the directory m4.
8232 * m4/Makefile.am (EXTRA_DIST): New variable.
8233 * m4/gettext.m4: New file, from the fileutils.
8234 * m4/lcmessage.m4: Likewise
8235 * m4/progtest.m4: Likewise.
8236 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
8237
8238 2000-03-10 Akim Demaille <akim@epita.fr>
8239
8240 * src/closure.c:
8241 Formatting changes of various comments.
8242 Respect the GNU coding standards at various places.
8243 Don't use `_()' when no translation is needed.
8244
8245 1999-12-13 Jesse Thilo <jthilo@gnu.org>
8246
8247 * src/files.c:
8248 OS/2 honors TMPDIR environment variable.
8249
8250 1999-12-13 Jesse Thilo <jthilo@gnu.org>
8251
8252 * doc/bison.texinfo: Tweaked spelling and grammar.
8253 Updated ISBN.
8254 Removed reference to price of printed copy.
8255 Mention BISON_SIMPLE and BISON_HAIRY.
8256
8257 1999-12-13 Jesse Thilo <jthilo@gnu.org>
8258
8259 * configure.in, NEWS:
8260 Bison 1.29 released.
8261
8262 1999-10-27 Jesse Thilo <jthilo@gnu.org>
8263
8264 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
8265 Added reference card.
8266
8267 1999-07-26 Jesse Thilo <jthilo@gnu.org>
8268
8269 * po/ru.po: Added Russian translation.
8270
8271 1999-07-26 Jesse Thilo <jthilo@gnu.org>
8272
8273 * configure.in: Added Russian translation.
8274
8275 1999-07-06 Jesse Thilo <jthilo@gnu.org>
8276
8277 * configure.in, NEWS, README:
8278 Released version 1.28.
8279
8280 1999-06-14 Jesse Thilo <jthilo@gnu.org>
8281
8282 * src/system.h:
8283 Squashed redefinition warning on some systems.
8284
8285 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
8286 Have configure build version string instead of relying on ANSI string
8287 concatentation.
8288
8289 1999-06-14 Jesse Thilo <jthilo@gnu.org>
8290
8291 * po/POTFILES.in: Got rid of version.c.
8292
8293 1999-06-14 Jesse Thilo <jthilo@gnu.org>
8294
8295 * acconfig.h, configure.in:
8296 Have configure build version string instead of relying on ANSI string
8297 concatentation.
8298
8299 1999-06-08 Jesse Thilo <jthilo@gnu.org>
8300
8301 * doc/bison.1:
8302 Dropped mention of `+' for long-named options.
8303
8304 1999-05-30 Jesse Thilo <jthilo@gnu.org>
8305
8306 * src/files.c: Added <unistd.h> for unlink().
8307
8308 * src/Makefile.am, src/system.h:
8309 I18n fixes.
8310
8311 1999-05-30 Jesse Thilo <jthilo@gnu.org>
8312
8313 * README: Added a FAQ list.
8314
8315 * configure.in, acconfig.h:
8316 I18n fixes.
8317
8318 1999-05-30 Jesse Thilo <jthilo@gnu.org>
8319
8320 * doc/FAQ, doc/Makefile.am:
8321 Added a FAQ list.
8322
8323 1999-05-19 Jesse Thilo <jthilo@gnu.org>
8324
8325 * src/alloc.h, src/symtab.h, src/version.c:
8326 Protected inclusion of "config.h" with HAVE_CONFIG_H.
8327
8328 1999-04-18 Jesse Thilo <jthilo@gnu.org>
8329
8330 * src/.cvsignore, src/Makefile.am:
8331 Reorganized: sources in `src', documentation in `doc'.
8332
8333 * src/lex.c (literalchar):
8334 fixed the code for escaping double quotes (thanks
8335 Jonathan Czisny.)
8336
8337 1999-04-18 Jesse Thilo <jthilo@gnu.org>
8338
8339 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
8340 Adjusted paths to reflect directory reorganization.
8341
8342 1999-04-18 Jesse Thilo <jthilo@gnu.org>
8343
8344 * doc/.cvsignore, doc/Makefile.am:
8345 Reorganized: sources in `src', documentation in `doc'.
8346
8347 1999-04-18 Jesse Thilo <jthilo@gnu.org>
8348
8349 * configure.in:
8350 Updated AC_INIT file to reflect directory reorganization.
8351
8352 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
8353 Reorganized: sources in `src', documentation in `doc'.
8354
8355 1999-04-13 Jesse Thilo <jthilo@gnu.org>
8356
8357 * src/allocate.c:
8358 Don't declare calloc() and realloc() if not necessary.
8359
8360 1999-04-13 Jesse Thilo <jthilo@gnu.org>
8361
8362 * configure.in, acconfig.h, acinclude.m4:
8363 Don't declare calloc() and realloc() if not necessary.
8364
8365 1999-03-23 Jesse Thilo <jthilo@gnu.org>
8366
8367 * po/.cvsignore: Added i18n support.
8368
8369 1999-03-23 Jesse Thilo <jthilo@gnu.org>
8370
8371 * acconfig.h, configure.in, Makefile.am:
8372 Added i18n support.
8373
8374 1999-03-22 Jesse Thilo <jthilo@gnu.org>
8375
8376 * src/bison.s1: Fixed #line numbers.
8377
8378 1999-03-15 Jesse Thilo <jthilo@gnu.org>
8379
8380 * po/es.po, po/fr.po, po/nl.po, po/de.po:
8381 Added PO files from Translation Project.
8382
8383 1999-03-03 Jesse Thilo <jthilo@gnu.org>
8384
8385 * Makefile.am:
8386 Added support for non-ANSI compilers (ansi2knr).
8387
8388 1999-02-16 Jesse Thilo <jthilo@gnu.org>
8389
8390 * configure.in: Bumped version number to 1.27.
8391
8392 * Makefile.am:
8393 Added `bison.simple' to list of files removed by `make distclean'.
8394
8395 1999-02-12 Jesse Thilo <jthilo@gnu.org>
8396
8397 * src/files.c, src/files.h:
8398 Defined locations of parser files in config.h instead of Makefile.
8399
8400 1999-02-12 Jesse Thilo <jthilo@gnu.org>
8401
8402 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
8403 Defined locations of parser files in config.h instead of Makefile.
8404
8405 1999-02-09 Jesse Thilo <jthilo@gnu.org>
8406
8407 * Makefile.am:
8408 Removed inappropriate use of $< macro.
8409
8410 1999-02-05 Jesse Thilo <jthilo@gnu.org>
8411
8412 * po/Makefile.in.in, po/POTFILES.in:
8413 Add `po' directory skeleton.
8414
8415 1999-01-27 Jesse Thilo <jthilo@gnu.org>
8416
8417 * README: Document help-bison list.
8418
8419 * configure.in: Add check for mkstemp().
8420
8421 1999-01-20 Jesse Thilo <jthilo@gnu.org>
8422
8423 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
8424 Hush a few compiler warnings.
8425
8426 * src/files.c:
8427 Add tryclose(), which verifies that fclose was successful.
8428 Hush a couple of compiler warnings.
8429
8430 1999-01-20 Jesse Thilo <jthilo@gnu.org>
8431
8432 * Makefile.am, OChangeLog:
8433 ChangeLog is now automatically generated. Include the old version as
8434 OChangeLog.
8435
8436 1999-01-14 Jesse Thilo <jthilo@gnu.org>
8437
8438 * 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:
8439 Update FSF address.
8440
8441 1999-01-14 Jesse Thilo <jthilo@gnu.org>
8442
8443 * doc/bison.texinfo: Fix formatting glitch.
8444
8445 * doc/bison.texinfo: Update FSF address.
8446
8447 1999-01-14 Jesse Thilo <jthilo@gnu.org>
8448
8449 * acconfig.h: Update FSF address.
8450
8451 1999-01-08 Jesse Thilo <jthilo@gnu.org>
8452
8453 * src/system.h:
8454 Don't define PACKAGE here, since config.h defines it.
8455
8456 1998-12-30 Jesse Thilo <jthilo@gnu.org>
8457
8458 * src/reader.c: Update copyright date.
8459
8460 * src/main.c:
8461 Ditch sprintf to statically-sized buffers in fatal/warn functions in
8462 favor of output directly to stderr (avoids buffer overruns).
8463
8464 * src/reader.c: Some checks for premature EOF.
8465
8466 * 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:
8467 Use prototypes if the compiler understands them.
8468
8469 * src/files.c: Honor TMPDIR on Unix hosts.
8470 Use prototypes if the compiler understands them.
8471
8472 * src/reader.c:
8473 Fix a couple of buffer overrun bugs.
8474 Use prototypes if the compiler understands them.
8475
8476 * src/system.h: Include unistd.h and ctype.h.
8477 Use #ifdef instead of #if for NLS symbols.
8478
8479 1998-12-30 Jesse Thilo <jthilo@gnu.org>
8480
8481 * doc/bison.texinfo:
8482 Delete comment "consider using @set for edition number, etc..." since
8483 we now are doing so.
8484
8485 1998-12-30 Jesse Thilo <jthilo@gnu.org>
8486
8487 * configure.in:
8488 Use prototypes if the compiler understands them.
8489
8490 * NEWS: Document 1.26 highlights.
8491
8492 * Makefile.am: Require Automake 1.3 or later.
8493
8494 * acconfig.h:
8495 Use prototypes if the compiler understands them.
8496
8497 1998-12-29 Jesse Thilo <jthilo@gnu.org>
8498
8499 * src/version.c:
8500 Use VERSION symbol from automake for version number.
8501
8502 1998-12-29 Jesse Thilo <jthilo@gnu.org>
8503
8504 * acconfig.h, configure.in, version.cin:
8505 Use VERSION symbol from automake for version number.
8506
8507 1998-11-28 Jesse Thilo <jthilo@gnu.org>
8508
8509 * Makefile.am:
8510 Distribute original version of simple parser (bison.s1), not built
8511 version (bison.simple).
8512
8513 1998-11-28 Jesse Thilo <jthilo@gnu.org>
8514
8515 * doc/bison.texinfo: Add info dir entry.
8516
8517 * doc/bison.texinfo:
8518 Let automake put version number into documentation.
8519
8520 1998-11-26 Jesse Thilo <jthilo@gnu.org>
8521
8522 * src/bison.cld, src/build.com, src/vmshlp.mar:
8523 Add non-RCS files from /gd/gnu/bison.
8524
8525 1998-11-26 Jesse Thilo <jthilo@gnu.org>
8526
8527 * doc/bison.1:
8528 Document the BISON_HAIRY and BISON_SIMPLE variables.
8529
8530 1998-11-25 Jesse Thilo <jthilo@gnu.org>
8531
8532 * src/version.c: Build version.c automatically.
8533
8534 * src/reader.c:
8535 Fix token numbering (used to start at 258, not 257).
8536
8537 * src/system.h: Include config.h.
8538
8539 * src/getargs.c: Update bug report address.
8540
8541 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
8542 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
8543
8544 1998-11-25 Jesse Thilo <jthilo@gnu.org>
8545
8546 * Makefile.am:
8547 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
8548
8549 * configure.in, version.cin:
8550 Build version.c automatically.
8551
8552 * AUTHORS: Add AUTHORS file.
8553
8554 * README: Update bug report address.
8555
8556 * bison.simple:
8557 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
8558
8559 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
8560 Add automake stuff.
8561
8562 1998-11-25 Jesse Thilo <jthilo@gnu.org>
8563
8564 * doc/bison.texinfo: Clean up some formatting.
8565
8566 1998-05-05 Richard Stallman <rms@gnu.org>
8567
8568 * doc/bison.texinfo:
8569 Explain better why to make a pure parser.
8570
8571 1998-01-05 Richard Stallman <rms@gnu.org>
8572
8573 * src/files.c (openfiles):
8574 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
8575 find a temporary directory, if possible. Do not unlink files while
8576 they are open.
8577
8578 1997-08-25 Richard Stallman <rms@gnu.org>
8579
8580 * src/reader.c (stack_offset;):
8581 Change some warni to warns.
8582
8583 * src/lex.c (literalchar): Use warns, not warni.
8584
8585 1997-06-28 Richard Stallman <rms@gnu.org>
8586
8587 * src/bison.s1: Add a Bison version comment.
8588
8589 * src/main.c (fatal, warn, berror):
8590 Use program_name.
8591
8592 1997-06-28 Richard Stallman <rms@gnu.org>
8593
8594 * Makefile.in (bison_version): New variable.
8595 (dist): Use that variable.
8596 (bison.s1): Substitute the Bison version into bison.simple.
8597
8598 * bison.simple: Add a Bison version comment.
8599
8600 1997-06-18 Richard Stallman <rms@gnu.org>
8601
8602 * src/main.c (fatal, warn, berror):
8603 Make error messages standard.
8604 (toomany): Improve error message text.
8605
8606 * 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:
8607 new.h renamed to alloc.h.
8608
8609 1997-06-18 Richard Stallman <rms@gnu.org>
8610
8611 * Makefile.in: new.h renamed to alloc.h.
8612
8613 1997-05-24 Richard Stallman <rms@gnu.org>
8614
8615 * src/lex.c (literalchar):
8616 Fix the code for escaping \, " and '.
8617
8618 (lex): Avoid trouble when there are many chars
8619 to discard in a char literal with just several chars in it.
8620
8621 1997-05-17 Richard Stallman <rms@gnu.org>
8622
8623 * src/bison.s1:
8624 Use malloc, if using alloca is troublesome.
8625 (YYSTACK_USE_ALLOCA): New flag macro.
8626 Define it for some systems and compilers.
8627 (YYSTACK_ALLOC): New macro.
8628 (yyparse): Use YYSTACK_ALLOC to allocate stack.
8629 If it was malloc'd, free it.
8630
8631 1997-05-17 Richard Stallman <rms@gnu.org>
8632
8633 * bison.simple:
8634 Use malloc, if using alloca is troublesome.
8635 (YYSTACK_USE_ALLOCA): New flag macro.
8636 Define it for some systems and compilers.
8637 (YYSTACK_ALLOC): New macro.
8638 (yyparse): Use YYSTACK_ALLOC to allocate stack.
8639 If it was malloc'd, free it.
8640
8641 1997-04-23 Richard Stallman <rms@gnu.org>
8642
8643 * src/bison.s1:
8644 (alloca) [__hpux]: Always define as __builtin_alloca.
8645
8646 1997-04-23 Richard Stallman <rms@gnu.org>
8647
8648 * bison.simple:
8649 (alloca) [__hpux]: Always define as __builtin_alloca.
8650
8651 1997-04-22 Richard Stallman <rms@gnu.org>
8652
8653 * src/bison.s1:
8654 [__hpux]: Include alloca.h (right for HPUX 10)
8655 instead of declaring alloca (right for HPUX 9).
8656
8657 * src/bison.s1 (__yy_memcpy):
8658 Declare arg `count' as unsigned int.
8659 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
8660
8661 1997-04-22 Richard Stallman <rms@gnu.org>
8662
8663 * bison.simple:
8664 [__hpux]: Include alloca.h (right for HPUX 10)
8665 instead of declaring alloca (right for HPUX 9).
8666
8667 * bison.simple (__yy_memcpy):
8668 Declare arg `count' as unsigned int.
8669 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
8670
8671 1997-01-03 Richard Stallman <rms@gnu.org>
8672
8673 * src/allocate.c: [__STDC__ or _MSC_VER]:
8674 Declare calloc and realloc to return void *.
8675
8676 1997-01-02 Richard Stallman <rms@gnu.org>
8677
8678 * src/system.h:
8679 [_MSC_VER]: Include stdlib.h and process.h.
8680 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
8681
8682 * src/main.c (main): Return FAILURE as a value.
8683 (printable_version): Declare arg as int, not char.
8684
8685 1997-01-02 Richard Stallman <rms@gnu.org>
8686
8687 * Makefile.in (dist):
8688 Explicitly check for symlinks, and copy them.
8689
8690 1996-12-19 Richard Stallman <rms@gnu.org>
8691
8692 * src/files.c:
8693 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
8694
8695 1996-12-18 Paul Eggert <eggert@gnu.org>
8696
8697 * src/bison.s1 (yyparse):
8698 If __GNUC__ and YYPARSE_PARAM are both defined,
8699 declare yyparse to have a void * argument.
8700
8701 1996-12-18 Paul Eggert <eggert@gnu.org>
8702
8703 * bison.simple (yyparse):
8704 If __GNUC__ and YYPARSE_PARAM are both defined,
8705 declare yyparse to have a void * argument.
8706
8707 1996-12-17 Richard Stallman <rms@gnu.org>
8708
8709 * src/reduce.c (nbits): Add some casts.
8710
8711 1996-08-12 Richard Stallman <rms@gnu.org>
8712
8713 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
8714
8715 1996-08-12 Richard Stallman <rms@gnu.org>
8716
8717 * bison.simple: Test _MSDOS as well as _MSDOS_.
8718
8719 1996-07-31 Richard Stallman <rms@gnu.org>
8720
8721 * src/bison.s1:
8722 [__sun && __i386]: Include alloca.h.
8723
8724 1996-07-31 Richard Stallman <rms@gnu.org>
8725
8726 * bison.simple:
8727 [__sun && __i386]: Include alloca.h.
8728
8729 1996-07-30 Richard Stallman <rms@gnu.org>
8730
8731 * src/bison.s1: Comment change.
8732
8733 * src/bison.s1: Test _MSDOS_, not MSDOS.
8734
8735 1996-07-30 Richard Stallman <rms@gnu.org>
8736
8737 * bison.simple: Comment change.
8738
8739 * bison.simple: Test _MSDOS_, not MSDOS.
8740
8741 1996-06-01 Richard Stallman <rms@gnu.org>
8742
8743 * 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:
8744 Insert `_' macro around many string constants.
8745
8746 * src/main.c:
8747 Insert `_' macro around many string constants.
8748
8749 (main): Call setlocale, bindtextdomain and textdomain.
8750
8751 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
8752 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
8753 [ENABLE_NLS]: Include libintl.h.
8754 [ENABLE_NLS] (gettext): Define.
8755 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
8756 (N_, PACKAGE, LOCALEDIR): New macros.
8757
8758 1996-06-01 Richard Stallman <rms@gnu.org>
8759
8760 * POTFILES.in: New file.
8761
8762 * Makefile.in (allocate.o):
8763 Define target explicitly.
8764
8765 * Makefile.in (CFLAGS): Set to @CFLAGS@.
8766 (LDFLAGS): Set to @LDFLAGS@.
8767 (configure): Run autoconf only if preceding `cd' succeeds.
8768 (bison.s1): Redirect output to temporary file then move the
8769 temporary to the target, rather than redirecting directly to bison.s1.
8770 (clean): Remove config.status and config.log.
8771 (distclean): Don't remove config.status here.
8772
8773 1996-05-12 Richard Stallman <rms@gnu.org>
8774
8775 * src/bison.s1:
8776 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
8777
8778 1996-05-12 Richard Stallman <rms@gnu.org>
8779
8780 * bison.simple:
8781 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
8782
8783 1996-05-11 Richard Stallman <rms@gnu.org>
8784
8785 * src/bison.s1 (__yy_memcpy):
8786 Really reorder the args, as was supposedly done on Feb 14 1995.
8787 (yyparse): Calls changed accordingly.
8788
8789 1996-05-11 Richard Stallman <rms@gnu.org>
8790
8791 * Makefile.in (dist): Don't use $(srcdir).
8792
8793 * bison.simple (__yy_memcpy):
8794 Really reorder the args, as was supposedly done on Feb 14 1995.
8795 (yyparse): Calls changed accordingly.
8796
8797 1996-01-27 Richard Stallman <rms@gnu.org>
8798
8799 * src/output.c (output_rule_data):
8800 Test YYERROR_VERBOSE in the conditional
8801 around the definition of ttyname.
8802
8803 1995-12-29 Richard Stallman <rms@gnu.org>
8804
8805 * src/bison.s1:
8806 Fix line numbers in #line commands.
8807
8808 1995-12-29 Richard Stallman <rms@gnu.org>
8809
8810 * bison.simple:
8811 Fix line numbers in #line commands.
8812
8813 1995-12-27 Richard Stallman <rms@gnu.org>
8814
8815 * src/bison.s1 (YYPARSE_PARAM_DECL):
8816 In C++, make it always null.
8817 (YYPARSE_PARAM_ARG): New macro.
8818 (yyparse): Use YYPARSE_PARAM_ARG.
8819
8820 1995-12-27 Richard Stallman <rms@gnu.org>
8821
8822 * bison.simple (YYPARSE_PARAM_DECL):
8823 In C++, make it always null.
8824 (YYPARSE_PARAM_ARG): New macro.
8825 (yyparse): Use YYPARSE_PARAM_ARG.
8826
8827 1995-11-29 Richard Stallman <rms@gnu.org>
8828
8829 * doc/bison.texinfo:
8830 Describe literal string tokens, %raw, %no_lines, %token_table.
8831
8832 1995-11-29 Daniel Hagerty <hag@gnu.org>
8833
8834 * doc/bison.texinfo: Fixed update date
8835
8836 1995-10-16 Richard Stallman <rms@gnu.org>
8837
8838 * src/version.c: Version 1.25.
8839
8840 1995-10-16 Richard Stallman <rms@gnu.org>
8841
8842 * NEWS: *** empty log message ***
8843
8844 1995-10-16 Richard Stallman <rms@gnu.org>
8845
8846 * doc/bison.1, doc/bison.rnh:
8847 Add new options.
8848
8849 1995-10-15 Richard Stallman <rms@gnu.org>
8850
8851 * src/vmsgetargs.c, src/getargs.c:
8852 Added -n, -k, and -raw switches.
8853 (noparserflag, toknumflag, rawtoknumflag): New variables.
8854
8855 * src/symtab.h (SALIAS):
8856 New #define for adding aliases to %token.
8857 (struct bucket): Added `alias' field.
8858
8859 * src/reduce.c (reduce_grammar):
8860 Revise error message.
8861 (print_notices): Remove final `.' from error message.
8862
8863 * src/reader.c (reader_output_yylsp):
8864 New function.
8865 (readgram): Use `#if 0' around code that accepted %command
8866 inside grammar rules: The documentation doesn't allow it,
8867 and it will fail since the %command processors scan for the next %.
8868 (parse_token_decl): Extended the %token
8869 declaration to allow a multi-character symbol as an alias.
8870 (parse_thong_decl): New function.
8871 (read_declarations): Added %thong declarations.
8872 (read_declarations): Handle NOOP to deal with allowing
8873 % declarations as another means to specify the flags.
8874 (readgram): Allow %prec prior to semantics embedded in a rule.
8875 (skip_to_char, read_declarations, copy_definition)
8876 (parse_token_decl, parse_start_decl, parse_type_decl)
8877 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
8878 (get_type_name, copy_guard, copy_action, readgram)
8879 (get_type, packsymbols): Revised most error messages.
8880 Changed `fatal' to `warnxxx' to avoid aborting for error.
8881 Revised and use multiple warnxxx functions to avoid using VARARGS1.
8882 (read_declarations): Improve the error message for
8883 an invalid character. Do not abort.
8884 (read_declarations, copy_guard, copy_action): Use
8885 printable_version to avoid unprintable characters in printed output.
8886 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
8887 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
8888 Allow the type of a non-terminal can be given
8889 more than once, as long as all specifications give the same type.
8890
8891 * src/output.c:
8892 (output_headers, output_trailers, output, output_gram)
8893 (output_rule_data): Implement noparserflag variable.
8894 Implement toknumflag variable.
8895 (output): Call reader_output_yylsp to output LTYPESTR.
8896
8897 * src/main.c (main):
8898 If reader sees an error, don't process the grammar.
8899 (fatals): Updated to not use VARARGS1.
8900 (printable_version, int_to_string, warn, warni, warns, warnss)
8901 (warnsss): New error reporting functions. Avoid abort for error.
8902
8903 * src/lex.h:
8904 Added THONG and NOOP for alias processing.
8905 Added SETOPT for the new code that allows setting options with %flags.
8906
8907 * src/lex.c:
8908 Include getopt.h. Add some extern decls.
8909 (safegetc): New function to deal with EOF gracefully.
8910 (literalchar); new function to deal with reading \ escapes.
8911 (lex): Use literalchar.
8912 (lex): Implemented "..." tokens.
8913 (literalchar, lex, parse_percent_token): Made tokenbuffer
8914 always contain the token. This includes growing the token
8915 buffer while reading an integer.
8916 (parse_percent_token): Replaced if-else statement with percent_table.
8917 (parse_percent_token): Added % declarations as another
8918 way to specify the flags -n, -l, and -r. Also added hooks for
8919 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
8920 major changes to files.c.
8921 (lex) Retain in the incoming stream a character following
8922 an incorrect '/'.
8923 (skip_white_space, lex): Revised most error messages
8924 and changed fatal to warn to avoid aborting.
8925 (percent_table): Added %thong declarations.
8926
8927 * src/gram.h: Comment changes.
8928
8929 * src/files.c (openfiles, open_extra_files, done):
8930 Add faction flag
8931 and actfile file. Handle noparserflag. Both for -n switch.
8932
8933 * src/conflicts.c (resolve_sr_conflict):
8934 Remove use of alloca.
8935
8936 1995-06-01 Jim Meyering <meyering@gnu.org>
8937
8938 * doc/bison.texinfo: *** empty log message ***
8939
8940 1995-05-06 Richard Stallman <rms@gnu.org>
8941
8942 * src/bison.s1: Comment change.
8943
8944 1995-05-06 Richard Stallman <rms@gnu.org>
8945
8946 * bison.simple: Comment change.
8947
8948 1995-05-03 Richard Stallman <rms@gnu.org>
8949
8950 * src/version.c: Version now 1.24.
8951
8952 * src/bison.s1: Change distribution terms.
8953
8954 * src/version.c: Version now 1.23.
8955
8956 1995-05-03 Richard Stallman <rms@gnu.org>
8957
8958 * doc/bison.texinfo:
8959 Rewrite "Conditions for Using Bison".
8960 Update version to 1.24.
8961
8962 1995-05-03 Richard Stallman <rms@gnu.org>
8963
8964 * bison.simple: Change distribution terms.
8965
8966 1995-02-23 Richard Stallman <rms@gnu.org>
8967
8968 * src/files.c: Test __VMS_POSIX as well as VMS.
8969
8970 1995-02-14 Jim Meyering <meyering@gnu.org>
8971
8972 * src/bison.s1 (__yy_memcpy):
8973 Renamed from __yy_bcopy to avoid
8974 confusion. Reverse FROM and TO arguments to be consistent with
8975 those of memcpy.
8976
8977 1995-02-14 Jim Meyering <meyering@gnu.org>
8978
8979 * bison.simple (__yy_memcpy):
8980 Renamed from __yy_bcopy to avoid
8981 confusion. Reverse FROM and TO arguments to be consistent with
8982 those of memcpy.
8983
8984 1994-11-10 David J. MacKenzie <djm@gnu.org>
8985
8986 * NEWS: reformat
8987
8988 * NEWS: New file.
8989
8990 * Makefile.in (DISTFILES): Include NEWS.
8991
8992 * Makefile.in (DISTFILES):
8993 Include install-sh, not install.sh.
8994
8995 * configure.in: Update to Autoconf v2 macro names.
8996
8997 1994-10-05 David J. MacKenzie <djm@gnu.org>
8998
8999 * Makefile.in: fix typo
9000
9001 * Makefile.in (prefix, exec_prefix):
9002 Let configure set them.
9003
9004 1994-09-28 David J. MacKenzie <djm@gnu.org>
9005
9006 * Makefile.in: Set datadir to $(prefix)/share.
9007
9008 1994-09-15 Richard Stallman <rms@gnu.org>
9009
9010 * src/bison.s1:
9011 Update copyright notice and GPL version.
9012
9013 1994-09-15 Richard Stallman <rms@gnu.org>
9014
9015 * bison.simple:
9016 Update copyright notice and GPL version.
9017
9018 1994-07-12 Richard Stallman <rms@gnu.org>
9019
9020 * src/reduce.c, src/reader.c:
9021 entered into RCS
9022
9023 1994-05-05 David J. MacKenzie <djm@gnu.org>
9024
9025 * Makefile.in: entered into RCS
9026
9027 1994-03-26 Richard Stallman <rms@gnu.org>
9028
9029 * src/bison.s1: entered into RCS
9030
9031 1994-03-26 Richard Stallman <rms@gnu.org>
9032
9033 * bison.simple: entered into RCS
9034
9035 1994-03-25 Richard Stallman <rms@gnu.org>
9036
9037 * src/main.c: entered into RCS
9038
9039 1994-03-24 Richard Stallman <rms@gnu.org>
9040
9041 * src/conflicts.c: entered into RCS
9042
9043 1994-01-02 Richard Stallman <rms@gnu.org>
9044
9045 * Makefile.in: *** empty log message ***
9046
9047 1993-11-21 Richard Stallman <rms@gnu.org>
9048
9049 * src/bison.s1: *** empty log message ***
9050
9051 1993-11-21 Richard Stallman <rms@gnu.org>
9052
9053 * doc/bison.texinfo: entered into RCS
9054
9055 * doc/bison.texinfo: *** empty log message ***
9056
9057 1993-11-21 Richard Stallman <rms@gnu.org>
9058
9059 * bison.simple: *** empty log message ***
9060
9061 1993-10-25 David J. MacKenzie <djm@gnu.org>
9062
9063 * doc/bison.texinfo: *** empty log message ***
9064
9065 1993-10-19 Richard Stallman <rms@gnu.org>
9066
9067 * src/bison.s1: *** empty log message ***
9068
9069 1993-10-19 Richard Stallman <rms@gnu.org>
9070
9071 * bison.simple: *** empty log message ***
9072
9073 1993-10-14 Richard Stallman <rms@gnu.org>
9074
9075 * src/bison.s1: *** empty log message ***
9076
9077 1993-10-14 Richard Stallman <rms@gnu.org>
9078
9079 * bison.simple: *** empty log message ***
9080
9081 1993-09-14 David J. MacKenzie <djm@gnu.org>
9082
9083 * doc/bison.texinfo: *** empty log message ***
9084
9085 1993-09-13 Noah Friedman <friedman@gnu.org>
9086
9087 * Makefile.in: *** empty log message ***
9088
9089 1993-09-10 Richard Stallman <rms@gnu.org>
9090
9091 * src/conflicts.c: *** empty log message ***
9092
9093 * src/system.h: entered into RCS
9094
9095 1993-09-10 Richard Stallman <rms@gnu.org>
9096
9097 * doc/bison.1: entered into RCS
9098
9099 1993-09-06 Noah Friedman <friedman@gnu.org>
9100
9101 * src/version.c: entered into RCS
9102
9103 1993-09-06 Noah Friedman <friedman@gnu.org>
9104
9105 * Makefile.in: *** empty log message ***
9106
9107 1993-07-30 David J. MacKenzie <djm@gnu.org>
9108
9109 * Makefile.in: *** empty log message ***
9110
9111 1993-07-24 Richard Stallman <rms@gnu.org>
9112
9113 * src/bison.s1: *** empty log message ***
9114
9115 1993-07-24 Richard Stallman <rms@gnu.org>
9116
9117 * bison.simple: *** empty log message ***
9118
9119 1993-07-08 David J. MacKenzie <djm@gnu.org>
9120
9121 * Makefile.in: *** empty log message ***
9122
9123 1993-07-04 Richard Stallman <rms@gnu.org>
9124
9125 * src/bison.s1: *** empty log message ***
9126
9127 1993-07-04 Richard Stallman <rms@gnu.org>
9128
9129 * bison.simple: *** empty log message ***
9130
9131 1993-06-26 David J. MacKenzie <djm@gnu.org>
9132
9133 * src/getargs.c: entered into RCS
9134
9135 1993-06-26 David J. MacKenzie <djm@gnu.org>
9136
9137 * doc/bison.texinfo: *** empty log message ***
9138
9139 * doc/bison.1: New file.
9140
9141 1993-06-25 Richard Stallman <rms@gnu.org>
9142
9143 * src/getargs.c: New file.
9144
9145 1993-06-16 Richard Stallman <rms@gnu.org>
9146
9147 * src/bison.s1: *** empty log message ***
9148
9149 1993-06-16 Richard Stallman <rms@gnu.org>
9150
9151 * bison.simple: *** empty log message ***
9152
9153 1993-06-03 Richard Stallman <rms@gnu.org>
9154
9155 * src/bison.s1: New file.
9156
9157 1993-06-03 Richard Stallman <rms@gnu.org>
9158
9159 * doc/bison.texinfo: *** empty log message ***
9160
9161 1993-06-03 Richard Stallman <rms@gnu.org>
9162
9163 * bison.simple: New file.
9164
9165 1993-05-19 Richard Stallman <rms@gnu.org>
9166
9167 * doc/bison.texinfo: New file.
9168
9169 1993-05-07 Noah Friedman <friedman@gnu.org>
9170
9171 * Makefile.in: *** empty log message ***
9172
9173 1993-04-28 Noah Friedman <friedman@gnu.org>
9174
9175 * src/reader.c: *** empty log message ***
9176
9177 1993-04-23 Noah Friedman <friedman@gnu.org>
9178
9179 * src/alloc.h: entered into RCS
9180
9181 1993-04-20 David J. MacKenzie <djm@gnu.org>
9182
9183 * src/version.c: *** empty log message ***
9184
9185 * src/files.c, src/allocate.c:
9186 entered into RCS
9187
9188 * src/reader.c: *** empty log message ***
9189
9190 * src/lex.c: entered into RCS
9191
9192 * src/conflicts.c: New file.
9193
9194 * src/symtab.c: entered into RCS
9195
9196 * src/alloc.h: New file.
9197
9198 * src/LR0.c: entered into RCS
9199
9200 1993-04-18 Noah Friedman <friedman@gnu.org>
9201
9202 * src/reader.c: New file.
9203
9204 * src/version.c: *** empty log message ***
9205
9206 1993-04-18 Noah Friedman <friedman@gnu.org>
9207
9208 * Makefile.in: *** empty log message ***
9209
9210 1993-04-17 Noah Friedman <friedman@gnu.org>
9211
9212 * Makefile.in: *** empty log message ***
9213
9214 1993-04-15 Richard Stallman <rms@gnu.org>
9215
9216 * src/main.c, src/files.c:
9217 New file.
9218
9219 1993-04-15 Noah Friedman <friedman@gnu.org>
9220
9221 * configure.in: entered into RCS
9222
9223 * configure.in: *** empty log message ***
9224
9225 * configure.in: New file.
9226
9227 1993-04-14 Richard Stallman <rms@gnu.org>
9228
9229 * Makefile.in: New file.
9230
9231 1993-04-13 Richard Stallman <rms@gnu.org>
9232
9233 * src/version.c: New file.
9234
9235 1993-03-25 Richard Stallman <rms@gnu.org>
9236
9237 * src/output.c: entered into RCS
9238
9239 1992-09-25 Richard Stallman <rms@gnu.org>
9240
9241 * configure.bat: entered into RCS
9242
9243 1992-06-22 Richard Stallman <rms@gnu.org>
9244
9245 * src/vmsgetargs.c: entered into RCS
9246
9247 1992-06-22 Richard Stallman <rms@gnu.org>
9248
9249 * doc/bison.rnh: entered into RCS
9250
9251 1992-04-20 David J. MacKenzie <djm@gnu.org>
9252
9253 * README: entered into RCS
9254
9255 1992-01-22 Richard Stallman <rms@gnu.org>
9256
9257 * src/machine.h: entered into RCS
9258
9259 1991-12-21 Richard Stallman <rms@gnu.org>
9260
9261 * src/lalr.c, src/closure.c:
9262 entered into RCS
9263
9264 1991-12-20 Richard Stallman <rms@gnu.org>
9265
9266 * src/state.h: entered into RCS
9267
9268 1991-12-18 Richard Stallman <rms@gnu.org>
9269
9270 * src/print.c, src/nullable.c, src/derives.c:
9271 entered into RCS
9272
9273 1991-11-03 David J. MacKenzie <djm@gnu.org>
9274
9275 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
9276 entered into RCS
9277
9278 1988-09-09 Richard Stallman <rms@gnu.org>
9279
9280 * src/bison.hairy: entered into RCS
9281
9282 1987-12-16 Richard Stallman <rms@gnu.org>
9283
9284 * REFERENCES: entered into RCS
9285 -----
9286
9287 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
9288
9289 This file is part of GNU Bison.
9290
9291 GNU Bison is free software; you can redistribute it and/or modify
9292 it under the terms of the GNU General Public License as published by
9293 the Free Software Foundation; either version 2, or (at your option)
9294 any later version.
9295
9296 GNU Bison is distributed in the hope that it will be useful,
9297 but WITHOUT ANY WARRANTY; without even the implied warranty of
9298 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9299 GNU General Public License for more details.
9300
9301 You should have received a copy of the GNU General Public License
9302 along with GNU Bison; see the file COPYING. If not, write to
9303 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
9304 Boston, MA 02111-1307, USA.