]> git.saurik.com Git - bison.git/blame_incremental - ChangeLog
Add src/system.h; this isn't really needed, but it keeps "make update"
[bison.git] / ChangeLog
... / ...
CommitLineData
12002-11-11 Paul Eggert <eggert@twinsun.com>
2
3 Revamp to fix many (but not all) of the C- and M4-related quoting
4 problems. Among other things, this fixes the Bison bug reported
5 by Jan Hubicka when processing the Bash grammar; see:
6 <http://mail.gnu.org/pipermail/bison-patches/2002-November/001329.html>
7
8 Use new @ escapes consistently. Represent brackets with @{ and @}
9 rather than @<:@ and @:>@, since this works a bit better with dumb
10 editors like vi. Represent @ with @@, since @ is now consistently
11 an escape. Use @oline@ and @ofile@ rather than __oline__ and
12 __ofile__, to avoid unexpected expansions. Similarly, use @output
13 rather than #output.
14
15 * data/c.m4 (b4_copyright): Omit file name from comment, since
16 the file name could contain "*/".
17 (b4_synclines_flag): Don't quote the 2nd argument; it should already
18 be quoted. All uses changed.
19
20 * data/glr.c: Use new @ escapes consistently.
21 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
22 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
23 Remove, since they couldn't handle arbitrary characters in file
24 names.
25 * data/lalr1.cc: Likewise.
26 * data/yacc.c: Likewise.
27
28 * src/files.c (output_infix): Remove; all uses removed.
29 * src/files.h: Likewise.
30
31 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
32 mishandled funny characters in file names, and anyway it isn't
33 needed any more.
34 * data/yacc.c: Likewise.
35 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
36
37 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
38 * data/yacc.c: Likewise.
39
40 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
41 strings now.
42 (muscle_init): Quote filename as a C string.
43 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
44 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
45 * src/output.c (escaped_file_name_output): New function.
46 (prepare_symbols): Quote tokens for M4.
47 (prepare): Don't insert output_infix, output_prefix,
48 output_parser_name, output_header_name; this is now down by scan-skel.
49 Insert skeleton as a C string.
50
51 * src/output.c (user_actions_output, symbol_destructors_output,
52 symbol_printers_output): Quote filenames for C and M4.
53 * src/reader.c (prologue_augment, epilogue_set): Likewise.
54
55 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
56 escapes other than \\ and \'; this simplifies the code.
57 (<SC_STRING>): Likewise, for \\ and \".
58 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
59 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
60 Use new escapes @{ and @} for [ and ].
61
62 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
63 them with auto vars.
64 Switch to new escape scheme, where @ is the escape character uniformly.
65 Abort if a stray escape character is found. Avoid unbounded input
66 buffer when parsing non-escaped text.
67
68 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
69 __oline__, #output, $@, and @{ do not have unintended meanings.
70
712002-11-09 Paul Eggert <eggert@twinsun.com>
72
73 Fix the test failure due to GCC warnings described in
74 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001815.html>.
75 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
76 evaluate to 0 if it's impossible for NINF to be in the respective
77 table.
78 (yygetLRActions, yyrecoverParseError): Use them.
79
80 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
81 counted in the token inserted at end of file. Now takes
82 location_t *, not location_t, so that the location can be
83 adjusted. All uses changed.
84
85 * tests/regression.at (Invalid inputs): Adjust wording in
86 diagnostic to match the new behavior.
87
88 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
89 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
90 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
91 abort ();'. This reduces the runtime of the "Many lookaheads"
92 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
93 GCC 3.2.
94
952002-11-07 Paul Eggert <eggert@twinsun.com>
96
97 * src/parse-gram.y (CHARACTER): Remove unused token.
98 All uses removed.
99
100 * src/scan-gram.l: Remove stack option. We no longer use the
101 stack, since the stack was never deeper than 1; instead, use the
102 new auto var c_context to record the stacked value.
103
104 Remove nounput option. At an unexpected end of file, we now unput
105 the minimal input necessary to end cleanly; this simplifies the
106 code.
107
108 Avoid unbounded token sizes where this is easy.
109
110 (unexpected_end_of_file): New function.
111 Use it to systematize the error message on unexpected EOF.
112 (last-string): Now auto, not static.
113 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
114 (scanner_last_string_free): Remove; not used.
115 (percent_percent_count): Move decl to just before use.
116 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
117 not the (never otherwised-used) CHARACTER.
118
1192002-11-07 Akim Demaille <akim@epita.fr>
120
121 Let yyerror always receive the msg as last argument, so that
122 yyerror can be variadic.
123
124 * data/yacc.c (b4_yyerror_args): New.
125 Use it when calling yyerror.
126 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
127 Use it when calling yyerror.
128 * doc/bison.texinfo (Error Reporting): Adjust.
129 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
130 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
131
1322002-11-06 Akim Demaille <akim@epita.fr>
133
134 #line should have quoted strings.
135 Ideally, this should be done by m4_quotearg.
136
137 * src/scan-skel.l: Include quotearg.h.
138 Quote __ofile__.
139 * src/output.c (symbol_printers_output)
140 (symbol_destructors_output): Quote the file name.
141
1422002-11-06 Akim Demaille <akim@epita.fr>
143
144 * tests/regression.at (Invalid inputs): Adjust to the recent
145 messages.
146
1472002-11-06 Akim Demaille <akim@epita.fr>
148
149 Restore --no-lines.
150 Reported by Jim Kent.
151
152 * data/c.m4 (b4_syncline): New.
153 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
154 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
155 * src/output.c (user_actions_output): Likewise.
156 (prepare): Define 'b4_synclines_flag'.
157 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
158
1592002-11-06 Akim Demaille <akim@epita.fr>
160
161 * src/main.c (main): Free `infile'.
162 * src/scan-gram.l (handle_syncline): New.
163 Recognize `#line'.
164 * src/output.c (user_actions_output, symbol_destructors_output)
165 (symbol_printers_output): Use the location's file name, not
166 infile.
167 * src/reader.c (prologue_augment, epilogue_set): Likewise.
168
1692002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
170
171 * src/tables.c (matching_state): Don't allow states to match if
172 either has GLR conflict entries.
173
1742002-11-05 Paul Eggert <eggert@twinsun.com>
175
176 * src/scan-gram.l: Use more accurate diagnostics, e.g.
177 "integer out of range" rather than "invalid value".
178 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
179 accordingly.
180
181 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
182 Also, remove one static variable in the scanner.
183
184 * src/scan-gram.l (braces_level): Now auto, not static.
185 Initialize to zero if the compiler is being picky.
186 (INITIAL): Clear braces_level instead of incrementing it.
187 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
188 as POSIX 1003.1-2001 requires.
189 * src/system.h (IF_LINT): New macro, taken from coreutils.
190 * configure.ac: Define "lint" if --enable-gcc-warnings.
191
1922002-11-05 Akim Demaille <akim@epita.fr>
193
194 * src/scan-gram.l: When it starts with `%', complain about the
195 whole directive, not just that `invalid character: %'.
196
1972002-11-04 Akim Demaille <akim@epita.fr>
198
199 * Makefile.maint: Update from Autoconf.
200 (update, cvs-update, po-update, do-po-update): New.
201
2022002-11-04 Akim Demaille <akim@epita.fr>
203
204 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
205 and yyerror.
206 Have yyerror `use' its arguments.
207 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
208 returns true when location & yacc & pure & parse-param.
209 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
210
2112002-11-04 Akim Demaille <akim@epita.fr>
212
213 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
214 clashes.
215 * src/scan-gram.l: Use [\'] instead of ['] to pacify
216 font-lock-mode.
217 Use complain_at.
218 Use quote, not quote_n since LOCATION_PRINT no longer uses the
219 slot 0.
220
2212002-11-03 Paul Eggert <eggert@twinsun.com>
222
223 * src/reader.c (get_merge_function, grammar_current_rule_check):
224 Use consistent diagnostics for reporting type name clashes.
225 Quote the types with <>, for consistency with Yacc.
226 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
227
2282002-11-03 Akim Demaille <akim@epita.fr>
229
230 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
231 New.
232 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
233 (b4_parse_param): Remove.
234 Use b4_identification.
235 Propagate b4_pure_args where needed to pass them to yyerror.
236 * data/glr.m4 (b4_parse_param): Remove.
237 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
238 (b4_lpure_formals): New.
239 Use b4_identification.
240 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
241 b4_user_formals and b4_user_args.
242 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
243 (yyreportAmbiguity): When using a pure parser, also need
244 the location, and the parse-params.
245 Adjust callers.
246 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
247 When using a pure parser, also need the parse-params.
248 Adjust callers.
249 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
250 (%pure-parser + %parse-param) LALR and GLR parsers.
251 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
252 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
253 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
254 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
255 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
256 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
257 * doc/bison.texinfo: Untabify the whole file.
258 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
259 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
260 (Error Reporting): Adjust to these new directives.
261 Document %error-verbose, deprecate YYERROR_VERBOSE.
262
2632002-11-03 Akim Demaille <akim@epita.fr>
264
265 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
266 AT_CHECK_CALC_GLR invocations to use % directives, instead of
267 command line options.
268 * tests/cxx-type.at: Formatting changes.
269
2702002-11-03 Paul Eggert <eggert@twinsun.com>
271
272 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
273 to count columns correctly, and to check for invalid inputs.
274
275 Use mbsnwidth to count columns correctly. Account for tabs, too.
276 Include mbswidth.h.
277 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
278 (extend_location): New function.
279 (YY_LINES): Remove.
280
281 Handle CRLF in C code rather than in Lex code.
282 (YY_INPUT): New macro.
283 (no_cr_read): New function.
284
285 Scan UCNs, even though we don't fully handle them yet.
286 (convert_ucn_to_byte): New function.
287
288 Handle backslash-newline correctly in C code.
289 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
290 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
291 all uses changed.
292 (tag, splice): New EREs. Do not allow NUL or newline in tags.
293 Use {splice} wherever C allows backslash-newline.
294 YY_STEP after space, newline, vertical-tab.
295 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
296
297 (letter, id): Don't assume ASCII; e.g., spell out a-z.
298
299 ({int}, handle_action_dollar, handle_action_at): Check for integer
300 overflow.
301
302 (YY_STEP): Omit trailing semicolon, so that it's more like C.
303
304 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
305 as well as \000. Check for UCHAR_MAX, not 255.
306 Allow \x with an arbitrary positive number of digits, as in C.
307 Check for overflow here.
308 Allow \? and UCNs, for compatibility with C.
309
310 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
311 with quote slot used by complain_at.
312
313 * tests/input.at: Add tests for backslash-newline, m4 quotes
314 in symbols, long literals, and funny escapes in strings.
315
316 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
317 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
318 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
319 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
320 * m4/mbswidth.m4: New file, from GNU coreutils.
321
322 * doc/bison.texinfo (Grammar Outline): Document // comments.
323 (Symbols): Document that trigraphs have no special meaning in Bison,
324 nor is backslash-newline allowed.
325 (Actions): Document that trigraphs have no special meaning.
326
327 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
328 no longer used.
329
3302002-11-02 Paul Eggert <eggert@twinsun.com>
331
332 * src/reader.c: Don't include quote.h; not needed.
333 (get_merge_function): Reword warning to be consistent with
334 type clash diagnostic in grammar_current_rule_check.
335
336 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
337 bug in trigraph handling.
338
339 * src/output.c (prepare_symbols): When printing token names,
340 escape "[" as "@<:@" and likewise for "]".
341
342 * src/system.h (errno): Remove declaration, as we are now
343 assuming C89 or better, and C89 guarantees errno.
344
3452002-10-30 Paul Eggert <eggert@twinsun.com>
346
347 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
348 Check for close failures.
349 * src/files.h (xfclose): Return void, not int, since it always
350 returned zero.
351 * src/files.c (xfclose): Likewise. Report I/O error if ferror
352 indicates one.
353 * src/output.c (output_skeleton): Use xfclose rather than fclose
354 and ferror. xfclose now checks ferror.
355
356 * data/glr.c (YYLEFTMOST_STATE): Remove.
357 (yyreportTree): Use a stack-based leftmost state. This avoids
358 our continuing battles with bogus warnings about initializers.
359
3602002-10-30 Akim Demaille <akim@epita.fr>
361
362 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
363 #if.
364
3652002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
366
367 * tests/glr-regr1.at: New test for reported regressions.
368 * tests/testsuite.at: Add glr-regr1.at test.
369 * tests/Makefile.am: Add glr-regr1.at test.
370
3712002-10-24 Paul Eggert <eggert@twinsun.com>
372
373 Version 1.75a.
374
375 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
376 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
377 we use malloc. Don't assume 'A' through 'Z' are contiguous.
378 Don't assume strdup exists; POSIX says its an XSI extension.
379 Check for buffer overflow on input.
380
3812002-10-24 Akim Demaille <akim@epita.fr>
382
383 * src/output.c (output_skeleton): Don't disable M4sugar comments
384 too soon: it results in comments being expanded.
385 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
386 first output.
387
3882002-10-24 Akim Demaille <akim@epita.fr>
389
390 * data/yacc.c (m4_int_type): New.
391 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
392 char' as only yacc.c wants K&R portability.
393 * data/glr.c (yysigned_char): Remove.
394 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
395 Reported by Quoc Peyrot.
396
3972002-10-23 Paul Eggert <eggert@twinsun.com>
398
399 * src/main.c (main): With --trace=time, report times even if a
400 non-fatal error occurs. Formerly, the times were reported in some
401 such cases but not in others.
402 * src/reader.c (reader): Just return if a complaint has been issued,
403 instead of exiting, so that 'main' can report times.
404
4052002-10-22 Akim Demaille <akim@epita.fr>
406
407 * src/system.h: Include sys/types.
408 Reported by Bert Deknuydt.
409
4102002-10-23 Paul Eggert <eggert@twinsun.com>
411
412 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
413 Suggested by Art Haas.
414
4152002-10-22 Paul Eggert <eggert@twinsun.com>
416
417 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
418 decl; not needed any more.
419 * src/main.c (main): Use return to exit, undoing yesterday's change.
420 The last OS that we could find where this wouldn't work is
421 SunOS 3.5, and that's too old to worry about now.
422
423 * data/glr.c (struct yyltype): Define members even when not
424 doing locations. This is more consistent with yacc.c, and it
425 works around the following bug reports:
426 http://mail.gnu.org/pipermail/bug-bison/2002-October/001764.html
427 http://mail.gnu.org/pipermail/bug-bison/2002-October/001769.html
428 and I hope it also fixes this bug report:
429 http://mail.gnu.org/pipermail/bug-bison/2002-October/001748.html
430
431 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
432 @acronym consistently. Standardize on "Yacc" instead of "YACC",
433 "Algol" instead of "ALGOL". Give a bit more history about BNF.
434
4352002-10-22 Akim Demaille <akim@epita.fr>
436
437 * data/README: New.
438
4392002-10-21 Paul Eggert <eggert@twinsun.com>
440
441 Be consistent about 'bool'; the old code used an enum in one
442 module and an int in another, and this violates the C standard.
443 * m4/stdbool.m4: New file, from coreutils 4.5.3.
444 * configure.ac (AC_HEADER_STDBOOL): Add.
445 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
446 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
447 * src/symtab.c (hash_compare_symbol_t): Likewise.
448 * src/system.h (bool, false, true): Use a definition consistent
449 with ../lib/hash.c. All uses changed.
450
451 * src/complain.c (warning_issued): Renamed from warn_message_count,
452 so that we needn't worry about integer overflow (!).
453 Now of type bool. All uses changed.
454 (complaint_issued): Renamed from complain_message_count; likewise.
455
456 * src/main.c (main): Use exit to exit with failure.
457
458 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
459 rather than 1 and 0.
460 * src/main.c (main): Likewise.
461 * src/getargs.c (getargs): Likewise.
462 * src/reader.c (reader): Likewise.
463
464 * src/getarg.c (getargs): Remove duplicate code for
465 "Try `bison --help'".
466
467 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
468 What was that "2" for?
469
470 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
471 * src/getargs.c (usage): Likewise.
472
473 * src/getargs.c (getargs): When there are too few operands, report
474 the last one. When there are too many, report the first extra
475 one. This is how diffutils does it.
476
4772002-10-20 Paul Eggert <eggert@twinsun.com>
478
479 Remove K&R vestiges.
480 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
481 * src/complain.c (VA_START): Remove. Assume prototypes.
482 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
483 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
484 fatal): Assume prototypes.
485 * src/complain.h: Assume prototypes.
486 * src/system.h (PARAMS): Remove.
487 Include <limits.h> unconditionally, since it's guaranteeed even
488 for a freestanding C89 compiler.
489 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
490 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
491
4922002-10-20 Akim Demaille <akim@epita.fr>
493
494 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
495 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
496 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
497 (yyresolveStates, yyresolveAction, yyresolveStack)
498 (yyprocessOneStack): Use them.
499 (yy_reduce_print): New.
500 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
501
5022002-10-20 Akim Demaille <akim@epita.fr>
503
504 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
505 arguments and output `void'.
506 (b4_c_function): Rename as...
507 (b4_c_function_def): this.
508 (b4_c_function_decl, b4_c_ansi_function_def)
509 (b4_c_ansi_function_decl): New.
510 Change the interpretation of the arguments: before `int, foo', now
511 `int foo, foo'.
512 * data/yacc.c (yyparse): Prototype and define thanks to these.
513 Adjust b4_c_function_def uses.
514 * data/glr.c (yyparse): Likewise, but ANSI only.
515
5162002-10-20 Akim Demaille <akim@epita.fr>
517
518 * src/output.c (prepare): Move the definition of `tokens_number',
519 `nterms_number', `undef_token_number', `user_token_number_max'
520 to...
521 (prepare_tokens): Here.
522 (prepare_tokens): Rename as...
523 (prepare_symbols): this.
524 (prepare): Move the definition of `rules_number' to...
525 (prepare_rules): here.
526 (prepare): Move the definition of `last', `final_state_number',
527 `states_number' to...
528 (prepare_states): here.
529 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
530
5312002-10-20 Akim Demaille <akim@epita.fr>
532
533 * src/tables.h, src/tables.c, src/output.c: Comment changes.
534
5352002-10-20 Akim Demaille <akim@epita.fr>
536
537 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
538 * data/c.m4: here.
539
5402002-10-20 Akim Demaille <akim@epita.fr>
541
542 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
543 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
544 `pair'.
545 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
546 `name' to...
547 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
548 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
549 These.
550
5512002-10-19 Paul Eggert <eggert@twinsun.com>
552
553 Do not create a temporary file, as that involves security and
554 cleanup headaches. Instead, use a pair of pipes.
555 Derived from a suggestion by Florian Krohm.
556 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
557 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
558 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
559 (BISON_PREREQ_SUBPIPE): Add.
560 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
561 Add subpipe.h, subpipe.c.
562 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
563 * po/POTFILES.in: Add lib/subpipe.c.
564 * src/output.c: Include "subpipe.h".
565 (m4_invoke): Remove decl.
566 (scan_skel): New decl.
567 (output_skeleton): Use pipe rather than temporary file for m4 input.
568 Check that m4sugar.m4 is readable, to avoid deadlock.
569 Check for pipe I/O error.
570 * src/scan-skel.l (readpipe): Remove decl.
571 (scan_skel): New function, to be used in place of m4_invoke.
572 Read from stream rather than file.
573
574 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
575 float, as this generates a warning on Solaris 8 + GCC 3.2 with
576 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
577 this generates a more-accurate value anyway.
578
579 * lib/timevar.c (timervar_accumulate): Rename locals to
580 avoid confusion with similarly-named more-global.
581 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
582
583 * src/output.c (prepare): Use xstrdup to convert char const *
584 to char *, to avoid GCC warning.
585
5862002-10-19 Akim Demaille <akim@epita.fr>
587
588 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
589 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
590 Use them to have `calc.y' ready for %pure-parser.
591 * data/yacc.c (YYLEX): Pass a yylex return type to
592 b4_c_function_call.
593
5942002-10-19 Akim Demaille <akim@epita.fr>
595
596 Prototype support of %lex-param and %parse-param.
597
598 * src/parse-gram.y: Add the definition of the %lex-param and
599 %parse-param tokens, plus their rules.
600 Drop the `_' version of %glr-parser.
601 Add the "," token.
602 * src/scan-gram.l (INITIAL): Scan them.
603 * src/muscle_tab.c: Comment changes.
604 (muscle_insert, muscle_find): Rename `pair' as `probe'.
605 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
606 (muscle_entry_s): The `value' member is no longer const.
607 Adjust all dependencies.
608 * src/muscle_tab.c (muscle_init): Adjust: use
609 MUSCLE_INSERT_STRING.
610 Initialize the obstack earlier.
611 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
612 (muscle_pair_list_grow): New.
613 * data/c.m4 (b4_c_function_call, b4_c_args): New.
614 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
615 * tests/calc.at: Use %locations, not --locations.
616 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
617
6182002-10-19 Akim Demaille <akim@epita.fr>
619
620 * src/getargs.c (usage): Take status as argument and exit
621 accordingly.
622 Report the traditional `Try ... --help' message when status != 0.
623 (usage, version): Don't take a FILE * as arg, it is pointless.
624 (getargs): When there is an incorrect number of arguments, make it
625 an error, and report it GNUlically thanks to `usage ()'.
626
6272002-10-18 Paul Eggert <eggert@twinsun.com>
628
629 * data/glr.c (yyreportParseError): Don't assume that sprintf
630 yields the length of the printed string, as this is not true
631 on SunOS 4.1.4. Reported by Peter Klein.
632
633 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
634 * tests/conflicts.at (%nonassoc and eof): Likewise.
635 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
636
6372002-10-17 Akim Demaille <akim@epita.fr>
638
639 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
640 * src/getargs.c (trace_types, trace_args): Adjust.
641 * src/reader.c (grammar_current_rule_prec_set)
642 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
643 Standardize error messages.
644 And s/@prec/%prec/!
645 (reader): Use trace_flag to enable scanner/parser debugging,
646 instead of an adhoc scheme.
647 * src/scan-gram.l: Remove trailing debugging code.
648
6492002-10-16 Paul Eggert <eggert@twinsun.com>
650
651 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
652 MUSCLE_TAB_H.
653
654 * NEWS: Officially drop support for building Bison with K&R C,
655 since it didn't work anyway and it's not worth worrying about.
656 * Makefile.maint (wget_files): Remove ansi2knr.c.
657 (ansi2knr.c-url_prefix): Remove.
658 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
659 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
660 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
661
6622002-10-15 Paul Eggert <eggert@twinsun.com>
663
664 Stop using the "enum_" trick for K&R-style function definitions;
665 it confused me, and I was the author! Instead, assume that people
666 who want to use K&R C compilers (when using these modules in GCC,
667 perhaps?) will run ansi2knr.
668
669 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
670 All uses of "enum_" changed to "enum ".
671 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
672 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
673
674 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
675 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
676 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
677 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
678 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
679 abitset_not, abitset_ones, abitset_or, abitset_or_and,
680 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
681 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
682 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
683 Use function prototypes; this removes the need for declaring
684 static functions simply to provide their prototypes.
685 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
686 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
687 bitset_count_, bitset_create, bitset_dump, bitset_first,
688 bitset_free, bitset_init, bitset_last, bitset_next,
689 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
690 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
691 bitset_print, bitset_release_memory, bitset_toggle_,
692 bitset_type_choose, bitset_type_get, bitset_type_name_get,
693 debug_bitset): Likewise.
694 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
695 * lib/bitset_stats.c (bitset_log_histogram_print,
696 bitset_percent_histogram_print, bitset_stats_and,
697 bitset_stats_and_cmp, bitset_stats_and_or,
698 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
699 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
700 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
701 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
702 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
703 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
704 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
705 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
706 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
707 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
708 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
709 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
710 bitset_stats_zero): Likewise.
711 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
712 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
713 bitsetv_dump, debug_bitsetv): Likewise.
714 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
715 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
716 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
717 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
718 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
719 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
720 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
721 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
722 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
723 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
724 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
725 Likewise.
726 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
727 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
728 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
729 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
730 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
731 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
732 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
733 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
734 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
735 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
736 lbitset_xor_cmp, lbitset_zero): Likewise.
737
7382002-10-14 Akim Demaille <akim@epita.fr>
739
740 Version 1.75.
741
7422002-10-14 Akim Demaille <akim@epita.fr>
743
744 * tests/Makefile.am (maintainer-check-posix): New.
745
7462002-10-14 Akim Demaille <akim@epita.fr>
747
748 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
749 member.
750
7512002-10-14 Akim Demaille <akim@epita.fr>
752
753 * src/tables.c (table_ninf_remap): base -> tab.
754 Reported by Matt Rosing.
755
7562002-10-14 Paul Eggert <eggert@twinsun.com>
757
758 * tests/action.at, tests/calc.at, tests/conflicts.at,
759 tests/cxx-type.at, tests/headers.at, tests/input.at,
760 tests/regression.at, tests/synclines.at, tests/torture.at:
761 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
762 so that the tests still work even if POSIXLY_CORRECT is set.
763 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
764
765 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
766 for portability to K&R hosts. Fix typo: signed char is guaranteed
767 only to 127, not to 128.
768 * data/glr.c (yysigned_char): New type.
769 * data/yacc.c (yysigned_char): Likewise.
770 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
771
7722002-10-13 Paul Eggert <eggert@twinsun.com>
773
774 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
775 true due to limited range of data type" warning from GCC.
776
777 * data/c.m4 (b4_token_defines): Protect against double-inclusion
778 by wrapping enum yytokentype's definition inside #ifndef
779 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
780
7812002-10-13 Akim Demaille <akim@epita.fr>
782
783 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
784 Un yy- yyrhs to avoid the name clash with the global YYRHS.
785
7862002-10-13 Akim Demaille <akim@epita.fr>
787
788 * Makefile.maint: Update from Autoconf 2.54.
789 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
790
7912002-10-13 Akim Demaille <akim@epita.fr>
792
793 * src/print.c (print_state): Separate the list of solved conflicts
794 from the other items.
795 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
796
7972002-10-13 Akim Demaille <akim@epita.fr>
798
799 Let nondeterministic skeletons be usable with deterministic
800 tables.
801
802 With the patch, GAWK compiled by GCC without -O2 passes its test
803 suite using a GLR parser driven by LALR tables. It fails with -O2
804 because `struct stat' gives two different answers on my machine:
805 88 (definition of an auto var) and later 96 (memset on this var).
806 Hence the stack is badly corrumpted. The headers inclusion is to
807 blame: if I move the awk.h inclusion before GLR's system header
808 inclusion, the two struct stat have the same size.
809
810 * src/tables.c (pack_table): Always create conflict_table.
811 (token_actions): Always create conflict_list.
812 * data/glr.c (YYFLAG): Remove, unused.
813
8142002-10-13 Akim Demaille <akim@epita.fr>
815
816 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
817 (O0FLAGS): New.
818 (VALGRIND, GXX): New.
819 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
820 * tests/bison.in: Run $PREBISON a pre-command.
821 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
822 (maintainer-check-g++): New.
823 * Makefile.am (maintainer-check): New.
824
8252002-10-13 Akim Demaille <akim@epita.fr>
826
827 * data/glr.c: Formatting changes.
828 Tweak some trace messages to match yacc.c's.
829
8302002-10-13 Akim Demaille <akim@epita.fr>
831
832 GLR parsers sometimes raise parse errors instead of performing the
833 default reduction.
834 Reported by Charles-Henry de Boysson.
835
836 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
837 check the length of the traces when %glr.
838 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
839 GLR's traces.
840 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
841 Test GLR parsers.
842 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
843 (yyltype): Remove the yy prefix from the member names.
844 (yytable): Complete its comment.
845 (yygetLRActions): Map error action number from YYTABLE from
846 YYTABLE_NINF to 0.
847 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
848 (which was a bug: it should have been YYTABEL_NINF, and yet it was
849 not satisfying as we could compare an YYACTION computed from
850 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
851 only value for error actions.
852 (yyreportParseError): In verbose parse error messages, don't issue
853 `error' in the list of expected tokens.
854 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
855 next action to perform to match glr.c's decoding.
856 (yytable): Complete its comment.
857
8582002-10-13 Paul Eggert <eggert@twinsun.com>
859
860 Fix problem reported by Henrik Grubbstroem in
861 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001670.html>:
862 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
863 because the Bison parser reads the second action before reducing
864 the first one.
865 * src/scan-gram.l (rule_length): New static var.
866 Use it to keep track of the rule length in the scanner, since
867 we can't expect the parser to be in lock-step sync with the scanner.
868 (handle_action_dollar, handle_action_at): Use this var.
869 * tests/actions.at (Exotic Dollars): Test for the problem.
870
8712002-10-12 Paul Eggert <eggert@twinsun.com>
872
873 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
874 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
875 Include <sys/time.h> when checking for clock_t and struct tms.
876 Use same include order as source.
877 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
878 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001674.html>.
879
880 * lib/timevar.c: Update copyright date and clarify comments.
881 (get_time) [IN_GCC]: Keep the GCC version for reference.
882
883 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
884 GCC version as of today, then merge Bison's changes.
885 Change "GCC" to "Bison" in copyright notice. timevar.def's
886 author is Akim, so change that too.
887
888 * src/reader.c (grammar_current_rule_check):
889 Don't worry about the default action if $$ is untyped.
890 Prevents bogus warnings reported by Jim Gifford in
891 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001673.html>.
892
893 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
894 * data/glr.c, data/lalr1.cc, data/yacc.c:
895 Output token definitions before the first part of user declarations.
896 Fixes compatibility problem reported by Jim Gifford for kbd in
897 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001672.html>.
898
8992002-10-11 Paul Eggert <eggert@twinsun.com>
900
901 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
902 (yyparse): here. This undoes some of the 2002-07-25 change.
903 Compatibility problem reported by Ralf S. Engelschall with
904 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
905
9062002-10-11 Akim Demaille <akim@epita.fr>
907
908 * tests/regression.at Characters Escapes): New.
909 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
910 characters.
911 Reported by Jan Nieuwenhuizen.
912
9132002-10-11 Akim Demaille <akim@epita.fr>
914
915 * po/id.po: New.
916
9172002-10-10 Paul Eggert <eggert@twinsun.com>
918
919 Portability fixes for bitsets; this also avoids several GCC
920 warnings.
921
922 * lib/abitset.c: Include <stddef.h>, for offsetof.
923 * lib/lbitset.c: Likewise.
924
925 * lib/abitset.c (abitset_bytes): Return a size that is aligned
926 properly for vectors of objects. Do not assume that adding a
927 header size to a multiple of a word size yields a value that is
928 properly aligned for the whole union.
929 * lib/bitsetv.c (bitsetv_alloc): Likewise.
930
931 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
932 unique names for structures.
933 * lib/ebitset.c (ebitset_bytes): Likewise.
934 * lib/lbitset.c (lbitset_bytes): Likewise.
935
936 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
937 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
938 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
939 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
940 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
941 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
942 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
943 to improve the type-checking that GCC can do.
944 * lib/bitset.c (bitset_op4_cmp): Likewise.
945 * lib/bitset_stats.c (bitset_stats_count,
946 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
947 bitset_stats_copy, bitset_stats_disjoint_p,
948 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
949 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
950 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
951 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
952 bitset_stats_and_or_cmp, bitset_stats_andn_or,
953 bitset_stats_andn_or_cmp, bitset_stats_or_and,
954 bitset_stats_or_and_cmp): Likewise.
955 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
956 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
957 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
958 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
959
960 * lib/abitset.h: Include bitset.h, not bbitset.h.
961 * lib/ebitset.h: Likewise.
962 * lib/lbitset.h: Likewise.
963
964 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
965 All instances of parameters of type enum bitset_opts are now of
966 type enum_bitset_opts, to conform to the C Standard, and similarly
967 for enum_bitset_type.
968 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
969 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
970
971 Do not use "struct bitset_struct" to mean different things in
972 different modules. Not only is this confusing, it violates
973 the C Standard, which requires that structure types in different
974 modules must be compatible if one is to be passed to the other.
975 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
976 All instances of "struct bitset_struct *" replaced with "bitset".
977 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
978 (union bitset_union, struct abitset_struct, struct ebitset_struct,
979 struct lbitset_struct, struct bitset_stats_struct): New types.
980 All uses of struct bitset_struct changed to union bitset_union,
981 etc.
982 * lib/abitset.c (struct abitset_struct, abitset,
983 struct bitset_struct): Remove.
984 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
985 struct bitset_struct): Remove.
986 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
987 bitset_struct): Remove.
988 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
989 Likewise.
990
991 Do not call a function of type T using a call that assumes the
992 function is of a different type U. Standard C requires that a
993 function must be called with a type that is compatible with its
994 definition.
995 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
996 New decls.
997 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
998 New functions.
999 * lib/ebitset.c (PFV): Remove.
1000 * lib/lbitset.c (PFV): Likewise.
1001 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
1002 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
1003 decls.
1004 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
1005 (ebitset_vtable): Use them.
1006 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
1007 lbitset_xor): New functions.
1008 (lbitset_vtable): Use them.
1009
1010 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
1011 Declare.
1012
1013 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
1014 GCC warning.
1015 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
1016 Use offsetof, for simplicity.
1017
10182002-10-06 Paul Eggert <eggert@twinsun.com>
1019
1020 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
1021 the same width as int. This reapplies a hunk of the 2002-08-12 patch
1022 <http://mail.gnu.org/pipermail/bison-patches/2002-August/001111.html>,
1023 which was inadvertently undone by the 2002-09-30 patch.
1024 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
1025 the same width as int.
1026
10272002-10-04 Paul Eggert <eggert@twinsun.com>
1028
1029 Version 1.50.
1030
1031 * configure.ac (AC_INIT), NEWS: Increment version number.
1032
1033 * doc/bison.texinfo: Minor spelling, grammar, and white space
1034 fixes.
1035 (Symbols): Mention that any negative value returned from yylex
1036 signifies end-of-input. Warn about negative chars. Mention
1037 the portable Standard C character set.
1038
1039 The GNU coding standard says CFLAGS and YFLAGS are reserved
1040 for the installer to set.
1041 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
1042 * src/Makefile.am (AM_CFLAGS): Likewise.
1043 (AM_YFLAGS): Renamed from YFLAGS.
1044
1045 Fix some MAX and MIN problems.
1046 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
1047 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
1048 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
1049 * src/reader.c (reader): Use it.
1050
1051 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
1052 POSIX 1003.1-2001 has removed fgrep.
1053
10542002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
1055
1056 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
1057 interpreted as signed.
1058 * lib/ebitset.c (ebitset_list): Fix bug.
1059
10602002-10-01 Paul Eggert <eggert@twinsun.com>
1061
1062 More fixes for 64-bit hosts and large bitsets.
1063
1064 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
1065 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
1066 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
1067 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
1068 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
1069 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
1070 bitset_count_): Likewise.
1071 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
1072 bitset_first, bitset_last): Likewise.
1073 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
1074 bitset_stats_list_reverse, bitset_stats_size,
1075 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
1076 Likewise.
1077 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
1078 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
1079 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
1080 bitsetv_reflexive_transitive_closure): Likewise.
1081 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
1082 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
1083 Likewise.
1084 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
1085 Likewise.
1086
1087 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
1088 Use size_t, not unsigned int, to count bytes.
1089 * lib/abitset.h (abitset_bytes): Likewise.
1090 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
1091 Likewise.
1092 * lib/bitset.h (bitset_bytes): Likewise.
1093 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
1094 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
1095 * lib/bitsetv.c (bitsetv_alloc): Likewise.
1096 * lib/ebitset.c (ebitset_bytes): Likewise.
1097 * lib/ebitset.h (ebitset_bytes): Likewise.
1098 * lib/lbitset.c (lbitset_bytes): Likewise.
1099 * lib/lbitset.h (lbitset_bytes): Likewise.
1100
1101 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
1102 abitset_subset_p, abitset_disjoint_p, abitset_and,
1103 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
1104 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
1105 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
1106 abitset_or_and, abitset_or_and_cmp):
1107 Use bitset_windex instead of unsigned int.
1108 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
1109 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
1110 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
1111 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
1112 Likewise.
1113 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
1114
1115 * lib/bitset.c (bitset_print):
1116 Use proper printf formats for widths of integer types.
1117 * lib/bitset_stats.c (bitset_percent_histogram_print,
1118 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
1119 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
1120 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
1121 * lib/lbitset.c (lbitset_bytes): Likewise.
1122
1123 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
1124 BITSET_SIZE_MAX): New macros.
1125 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
1126 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
1127 to BITSET_WINDEX_MAX.
1128
1129 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
1130 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
1131 since we now return the bitset_bindex type (not int).
1132
1133 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
1134 when computing sizes.
1135 * lib/ebitset.c (ebitset_elts_grow): Likewise.
1136
1137 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
1138 and avoid cast to unsigned.
1139
11402002-09-30 Akim Demaille <akim@epita.fr>
1141
1142 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
1143 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
1144 Updates from Michael Hayes.
1145
11462002-09-30 Art Haas <ahaas@neosoft.com>
1147
1148 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
1149 invocations.
1150 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
1151 defined.
1152
11532002-09-27 Akim Demaille <akim@epita.fr>
1154
1155 Version 1.49c.
1156
11572002-09-27 Akim Demaille <akim@epita.fr>
1158
1159 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
1160 (Because of AC_LIBSOURCE).
1161
11622002-09-27 Akim Demaille <akim@epita.fr>
1163
1164 Playing with Autoscan.
1165
1166 * configure.ac: Remove the old LIBOBJ tweaks.
1167 (AC_REPLACE_FUNCS): Add strrchr and strtol.
1168 * lib/strrchr.c: New.
1169 * lib/strtol.c: New, from the Coreutils 4.5.1.
1170
11712002-09-27 Akim Demaille <akim@epita.fr>
1172
1173 Playing with Autoscan.
1174
1175 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
1176 * lib/Makefile.am (libbison_a_SOURCES): No longer include
1177 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
1178 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
1179 Coreutils 4.5.1.
1180
11812002-09-24 Akim Demaille <akim@epita.fr>
1182
1183 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
1184 (Frequently Asked Questions, Parser Stack Overflow): New.
1185
11862002-09-13 Akim Demaille <akim@epita.fr>
1187
1188 Playing with autoscan.
1189
1190 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
1191 * src/files.c (skeleton_find): Remove, unused.
1192 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
1193 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
1194
11952002-09-13 Akim Demaille <akim@epita.fr>
1196
1197 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
1198 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
1199
12002002-09-13 Akim Demaille <akim@epita.fr>
1201
1202 * configure.ac: Require 2.54.
1203 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
1204 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
1205 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
1206 Remove, provided by Autoconf macros.
1207
12082002-09-12 Akim Demaille <akim@epita.fr>
1209
1210 * m4/prereq.m4: Update, from Coreutils 4.5.1.
1211
12122002-09-12 Akim Demaille <akim@epita.fr>
1213
1214 * m4/prereq.m4: Update, from Fileutils 4.1.5.
1215 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
1216 Reported by Martin Mokrejs.
1217
12182002-09-10 Akim Demaille <akim@epita.fr>
1219
1220 * src/parse-gram.y: Associate a human readable string to each
1221 token type.
1222 * tests/regression.at (Invalid inputs): Adjust.
1223
12242002-09-10 Gary V. Vaughan <gary@gnu.org>
1225
1226 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
1227 with an Autoconf-2.5x style configure.ac.
1228
12292002-09-06 Paul Eggert <eggert@twinsun.com>
1230
1231 * doc/bison.texinfo (Conditions): Make explicit that the GPL
1232 exception applies only to yacc.c. This is a modification of a
1233 patch originally suggested by Akim Demaille.
1234
12352002-09-06 Akim Demaille <akim@epita.fr>
1236
1237 * data/c.m4 (b4_copyright): Move the GPL exception comment from
1238 here to...
1239 * data/yacc.c: here.
1240
1241 * data/lalr1.cc (struct yyltype): Don't define it, since we use
1242 LocationType.
1243 (b4_ltype): Default to yy::Location from location.hh.
1244
12452002-09-04 Jim Meyering <jim@meyering.net>
1246
1247 * data/yacc.c: Guard the declaration of yytoknum also with
1248 `#ifdef YYPRINT', so it is declared only when used.
1249
12502002-09-04 Akim Demaille <akim@epita.fr>
1251
1252 * configure.in: Rename as...
1253 * configure.ac: this.
1254 Bump to 1.49c.
1255
12562002-09-04 Akim Demaille <akim@epita.fr>
1257
1258 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
1259 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
1260 translate maintainer only messages.
1261
12622002-08-12 Paul Eggert <eggert@twinsun.com>
1263
1264 Version 1.49b.
1265
1266 * Makefile.am (SUBDIRS): Remove intl.
1267 (DISTCLEANFILES): Remove.
1268 * NEWS: Mention that GNU M4 is now required. Clarify what is
1269 meant by "larger grammars". Mention the pt_BR translation.
1270 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
1271 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
1272 Bump version from 0.11.2 to 0.11.5.
1273 (BISON_PREREQ_STAGE): Remove.
1274 (AM_GNU_GETTEXT): Use external gettext.
1275 (AC_OUTPUT): Remove intl/Makefile.
1276
1277 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
1278
1279 * data/glr.c: Include string.h, for strlen.
1280 (yyreportParseError): Use size_t for yysize.
1281 (yy_yypstack): No longer nested inside yypstates, as nested
1282 functions are not portable. Do not assume size_t is the
1283 same width as int.
1284 (yypstates): Do not assume that ptrdiff_t is the same width
1285 as int, and similarly for yyposn and YYINDEX.
1286
1287 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
1288
1289 * lib/Makefile.am (INCLUDES): Do not include from the intl
1290 directory, which has been removed.
1291 * src/Makefile.am (INCLUDES): Likewise.
1292
1293 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
1294 (bitsets_sources, additional_bitsets_sources, timevars_sources):
1295 New vars.
1296
1297 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
1298 * tests/Makefile.am (EXTRA_DIST): Likewise.
1299
1300 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
1301 Do not assume that bitset_windex is the same width as unsigned.
1302
1303 * lib/abitset.c (abitset_unused_clear): Do not assume that
1304 bitset_word is the same width as int.
1305 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
1306 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
1307 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
1308 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
1309 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
1310
1311 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
1312 portability to one's complement hosts!).
1313 * lib/ebitset.c (ebitset_op1): Likewise.
1314 * lib/lbitset.c (lbitset_op1): Likewise.
1315
1316 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
1317 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
1318 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
1319 Sync with fileutils.
1320 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
1321 lib/gettext.h: Sync with diffutils.
1322
1323 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
1324 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
1325
1326 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
1327 PROTOTYPES to check for prototypes, and "defined __STDC__" to
1328 check for void *.
1329
1330 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
1331 size_t; the old version tried to do this but casted improperly.
1332 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
1333 (bitset_test): Now returns int, not unsigned long.
1334
1335 * lib/bitset_stats.c: Include "gettext.h".
1336 (_): New macro.
1337 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
1338 name locals "index", as it generates unnecessary warnings on some
1339 hosts that have an "index" function.
1340
1341 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
1342 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
1343 they need translation.
1344 * src/LR0.c (state_list_append, new_itemsets, get_state,
1345 append_states, generate_states): Likewise.
1346 * src/assoc.c (assoc_to_string): Likewise.
1347 * src/closure.c (print_closure, set_firsts, closure): Likewise.
1348 * src/gram.c (grammar_dump): Likewise.
1349 * src/injections.c (injections_compute): Likewise.
1350 * src/lalr.c (lookaheads_print): Likewise.
1351 * src/relation.c (relation_transpose): Likewise.
1352 * src/scan-gram.l: Likewise.
1353 * src/tables.c (table_grow, pack_vector): Likewise.
1354
1355 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
1356 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
1357 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
1358 * m4/mbstate_t.m4: Sync with fileutils.
1359 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
1360
1361 * po/LINGUAS: Add pt_BR.
1362 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
1363 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
1364 lib/timevar.c.
1365 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
1366 manual recommends.
1367 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
1368
1369 * src/complain.c (strerror_r): Remove decl; not needed.
1370 (strerror): Use same pattern as ../lib/error.c.
1371
1372 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
1373
1374 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
1375
1376 * src/main.c (main): Cast result of bindtextdomain and textdomain
1377 to void, to avoid a GCC warning when --disable-nls is in effect.
1378
1379 * src/scan-gram.l: Use strings rather than escapes when possible,
1380 to minimize the number of warnings from xgettext.
1381 (handle_action_dollar, handle_action_at): Don't use isdigit,
1382 as it mishandles negative chars and it may not work as expected
1383 outside the C locale.
1384
1385 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
1386 this is a GCC extension and is not portable to other compilers.
1387
1388 * src/system.h (alloca): Use same pattern as ../lib/error.c.
1389 Do not include <ctype.h>; no longer needed.
1390 Do not include <malloc.h>; no longer needed (and generates
1391 warnings on OpenBSD 3.0).
1392
1393 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
1394 it's not portable.
1395
1396 * tests/regression.at: Do not use 'cc -c input.c -o input';
1397 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
1398
1399 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
1400 exit status as failure, not just exit status 1. Sun C exits
1401 with status 2 sometimes.
1402
1403 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
1404 Use it for the two large tests.
1405
14062002-08-02 Akim Demaille <akim@epita.fr>
1407
1408 * src/conflicts.c (conflicts_output): Don't output rules never
1409 reduced here, since anyway that computation doesn't work.
1410 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
1411 (rule_useless_p, rule_never_reduced_p): New.
1412 (grammar_rules_partial_print): Use a filter instead of a range.
1413 Display the title only if needed.
1414 (grammar_rules_print): Adjust.
1415 (grammar_rules_never_reduced_report): New.
1416 * src/tables.c (action_row): Move the computation of rules never
1417 reduced to...
1418 (token_actions): here.
1419 * src/main.c (main): Make the parser before making the report, so
1420 that rules never reduced are computed.
1421 Call grammar_rules_never_reduced_report.
1422 * src/print.c (print_results): Report rules never reduced.
1423 * tests/conflicts.at, tests/reduce.at: Adjust.
1424
14252002-08-01 Akim Demaille <akim@epita.fr>
1426
1427 Instead of attaching lookaheads and duplicating the rules being
1428 reduced by a state, attach the lookaheads to the reductions.
1429
1430 * src/state.h (state_t): Remove the `lookaheads',
1431 `lookaheads_rule' member.
1432 (reductions_t): Add a `lookaheads' member.
1433 Use a regular array for the `rules'.
1434 * src/state.c (reductions_new): Initialize the lookaheads member
1435 to 0.
1436 (state_rule_lookaheads_print): Adjust.
1437 * src/state.h, src/state.c (state_reductions_find): New.
1438 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
1439 (count_rr_conflicts): Adjust.
1440 * src/lalr.c (LArule): Remove.
1441 (add_lookback_edge): Adjust.
1442 (state_lookaheads_count): New.
1443 (states_lookaheads_initialize): Merge into...
1444 (initialize_LA): this.
1445 (lalr_free): Adjust.
1446 * src/main.c (main): Don't free nullable and derives too early: it
1447 is used by --verbose.
1448 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
1449
14502002-08-01 Akim Demaille <akim@epita.fr>
1451
1452 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
1453 `rule_number_t**'.
1454 (set_derives, free_derives): Rename as...
1455 (derives_compute, derives_free): this.
1456 Adjust all dependencies.
1457 * src/nullable.c (set_nullable, free_nullable): Rename as...
1458 (nullable_compute, nullable_free): these.
1459 (rule_list_t): Store rule_t *, not rule_number_t.
1460 * src/state.c (state_rule_lookaheads_print): Directly compare rule
1461 pointers, instead of their numbers.
1462 * src/main.c (main): Call nullable_free, and derives_free earlier,
1463 as they were lo longer used.
1464
14652002-08-01 Akim Demaille <akim@epita.fr>
1466
1467 * lib/timevar.c (get_time): Include children time.
1468 * src/lalr.h (LA, LArule): Don't export them: used with the
1469 state_t.
1470 * src/lalr.c (LA, LArule): Static.
1471 * src/lalr.h, src/lalr.c (lalr_free): New.
1472 * src/main.c (main): Call it.
1473 * src/tables.c (pack_vector): Check whether loc is >= to the
1474 table_size, not >.
1475 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
1476 (tables_generate): do it, since that's also it which allocates
1477 them.
1478 Don't free LA and LArule, main does.
1479
14802002-07-31 Akim Demaille <akim@epita.fr>
1481
1482 Separate parser tables computation and output.
1483
1484 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
1485 (conflict_list, conflict_list_cnt, table, check, table_ninf)
1486 (yydefgoto, yydefact, high): Move to...
1487 * src/tables.h, src/tables.c: here.
1488 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
1489 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
1490 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
1491 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
1492 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
1493 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
1494 (action_row, save_row, token_actions, save_column, default_goto)
1495 (goto_actions, sort_actions, matching_state, pack_vector)
1496 (table_ninf_remap, pack_table, prepare_actions): Move to...
1497 * src/tables.c: here.
1498 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
1499 * src/output.c (token_actions, output_base, output_conflicts)
1500 (output_check): Merge into...
1501 (prepare_actions): this.
1502 (actions_output): Rename as...
1503 (user_actions_output): this.
1504 * src/main.c (main): Call tables_generate and tables_free.
1505
15062002-07-31 Akim Demaille <akim@epita.fr>
1507
1508 Steal GCC's --time-report support.
1509
1510 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
1511 stolen/adjusted from GCC.
1512 * m4/stage.m4: Remove time related checks.
1513 * m4/timevar.m4: New.
1514 * configure.in: Adjust.
1515 * src/system.h: Adjust to using timevar.h.
1516 * src/getargs.h, src/getargs.c: Support trace_time for
1517 --trace=time.
1518 * src/main.c (stage): Remove.
1519 (main): Replace `stage' invocations with timevar calls.
1520 * src/output.c: Insert pertinent timevar calls.
1521
15222002-07-31 Akim Demaille <akim@epita.fr>
1523
1524 Let --trace have arguments.
1525
1526 * src/getargs.h (enum trace_e): New.
1527 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
1528 (long_options, short_options): --trace/-T takes an optional
1529 argument.
1530 Change all the uses of trace_flag to reflect the new flags.
1531 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
1532
1533 Strengthen `stage' portability.
1534
1535 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
1536 * configure.in: Use it.
1537 Don't check for malloc.h and sys/times.h.
1538 * src/system.h: Include them when appropriate.
1539 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
1540 times and struct tms are available.
1541
15422002-07-30 Akim Demaille <akim@epita.fr>
1543
1544 In verbose parse error message, don't report `error' as an
1545 expected token.
1546 * tests/actions.at (Printers and Destructors): Adjust.
1547 * tests/calc.at (Calculator $1): Adjust.
1548 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
1549 error message, do not report the parser accepts the error token in
1550 that state.
1551
15522002-07-30 Akim Demaille <akim@epita.fr>
1553
1554 Normalize conflict related messages.
1555
1556 * src/complain.h, src/complain.c (warn, complain): New.
1557 * src/conflicts.c (conflicts_print): Use them.
1558 (conflict_report_yacc): New, extracted from...
1559 (conflicts_print): here.
1560 * tests/conflicts.at, tests/existing.at: Adjust.
1561
15622002-07-30 Akim Demaille <akim@epita.fr>
1563
1564 Report rules which are never reduced by the parser: those hidden
1565 by conflicts.
1566
1567 * src/LR0.c (save_reductions): Don't make the final state too
1568 different: save its reduction (accept) instead of having a state
1569 without any action (no shift or goto, no reduce).
1570 Note: the final state is now a ``regular'' state, i.e., the
1571 parsers now contain `reduce 0' as default reduction.
1572 Nevertheless, since they decide to `accept' when yystate =
1573 final_state, they still will not reduce rule 0.
1574 * src/print.c (print_actions, print_reduction): Adjust.
1575 * src/output.c (action_row): Track reduced rules.
1576 (token_actions): Report rules never reduced.
1577 * tests/conflicts.at, tests/regression.at: Adjust.
1578
15792002-07-30 Akim Demaille <akim@epita.fr>
1580
1581 `stage' was accidently included in a previous patch.
1582 Initiate its autoconfiscation.
1583
1584 * configure.in: Look for malloc.h and sys/times.h.
1585 * src/main.c (stage): Adjust.
1586 Report only when trace_flag.
1587
15882002-07-29 Akim Demaille <akim@epita.fr>
1589
1590 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
1591 state_number_t.
1592 (errs_t): symbol_t*, not symbol_number_t.
1593 (reductions_t): rule_t*, not rule_number_t.
1594 (FOR_EACH_SHIFT): New.
1595 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
1596 * src/print.c, src/print_graph.c: Adjust.
1597
15982002-07-29 Akim Demaille <akim@epita.fr>
1599
1600 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
1601
1602 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
1603 (endtoken, accept): these.
1604 * src/reader.c (reader): Set endtoken's default tag to "$end".
1605 Set undeftoken's tag to "$undefined" instead of "$undefined.".
1606 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
1607 Adjust.
1608
16092002-07-29 Akim Demaille <akim@epita.fr>
1610
1611 * src/reduce.c (reduce_grammar): When the language is empty,
1612 complain about the start symbol, not the axiom.
1613 Use its location.
1614 * tests/reduce.at (Empty Language): New.
1615
16162002-07-26 Akim Demaille <akim@epita.fr>
1617
1618 * src/reader.h, src/reader.c (gram_error): ... can't get
1619 yycontrol without making too strong assumptions on the parser
1620 itself.
1621 * src/output.c (prepare_tokens): Use the real 0th value of
1622 token_translations instead of `0'.
1623 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
1624 visible here.
1625 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
1626 for the time being: %locations ought to provide it to yyerror.
1627
16282002-07-25 Akim Demaille <akim@epita.fr>
1629
1630 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
1631 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
1632 * tests/regression.at (Web2c Actions): Adjust.
1633
16342002-07-25 Akim Demaille <akim@epita.fr>
1635
1636 Stop storing rules from 1 to nrules + 1.
1637
1638 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
1639 * src/nullable.c, src/output.c, src/print.c, src/reader.c
1640 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
1641 Iterate from 0 to nrules.
1642 Use rule_number_as_item_number and item_number_as_rule_number.
1643 Adjust to `derive' now containing possibly 0.
1644 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
1645 Handle the `- 1' part in rule numbers from/to item numbers.
1646 * src/conflicts.c (log_resolution): Fix the message which reversed
1647 shift and reduce.
1648 * src/output.c (action_row): Initialize default_rule to -1.
1649 (token_actions): Adjust.
1650 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
1651 expected output.
1652 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
1653
16542002-07-25 Akim Demaille <akim@epita.fr>
1655
1656 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
1657 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
1658 (b4_c_knr_arg_decl): New.
1659 * data/yacc.c: Use it to define yysymprint, yydestruct, and
1660 yyreport_parse_error.
1661
16622002-07-25 Akim Demaille <akim@epita.fr>
1663
1664 * data/yacc.c (yyreport_parse_error): New, extracted from...
1665 (yyparse): here.
1666 (yydestruct, yysymprint): Move above yyparse.
1667 Be K&R compliant.
1668
16692002-07-25 Akim Demaille <akim@epita.fr>
1670
1671 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
1672 replace...
1673 (b4_sint_type, b4_uint_type): these.
1674 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
1675 * tests/regression.at (Web2c Actions): Adjust.
1676
16772002-07-25 Akim Demaille <akim@epita.fr>
1678
1679 * src/gram.h (TIEM_NUMBER_MAX): New.
1680 (item_number_of_rule_number, rule_number_of_item_number): Rename
1681 as...
1682 (rule_number_as_item_number, item_number_as_rule_number): these.
1683 Adjust dependencies.
1684 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
1685 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
1686 (symbol_number_to_vector_number): New.
1687 (order): Of vector_number_t* type.
1688 (base_t, BASE_MAX, BASE_MIN): New.
1689 (froms, tos, width, pos, check): Of base_t type.
1690 (action_number_t, ACTION_MIN, ACTION_MAX): New.
1691 (actrow): Of action_number_t type.
1692 (conflrow): Of unsigned int type.
1693 (table_ninf, base_ninf): New.
1694 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
1695 (muscle_insert_int_table, muscle_insert_base_table)
1696 (muscle_insert_rule_number_table): New.
1697 (prepare_tokens): Output `toknum' as int_table.
1698 (action_row): Returns a rule_number_t.
1699 Use ACTION_MIN, not SHRT_MIN.
1700 (token_actions): yydefact is rule_number_t*.
1701 (table_ninf_remap): New.
1702 (pack_table): Use it for `base' and `table'.
1703 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
1704 replaced with...
1705 (YYPACT_NINF, YYTABLE_NINF): these.
1706 (yypact, yytable): Compute their types instead of hard-coded
1707 `short'.
1708 * tests/regression.at (Web2c Actions): Adjust.
1709
17102002-07-19 Akim Demaille <akim@epita.fr>
1711
1712 * src/scan-gram.l (id): Can start with an underscore.
1713
17142002-07-16 Akim Demaille <akim@epita.fr>
1715
1716 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
1717 Adjust all former `associativity' dependencies.
1718 * src/symtab.c (symbol_new): Default associativity is `undef', not
1719 `right'.
1720 (symbol_check_alias_consistence): Adjust.
1721
17222002-07-09 Akim Demaille <akim@epita.fr>
1723
1724 * doc/bison.texinfo: Properly set the ``header'' part.
1725 Use @dircategory ``GNU programming tools'' as per Texinfo's
1726 documentation.
1727 Use @copying.
1728
17292002-07-09 Akim Demaille <akim@epita.fr>
1730
1731 * lib/quotearg.h: Protect against multiple inclusions.
1732 * src/location.h (location_t): Add a `file' member.
1733 (LOCATION_RESET, LOCATION_PRINT): Adjust.
1734 * src/complain.c (warn_at, complain_at, fatal_at): Drop
1735 `error_one_per_line' support.
1736
17372002-07-09 Akim Demaille <akim@epita.fr>
1738
1739 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
1740 * src/reader.c (lineno): Remove.
1741 Adjust all dependencies.
1742 (get_merge_function): Take a location and use complain_at.
1743 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
1744 * tests/regression.at (Invalid inputs, Mixing %token styles):
1745 Adjust.
1746
17472002-07-09 Akim Demaille <akim@epita.fr>
1748
1749 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
1750 recovery rule, and forbid extensions when --yacc.
1751 (gram_error): Use complain_at.
1752 * src/reader.c (reader): Exit if there were parse errors.
1753
17542002-07-09 Akim Demaille <akim@epita.fr>
1755
1756 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
1757 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
1758 Reported by R Blake <blakers@mac.com>.
1759
17602002-07-09 Akim Demaille <akim@epita.fr>
1761
1762 * data/yacc.c: Output the copyright notive in the header.
1763
17642002-07-03 Akim Demaille <akim@epita.fr>
1765
1766 * src/output.c (froms, tos): Are state_number_t.
1767 (save_column): sp, sp1, and sp2 are state_number_t.
1768 (prepare): Rename `final' as `final_state_number', `nnts' as
1769 `nterms_number', `nrules' as `rules_number', `nstates' as
1770 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
1771 unused.
1772 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
1773 * data/lalr1.cc (nsym_): Remove, unused.
1774
17752002-07-03 Akim Demaille <akim@epita.fr>
1776
1777 * src/lalr.h, src/lalr.c (goto_number_t): New.
1778 * src/lalr.c (goto_list_t): New.
1779 Propagate them.
1780 * src/nullable.c (rule_list_t): New.
1781 Propagate.
1782 * src/types.h: Remove.
1783
17842002-07-03 Akim Demaille <akim@epita.fr>
1785
1786 * src/closure.c (print_fderives): Use rule_rhs_print.
1787 * src/derives.c (print_derives): Use rule_rhs_print.
1788 (rule_list_t): New, replaces `shorts'.
1789 (set_derives): Add comments.
1790 * tests/sets.at (Nullable, Firsts): Adjust.
1791
17922002-07-03 Akim Demaille <akim@epita.fr>
1793
1794 * src/output.c (prepare_actions): Free `tally' and `width'.
1795 (prepare_actions): Allocate and free `order'.
1796 * src/symtab.c (symbols_free): Free `symbols'.
1797 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
1798 * src/output.c (m4_invoke): Move to...
1799 * src/scan-skel.l: here.
1800 (<<EOF>>): Close yyout, and free its name.
1801
18022002-07-03 Akim Demaille <akim@epita.fr>
1803
1804 Fix some memory leaks, and fix a bug: state 0 was examined twice.
1805
1806 * src/LR0.c (new_state): Merge into...
1807 (state_list_append): this.
1808 (new_states): Merge into...
1809 (generate_states): here.
1810 (set_states): Don't ensure a proper `errs' state member here, do it...
1811 * src/conflicts.c (conflicts_solve): here.
1812 * src/state.h, src/state.c: Comment changes.
1813 (state_t): Rename member `shifts' as `transitions'.
1814 Adjust all dependencies.
1815 (errs_new): For consistency, also take the values as argument.
1816 (errs_dup): Remove.
1817 (state_errs_set): New.
1818 (state_reductions_set, state_transitions_set): Assert that no
1819 previous value was assigned.
1820 (state_free): New.
1821 (states_free): Use it.
1822 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
1823 temporary storage: use `errs' and `nerrs' as elsewhere.
1824 (set_conflicts): Allocate and free this `errs'.
1825
18262002-07-02 Akim Demaille <akim@epita.fr>
1827
1828 * lib/libiberty.h: New.
1829 * lib: Update the bitset implementation from upstream.
1830 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
1831 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
1832 * src/main.c: Adjust bitset stats calls.
1833
18342002-07-01 Paul Eggert <eggert@twinsun.com>
1835
1836 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
1837 char, so that negative chars don't collide with $.
1838
18392002-06-30 Akim Demaille <akim@epita.fr>
1840
1841 Have the GLR tests be `warning' checked, and fix the warnings.
1842
1843 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
1844 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
1845 (yyremoveDeletes): `yyi' and `yyj' are size_t.
1846 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
1847 (yyaddDeferredAction): static.
1848 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
1849 (yyreportParseError): yyprefix is const.
1850 yytokenp is used only when verbose.
1851 (yy__GNUC__): Replace with __GNUC__.
1852 (yypdumpstack): yyi is size_t.
1853 (yypreference): Un-yy local variables and arguments, to avoid
1854 clashes with `yyr1'. Anyway, we are not in the user name space.
1855 (yytname_size): be an int, as is compared with ints.
1856 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
1857 Use them.
1858 * tests/cxx-gram.at: Use quotation to protect $1.
1859 Use AT_COMPILE to enable warnings hunts.
1860 Prototype yylex and yyerror.
1861 `Use' argc.
1862 Include `string.h', not `strings.h'.
1863 Produce and prototype stmtMerge only when used.
1864 yylex takes a location.
1865
18662002-06-30 Akim Demaille <akim@epita.fr>
1867
1868 We spend a lot of time in quotearg, in particular when --verbose.
1869
1870 * src/symtab.c (symbol_get): Store a quoted version of the key.
1871 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
1872 Adjust all callers.
1873
18742002-06-30 Akim Demaille <akim@epita.fr>
1875
1876 * src/state.h (reductions_t): Rename member `nreds' as num.
1877 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
1878 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
1879
18802002-06-30 Akim Demaille <akim@epita.fr>
1881
1882 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
1883 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
1884 (shifts_to): Rename as...
1885 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
1886 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
1887 (TRANSITION_IS_DISABLED, transitions_to): these.
1888
18892002-06-30 Akim Demaille <akim@epita.fr>
1890
1891 * src/print.c (print_shifts, print_gotos): Merge into...
1892 (print_transitions): this.
1893 (print_transitions, print_errs, print_reductions): Align the
1894 lookaheads columns.
1895 (print_core, print_transitions, print_errs, print_state,
1896 print_grammar): Output empty lines separator before, not after.
1897 (state_default_rule_compute): Rename as...
1898 (state_default_rule): this.
1899 * tests/conflicts.at (Defaulted Conflicted Reduction),
1900 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
1901 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
1902
19032002-06-30 Akim Demaille <akim@epita.fr>
1904
1905 Display items as we display rules.
1906
1907 * src/gram.h, src/gram.c (rule_lhs_print): New.
1908 * src/gram.c (grammar_rules_partial_print): Use it.
1909 * src/print.c (print_core): Likewise.
1910 * tests/conflicts.at (Defaulted Conflicted Reduction),
1911 (Unresolved SR Conflicts): Adjust.
1912 (Unresolved SR Conflicts): Adjust and rename as...
1913 (Resolved SR Conflicts): this, as was meant.
1914 * tests/regression.at (Web2c Report): Adjust.
1915
19162002-06-30 Akim Demaille <akim@epita.fr>
1917
1918 * src/print.c (state_default_rule_compute): New, extracted from...
1919 (print_reductions): here.
1920 Pessimize, but clarify the code.
1921 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
1922
19232002-06-30 Akim Demaille <akim@epita.fr>
1924
1925 * src/output.c (action_row): Let default_rule be always a rule
1926 number.
1927
19282002-06-30 Akim Demaille <akim@epita.fr>
1929
1930 * src/closure.c (print_firsts, print_fderives, closure):
1931 Use BITSET_EXECUTE.
1932 * src/lalr.c (lookaheads_print): Likewise.
1933 * src/state.c (state_rule_lookaheads_print): Likewise.
1934 * src/print_graph.c (print_core): Likewise.
1935 * src/print.c (print_reductions): Likewise.
1936 * src/output.c (action_row): Likewise.
1937 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
1938
19392002-06-30 Akim Demaille <akim@epita.fr>
1940
1941 * src/print_graph.c: Use report_flag.
1942
19432002-06-30 Akim Demaille <akim@epita.fr>
1944
1945 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
1946 to...
1947 * src/relation.h, src/relation.c (traverse, relation_digraph)
1948 (relation_print, relation_transpose): New.
1949
19502002-06-30 Akim Demaille <akim@epita.fr>
1951
1952 * src/state.h, src/state.c (shifts_to): New.
1953 * src/lalr.c (build_relations): Use it.
1954
19552002-06-30 Akim Demaille <akim@epita.fr>
1956
1957 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
1958 (item_number_of_rule_number, rule_number_of_item_number): New.
1959 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
1960 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
1961 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
1962 Propagate their use.
1963 Much remains to be done, in particular wrt `shorts' from types.h.
1964
19652002-06-30 Akim Demaille <akim@epita.fr>
1966
1967 * src/symtab.c (symbol_new): Initialize the `printer' member.
1968
19692002-06-30 Akim Demaille <akim@epita.fr>
1970
1971 * src/LR0.c (save_reductions): Remove, replaced by...
1972 * src/state.h, src/state.c (state_reductions_set): New.
1973 (reductions, errs): Rename as...
1974 (reductions_t, errs_t): these.
1975 Adjust all dependencies.
1976
19772002-06-30 Akim Demaille <akim@epita.fr>
1978
1979 * src/LR0.c (state_list_t, state_list_append): New.
1980 (first_state, last_state): Now symbol_list_t.
1981 (this_state): Remove.
1982 (new_itemsets, append_states, save_reductions): Take a state_t as
1983 argument.
1984 (set_states, generate_states): Adjust.
1985 (save_shifts): Remove, replaced by...
1986 * src/state.h, src/state.c (state_shifts_set): New.
1987 (shifts): Rename as...
1988 (shifts_t): this.
1989 Adjust all dependencies.
1990 * src/state.h (state_t): Remove the `next' member.
1991
19922002-06-30 Akim Demaille <akim@epita.fr>
1993
1994 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
1995 escaped in slot 0.
1996
19972002-06-30 Akim Demaille <akim@epita.fr>
1998
1999 Use hash.h for the state hash table.
2000
2001 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
2002 (allocate_storage): Use state_hash_new.
2003 (free_storage): Use state_hash_free.
2004 (new_state, get_state): Adjust.
2005 * src/lalr.h, src/lalr.c (states): Move to...
2006 * src/states.h (state_t): Remove the `link' member, no longer
2007 used.
2008 * src/states.h, src/states.c: here.
2009 (state_hash_new, state_hash_free, state_hash_lookup)
2010 (state_hash_insert, states_free): New.
2011 * src/states.c (state_table, state_compare, state_hash): New.
2012 * src/output.c (output_actions): Do not free states now, since we
2013 still need to know the final_state number in `prepare', called
2014 afterwards. Do it...
2015 * src/main.c (main): here: call states_free after `output'.
2016
20172002-06-30 Akim Demaille <akim@epita.fr>
2018
2019 * src/state.h, src/state.c (state_new): New, extracted from...
2020 * src/LR0.c (new_state): here.
2021 * src/state.h (STATE_ALLOC): Move to...
2022 * src/state.c: here.
2023 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
2024 * src/state.h, src/state.c: here.
2025
20262002-06-30 Akim Demaille <akim@epita.fr>
2027
2028 * src/reader.c (gensym): Rename as...
2029 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
2030 (getsym): Rename as...
2031 (symbol_get): this.
2032
20332002-06-30 Akim Demaille <akim@epita.fr>
2034
2035 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
2036 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
2037 * src/output.c, src/print.c, src/print_graph.c: Propagate.
2038 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
2039
20402002-06-30 Akim Demaille <akim@epita.fr>
2041
2042 Make the test suite pass with warnings checked.
2043
2044 * tests/actions.at (Printers and Destructors): Improve.
2045 Avoid unsigned vs. signed issues.
2046 * tests/calc.at: Don't exercise the scanner here, do it...
2047 * tests/input.at (Torturing the Scanner): here.
2048
20492002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2050
2051 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
2052 reorganize first lines parallel to yacc.c.
2053
20542002-06-28 Akim Demaille <akim@epita.fr>
2055
2056 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
2057 (b4_token_enum, b4_token_defines): New, factored from...
2058 * data/lalr1.cc, data/yacc.c, glr.c: here.
2059
20602002-06-28 Akim Demaille <akim@epita.fr>
2061
2062 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
2063 unused variables.
2064 * src/output.c (merger_output): static.
2065
20662002-06-28 Akim Demaille <akim@epita.fr>
2067
2068 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
2069 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
2070 pacify GCC.
2071 * src/output.c (save_row): Initialize all the variables to pacify GCC.
2072
20732002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2074
2075 Accumulated changelog for new GLR parsing features.
2076
2077 * src/conflicts.c (count_total_conflicts): Change name to
2078 conflicts_total_count.
2079 * src/conflicts.h: Ditto.
2080 * src/output.c (token_actions): Use the new name.
2081 (output_conflicts): Change conflp => conflict_list_heads, and
2082 confl => conflict_list for better readability.
2083 * data/glr.c: Use the new names.
2084 * NEWS: Add self to GLR announcement.
2085
2086 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
2087
2088 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
2089 Akim Demaille.
2090
2091 * data/bison.glr: Change name to glr.c
2092 * data/glr.c: Renamed from bison.glr.
2093 * data/Makefile.am: Add glr.c
2094
2095 * src/getargs.c:
2096
2097 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
2098 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
2099
2100 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2101
2102 * data/bison.glr: Be sure to restore the
2103 current #line when returning to the skeleton contents after having
2104 exposed the input file's #line.
2105
2106 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2107
2108 * data/bison.glr: Bring up to date with changes to bison.simple.
2109
2110 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2111
2112 * data/bison.glr: Correct definitions that use b4_prefix.
2113 Various reformatting.
2114 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
2115 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
2116 yytokenp argument; now part of stack.
2117 (yychar): Define to behave as documented.
2118 (yyclearin): Ditto.
2119
2120 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2121
2122 * src/reader.h: Add declaration for free_merger_functions.
2123
2124 * src/reader.c (merge_functions): New variable.
2125 (get_merge_function): New function.
2126 (free_merger_functions): New function.
2127 (readgram): Check for %prec that is not followed by a symbol.
2128 Handle %dprec and %merge declarations.
2129 (packgram): Initialize dprec and merger fields in rules array.
2130
2131 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
2132 conflict_list_cnt, conflict_list_free): New variables.
2133 (table_grow): Also grow conflict_table.
2134 (prepare_rules): Output dprec and merger tables.
2135 (conflict_row): New function.
2136 (action_row): Output conflict lists for GLR parser. Don't use
2137 default reduction in conflicted states for GLR parser so that there
2138 are spaces for the conflict lists.
2139 (save_row): Also save conflict information.
2140 (token_actions): Allocate conflict list.
2141 (merger_output): New function.
2142 (pack_vector): Pack conflict table, too.
2143 (output_conflicts): New function to output yyconflp and yyconfl.
2144 (output_check): Allocate conflict_tos.
2145 (output_actions): Output conflict tables, also.
2146 (output_skeleton): Output b4_mergers definition.
2147 (prepare): Output b4_max_rhs_length definition.
2148 Use 'bison.glr' as default skeleton for GLR parsers.
2149
2150 * src/gram.c (glr_parser): New flag.
2151 (grammar_free): Call free_merger_functions.
2152
2153 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
2154 all pairs of conflicting reductions, rather than just all tokens
2155 causing conflicts. Needed to size conflict tables.
2156 (conflicts_output): Modify call to count_rr_conflicts for new
2157 interface.
2158 (conflicts_print): Ditto.
2159 (count_total_conflicts): New function.
2160
2161 * src/reader.h (merger_list): New type.
2162 (merge_functions): New variable.
2163
2164 * src/lex.h (tok_dprec, tok_merge): New token types.
2165
2166 * src/gram.h (rule_s): Add dprec and merger fields.
2167 (glr_parser): New flag.
2168
2169 * src/conflicts.h (count_total_conflicts): New function.
2170
2171 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
2172
2173 * doc/bison.texinfo (Generalized LR Parsing): New section.
2174 (GLR Parsers): New section.
2175 (Language and Grammar): Mention GLR parsing.
2176 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
2177 Correct typo ("tge" -> "the").
2178
2179 * data/bison.glr: New skeleton for GLR parsing.
2180
2181 * tests/cxx-gram.at: New tests for GLR parsing.
2182
2183 * tests/testsuite.at: Include cxx-gram.at.
2184
2185 * tests/Makefile.am: Add cxx-gram.at.
2186
2187 * src/parse-gram.y:
2188
2189 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
2190
2191 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
2192
21932002-06-27 Akim Demaille <akim@epita.fr>
2194
2195 * src/options.h, src/options.c: Remove.
2196 * src/getargs.c (short_options, long_options): New.
2197
21982002-06-27 Akim Demaille <akim@epita.fr>
2199
2200 * data/bison.simple, data/bison.c++: Rename as...
2201 * data/yacc.c, data/lalr1.cc: these.
2202 * doc/bison.texinfo (Environment Variables): Remove.
2203
22042002-06-25 Raja R Harinath <harinath@cs.umn.edu>
2205
2206 * src/getargs.c (report_argmatch): Initialize strtok().
2207
22082002-06-20 Akim Demaille <akim@epita.fr>
2209
2210 * data/bison.simple (b4_symbol_actions): New, replaces...
2211 (b4_symbol_destructor, b4_symbol_printer): these.
2212 (yysymprint): Be sure to call YYPRINT only for tokens, and using
2213 user token numbers.
2214
22152002-06-20 Akim Demaille <akim@epita.fr>
2216
2217 * data/bison.simple (yydestructor): Rename as...
2218 (yydestruct): this.
2219
22202002-06-20 Akim Demaille <akim@epita.fr>
2221
2222 * src/symtab.h, src/symtab.c (symbol_type_set)
2223 (symbol_destructor_set, symbol_precedence_set): The location is
2224 the last argument.
2225 Adjust all callers.
2226
22272002-06-20 Akim Demaille <akim@epita.fr>
2228
2229 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
2230 internals.
2231 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
2232 Takes a location.
2233 * src/symtab.h, src/symtab.c (symbol_class_set)
2234 (symbol_user_token_number_set): Likewise.
2235 Adjust all callers.
2236 Promote complain_at.
2237 * tests/input.at (Type Clashes): Adjust.
2238
22392002-06-20 Akim Demaille <akim@epita.fr>
2240
2241 * data/bison.simple (YYLEX): Fix the declaration when
2242 %pure-parser.
2243
22442002-06-20 Akim Demaille <akim@epita.fr>
2245
2246 * data/bison.simple (yysymprint): Don't print the token number,
2247 just its name.
2248 * tests/actions.at (Destructors): Rename as...
2249 (Printers and Destructors): this.
2250 Also exercise %printer.
2251
22522002-06-20 Akim Demaille <akim@epita.fr>
2253
2254 * data/bison.simple (YYDSYMPRINT): New.
2255 Use it to remove many of the #if YYDEBUG/if (yydebug).
2256
22572002-06-20 Akim Demaille <akim@epita.fr>
2258
2259 * src/symtab.h, src/symtab.c (symbol_t): printer and
2260 printer_location are new members.
2261 (symbol_printer_set): New.
2262 * src/parse-gram.y (PERCENT_PRINTER): New token.
2263 Handle its associated rule.
2264 * src/scan-gram.l: Adjust.
2265 (handle_destructor_at, handle_destructor_dollar): Rename as...
2266 (handle_symbol_code_at, handle_symbol_code_dollar): these.
2267 * src/output.c (symbol_printers_output): New.
2268 (output_skeleton): Call it.
2269 * data/bison.simple (yysymprint): New. Cannot be named yyprint
2270 since there are already many grammar files with a user `yyprint'.
2271 Replace the calls to YYPRINT to calls to yysymprint.
2272 * tests/calc.at: Adjust.
2273 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
2274 taking advantage of parser very internal details (stack size!).
2275
22762002-06-20 Akim Demaille <akim@epita.fr>
2277
2278 * src/scan-gram.l: Complete the scanner with the missing patterns
2279 to pacify Flex.
2280 Use `quote' and `symbol_tag_get' where appropriate.
2281
22822002-06-19 Akim Demaille <akim@epita.fr>
2283
2284 * tests/actions.at (Destructors): Augment to test locations.
2285 * data/bison.simple (yydestructor): Pass it the current location
2286 if locations are enabled.
2287 Prototype only when __STDC__ or C++.
2288 Change the argument names to move into the yy name space: there is
2289 user code here.
2290
22912002-06-19 Akim Demaille <akim@epita.fr>
2292
2293 * data/bison.simple (b4_pure_if): New.
2294 Use it instead of #ifdef YYPURE.
2295
22962002-06-19 Akim Demaille <akim@epita.fr>
2297
2298 * data/bison.simple (b4_location_if): New.
2299 Use it instead of #ifdef YYLSP_NEEDED.
2300
23012002-06-19 Akim Demaille <akim@epita.fr>
2302
2303 Prepare @$ in %destructor, but currently don't bind it in the
2304 skeleton, as %location use is not cleaned up yet.
2305
2306 * src/scan-gram.l (handle_dollar, handle_destructor_at)
2307 (handle_action_at): New.
2308 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
2309 a braced_code_t and a location as additional arguments.
2310 (handle_destructor_dollar): Instead of requiring `b4_eval', just
2311 unquote one when outputting `b4_dollar_dollar'.
2312 Adjust callers.
2313 * data/bison.simple (b4_eval): Remove.
2314 (b4_symbol_destructor): Adjust.
2315 * tests/input.at (Invalid @n): Adjust.
2316
23172002-06-19 Zack Weinberg <zack@codesourcery.com>
2318
2319 * doc/bison.texinfo: Document ability to have multiple
2320 prologue sections.
2321
23222002-06-18 Akim Demaille <akim@epita.fr>
2323
2324 * src/files.c (compute_base_names): When computing the output file
2325 names from the input file name, strip the directory part.
2326
23272002-06-18 Akim Demaille <akim@epita.fr>
2328
2329 * data/bison.simple.new: Comment changes.
2330 Reported by Andreas Schwab.
2331
23322002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
2333
2334 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
2335 there are no `label `yyoverflowlab' defined but not used' warnings
2336 when yyoverflow is defined.
2337
23382002-06-18 Akim Demaille <akim@epita.fr>
2339
2340 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
2341 new member.
2342 (symbol_destructor_set): Adjust.
2343 * src/output.c (symbol_destructors_output): Output the destructor
2344 locations.
2345 Output the symbol name.
2346 * data/bison.simple (b4_symbol_destructor): Adjust.
2347
23482002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
2349 and Akim Demaille <akim@epita.fr>
2350
2351 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
2352 what's left on the stack when the error recovery hits EOF.
2353 * tests/actions.at (Destructors): Complete to exercise this case.
2354
23552002-06-17 Akim Demaille <akim@epita.fr>
2356
2357 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
2358 arguments is really empty, not only equal to `[]'.
2359 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
2360 member.
2361 (symbol_destructor_set): New.
2362 * src/output.c (symbol_destructors_output): New.
2363 * src/reader.h (brace_code_t, current_braced_code): New.
2364 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
2365 (handle_dollar): Rename as...
2366 (handle_action_dollar): this.
2367 (handle_destructor_dollar): New.
2368 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
2369 (grammar_declaration): Use it.
2370 * data/bison.simple (yystos): Is always defined.
2371 (yydestructor): New.
2372 * tests/actions.at (Destructors): New.
2373 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
2374
23752002-06-17 Akim Demaille <akim@epita.fr>
2376
2377 * src/symlist.h, src/symlist.c (symbol_list_length): New.
2378 * src/scan-gram.l (handle_dollar, handle_at): Compute the
2379 rule_length only when needed.
2380 * src/output.c (actions_output, token_definitions_output): Output
2381 the full M4 block.
2382 * src/symtab.c: Don't access directly to the symbol tag, use
2383 symbol_tag_get.
2384 * src/parse-gram.y: Use symbol_list_free.
2385
23862002-06-17 Akim Demaille <akim@epita.fr>
2387
2388 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
2389 (symbol_list_prepend, get_type_name): Move to...
2390 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
2391 (symbol_list_prepend, symbol_list_n_type_name_get): here.
2392 Adjust all callers.
2393 (symbol_list_free): New.
2394 * src/scan-gram.l (handle_dollar): Takes a location.
2395 * tests/input.at (Invalid $n): Adjust.
2396
23972002-06-17 Akim Demaille <akim@epita.fr>
2398
2399 * src/reader.h, src/reader.c (symbol_list_new): Export it.
2400 (symbol_list_prepend): New.
2401 * src/parse-gram.y (%union): `list' is a new member.
2402 (symbols.1): New, replaces...
2403 (terms_to_prec.1, nterms_to_type.1): these.
2404 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
2405 Take a location as additional argument.
2406 Adjust all callers.
2407
24082002-06-15 Akim Demaille <akim@epita.fr>
2409
2410 * src/parse-gram.y: Move %token in the declaration section so that
2411 we don't depend upon CVS Bison.
2412
24132002-06-15 Akim Demaille <akim@epita.fr>
2414
2415 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
2416 * src/print.c (print_core): Use it.
2417
24182002-06-15 Akim Demaille <akim@epita.fr>
2419
2420 * src/conflicts.c (log_resolution): Accept the rule involved in
2421 the sr conflicts instead of the lookahead number that points to
2422 that rule.
2423 (flush_reduce): Accept the current lookahead vector as argument,
2424 instead of the index in LA.
2425 (resolve_sr_conflict): Accept the current number of lookahead
2426 bitset to consider for the STATE, instead of the index in LA.
2427 (set_conflicts): Adjust.
2428 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
2429
24302002-06-15 Akim Demaille <akim@epita.fr>
2431
2432 * src/state.h (state_t): Replace the `lookaheadsp' member, a
2433 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
2434 Adjust all dependencies.
2435 * src/lalr.c (initialize_lookaheads): Split into...
2436 (states_lookaheads_count, states_lookaheads_initialize): these.
2437 (lalr): Adjust.
2438
24392002-06-15 Akim Demaille <akim@epita.fr>
2440
2441 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
2442 out of...
2443 (grammar_rules_print): here.
2444 * src/reduce.c (reduce_output): Use it.
2445 * tests/reduce.at (Useless Rules, Reduced Automaton)
2446 (Underivable Rules): Adjust.
2447
24482002-06-15 Akim Demaille <akim@epita.fr>
2449
2450 Copy BYacc's nice way to report the grammar.
2451
2452 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
2453 New.
2454 Don't print the rules' location, it is confusing and useless.
2455 (rule_print): Use grammar_rhs_print.
2456 * src/print.c (print_grammar): Use grammar_rules_print.
2457
24582002-06-15 Akim Demaille <akim@epita.fr>
2459
2460 Complete and rationalize `useless thing' warnings.
2461
2462 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
2463 (symbol_tag_print): New.
2464 Use them everywhere in place of accessing directly the tag member.
2465 * src/gram.h, src/gram.c (rule_print): New.
2466 Use it where a rule used to be printed `by hand'.
2467 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
2468 (reduce_grammar_tables): Report the useless rules.
2469 (reduce_print): Useless things are a warning, not an error.
2470 Report it as such.
2471 * tests/reduce.at (Useless Nonterminals, Useless Rules):
2472 (Reduced Automaton, Underivable Rules): Adjust.
2473 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
2474 * tests/conflicts.at (Unresolved SR Conflicts)
2475 (Solved SR Conflicts): Adjust.
2476
24772002-06-15 Akim Demaille <akim@epita.fr>
2478
2479 Let symbols have a location.
2480
2481 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
2482 (getsym): Adjust.
2483 Adjust all callers.
2484 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
2485 Use location_t, not int.
2486 * src/symtab.c (symbol_check_defined): Take advantage of the
2487 location.
2488 * tests/regression.at (Invalid inputs): Adjust.
2489
24902002-06-15 Akim Demaille <akim@epita.fr>
2491
2492 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
2493 (input): Don't try to initialize yylloc here, do it in the
2494 scanner.
2495 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
2496 * src/gram.h (rule_t): Change line and action_line into location
2497 and action_location, of location_t type.
2498 Adjust all dependencies.
2499 * src/location.h, src/location.c (empty_location): New.
2500 * src/reader.h, src/reader.c (grammar_start_symbol_set)
2501 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
2502 (grammar_current_rule_symbol_append)
2503 (grammar_current_rule_action_append): Expect a location as argument.
2504 * src/reader.c (grammar_midrule_action): Adjust to attach an
2505 action's location as dummy symbol location.
2506 * src/symtab.h, src/symtab.c (startsymbol_location): New.
2507 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
2508 the line numbers.
2509
25102002-06-14 Akim Demaille <akim@epita.fr>
2511
2512 Grammar declarations may be found in the grammar section.
2513
2514 * src/parse-gram.y (rules_or_grammar_declaration): New.
2515 (declarations): Each declaration may end with a semicolon, not
2516 just...
2517 (grammar_declaration): `"%union"'.
2518 (grammar): Branch to rules_or_grammar_declaration.
2519
25202002-06-14 Akim Demaille <akim@epita.fr>
2521
2522 * src/main.c (main): Invoke scanner_free.
2523
25242002-06-14 Akim Demaille <akim@epita.fr>
2525
2526 * src/output.c (m4_invoke): Extracted from...
2527 (output_skeleton): here.
2528 Free tempfile.
2529
25302002-06-14 Akim Demaille <akim@epita.fr>
2531
2532 * src/parse-gram.y (directives, directive, gram)
2533 (grammar_directives, precedence_directives, precedence_directive):
2534 Rename as...
2535 (declarations, declaration, grammar, grammar_declaration)
2536 (precedence_declaration, precedence_declarator): these.
2537 (symbol_declaration): New.
2538
25392002-06-14 Akim Demaille <akim@epita.fr>
2540
2541 * src/files.c (action_obstack): Remove, unused.
2542 (output_obstack): Remove it, and all its dependencies, as it is no
2543 longer needed.
2544 * src/reader.c (epilogue_set): Build the epilogue in the
2545 muscle_obstack.
2546 * src/output.h, src/output.c (muscle_obstack): Move to...
2547 * src/muscle_tab.h, src/muscle_tab.h: here.
2548 (muscle_init): Initialize muscle_obstack.
2549 (muscle_free): New.
2550 * src/main.c (main): Call it.
2551
25522002-06-14 Akim Demaille <akim@epita.fr>
2553
2554 * src/location.h: New, extracted from...
2555 * src/reader.h: here.
2556 * src/Makefile.am (noinst_HEADERS): Merge into
2557 (bison_SOURCES): this.
2558 Add location.h.
2559 * src/parse-gram.y: Use location_t instead of Bison's.
2560 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
2561 Use location_t instead of ints.
2562
25632002-06-14 Akim Demaille <akim@epita.fr>
2564
2565 * data/bison.simple, data/bison.c++: Be sure to restore the
2566 current #line when returning to the skeleton contents after having
2567 exposed the input file's #line.
2568
25692002-06-12 Akim Demaille <akim@epita.fr>
2570
2571 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
2572 eager.
2573 * tests/actions.at (Exotic Dollars): New.
2574
25752002-06-12 Akim Demaille <akim@epita.fr>
2576
2577 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
2578 ['"/] too eagerly.
2579 * tests/input.at (Torturing the Scanner): New.
2580
25812002-06-11 Akim Demaille <akim@epita.fr>
2582
2583 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
2584 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
2585 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
2586 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
2587 * src/reader.c (reader): Use it.
2588
25892002-06-11 Akim Demaille <akim@epita.fr>
2590
2591 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
2592 Adjust all callers.
2593 (scanner_last_string_free): New.
2594
25952002-06-11 Akim Demaille <akim@epita.fr>
2596
2597 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
2598 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
2599 (last_string, YY_OBS_FREE): New.
2600 Use them when returning an ID.
2601
26022002-06-11 Akim Demaille <akim@epita.fr>
2603
2604 Have Bison grammars parsed by a Bison grammar.
2605
2606 * src/reader.c, src/reader.h (prologue_augment): New.
2607 * src/reader.c (copy_definition): Remove.
2608
2609 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
2610 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
2611 (grammar_current_rule_prec_set, grammar_current_rule_check)
2612 (grammar_current_rule_symbol_append)
2613 (grammar_current_rule_action_append): Export.
2614 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
2615 (symbol_list_action_append): Remove.
2616 Hook the routines from reader.
2617 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
2618 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
2619
2620 * src/reader.c (read_declarations): Remove, unused.
2621
2622 * src/parse-gram.y: Handle the epilogue.
2623 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
2624 (grammar_start_symbol_set): this.
2625 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
2626 * src/reader.c (readgram): Remove, unused.
2627 (reader): Adjust to insert eoftoken and axiom where appropriate.
2628
2629 * src/reader.c (copy_dollar): Replace with...
2630 * src/scan-gram.h (handle_dollar): this.
2631 * src/parse-gram.y: Remove `%thong'.
2632
2633 * src/reader.c (copy_at): Replace with...
2634 * src/scan-gram.h (handle_at): this.
2635
2636 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
2637 New.
2638
2639 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
2640 time being.
2641
2642 * src/reader.h, src/reader.c (grammar_rule_end): New.
2643
2644 * src/parse.y (current_type, current_class): New.
2645 Implement `%nterm', `%token' support.
2646 Merge `%term' into `%token'.
2647 (string_as_id): New.
2648 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
2649 type name.
2650
2651 * src/parse-gram.y: Be sure to handle properly the beginning of
2652 rules.
2653
2654 * src/parse-gram.y: Handle %type.
2655 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
2656
2657 * src/parse-gram.y: More directives support.
2658 * src/options.c: No longer handle source directives.
2659
2660 * src/parse-gram.y: Fix %output.
2661
2662 * src/parse-gram.y: Handle %union.
2663 Use the prologue locations.
2664 * src/reader.c (parse_union_decl): Remove.
2665
2666 * src/reader.h, src/reader.c (epilogue_set): New.
2667 * src/parse-gram.y: Use it.
2668
2669 * data/bison.simple, data/bison.c++: b4_stype is now either not
2670 defined, then default to int, or to the contents of %union,
2671 without `union' itself.
2672 Adjust.
2673 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
2674
2675 * src/output.c (actions_output): Don't output braces, as they are
2676 already handled by the scanner.
2677
2678 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
2679 characters to themselves.
2680
2681 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
2682 that the epilogue has a proper #line.
2683
2684 * src/parse-gram.y: Handle precedence/associativity.
2685
2686 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
2687 a terminal.
2688 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
2689 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
2690 at all to define terminals that cannot be emitted.
2691
2692 * src/scan-gram.l: Escape M4 characters.
2693
2694 * src/scan-gram.l: Working properly with escapes in user
2695 strings/characters.
2696
2697 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
2698 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
2699 grammar.
2700 Use more modest sizes, as for the time being the parser does not
2701 release memory, and therefore the process swallows a huge amount
2702 of memory.
2703
2704 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
2705 stricter %token grammar.
2706
2707 * src/symtab.h (associativity): Add `undef_assoc'.
2708 (symbol_precedence_set): Do nothing when passed an undef_assoc.
2709 * src/symtab.c (symbol_check_alias_consistence): Adjust.
2710
2711 * tests/regression.at (Invalid %directive): Remove, as it is now
2712 meaningless.
2713 (Invalid inputs): Adjust to the new error messages.
2714 (Token definitions): The new grammar doesn't allow too many
2715 eccentricities.
2716
2717 * src/lex.h, src/lex.c: Remove.
2718 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
2719 (copy_character, copy_string2, copy_string, copy_identifier)
2720 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
2721 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
2722 (parse_action): Remove.
2723 * po/POTFILES.in: Adjust.
2724
27252002-06-11 Akim Demaille <akim@epita.fr>
2726
2727 * src/reader.c (parse_action): Don't store directly into the
2728 rule's action member: return the action as a string.
2729 Don't require `rule_length' as an argument: compute it.
2730 (grammar_current_rule_symbol_append)
2731 (grammar_current_rule_action_append): New, eved out from
2732 (readgram): here.
2733 Remove `action_flag', `rulelength', unused now.
2734
27352002-06-11 Akim Demaille <akim@epita.fr>
2736
2737 * src/reader.c (grammar_current_rule_prec_set).
2738 (grammar_current_rule_check): New, eved out from...
2739 (readgram): here.
2740 Remove `xaction', `first_rhs': useless.
2741 * tests/input.at (Type clashes): New.
2742 * tests/existing.at (GNU Cim Grammar): Adjust.
2743
27442002-06-11 Akim Demaille <akim@epita.fr>
2745
2746 * src/reader.c (grammar_midrule_action): New, Eved out from
2747 (readgram): here.
2748
27492002-06-11 Akim Demaille <akim@epita.fr>
2750
2751 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
2752 New.
2753 (readgram): Use them as replacement of inlined code, crule and
2754 crule1.
2755
27562002-06-11 Akim Demaille <akim@epita.fr>
2757
2758 * src/reader.c (grammar_end, grammar_symbol_append): New.
2759 (readgram): Use them.
2760 Make the use of `p' as local as possible.
2761
27622002-06-10 Akim Demaille <akim@epita.fr>
2763
2764 GCJ's parser requires the tokens to be defined before the prologue.
2765
2766 * data/bison.simple: Output the token definition before the user's
2767 prologue.
2768 * tests/regression.at (Braces parsing, Duplicate string)
2769 (Mixing %token styles): Check the output from bison.
2770 (Early token definitions): New.
2771
27722002-06-10 Akim Demaille <akim@epita.fr>
2773
2774 * src/symtab.c (symbol_user_token_number_set): Don't complain when
2775 assigning twice the same user number to a token, so that we can
2776 use it in...
2777 * src/lex.c (lex): here.
2778 Also use `symbol_class_set' instead of hand written code.
2779 * src/reader.c (parse_assoc_decl): Likewise.
2780
27812002-06-10 Akim Demaille <akim@epita.fr>
2782
2783 * src/symtab.c, src/symtab.c (symbol_class_set)
2784 (symbol_user_token_number_set): New.
2785 * src/reader.c (parse_token_decl): Use them.
2786 Use a switch instead of ifs.
2787 Use a single argument.
2788
27892002-06-10 Akim Demaille <akim@epita.fr>
2790
2791 Remove `%thong' support as it is undocumented, unused, duplicates
2792 `%token's job, and creates useless e-mail traffic with people who
2793 want to know what it is, why it is undocumented, unused, and
2794 duplicates `%token's job.
2795
2796 * src/reader.c (parse_thong_decl): Remove.
2797 * src/options.c (option_table): Remove "thong".
2798 * src/lex.h (tok_thong): Remove.
2799
28002002-06-10 Akim Demaille <akim@epita.fr>
2801
2802 * src/symtab.c, src/symtab.c (symbol_type_set)
2803 (symbol_precedence_set): New.
2804 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
2805 (value_components_used): Remove, unused.
2806
28072002-06-09 Akim Demaille <akim@epita.fr>
2808
2809 Move symbols handling code out of the reader.
2810
2811 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
2812 (axiom): Move to...
2813 * src/symtab.h, src/symtab.c: here.
2814
2815 * src/gram.c (start_symbol): Remove: use startsymbol->number.
2816 * src/reader.c (startval): Rename as...
2817 * src/symtab.h, src/symtab.c (startsymbol): this.
2818 * src/reader.c: Adjust.
2819
2820 * src/reader.c (symbol_check_defined, symbol_make_alias)
2821 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
2822 (token_translations_init)
2823 Move to...
2824 * src/symtab.c: here.
2825 * src/reader.c (packsymbols): Move to...
2826 * src/symtab.h, src/symtab.c (symbols_pack): here.
2827 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
2828 argument.
2829
28302002-06-03 Akim Demaille <akim@epita.fr>
2831
2832 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
2833 then statements.
2834
28352002-06-03 Akim Demaille <akim@epita.fr>
2836
2837 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
2838 structs with non literals.
2839 * src/scan-skel.l: never-interactive.
2840 * src/conflicts.c (enum conflict_resolution_e): No trailing
2841 comma.
2842 * src/getargs.c (usage): Split long literal strings.
2843 Reported by Hans Aberg.
2844
28452002-05-28 Akim Demaille <akim@epita.fr>
2846
2847 * data/bison.c++: Use C++ ostreams.
2848 (cdebug_): New member.
2849
28502002-05-28 Akim Demaille <akim@epita.fr>
2851
2852 * src/output.c (output_skeleton): Be sure to allocate enough room
2853 for `/' _and_ for `\0' in full_skeleton.
2854
28552002-05-28 Akim Demaille <akim@epita.fr>
2856
2857 * data/bison.c++: Catch up with bison.simple:
2858 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2859 and Paul Eggert <eggert@twinsun.com>: `error' handing.
2860 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
2861 and popping traces.
2862
28632002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2864
2865 * src/output.c (output_skeleton): Put an explicit path in front of
2866 the skeleton file name, rather than relying on the -I directory,
2867 to partially alleviate effects of having a skeleton file lying around
2868 in the current directory.
2869
28702002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2871
2872 * src/conflicts.c (log_resolution): Correct typo:
2873 obstack_printf should be obstack_fgrow1.
2874
28752002-05-26 Akim Demaille <akim@epita.fr>
2876
2877 * src/state.h (state_t): `solved_conflicts' is a new member.
2878 * src/LR0.c (new_state): Set it to 0.
2879 * src/conflicts.h, src/conflicts.c (print_conflicts)
2880 (free_conflicts, solve_conflicts): Rename as...
2881 (conflicts_print, conflicts_free, conflicts_solve): these.
2882 Adjust callers.
2883 * src/conflicts.c (enum conflict_resolution_e)
2884 (solved_conflicts_obstack): New, used by...
2885 (log_resolution): this.
2886 Adjust to attach the conflict resolution to each state.
2887 Complete the description with the precedence/associativity
2888 information.
2889 (resolve_sr_conflict): Adjust.
2890 * src/print.c (print_state): Output its solved_conflicts.
2891 * tests/conflicts.at (Unresolved SR Conflicts)
2892 (Solved SR Conflicts): Exercise --report=all.
2893
28942002-05-26 Akim Demaille <akim@epita.fr>
2895
2896 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
2897 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
2898 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
2899 (token_number_t, item_number_as_token_number)
2900 (token_number_as_item_number, muscle_insert_token_number_table):
2901 Rename as...
2902 (symbol_number_t, item_number_as_symbol_number)
2903 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
2904 these, since it is more appropriate.
2905
29062002-05-26 Akim Demaille <akim@epita.fr>
2907
2908 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
2909 `Error:' lines.
2910 * data/bison.simple (yystos) [YYDEBUG]: New.
2911 (yyparse) [YYDEBUG]: Display the symbols which are popped during
2912 error recovery.
2913 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
2914
29152002-05-25 Akim Demaille <akim@epita.fr>
2916
2917 * doc/bison.texinfo (Debugging): Split into...
2918 (Tracing): this new section, its former contents, and...
2919 (Understanding): this new section.
2920 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
2921 by...
2922 (report_flag): this.
2923 Adjust all dependencies.
2924 (report_args, report_types, report_argmatch): New.
2925 (usage, getargs): Report/support -r, --report.
2926 * src/options.h
2927 (struct option_table_struct): Rename as..,
2928 (struct option_table_s): this.
2929 Rename the `set_flag' member to `flag' to match with getopt_long's
2930 struct.
2931 * src/options.c (option_table): Split verbose into an entry for
2932 %verbose, and another for --verbose.
2933 Support --report/-r, so remove -r from the obsolete --raw.
2934 * src/print.c: Attach full item sets and lookaheads reports to
2935 report_flag instead of trace_flag.
2936 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
2937
29382002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2939 and Paul Eggert <eggert@twinsun.com>
2940
2941 * data/bison.simple (yyparse): Correct error handling to conform to
2942 POSIX and yacc. Specifically, after syntax error is discovered,
2943 do not reduce further before shifting the error token.
2944 Clean up the code a bit by removing the labels yyerrdefault,
2945 yyerrhandle, yyerrpop.
2946 * NEWS: Document the above.
2947
29482002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2949
2950 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
2951 type; it isn't always big enough, since it doesn't necessarily
2952 include non-terminals.
2953 (yytranslate): Expand definition of yy_token_number_type, so that
2954 the latter can be removed.
2955 (yy_token_number_type): Remove, only one use.
2956 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
2957 don't use TokenNumberType as element type.
2958
2959 * tests/regression.at: Modify expected output to agree with change
2960 to yyr1 and yytranslate.
2961
29622002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
2963
2964 * src/reader.c (parse_action): Use copy_character instead of
2965 obstack_1grow.
2966
29672002-05-13 Akim Demaille <akim@epita.fr>
2968
2969 * tests/regression.at (Token definitions): Prototype yylex and
2970 yyerror.
2971
29722002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2973
2974 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
2975 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
2976 32-bit arithmetic.
2977 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
2978
29792002-05-07 Akim Demaille <akim@epita.fr>
2980
2981 * tests/synclines.at: Be sure to prototype yylex and yyerror to
2982 avoid GCC warnings.
2983
29842002-05-07 Akim Demaille <akim@epita.fr>
2985
2986 Kill GCC warnings.
2987
2988 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
2989 over the RHS of each rule.
2990 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
2991 * src/state.h (state_t): Member `nitems' is unsigned short.
2992 * src/LR0.c (get_state): Adjust.
2993 * src/reader.c (packgram): Likewise.
2994 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
2995 `Type'.
2996 (muscle_insert_int_table): Remove, unused.
2997 (prepare_rules): Remove `max'.
2998
29992002-05-06 Akim Demaille <akim@epita.fr>
3000
3001 * src/closure.c (print_firsts): Display of the symbol tags.
3002 (bitmatrix_print): Move to...
3003 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
3004 here.
3005 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
3006
30072002-05-06 Akim Demaille <akim@epita.fr>
3008
3009 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
3010 hash_do_for_each.
3011
30122002-05-06 Akim Demaille <akim@epita.fr>
3013
3014 * src/LR0.c (new_state, get_state): Instead of using the global
3015 `kernel_size' and `kernel_base', have two new arguments:
3016 `core_size' and `core'.
3017 Adjust callers.
3018
30192002-05-06 Akim Demaille <akim@epita.fr>
3020
3021 * src/reader.c (packgram): No longer end `ritem' with a 0
3022 sentinel: it is not used.
3023
30242002-05-05 Akim Demaille <akim@epita.fr>
3025
3026 New experimental feature: display the lookaheads in the report and
3027 graph.
3028
3029 * src/print (print_core): When --trace-flag, display the rules
3030 lookaheads.
3031 * src/print_graph.c (print_core): Likewise.
3032 Swap the arguments.
3033 Adjust caller.
3034
30352002-05-05 Akim Demaille <akim@epita.fr>
3036
3037 * tests/torture.at (Many lookaheads): New test.
3038
30392002-05-05 Akim Demaille <akim@epita.fr>
3040
3041 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
3042 (GENERATE_MUSCLE_INSERT_TABLE): this.
3043 (output_int_table, output_unsigned_int_table, output_short_table)
3044 (output_token_number_table, output_item_number_table): Replace with...
3045 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
3046 (muscle_insert_short_table, muscle_insert_token_number_table)
3047 (muscle_insert_item_number_table): these.
3048 Adjust all callers.
3049 (prepare_tokens): Don't free `translations', since...
3050 * src/reader.h, src/reader.c (grammar_free): do it.
3051 Move to...
3052 * src/gram.h, src/gram.c (grammar_free): here.
3053 * data/bison.simple, data/bison.c++: b4_token_number_max is now
3054 b4_translate_max.
3055
30562002-05-05 Akim Demaille <akim@epita.fr>
3057
3058 * src/output.c (output_unsigned_int_table): New.
3059 (prepare_rules): `i' is unsigned.
3060 `prhs', `rline', `r2' are unsigned int.
3061 Rename muscle `rhs_number_max' as `rhs_max'.
3062 Output muscles `prhs_max', `rline_max', and `r2_max'.
3063 Free rline and r1.
3064 * data/bison.simple, data/bison.c++: Adjust to use these muscles
3065 to compute types instead of constant types.
3066 * tests/regression.at (Web2c Actions): Adjust.
3067
30682002-05-04 Akim Demaille <akim@epita.fr>
3069
3070 * src/symtab.h (SALIAS, SUNDEF): Rename as...
3071 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
3072 Adjust dependencies.
3073 * src/output.c (token_definitions_output): Be sure not to output a
3074 `#define 'a'' when fed with `%token 'a' "a"'.
3075 * tests/regression.at (Token definitions): New.
3076
30772002-05-03 Paul Eggert <eggert@twinsun.com>
3078
3079 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
3080 for K&R C.
3081
30822002-05-03 gettextize <bug-gnu-gettext@gnu.org>
3083
3084 * Makefile.am (SUBDIRS): Remove intl.
3085 (EXTRA_DIST): Add config/config.rpath.
3086
30872002-05-03 Akim Demaille <akim@epita.fr>
3088
3089 * data/bison.simple (m4_if): Don't output empty enums.
3090 And actually, output valid enum definitions :(.
3091
30922002-05-03 Akim Demaille <akim@epita.fr>
3093
3094 * configure.bat: Remove, completely obsolete.
3095 * Makefile.am (EXTRA_DIST): Adjust.
3096 Don't distribute config.rpath...
3097 * config/Makefile.am (EXTRA_DIST): Do it.
3098
30992002-05-03 Akim Demaille <akim@epita.fr>
3100
3101 * configure.in (GETTEXT_VERSION): New.
3102 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
3103
31042002-05-03 Akim Demaille <akim@epita.fr>
3105
3106 * data/bison.simple (b4_token_enum): New.
3107 (b4_token_defines): Use it to output tokens both as #define and
3108 enums.
3109 Suggested by Paul Eggert.
3110 * src/output.c (token_definitions_output): Don't output spurious
3111 white spaces.
3112
31132002-05-03 Akim Demaille <akim@epita.fr>
3114
3115 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
3116
31172002-05-02 Robert Anisko <robert@lrde.epita.fr>
3118
3119 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
3120 Update the stack class, give a try to deque as the default container.
3121
31222002-05-02 Akim Demaille <akim@epita.fr>
3123
3124 * data/bison.simple (yyparse): Do not implement @$ = @1.
3125 (YYLLOC_DEFAULT): Adjust to do it.
3126 * doc/bison.texinfo (Location Default Action): Fix.
3127
31282002-05-02 Akim Demaille <akim@epita.fr>
3129
3130 * src/reader.c (parse_braces): Merge into...
3131 (parse_action): this.
3132
31332002-05-02 Akim Demaille <akim@epita.fr>
3134
3135 * configure.in (ALL_LINGUAS): Remove.
3136 * po/LINGUAS, hr.po: New.
3137
31382002-05-02 Akim Demaille <akim@epita.fr>
3139
3140 Remove the so called hairy (semantic) parsers.
3141
3142 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
3143 * src/gram.h, src/gram.c (semantic_parser): Remove.
3144 (rule_t): Remove the guard and guard_line members.
3145 * src/lex.h (token_t): remove tok_guard.
3146 * src/options.c (option_table): Remove %guard and %semantic_parser
3147 support.
3148 * src/output.c, src/output.h (guards_output): Remove.
3149 (prepare): Adjust.
3150 (token_definitions_output): Don't output the `T'
3151 tokens (???).
3152 (output_skeleton): Don't output the guards.
3153 * src/files.c, src/files.c (attrsfile): Remove.
3154 * src/reader.c (symbol_list): Remove the guard and guard_line
3155 members.
3156 Adjust dependencies.
3157 (parse_guard): Remove.
3158 * data/bison.hairy: Remove.
3159 * doc/bison.texinfo (Environment Variables): Remove occurrences of
3160 BISON_HAIRY.
3161
31622002-05-02 Akim Demaille <akim@epita.fr>
3163
3164 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
3165 (parse_guard): Rename the formal argument `stack_offset' as
3166 `rule_length', which is more readable.
3167 Adjust callers.
3168 (copy_at, copy_dollar): Instead of outputting the hard coded
3169 values of $$, $n and so forth, output invocation to b4_lhs_value,
3170 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
3171 Note: this patch partially drops `semantic-parser' support: it
3172 always does `rule_length - n', where semantic parsers ought to
3173 always use `-n'.
3174 * data/bison.simple, data/bison.c++ (b4_lhs_value)
3175 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
3176
31772002-05-02 Akim Demaille <akim@epita.fr>
3178
3179 * configure.in (AC_INIT): Bump to 1.49b.
3180 (AM_INIT_AUTOMAKE): Short invocation.
3181
31822002-05-02 Akim Demaille <akim@epita.fr>
3183
3184 Version 1.49a.
3185
31862002-05-01 Akim Demaille <akim@epita.fr>
3187
3188 * src/skeleton.h: Remove.
3189
31902002-05-01 Akim Demaille <akim@epita.fr>
3191
3192 * src/skeleton.h: Fix the #endif.
3193 Reported by Magnus Fromreide.
3194
31952002-04-26 Paul Eggert <eggert@twinsun.com>
3196
3197 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
3198 Define if we define YYSTYPE and YYLTYPE, respectively.
3199 (YYCOPY): Fix [] quoting problem in the non-GCC case.
3200
32012002-04-25 Robert Anisko <robert@lrde.epita.fr>
3202
3203 * src/scan-skel.l: Postprocess quadrigraphs.
3204
3205 * src/reader.c (copy_character): New function, used to output
3206 single characters while replacing `[' and `]' with quadrigraphs, to
3207 avoid troubles with M4 quotes.
3208 (copy_comment): Output characters with copy_character.
3209 (read_additionnal_code): Likewise.
3210 (copy_string2): Likewise.
3211 (copy_definition): Likewise.
3212
3213 * tests/calc.at: Exercise M4 quoting.
3214
32152002-04-25 Akim Demaille <akim@epita.fr>
3216
3217 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
3218 between `!' and the command.
3219 Reported by Paul Eggert.
3220
32212002-04-24 Robert Anisko <robert@lrde.epita.fr>
3222
3223 * tests/calc.at: Exercise prologue splitting.
3224
3225 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
3226 `b4_post_prologue' instead of `b4_prologue'.
3227
3228 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
3229 muscles.
3230 (output): Free pre_prologue_obstack and post_prologue_obstack.
3231 * src/files.h, src/files.c (attrs_obstack): Remove.
3232 (pre_prologue_obstack, post_prologue_obstack): New.
3233 * src/reader.c (copy_definition): Add a parameter to specify the
3234 obstack to fill, instead of using attrs_obstack unconditionally.
3235 (read_declarations): Pass pre_prologue_obstack to copy_definition if
3236 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
3237
32382002-04-23 Paul Eggert <eggert@twinsun.com>
3239
3240 * data/bison.simple: Remove unnecessary commentary and white
3241 space differences from 1_29-branch.
3242 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
3243
3244 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
3245 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
3246 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
3247 constructors or destructors.
3248
3249 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
3250
32512002-04-23 Akim Demaille <akim@epita.fr>
3252
3253 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
3254 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
3255 location with columns.
3256 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
3257 All reported by Paul Eggert.
3258
32592002-04-22 Akim Demaille <akim@epita.fr>
3260
3261 * src/reduce.c (dump_grammar): Move to...
3262 * src/gram.h, src/gram.c (grammar_dump): here.
3263 Be sure to separate long item numbers.
3264 Don't read the members of a rule's prec if its nil.
3265
32662002-04-22 Akim Demaille <akim@epita.fr>
3267
3268 * src/output.c (table_size, table_grow): New.
3269 (MAXTABLE): Remove, replace uses with table_size.
3270 (pack_vector): Instead of dying when the table is too big, grow it.
3271
32722002-04-22 Akim Demaille <akim@epita.fr>
3273
3274 * data/bison.simple (yyr1): Its type is that of a token number.
3275 * data/bison.c++ (r1_): Likewise.
3276 * tests/regression.at (Web2c Actions): Adjust.
3277
32782002-04-22 Akim Demaille <akim@epita.fr>
3279
3280 * src/reader.c (token_translations_init): 256 is now the default
3281 value for the error token, i.e., it will be assigned another
3282 number if the user assigned 256 to one of her tokens.
3283 (reader): Don't force 256 to error.
3284 * doc/bison.texinfo (Symbols): Adjust.
3285 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
3286 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
3287 etc. instead of 10, 20, 30 (which was used to `jump' over error
3288 (256) and undefined (2)).
3289
32902002-04-22 Akim Demaille <akim@epita.fr>
3291
3292 Propagate more token_number_t.
3293
3294 * src/gram.h (token_number_as_item_number)
3295 (item_number_as_token_number): New.
3296 * src/output.c (GENERATE_OUTPUT_TABLE): New.
3297 Use it to create output_item_number_table and
3298 output_token_number_table.
3299 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
3300 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
3301 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
3302 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
3303
33042002-04-22 Akim Demaille <akim@epita.fr>
3305
3306 * src/output.h, src/output.c (get_lines_number): Remove.
3307
33082002-04-19 Akim Demaille <akim@epita.fr>
3309
3310 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
3311 as Lex/Flex'.
3312 (Debugging): More details about enabling the debugging features.
3313 (Table of Symbols): Describe $$, $n, @$, and @n.
3314 Suggested by Tim Josling.
3315
33162002-04-19 Akim Demaille <akim@epita.fr>
3317
3318 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
3319
33202002-04-10 Akim Demaille <akim@epita.fr>
3321
3322 * src/system.h: Rely on HAVE_LIMITS_H.
3323 Suggested by Paul Eggert.
3324
33252002-04-09 Akim Demaille <akim@epita.fr>
3326
3327 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
3328 full stderr, and strip it according to the bison options, instead
3329 of composing the error message from different bits.
3330 This makes it easier to check for several error messages.
3331 Adjust all the invocations.
3332 Add an invocation exercising the error token.
3333 Add an invocation demonstrating a stupid error message.
3334 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
3335 Adjust the tests.
3336 Error message are for stderr, not stdout.
3337
33382002-04-09 Akim Demaille <akim@epita.fr>
3339
3340 * src/gram.h, src/gram.c (error_token_number): Remove, use
3341 errtoken->number.
3342 * src/reader.c (reader): Don't specify the user token number (2)
3343 for $undefined, as it uselessly prevents using it.
3344 * src/gram.h (token_number_t): Move to...
3345 * src/symtab.h: here.
3346 (state_t.number): Is a token_number_t.
3347 * src/print.c, src/reader.c: Use undeftoken->number instead of
3348 hard coded 2.
3349 (Even though this 2 is not the same as above: the number of the
3350 undeftoken remains being 2, it is its user token number which
3351 might not be 2).
3352 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
3353 `user_token_number_max'.
3354 Output `undef_token_number'.
3355 * data/bison.simple, data/bison.c++: Use them.
3356 Be sure to map invalid yylex return values to
3357 `undef_token_number'. This saves us from gratuitous SEGV.
3358
3359 * tests/conflicts.at (Solved SR Conflicts)
3360 (Unresolved SR Conflicts): Adjust.
3361 * tests/regression.at (Web2c Actions): Adjust.
3362
33632002-04-08 Akim Demaille <akim@epita.fr>
3364
3365 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
3366 Adding #line.
3367 Remove the duplicate `typedefs'.
3368 (RhsNumberType): Fix the declaration and various other typos.
3369 Use __ofile__.
3370 * data/bison.simple: Use __ofile__.
3371 * src/scan-skel.l: Handle __ofile__.
3372
33732002-04-08 Akim Demaille <akim@epita.fr>
3374
3375 * src/gram.h (item_number_t): New, the type of item numbers in
3376 RITEM. Note that it must be able to code symbol numbers as
3377 positive number, and the negation of rule numbers as negative
3378 numbers.
3379 Adjust all dependencies (pretty many).
3380 * src/reduce.c (rule): Remove this `short *' pointer: use
3381 item_number_t.
3382 * src/system.h (MINSHORT, MAXSHORT): Remove.
3383 Include `limits.h'.
3384 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
3385 (shortcpy): Remove.
3386 (MAXTABLE): Move to...
3387 * src/output.c (MAXTABLE): here.
3388 (prepare_rules): Use output_int_table to output rhs.
3389 * data/bison.simple, data/bison.c++: Adjust.
3390 * tests/torture.at (Big triangle): Move the limit from 254 to
3391 500.
3392 * tests/regression.at (Web2c Actions): Ajust.
3393
3394 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
3395 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
3396 passes, but produces negative #line number, once fixed, GCC is
3397 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
3398 C), it passes.
3399 * src/state.h (state_h): Code input lines on ints, not shorts.
3400
34012002-04-08 Akim Demaille <akim@epita.fr>
3402
3403 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
3404 and then the grammar.
3405
34062002-04-08 Akim Demaille <akim@epita.fr>
3407
3408 * src/system.h: No longer using strndup.
3409
34102002-04-07 Akim Demaille <akim@epita.fr>
3411
3412 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
3413 * src/output.c (output_table_data): Return the longest number.
3414 (prepare_tokens): Output `token_number_max').
3415 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
3416 New.
3417 Use them to define yy_token_number_type/TokenNumberType.
3418 Use this type for yytranslate.
3419 * tests/torture.at (Big triangle): Push the limit from 124 to
3420 253.
3421 * tests/regression.at (Web2c Actions): Adjust.
3422
34232002-04-07 Akim Demaille <akim@epita.fr>
3424
3425 * tests/torture.at (Big triangle): New.
3426 (GNU AWK Grammar, GNU Cim Grammar): Move to...
3427 * tests/existing.at: here.
3428
34292002-04-07 Akim Demaille <akim@epita.fr>
3430
3431 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
3432 nritems.
3433 Adjust dependencies.
3434
34352002-04-07 Akim Demaille <akim@epita.fr>
3436
3437 * src/reader.c: Normalize increments to prefix form.
3438
34392002-04-07 Akim Demaille <akim@epita.fr>
3440
3441 * src/reader.c, symtab.c: Remove debugging code.
3442
34432002-04-07 Akim Demaille <akim@epita.fr>
3444
3445 Rename all the `bucket's as `symbol_t'.
3446
3447 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
3448 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
3449 * src/symtab.c, src/symtab.h (bucket): Rename as...
3450 (symbol_t): this.
3451 (symbol_list_new, bucket_check_defined, bucket_make_alias)
3452 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
3453 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
3454 (buckets_new, buckets_free, buckets_do): Rename as...
3455 (symbol_list_new, symbol_check_defined, symbol_make_alias)
3456 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
3457 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
3458 (symbols_new, symbols_free, symbols_do): these.
3459
34602002-04-07 Akim Demaille <akim@epita.fr>
3461
3462 Use lib/hash for the symbol table.
3463
3464 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
3465 EOF.
3466 * src/lex.c (lex): Set the `number' member of new terminals.
3467 * src/reader.c (bucket_check_defined, bucket_make_alias)
3468 (bucket_check_alias_consistence, bucket_translation): New.
3469 (reader, grammar_free, readgram, token_translations_init)
3470 (packsymbols): Adjust.
3471 (reader): Number the predefined tokens.
3472 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
3473 for predefined tokens.
3474 * src/symtab.h (bucket): Remove all the hash table related
3475 members.
3476 * src/symtab.c (symtab): Replace by...
3477 (bucket_table): this.
3478 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
3479 (buckets_new, buckets_do): New.
3480
34812002-04-07 Akim Demaille <akim@epita.fr>
3482
3483 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
3484 (start_symbol, max_user_token_number, semantic_parser)
3485 (error_token_number): Initialize.
3486 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
3487 Initialize.
3488 (reader): Don't.
3489 (errtoken, eoftoken, undeftoken, axiom): Extern.
3490
34912002-04-07 Akim Demaille <akim@epita.fr>
3492
3493 * src/gram.h (rule_s): prec and precsym are now pointers
3494 to the bucket giving the priority/associativity.
3495 Member `associativity' removed: useless.
3496 * src/reduce.c, src/conflicts.c: Adjust.
3497
34982002-04-07 Akim Demaille <akim@epita.fr>
3499
3500 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
3501 Properly escape the symbols' TAG when outputting them.
3502
35032002-04-07 Akim Demaille <akim@epita.fr>
3504
3505 * src/lalr.h (LA): Is a bitsetv, not bitset*.
3506
35072002-04-07 Akim Demaille <akim@epita.fr>
3508
3509 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
3510 (LArule): this, which is an array to rule_t*.
3511 * src/print.c, src/conflicts.c: Adjust.
3512
35132002-04-07 Akim Demaille <akim@epita.fr>
3514
3515 * src/gram.h (rule_t): Rename `number' as `user_number'.
3516 `number' is a new member.
3517 Adjust dependencies.
3518 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
3519
35202002-04-07 Akim Demaille <akim@epita.fr>
3521
3522 As a result of the previous patch, it is no longer needed
3523 to reorder ritem itself.
3524
3525 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
3526
35272002-04-07 Akim Demaille <akim@epita.fr>
3528
3529 Be sure never to walk through RITEMS, but use only data related to
3530 the rules themselves. RITEMS should be banished.
3531
3532 * src/output.c (output_token_translations): Rename as...
3533 (prepare_tokens): this.
3534 In addition to `translate', prepare the muscles `tname' and
3535 `toknum', which were handled by...
3536 (output_rule_data): this.
3537 Remove, and move the remainder of its outputs into...
3538 (prepare_rules): this new routines, which also merges content from
3539 (output_gram): this.
3540 (prepare_rules): Be sure never to walk through RITEMS.
3541 (output_stos): Rename as...
3542 (prepare_stos): this.
3543 (output): Always invoke prepare_states, after all, just don't use it
3544 in the output if you don't need it.
3545
35462002-04-07 Akim Demaille <akim@epita.fr>
3547
3548 * src/LR0.c (new_state): Display `nstates' as the name of the
3549 newly created state.
3550 Adjust to initialize first_state and last_state if needed.
3551 Be sure to distinguish the initial from the final state.
3552 (new_states): Create the itemset of the initial state, and use
3553 new_state.
3554 * src/closure.c (closure): Now that the initial state has its
3555 items properly set, there is no need for a special case when
3556 creating `ruleset'.
3557
3558 As a result, now the rule 0, reducing to $axiom, is visible in the
3559 outputs. Adjust the test suite.
3560
3561 * tests/conflicts.at (Solved SR Conflicts)
3562 (Unresolved SR Conflicts): Adjust.
3563 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
3564 * tests/conflicts.at (S/R in initial): New.
3565
35662002-04-07 Akim Demaille <akim@epita.fr>
3567
3568 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
3569 the RHS of the rules.
3570 * src/output.c (output_gram): Likewise.
3571
35722002-04-07 Akim Demaille <akim@epita.fr>
3573
3574 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
3575 bucket.
3576 Adjust all dependencies.
3577 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
3578 `number' of the buckets too.
3579 * src/gram.h: Include `symtab.h'.
3580 (associativity): Move to...
3581 * src/symtab.h: here.
3582 No longer include `gram.h'.
3583
35842002-04-07 Akim Demaille <akim@epita.fr>
3585
3586 * src/gram.h, src/gram.c (rules_rhs_length): New.
3587 (ritem_longest_rhs): Use it.
3588 * src/gram.h (rule_t): `number' is a new member.
3589 * src/reader.c (packgram): Set it.
3590 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
3591 the end of `rules', and count them out of `nrules'.
3592 (reduce_output, dump_grammar): Adjust.
3593 * src/print.c (print_grammar): It is no longer needed to check for
3594 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
3595 * tests/reduce.at (Reduced Automaton): New test.
3596
35972002-04-07 Akim Demaille <akim@epita.fr>
3598
3599 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
3600 lacking `+ 1' to nrules, Bison reported as useless a token if it
3601 was used solely to set the precedence of the last rule...
3602
36032002-04-07 Akim Demaille <akim@epita.fr>
3604
3605 * data/bison.c++, data/bison.simple: Don't output the current file
3606 name in #line, to avoid useless diffs between two identical
3607 outputs under different names.
3608
36092002-04-07 Akim Demaille <akim@epita.fr>
3610
3611 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
3612 Normalize loops to using `< nrules + 1', not `<= nrules'.
3613
36142002-04-07 Akim Demaille <akim@epita.fr>
3615
3616 * TODO: Update.
3617
36182002-04-07 Akim Demaille <akim@epita.fr>
3619
3620 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
3621 bucket.value as bucket.number.
3622
36232002-04-07 Akim Demaille <akim@epita.fr>
3624
3625 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
3626 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
3627 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
3628 RHS, instead of being an index in RITEMS.
3629
36302002-04-04 Paul Eggert <eggert@twinsun.com>
3631
3632 * doc/bison.texinfo: Update copyright date.
3633 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
3634 (Symbols): Warn about running Bison in one character set,
3635 but compiling and/or running in an incompatible one.
3636 Warn about character code 256, too.
3637
36382002-04-03 Paul Eggert <eggert@twinsun.com>
3639
3640 * src/bison.data (YYSTACK_ALLOC): Depend on whether
3641 YYERROR_VERBOSE is nonzero, not whether it is defined.
3642
3643 Merge changes from bison-1_29-branch.
3644
36452002-03-20 Paul Eggert <eggert@twinsun.com>
3646
3647 Merge fixes from Debian bison_1.34-1.diff.
3648
3649 * configure.in (AC_PREREQ): 2.53.
3650
36512002-03-20 Akim Demaille <akim@epita.fr>
3652
3653 * src/conflicts.c (log_resolution): Argument `resolution' is const.
3654
36552002-03-19 Paul Eggert <eggert@twinsun.com>
3656
3657 * src/bison.simple (YYCOPY): New macro.
3658 (YYSTACK_RELOCATE): Use it.
3659 Remove Type arg; no longer needed. All callers changed.
3660 (yymemcpy): Remove; no longer needed.
3661
3662 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
3663 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
3664
36652002-03-19 Akim Demaille <akim@epita.fr>
3666
3667 Test and fix the #line outputs.
3668
3669 * tests/atlocal.at (GCC): New.
3670 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
3671 (Prologue synch line, ,%union synch line, Postprologue synch line)
3672 (Action synch line, Epilogue synch line): New tests.
3673 * src/reader.c (parse_union_decl): Define the muscle stype_line.
3674 * data/bison.simple, data/bison.c++: Use it.
3675
36762002-03-19 Akim Demaille <akim@epita.fr>
3677
3678 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
3679 (Solved SR Conflicts, %expect not enough, %expect right)
3680 (%expect too much): Move to...
3681 * tests/conflicts.at: this new file.
3682
36832002-03-19 Akim Demaille <akim@epita.fr>
3684
3685 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
3686 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
3687 that we can move to enums for instance.
3688 * src/output.c (token_definitions_output): Output a list of
3689 `token-name, token-number' instead of the #define.
3690 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
3691
36922002-03-14 Akim Demaille <akim@epita.fr>
3693
3694 Use Gettext 0.11.1.
3695
36962002-03-09 Robert Anisko <robert@lrde.epita.fr>
3697
3698 * data/bison.c++: Make the user able to add members to the generated
3699 parser by subclassing.
3700
37012002-03-05 Robert Anisko <robert@lrde.epita.fr>
3702
3703 * src/reader.c (read_additionnal_code): `c' should be an integer, not
3704 a character.
3705 Reported by Nicolas Tisserand and Nicolas Burrus.
3706
37072002-03-04 Robert Anisko <robert@lrde.epita.fr>
3708
3709 * src/reader.c: Warn about lacking semi-colons, do not complain.
3710
37112002-03-04 Robert Anisko <robert@lrde.epita.fr>
3712
3713 * data/bison.c++: Remove a debug line.
3714
37152002-03-04 Robert Anisko <robert@lrde.epita.fr>
3716
3717 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
3718 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
3719 provide a default implementation.
3720
37212002-03-04 Akim Demaille <akim@epita.fr>
3722
3723 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
3724 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
3725 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
3726 * tests/semantic.at (Parsing Guards): Similarly.
3727 * src/reader.at (readgram): Complain if the last rule is not ended
3728 with a semi-colon.
3729
37302002-03-04 Akim Demaille <akim@epita.fr>
3731
3732 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
3733 * src/closure.c: here.
3734 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
3735 RTC.
3736 * src/warshall.h, src/warshall.c: Remove.
3737 * tests/sets.at (Broken Closure): Adjust.
3738
37392002-03-04 Akim Demaille <akim@epita.fr>
3740
3741 * src/output.c (output_skeleton): tempdir is const.
3742 bytes_read is unused.
3743
37442002-03-04 Akim Demaille <akim@epita.fr>
3745
3746 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
3747 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
3748 Update.
3749 From Michael Hayes.
3750
37512002-03-04 Akim Demaille <akim@epita.fr>
3752
3753 * src/closure.c (closure): `r' is unused.
3754
37552002-03-04 Akim Demaille <akim@epita.fr>
3756
3757 * tests/sets.at (Broken Closure): Add the ending `;'.
3758 * src/reader.at (readgram): Complain if a rule is not ended with a
3759 semi-colon.
3760
37612002-03-04 Akim Demaille <akim@epita.fr>
3762
3763 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
3764 (count_sr_conflicts): Use bitset_count.
3765 * src/reduce.c (inaccessable_symbols): Ditto.
3766 (bits_size): Remove.
3767 * src/warshall.h, src/warshall.c: Convert to bitsetv.
3768
37692002-03-04 Akim Demaille <akim@epita.fr>
3770
3771 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
3772 * src/reduce.c: Remove the `bitset_zero's following the
3773 `bitset_create's, as now it is performed by the latter.
3774
37752002-03-04 Akim Demaille <akim@epita.fr>
3776
3777 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
3778 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
3779 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
3780 latest sources from Michael.
3781
37822002-03-04 Akim Demaille <akim@epita.fr>
3783
3784 * src/output.c (output): Don't free the grammar.
3785 * src/reader.c (grammar_free): New.
3786 * src/main.c (main): Call it and don't free symtab here.
3787
37882002-03-04 Akim Demaille <akim@epita.fr>
3789
3790 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
3791 before returning.
3792 Reported by Benoit Perrot.
3793
37942002-03-04 Akim Demaille <akim@epita.fr>
3795
3796 Use bitset operations when possible, not loops over bits.
3797
3798 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
3799 bitset_or.
3800 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
3801 * src/reduce.c (useless_nonterminals): Formatting changes.
3802 * src/warshall.c (TC): Use bitset_or.
3803
38042002-03-04 Akim Demaille <akim@epita.fr>
3805
3806 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
3807 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
3808 Ditto.
3809
38102002-03-04 Akim Demaille <akim@epita.fr>
3811
3812 * src/lalr.c (F): Now a bitset*.
3813 Adjust all dependencies.
3814
38152002-03-04 Akim Demaille <akim@epita.fr>
3816
3817 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
3818 Adjust all dependencies.
3819
38202002-03-04 Akim Demaille <akim@epita.fr>
3821
3822 * src/L0.c, src/LR0.h (nstates): Be size_t.
3823 Adjust comparisons (signed vs unsigned).
3824 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
3825 bitset*.
3826 Adjust all dependencies.
3827
38282002-03-04 Akim Demaille <akim@epita.fr>
3829
3830 * src/closure.c (firsts): Now, also a bitset.
3831 Adjust all dependencies.
3832 (varsetsize): Remove, now unused.
3833 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
3834
38352002-03-04 Akim Demaille <akim@epita.fr>
3836
3837 * src/print.c: Convert to use bitset.h, not hand coded iterations
3838 over ints.
3839
38402002-03-04 Akim Demaille <akim@epita.fr>
3841
3842 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
3843
38442002-03-04 Akim Demaille <akim@epita.fr>
3845
3846 * src/closure.c (ruleset): Be a bitset.
3847 (rulesetsize): Remove.
3848
38492002-03-04 Akim Demaille <akim@epita.fr>
3850
3851 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
3852 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
3853 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
3854 * src/closure.c (fderives): Be an array of bitsets.
3855
38562002-02-28 Robert Anisko <robert@lrde.epita.fr>
3857
3858 * data/bison.c++: Merge the two generated headers. Insert a copyright
3859 notice in each output file.
3860
38612002-02-28 Akim Demaille <akim@epita.fr>
3862
3863 * data/bison.c++: Copy the prologue of bison.simple to fetch
3864 useful M4 definitions, such as b4_header_guard.
3865
38662002-02-25 Akim Demaille <akim@epita.fr>
3867
3868 * src/getargs.c (version): Give the name of the authors, and use a
3869 translator friendly scheme for the bgr
3870 copyright notice.
3871
38722002-02-25 Akim Demaille <akim@epita.fr>
3873
3874 * src/output.c (header_output): Remove, now handled completely via
3875 M4.
3876
38772002-02-25 Akim Demaille <akim@epita.fr>
3878
3879 * m4/m4.m4: New, from CVS Autoconf.
3880 * configure.in: Invoke it.
3881 * src/output.c (output_skeleton): Use its result instead of the
3882 hard coded name.
3883
38842002-02-25 Akim Demaille <akim@epita.fr>
3885
3886 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
3887 Fileutils 4.1.5.
3888 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
3889 * src/output.c (output_skeleton): Use mkstemp to create a real
3890 temporary file.
3891 Move the filling of `skeleton' and its muscle to...
3892 (prepare): here.
3893 (output): Move the definition of the prologue muscle to...
3894 (prepare): here.
3895 * src/system.h (DEFAULT_TMPDIR): New.
3896
38972002-02-14 Paul Eggert <eggert@twinsun.com>
3898
3899 Remove the support for C++ namespace cleanliness; it was
3900 causing more problems than it was curing, since it didn't work
3901 properly on some nonstandard C++ compilers. This can wait
3902 for a proper C++ parser.
3903
3904 * NEWS: Document this.
3905 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
3906 of C++, as it's treated like C now.
3907 * src/bison.simple (YYSTD): Remove.
3908 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
3909 Treat C++ just like Standard C instead of trying to support
3910 namespace cleanliness.
3911
39122002-02-14 Akim Demaille <akim@epita.fr>
3913
3914 * tests/regression.at (else): Adjust to Andreas' change.
3915
39162002-02-14 Akim Demaille <akim@epita.fr>
3917
3918 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
3919
39202002-02-13 Andreas Schwab <schwab@suse.de>
3921
3922 * src/output.c (output_rule_data): Don't output NULL, it might
3923 not be defined yet.
3924
39252002-02-11 Robert Anisko <robert@lrde.epita.fr>
3926
3927 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
3928 (Copyright notice): Update.
3929
39302002-02-11 Akim Demaille <akim@epita.fr>
3931
3932 * tests/regression.at (%nonassoc and eof): Don't include
3933 nonportable headers.
3934
39352002-02-08 Robert Anisko <robert@lrde.epita.fr>
3936
3937 * data/bison.c++: Correct error recovery. Make the user able to
3938 initialize the starting location.
3939
39402002-02-07 Akim Demaille <akim@epita.fr>
3941
3942 * tests/input.at: New.
3943
39442002-02-07 Robert Anisko <robert@lrde.epita.fr>
3945
3946 * data/bison.c++: Replace some direct m4 expansions by constants. Be
3947 more consistent when naming methods and variables. Put preprocessor
3948 directives around tables only needed for debugging.
3949
39502002-02-07 Robert Anisko <robert@lrde.epita.fr>
3951
3952 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
3953 C++ parsers.
3954 (yy::b4_name::parse): Use print_.
3955
39562002-02-07 Robert Anisko <robert@lrde.epita.fr>
3957
3958 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
3959
39602002-02-07 Robert Anisko <robert@lrde.epita.fr>
3961
3962 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
3963 C++ parsers.
3964 (yy::b4_name::parse): Build verbose error messages, and use error_.
3965
39662002-02-06 Robert Anisko <robert@lrde.epita.fr>
3967
3968 * data/bison.c++: Fix m4 quoting in comments.
3969
39702002-02-06 Robert Anisko <robert@lrde.epita.fr>
3971
3972 * data/bison.c++: Adjust the parser code. Fix some muscles that were
3973 not expanded by m4.
3974
39752002-02-05 Akim Demaille <akim@epita.fr>
3976
3977 * data/bison.c++: Adjust to the M4 back end.
3978 More is certainly needed.
3979
39802002-02-05 Akim Demaille <akim@epita.fr>
3981
3982 Give a try to M4 as a back end.
3983
3984 * lib/readpipe.c: New, from wdiff.
3985 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
3986 BISON_HAIRY.
3987 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
3988 specific values. Now it is m4 that performs the lookup.
3989 * src/parse-skel.y: Remove.
3990 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
3991 * src/output.c (actions_output, guards_output)
3992 (token_definitions_output): No longer keeps track of the output
3993 line number, hence remove the second argument.
3994 (guards_output): Check against the guard member of a rule, not the
3995 action member.
3996 Adjust callers.
3997 (output_skeleton): Don't look for the skeleton location, let m4 do
3998 that.
3999 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
4000 file will be used.
4001 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
4002 (prepare): Given that for the time being changesyntax is not
4003 usable in M4, rename the muscles using `-' to `_'.
4004 Define `defines_flag', `output_parser_name' and `output_header_name'.
4005 * src/output.h (actions_output, guards_output)
4006 (token_definitions_output): Adjust prototypes.
4007 * src/scan-skel.l: Instead of scanning the skeletons, it now
4008 processes the output of m4: `__oline__' and `#output'.
4009 * data/bison.simple: Adjust to be used by M4(sugar).
4010 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
4011 to date.
4012 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
4013 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
4014 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
4015 shamelessly stolen from CVS Autoconf.
4016
40172002-02-05 Akim Demaille <akim@epita.fr>
4018
4019 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
4020 * configure.in: Check for the declarations of free and malloc.
4021 * src/muscle_tab.c: Adjust.
4022
40232002-02-05 Akim Demaille <akim@epita.fr>
4024
4025 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
4026 which have no values.
4027
40282002-02-05 Akim Demaille <akim@epita.fr>
4029
4030 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
4031 * data/: here.
4032
40332002-01-29 Paul Eggert <eggert@twinsun.com>
4034
4035 * src/bison.simple (YYSIZE_T): Do not define merely because
4036 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
4037 On some platforms, <alloca.h> does not declare YYSTD (size_t).
4038
40392002-01-27 Akim Demaille <akim@epita.fr>
4040
4041 Fix `%nonassoc and eof'.
4042
4043 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
4044 which were not properly copied! Replace
4045 memcpy (res->errs, src->errs, src->nerrs);
4046 with
4047 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
4048 !!!
4049 * tests/regression.at (%nonassoc and eof): Adjust to newest
4050 Autotest: `.' is not in the PATH.
4051
40522002-01-27 Akim Demaille <akim@epita.fr>
4053
4054 * tests/sets.at (AT_EXTRACT_SETS): New.
4055 (Nullable): Use it.
4056 (Firsts): New.
4057
40582002-01-26 Akim Demaille <akim@epita.fr>
4059
4060 * tests/actions.at, tests/calc.at, tests/headers.at,
4061 * tests/torture.at: Adjust to the newest Autotest which no longer
4062 forces `.' in the PATH.
4063
40642002-01-25 Akim Demaille <akim@epita.fr>
4065
4066 * tests/regression.at (%nonassoc and eof): New.
4067 Suggested by Robert Anisko.
4068
40692002-01-24 Akim Demaille <akim@epita.fr>
4070
4071 Bison dumps core when trying to complain about broken input files.
4072 Reported by Cris van Pelt.
4073
4074 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
4075 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
4076 into...
4077 (Invalid inputs): Strengthen: exercise parse_percent_token.
4078
40792002-01-24 Robert Anisko <robert.anisko@epita.fr>
4080
4081 * src/Makefile.am: Add bison.c++.
4082 * src/bison.c++: New skeleton.
4083
40842002-01-21 Paolo Bonzini <bonzini@gnu.org>
4085
4086 * po/it.po: New.
4087
40882002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
4089
4090 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
4091
40922002-01-20 Marc Autret <marc@gnu.org>
4093
4094 * src/files.c (compute_output_file_names): Fix
4095
40962002-01-20 Marc Autret <marc@gnu.org>
4097
4098 * tests/output.at: New test.
4099 * src/files.c (compute_base_names): Don't map extensions when
4100 the YACC flag is set, use defaults.
4101 Reported by Evgeny Stambulchik.
4102
41032002-01-20 Marc Autret <marc@gnu.org>
4104
4105 * src/system.h: Need to define __attribute__ away for non-GCC
4106 compilers as well (i.e. the vendor C compiler).
4107 Suggested by Albert Chin-A-Young.
4108
41092002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
4110
4111 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
4112 canonical definition.
4113 * src/system.h: Use the canonical definition for PARAMS (avoids
4114 a conflict with the macro from lib/hash.h).
4115
41162002-01-11 Akim Demaille <akim@epita.fr>
4117
4118 * configure.in: Use AC_FUNC_STRNLEN.
4119 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
4120
41212002-01-09 Akim Demaille <akim@epita.fr>
4122
4123 * src/files.c, src/files.h (output_infix): New.
4124 (tab_extension): Remove.
4125 (compute_base_names): Compute the former, drop the latter.
4126 * src/output.c (prepare): Insert the muscles `output-infix', and
4127 `output-suffix'.
4128 * src/parse-skel.y (string, string.1): New.
4129 (section.header): Use it.
4130 (section.yacc): Remove.
4131 (prefix): Remove too.
4132 * src/scan-skel.l: Adjust.
4133 * src/bison.simple, src/bison.hairy: Adjust.
4134
41352002-01-09 Akim Demaille <akim@epita.fr>
4136
4137 * configure.in (WERROR_CFLAGS): Compute it.
4138 * src/Makefile.am (CFLAGS): Pass it.
4139 * tests/atlocal.in (CFLAGS): Idem.
4140 * src/files.c: Fix a few warnings.
4141 (get_extension_index): Remove, unused.
4142
41432002-01-08 Akim Demaille <akim@epita.fr>
4144
4145 * src/getargs.c (AS_FILE_NAME): New.
4146 (getargs): Use it to convert DOSish file names.
4147 * src/files.c (base_name): Rename as full_base_name to avoid
4148 clashes with `base_name ()'.
4149 (filename_split): New.
4150 (compute_base_names): N-th rewrite, using filename_split.
4151
41522002-01-08 Akim Demaille <akim@epita.fr>
4153
4154 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
4155 New, stolen from the Fileutils 4.1.
4156 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
4157 * configure.in: Check for the presence of memrchr, and of its
4158 prototype.
4159
41602002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
4161
4162 * lib/hash.h (__P): Added definition for this macro.
4163 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
4164 BUILT_SOURCES, to ensure they are generated first.
4165 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
4166 %error-verbose to allow bootstrapping with bison 1.30x.
4167
41682002-01-06 Akim Demaille <akim@epita.fr>
4169
4170 * src/reader.c (parse_braces): Don't fetch the next char, the
4171 convention is to fetch on entry.
4172 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
4173 'switch' without a following semicolon.
4174 * tests/regression.at (braces parsing): New.
4175
41762002-01-06 Akim Demaille <akim@epita.fr>
4177
4178 Bison is dead wrong in its RR conflict reports.
4179
4180 * tests/torture.at (GNU Cim Grammar): New.
4181 * src/conflicts.c (count_rr_conflicts): Fix.
4182
41832002-01-06 Akim Demaille <akim@epita.fr>
4184
4185 Creating package.m4 from configure.ac causes too many problems.
4186
4187 * tests/Makefile.am (package.m4): Create it by hand,
4188 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
4189
41902002-01-06 Akim Demaille <akim@epita.fr>
4191
4192 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
4193 skeleton.h.
4194
41952002-01-04 Paul Eggert <eggert@twinsun.com>
4196
4197 * doc/bison.texinfo (Debugging):
4198 Remove YYSTDERR; it's no longer defined or used.
4199 Also, s/cstdio.h/cstdio/.
4200
42012002-01-03 Akim Demaille <akim@epita.fr>
4202
4203 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
4204
42052002-01-03 Akim Demaille <akim@epita.fr>
4206
4207 * src/parse-skel.y (process_skeleton): Don't bind the parser's
4208 tracing code to --trace, wait for a better --trace option, with
4209 args.
4210
42112002-01-03 Akim Demaille <akim@epita.fr>
4212
4213 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
4214 The ISO C++ standard is extremely clear about it: stderr is
4215 considered a macro, not a regular symbol (see table 94 `Header
4216 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
4217 Therefore std:: does not apply to it. It still does with fprintf.
4218 Also, s/cstdio.h/cstdio/.
4219
42202002-01-03 Akim Demaille <akim@epita.fr>
4221
4222 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
4223 for non system headers.
4224
42252002-01-02 Akim Demaille <akim@epita.fr>
4226
4227 Equip the skeleton chain with location tracking, runtime trace,
4228 pure parser and scanner.
4229
4230 * src/parse-skel.y: Request a pure parser, locations, and prefix
4231 renaming.
4232 (%union): Having several members with the same type does not help
4233 type mismatches, simplify.
4234 (YYPRINT, yyprint): New.
4235 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
4236 (skel_error): this.
4237 Handle locations.
4238 * src/scan-skel.l: Adjust to these changes.
4239 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
4240 (LOCATION_PRINT, skel_control_t): New.
4241
42422001-12-30 Akim Demaille <akim@epita.fr>
4243
4244 * src/parse-skel.y: Get rid of the shift/reduce conflict:
4245 replace `gb' with BLANKS.
4246 * src/scan-skel.l: Adjust.
4247
42482001-12-30 Akim Demaille <akim@epita.fr>
4249
4250 * src/system.h: We don't need nor want bcopy.
4251 Throw away MS-DOS crap: we don't need getpid.
4252 * configure.in: We don't need strndup. It was even causing
4253 problems: because Flex includes the headers *before* us,
4254 _GNU_SOURCE is not defined by config.h, and therefore strndup was
4255 not visible.
4256 * lib/xstrndup.c: New.
4257 * src/scan-skel.l: Use it.
4258 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
4259 * src/parse-skel.y: Use %directives instead of #defines.
4260
42612001-12-30 Akim Demaille <akim@epita.fr>
4262
4263 * src/skeleton.h: New.
4264 * src/output.c (output_parser, output_master_parser): Remove, dead
4265 code.
4266 * src/output.h (get_lines_number, actions_output, guards_output)
4267 (token_definitions_output): Prototype them.
4268 * src/parse-skel.y: Add the license notice.
4269 Include output.h and skeleton.h.
4270 (process_skeleton): Returns void, and takes a single parameter.
4271 * src/scan-skel.l: Add the license notice.
4272 Include skeleton.h.
4273 Don't use %option yylineno: it seems that then Flex imagines
4274 REJECT has been used, and therefore it won't reallocate its
4275 buffers (which makes no other sense to me than a bug). It results
4276 in warnings for `unused: yy_flex_realloc'.
4277
42782001-12-30 Robert Anisko <robert.anisko@epita.fr>
4279
4280 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
4281 (MUSCLE_INSERT_PREFIX): ...to there.
4282 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
4283 (MUSCLE_INSERT_PREFIX): Move from here...
4284
4285 * src/bison.hairy: Add a section directive. Put braces around muscle
4286 names. This parser skeleton is still broken, but Bison should not
4287 choke on a bad muscle 'syntax'.
4288 * src/bison.simple: Add a section directive. Put braces around muscle
4289 names.
4290
4291 * src/files.h (strsuffix, stringappend): Add declarations.
4292 (tab_extension): Add declaration.
4293 (short_base_name): Add declaration.
4294
4295 * src/files.c (strsuffix, stringappend): No longer static. These
4296 functions are used in the skeleton parser.
4297 (tab_extension): New.
4298 (compute_base_names): Use the computations done in this function
4299 to guess if the generated parsers should have '.tab' in their
4300 names.
4301 (short_base_name): No longer static.
4302
4303 * src/output.c (output_skeleton): New.
4304 (output): Disable call to output_master_parser, and give a try to
4305 a new skeleton handling system.
4306 (guards_output, actions_output): No longer static.
4307 (token_definitions_output, get_lines_number): No longer static.
4308
4309 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
4310
4311 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
4312 parse-skel.y.
4313
4314 * src/parse-skel.y: New file.
4315 * src/scan-skel.l: New file.
4316
43172001-12-29 Akim Demaille <akim@epita.fr>
4318
4319 %name-prefix is broken.
4320
4321 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
4322 Adjust all dependencies.
4323 * tests/headers.at (export YYLTYPE): Strengthen this test: use
4324 %name-prefix.
4325
4326 Renaming yylval but not yylloc is not consistent. Now we do.
4327
4328 * src/bison.simple: Prefix yylloc if used.
4329 * doc/bison.texinfo (Decl Summary): Document that.
4330
43312001-12-29 Akim Demaille <akim@epita.fr>
4332
4333 * doc/bison.texinfo: Promote `%long-directive' over
4334 `%long_directive'.
4335 Remove all references to fixed-output-files, yacc is enough.
4336
43372001-12-29 Akim Demaille <akim@epita.fr>
4338
4339 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
4340 user prologue. These are defaults.
4341 * tests/actions.at (Mid-rule actions): Make sure the user can
4342 define YYDEBUG and YYERROR_VERBOSE.
4343
43442001-12-29 Akim Demaille <akim@epita.fr>
4345
4346 * src/output.c (header_output): Don't forget to export YYLTYPE and
4347 yylloc.
4348 * tests/headers.at (export YYLTYPE): New, make sure it does.
4349 * tests/regression.at (%union and --defines, Invalid CPP headers):
4350 Move to...
4351 * tests/headers.at: here.
4352
43532001-12-29 Akim Demaille <akim@epita.fr>
4354
4355 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
4356
43572001-12-29 Akim Demaille <akim@epita.fr>
4358
4359 * tests/actions.at (Mid-rule actions): Output on a single line
4360 instead of several.
4361
43622001-12-29 Akim Demaille <akim@epita.fr>
4363
4364 * doc/bison.texinfo: Formatting changes.
4365
43662001-12-29 Akim Demaille <akim@epita.fr>
4367
4368 Don't store the token defs in a muscle, just be ready to output it
4369 on command. Now possible via `symbols'. Fixes a memory leak.
4370
4371 * src/output.c (token_definitions_output): New.
4372 (output_parser, header_output): Use it.
4373 * src/reader.c (symbols_save): Remove.
4374
43752001-12-29 Akim Demaille <akim@epita.fr>
4376
4377 * src/bison.simple: Do not provide a default for YYSTYPE and
4378 YYLTYPE before the user's prologue. Otherwise it's hardly... a
4379 default.
4380
43812001-12-29 Akim Demaille <akim@epita.fr>
4382
4383 Mid-rule actions are simply... ignored!
4384
4385 * src/reader.c (readgram): Be sure to attach mid-rule actions to
4386 the empty-rule associated to the dummy symbol, not to the host
4387 rule.
4388 * tests/actions.at (Mid-rule actions): New.
4389
43902001-12-29 Akim Demaille <akim@epita.fr>
4391
4392 Memory leak.
4393
4394 * src/reader.c (reader): Free grammar.
4395
43962001-12-29 Akim Demaille <akim@epita.fr>
4397
4398 Memory leak.
4399
4400 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
4401 since it allocates it for each state, although only one is needed.
4402 (allocate_storage): Do it here.
4403
44042001-12-29 Akim Demaille <akim@epita.fr>
4405
4406 * src/options.h, src/options.c (create_long_option_table): Rename
4407 as...
4408 (long_option_table_new): this, with a clearer prototype.
4409 (percent_table): Remove, unused,
4410 * src/getargs.c (getargs): Adjust.
4411
44122001-12-29 Akim Demaille <akim@epita.fr>
4413
4414 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
4415 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
4416 as states.
4417
44182001-12-29 Akim Demaille <akim@epita.fr>
4419
4420 * src/lalr.c (build_relations): Rename `states' as `states1'.
4421 Sorry, I don't understand exactly what it is, no better name...
4422
44232001-12-29 Akim Demaille <akim@epita.fr>
4424
4425 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
4426 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
4427 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
4428 as rules.
4429
44302001-12-29 Akim Demaille <akim@epita.fr>
4431
4432 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
4433 ago.
4434
44352001-12-29 Akim Demaille <akim@epita.fr>
4436
4437 * src/reader.c, src/reader.h (user_toknums): Remove.
4438 Adjust all users to use symbols[i]->user_token_number.
4439
44402001-12-29 Akim Demaille <akim@epita.fr>
4441
4442 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
4443 Adjust all users to use symbols[i]->prec or ->assoc.
4444
44452001-12-29 Akim Demaille <akim@epita.fr>
4446
4447 * src/reader.c, src/reader.h (tags): Remove.
4448 Adjust all users to use symbols[i]->tag.
4449
44502001-12-29 Akim Demaille <akim@epita.fr>
4451
4452 * src/gram.h, src/gram.c (symbols): New, similar to state_table
4453 and rule_table.
4454 * src/reader.c (packsymbols): Fill this table.
4455 Drop sprec.
4456 * src/conflicts.c (resolve_sr_conflict): Adjust.
4457 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
4458 single table.
4459 Use symbols[i]->tag instead of tags[i].
4460
44612001-12-29 Akim Demaille <akim@epita.fr>
4462
4463 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
4464 In addition, put a comment in there, to replace...
4465 * tests/regression.at (%union and C comments): Remove.
4466
44672001-12-29 Akim Demaille <akim@epita.fr>
4468
4469 * tests/regression.at (Web2c Actions): Blindly move the actual
4470 output as expected output. The contents *seem* right to me, but I
4471 can't pretend reading perfectly parser tables... Nonetheless, all
4472 the other tests pass correctly, the table look OK, even though the
4473 presence of `$axiom' is to be noted: AFAICS it is useless (but
4474 harmless).
4475
44762001-12-29 Akim Demaille <akim@epita.fr>
4477
4478 * src/reader.c (readgram): Don't add the rule 0 if there were no
4479 rules read. In other words, add it _after_ having performed
4480 grammar sanity checks.
4481 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
4482
44832001-12-29 Akim Demaille <akim@epita.fr>
4484
4485 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
4486 visible, and some states have now a different number.
4487
44882001-12-29 Akim Demaille <akim@epita.fr>
4489
4490 * src/reader.c (readgram): Bind the initial rule's lineno to that
4491 of the first rule.
4492 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
4493 (Solved SR Conflicts): Adjust rule 0's line number.
4494
44952001-12-29 Akim Demaille <akim@epita.fr>
4496
4497 Fix the `GAWK Grammar' failure.
4498
4499 * src/LR0.c (final_state): Initialize to -1 so that we do compute
4500 the reductions of the first state which was mistakenly confused
4501 with the final state because precisely final_state was initialized
4502 to 0.
4503 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
4504 now noticed by Bison.
4505 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
4506 have a reduction on $default.
4507
45082001-12-29 Akim Demaille <akim@epita.fr>
4509
4510 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
4511 rule line numbers.
4512 * src/closure.c (print_closure): Likewise.
4513 * src/derives.c (print_derives): Likewise.
4514 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
4515 now.
4516
45172001-12-29 Akim Demaille <akim@epita.fr>
4518
4519 * src/lalr.c (lookaheads_print): New.
4520 (lalr): Call it when --trace-flag.
4521 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
4522 are dumped.
4523
45242001-12-29 Akim Demaille <akim@epita.fr>
4525
4526 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
4527 when walking through ritem, even via rule->rhs.
4528 * src/reduce.c (dump_grammar, useful_production, reduce_output)
4529 (useful_production, useless_nonterminals): Likewise.
4530 (reduce_grammar_tables): Likewise, plus update nritems.
4531 * src/nullable.c (set_nullable): Likewise.
4532 * src/lalr.c (build_relations): Likewise.
4533 * tests/sets.at (Nullable): Adjust.
4534 Fortunately, now, the $axiom is no longer nullable.
4535
45362001-12-29 Akim Demaille <akim@epita.fr>
4537
4538 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
4539 the 0-sentinel.
4540 * src/gram.c (ritem_longest_rhs): Likewise.
4541 * src/reduce.c (nonterminals_reduce): Likewise.
4542 * src/print_graph.c (print_graph): Likewise.
4543 * src/output.c (output_rule_data): Likewise.
4544 * src/nullable.c (set_nullable): Likewise.
4545
45462001-12-29 Akim Demaille <akim@epita.fr>
4547
4548 * src/output.c: Comment changes.
4549
45502001-12-27 Paul Eggert <eggert@twinsun.com>
4551
4552 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
4553 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
4554 Sparc, as they were causing more porting problems than the
4555 (minor) performance improvement was worth.
4556
4557 Also, catch up with 1.31's YYSTD.
4558
45592001-12-27 Akim Demaille <akim@epita.fr>
4560
4561 * src/output.c (output_gram): Rely on nritems, not the
4562 0-sentinel. See below.
4563 Use -1 as separator, not 0.
4564 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
4565 Rely on -1 as separator in yyrhs, instead of 0.
4566 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
4567 twice `Now at end of input', therefore there are two lines less to
4568 expect.
4569
45702001-12-27 Akim Demaille <akim@epita.fr>
4571
4572 * tests/regression.at (Unresolved SR Conflicts):
4573 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
4574 below.
4575
45762001-12-27 Akim Demaille <akim@epita.fr>
4577
4578 * src/LR0.c (new_state): Recognize the final state by the fact it
4579 is reached by eoftoken.
4580 (insert_start_shifting_state, insert_eof_shifting_state)
4581 (insert_accepting_state, augment_automaton): Remove, since now
4582 these states are automatically computed from the initial state.
4583 (generate_states): Adjust.
4584 * src/print.c: When reporting a rule number to the user, substract
4585 1, so that the axiom rule is rule 0, and the first user rule is 1.
4586 * src/reduce.c: Likewise.
4587 * src/print_graph.c (print_core): For the time being, just as for
4588 the report, depend upon --trace-flags to dump the full set of
4589 items.
4590 * src/reader.c (readgram): Once the grammar read, insert the rule
4591 0: `$axiom: START-SYMBOL $'.
4592 * tests/set.at: Adjust: rule 0 is now displayed, and since the
4593 number of the states has changed (the final state is no longer
4594 necessarily the last), catch up.
4595
45962001-12-27 Akim Demaille <akim@epita.fr>
4597
4598 Try to make the use of the eoftoken valid. Given that its value
4599 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
4600 is used instead of > 0 where appropriate, (ii), depend upon nritems
4601 instead of the 0-sentinel.
4602
4603 * src/gram.h, src/gram.c (nritems): New.
4604 Expected to be duplication of nitems, but for the time being...
4605 * src/reader.c (packgram): Assert nritems and nitems are equal.
4606 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
4607 * src/closure.c (print_closure, print_fderives): Likewise.
4608 * src/gram.c (ritem_print): Likewise.
4609 * src/print.c (print_core, print_grammar): Likewise.
4610 * src/print_graph.c: Likewise.
4611
46122001-12-27 Akim Demaille <akim@epita.fr>
4613
4614 * src/main.c (main): If there are complains after grammar
4615 reductions, then output the report anyway if requested, then die.
4616 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
4617 * src/reader.c (eoftoken): New.
4618 (parse_token_decl): If the token being defined has value `0', it
4619 is the eoftoken.
4620 (packsymbols): No longer hack `tags' to insert `$' by hand.
4621 Be sure to preserve the value of the eoftoken.
4622 (reader): Make sure eoftoken is defined.
4623 Initialize nsyms to 0: now eoftoken is created just like the others.
4624 * src/print.c (print_grammar): Don't special case the eof token.
4625 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
4626 lie anyway, albeit pleasant.
4627 * tests/calc.at: Exercise error messages with eoftoken.
4628 Change the grammar so that empty input is invalid.
4629 Adjust expectations.
4630 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
4631
46322001-12-27 Akim Demaille <akim@epita.fr>
4633
4634 * configure.in: Check the protos of strchr ans strspn.
4635 Replace strchr if needed.
4636 * src/system.h: Provide the protos of strchr, strspn and memchr if
4637 missing.
4638 * lib/strchr.c: New.
4639 * src/reader.c (symbols_save): Use strchr.
4640
46412001-12-27 Akim Demaille <akim@epita.fr>
4642
4643 * src/print.c, src/print_graph.c (escape): New.
4644 Use it to quote the TAGS outputs.
4645 * src/print_graph.c (print_state): Now errors are in red, and
4646 reductions in green.
4647 Prefer high to wide: output the state number on a line of its own.
4648
46492001-12-27 Akim Demaille <akim@epita.fr>
4650
4651 * src/state.h, src/state.c (reductions_new): New.
4652 * src/LR0.c (set_state_table): Let all the states have a
4653 `reductions', even if reduced to 0.
4654 (save_reductions): Adjust.
4655 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
4656 * src/print.c (print_reductions, print_actions): Adjust.
4657 * src/output.c (action_row): Adjust.
4658
46592001-12-27 Akim Demaille <akim@epita.fr>
4660
4661 * src/state.h, src/state.c (errs_new, errs_dup): New.
4662 * src/LR0.c (set_state_table): Let all the states have an errs,
4663 even if reduced to 0.
4664 * src/print.c (print_errs, print_reductions): Adjust.
4665 * src/output.c (output_actions, action_row): Adjust.
4666 * src/conflicts.c (resolve_sr_conflict): Adjust.
4667
46682001-12-27 Akim Demaille <akim@epita.fr>
4669
4670 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
4671
46722001-12-27 Akim Demaille <akim@epita.fr>
4673
4674 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
4675 * src/print.c: here.
4676 (lookaheadset, shiftset): New, used as additional storage by
4677 print_reductions.
4678 (print_results): Adjust.
4679 (print_shifts, print_gotos, print_errs): New, extracted from...
4680 (print_actions): here.
4681 * src/print_graph.c (print_actions): Remove dead code.
4682
46832001-12-27 Akim Demaille <akim@epita.fr>
4684
4685 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
4686 `$n' and `@n'.
4687
46882001-12-27 Akim Demaille <akim@epita.fr>
4689
4690 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
4691 (build_relations): Adjust.
4692
46932001-12-27 Akim Demaille <akim@epita.fr>
4694
4695 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
4696 duplication.
4697
46982001-12-27 Akim Demaille <akim@epita.fr>
4699
4700 * src/reader.c (packgram): Catch nitems overflows.
4701
47022001-12-27 Akim Demaille <akim@epita.fr>
4703
4704 * src/files.c, src/files.h (guard_obstack): Remove.
4705 * src/output.c (output): Adjust.
4706 * src/reader.c (parse_braces): New, factoring...
4707 (copy_action, copy_guard): these two which are renamed as...
4708 (parse_action, parse_guard): these.
4709 As a voluntary consequence, using braces around guards is now
4710 mandatory.
4711
47122001-12-27 Akim Demaille <akim@epita.fr>
4713
4714 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
4715 * src/reader.c (symbol_list): `guard' and `guard_line' are new
4716 members.
4717 (symbol_list_new): Adjust.
4718 (copy_action): action_line is the first line, not the last.
4719 (copy_guard): Just as for actions, store the `action' only, not
4720 the switch/case/break flesh.
4721 Don't parse the user action that might follow the guard, let...
4722 (readgram): do it, i.e., now, there can be an action after a
4723 guard.
4724 In other words the guard is just explicitly optional.
4725 (packgram): Adjust.
4726 * src/output.c (guards_output): New.
4727 (output_parser): Call it when needed.
4728 (output): Also free the guard and attrs obstacks.
4729 * src/files.c, src/files.h (obstack_save): Remove.
4730 (output_files): Remove.
4731 As a result, if one needs the former `.act' file, using an
4732 appropriate skeleton which requires actions and guards is now
4733 required.
4734 * src/main.c (main): Adjust.
4735 * tests/semantic.at: New.
4736 * tests/regression.at: Use `input.y' as input file name.
4737 Avoid 8+3 problems by requiring input.c when the test needs the
4738 parser.
4739
47402001-12-27 Akim Demaille <akim@epita.fr>
4741
4742 * src/reader.c (symbol_list_new): Be sure to initialize all the
4743 fields.
4744
47452001-12-27 Akim Demaille <akim@epita.fr>
4746
4747 All the hacks using a final pseudo state are now useless.
4748
4749 * src/LR0.c (set_state_table): state_table holds exactly nstates.
4750 * src/lalr.c (nLA): New.
4751 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
4752 instead of lookaheadsp from the pseudo state (nstate + 1).
4753
47542001-12-27 Akim Demaille <akim@epita.fr>
4755
4756 * src/output.c (action_row, token_actions): Use a state_t instead
4757 of a integer, and nlookaheads instead of the following state's
4758 lookaheadsp.
4759
47602001-12-27 Akim Demaille <akim@epita.fr>
4761
4762 * src/conflicts.c (log_resolution, flush_shift)
4763 (resolve_sr_conflict, set_conflicts, solve_conflicts)
4764 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
4765 (conflicts_print, print_reductions): Use a state_t instead of an
4766 integer when referring to a state.
4767 As much as possible, depend upon nlookaheads, instead of the
4768 `lookaheadsp' member of the following state (since lookaheads of
4769 successive states are successive, the difference between state n + 1
4770 and n served as the number of lookaheads for state n).
4771 * src/lalr.c (add_lookback_edge): Likewise.
4772 * src/print.c (print_core, print_actions, print_state)
4773 (print_results): Likewise.
4774 * src/print_graph.c (print_core, print_actions, print_state)
4775 (print_graph): Likewise.
4776 * src/conflicts.h: Adjust.
4777
47782001-12-27 Akim Demaille <akim@epita.fr>
4779
4780 * src/bison.hairy: Formatting/comment changes.
4781 ANSIfy.
4782 Remove `register' indications.
4783 Add plenty of `static'.
4784
47852001-12-27 Akim Demaille <akim@epita.fr>
4786
4787 * src/output.c (prepare): Drop the muscle `ntbase' which
4788 duplicates ntokens.
4789 * src/bison.simple: Formatting/comment changes.
4790 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
4791 is an undocumented synonym.
4792
47932001-12-22 Akim Demaille <akim@epita.fr>
4794
4795 * src/output.c (output_table_data): Change the prototype to use
4796 `int' for array ranges: some invocations do pass an int, not a
4797 short.
4798 Reported by Wayne Green.
4799
48002001-12-22 Akim Demaille <akim@epita.fr>
4801
4802 Some actions of web2c.y are improperly triggered.
4803 Reported by Mike Castle.
4804
4805 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
4806 * tests/regression.at (Web2c): Rename as...
4807 (Web2c Report): this.
4808 (Web2c Actions): New.
4809
48102001-12-22 Akim Demaille <akim@epita.fr>
4811
4812 Reductions in web2c.y are improperly reported.
4813 Reported by Mike Castle.
4814
4815 * src/conflicts.c (print_reductions): Fix.
4816 * tests/regression.at (Web2c): New.
4817
48182001-12-18 Akim Demaille <akim@epita.fr>
4819
4820 Some host fail on `assert (!"foo")', which expands to
4821 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
4822 Reported by Nelson Beebee.
4823
4824 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
4825 `#define it_succeeded 0' and `assert (it_succeeded)'.
4826
48272001-12-17 Marc Autret <autret_m@epita.fr>
4828
4829 * src/bison.simple: Don't hard code the skeleton line and filename.
4830 * src/output.c (output_parser): Rename 'line' as 'output_line'.
4831 New line counter 'skeleton_line' (skeleton-line muscle).
4832
48332001-12-17 Paul Eggert <eggert@twinsun.com>
4834
4835 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
4836 YYDEBUG must be defined to a nonzero value.
4837
4838 * src/bison.simple (yytname): Do not assume that the user defines
4839 YYDEBUG to a properly parenthesized expression.
4840
48412001-12-17 Akim Demaille <akim@epita.fr>
4842
4843 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
4844 nlookaheads is a new member.
4845 Adjust all users.
4846 * src/lalr.h (nlookaheads): Remove this orphan declaration.
4847 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
4848 state.
4849
48502001-12-17 Akim Demaille <akim@epita.fr>
4851
4852 * src/files.h, src/files.c (open_files, close_files): Remove.
4853 * src/main.c (main): Don't open/close files, nor invoke lex_free,
4854 let...
4855 * src/reader.c (reader): Do it.
4856
48572001-12-17 Akim Demaille <akim@epita.fr>
4858
4859 * src/conflicts.c (print_reductions): Formatting changes.
4860
48612001-12-17 Akim Demaille <akim@epita.fr>
4862
4863 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
4864 (flush_reduce): New.
4865 (resolve_sr_conflict): Adjust.
4866
48672001-12-17 Akim Demaille <akim@epita.fr>
4868
4869 * src/output.c (output_obstack): Be static and rename as...
4870 (format_obstack): this, to avoid any confusion with files.c's
4871 output_obstack.
4872 * src/reader.h (muscle_obstack): Move to...
4873 * src/output.h: here, since it's defined in output.c.
4874
48752001-12-17 Akim Demaille <akim@epita.fr>
4876
4877 * src/output.c (action_row, save_column, default_goto)
4878 (sort_actions, matching_state, pack_vector): Better variable
4879 locality.
4880
48812001-12-17 Akim Demaille <akim@epita.fr>
4882
4883 * src/output.c: Various formatting changes.
4884
48852001-12-17 Akim Demaille <akim@epita.fr>
4886
4887 * src/files.c (output_files): Free the output_obstack.
4888 * src/main.c (main): Call print and print_graph conditionally.
4889 * src/print.c (print): Work unconditionally.
4890 * src/print_graph.c (print_graph): Work unconditionally.
4891 * src/conflicts.c (log_resolution): Output only if verbose_flag.
4892
48932001-12-16 Marc Autret <autret_m@epita.fr>
4894
4895 * src/output.c (actions_output): Fix. When we use %no-lines,
4896 there is one less line per action.
4897
48982001-12-16 Marc Autret <autret_m@epita.fr>
4899
4900 * src/bison.simple: Remove a useless #line directive.
4901 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
4902 * src/output.c (get_lines_number): New.
4903 (output_parser): Adjust, now takes care about the lines of a
4904 output muscles.
4905 Fix line numbering.
4906 (actions_output): Computes the number of lines taken by actions.
4907 (output_master_parser): Insert new skeleton which is the name of
4908 the output parser file name.
4909
49102001-12-15 Marc Autret <autret_m@epita.fr>
4911
4912 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
4913
49142001-12-15 Marc Autret <autret_m@epita.fr>
4915
4916 * src/output.c (output_gram): Keep track of the hairy one.
4917
49182001-12-15 Akim Demaille <akim@epita.fr>
4919
4920 Make `make distcheck' work.
4921
4922 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
4923 system.h which uses libgettext.h.
4924
49252001-12-15 Akim Demaille <akim@epita.fr>
4926
4927 * src/nullable.c (set_nullable): Useless rules must be skipped,
4928 otherwise, since we range over their symbols, we might look at a
4929 nonterminal which no longer ``exists'', i.e., it is not counted in
4930 `nvars', hence we overflow our arrays.
4931
49322001-12-15 Akim Demaille <akim@epita.fr>
4933
4934 The header can also be produced directly, without any obstack!
4935 Yahoo!
4936
4937 * src/files.c, src/files.h (defines_obstack): Remove.
4938 (compute_header_macro): Global.
4939 (defines_obstack_save): Remove.
4940 * src/reader.c (parse_union_decl): No longer output to
4941 defines_obstack: its content can be found in the `stype' muscle
4942 anyway.
4943 (output_token_translations): Merge into...
4944 (symbols_output): this.
4945 Rename as...
4946 (symbols_save): this.
4947 (reader): Adjust.
4948 * src/output.c (header_output): New.
4949 (output): Call it.
4950
49512001-12-15 Akim Demaille <akim@epita.fr>
4952
4953 * src/reader.c (parse_union_decl): Instead of handling two obstack
4954 simultaneously, use one to define the `stype' muscle, and use the
4955 value of the latter to fill defines_obstack.
4956 (copy_comment): Remove.
4957 (copy_comment2): Work for a single obstack.
4958 Rename as...
4959 (copy_comment): this.
4960
49612001-12-15 Akim Demaille <akim@epita.fr>
4962
4963 * src/lex.c, src/lex.h (xgetc): No longer static.
4964 * src/reader.c (parse_union_decl): Revamp.
4965
49662001-12-15 Akim Demaille <akim@epita.fr>
4967
4968 Still making progress in separating Bison into (i) input, (ii)
4969 process, (iii) output: now we can directly output the parser file
4970 without using table_obstack at all.
4971
4972 * src/files.c, src/files.h (table_obstack): Bye bye.
4973 (parser_file_name): New.
4974 * src/files.c (compute_output_file_names): Compute it.
4975 * src/output.c (actions_output, output_parser)
4976 (output_master_parser): To a file instead of an obstack.
4977
49782001-12-15 Akim Demaille <akim@epita.fr>
4979
4980 Attach actions to rules, instead of pre-outputting them to
4981 actions_obstack.
4982
4983 * src/gram.h (rule_t): action and action_line are new members.
4984 * src/reader.c (symbol_list): Likewise.
4985 (copy_action): Save the actions within the rule.
4986 (packgram): Save them in rule_table.
4987 * src/output.c (actions_output): New.
4988 (output_parser): Use it on `%%actions'.
4989 (output_rule_data): Don't free rule_table.
4990 (output): Do it.
4991 (prepare): Don't save the `action' muscle.
4992 * src/bison.simple: s/%%action/%%actions/.
4993
49942001-12-15 Akim Demaille <akim@epita.fr>
4995
4996 * src/reader.c (copy_action): When --yacc, don't append a `;'
4997 to the user action: let it fail if lacking.
4998 Suggested by Arnold Robbins and Tom Tromey.
4999
50002001-12-14 Akim Demaille <akim@epita.fr>
5001
5002 * src/lex.c (literalchar): Simply return the char you decoded, non
5003 longer mess around with obstacks and int pointers.
5004 Adjust all callers.
5005
50062001-12-14 Akim Demaille <akim@epita.fr>
5007
5008 * src/lex.c (literalchar): Don't escape the special characters,
5009 just decode them, and keep them as char (before, eol was output as
5010 the 2 char string `\n' etc.).
5011 * src/output.c (output_rule_data): Use quotearg to output the
5012 token strings.
5013
50142001-12-13 Paul Eggert <eggert@twinsun.com>
5015
5016 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
5017 Do not infringe on the global user namespace when using C++.
5018 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
5019 All uses of `fprintf' and `stderr' changed.
5020
5021 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
5022
50232001-12-13 Akim Demaille <akim@epita.fr>
5024
5025 The computation of nullable is broken: it doesn't handle empty
5026 RHS's properly.
5027
5028 * tests/torture.at (GNU AWK Grammar): New.
5029 * tests/sets.at (Nullable): New.
5030 * src/nullable.c (set_nullable): Instead of blindly looping over
5031 `ritems', loop over the rules, and then over their rhs's.
5032
5033 Work around Autotest bugs.
5034
5035 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
5036 frame, because Autotest understand lines starting with a `+' as
5037 traces from the shell. Then, they are not processed properly.
5038 Admittedly an Autotest bug, but we don't have time to wait for
5039 Autotest to catch up.
5040 * tests/regression.at (Broken Closure): Adjust to the new table
5041 frames.
5042 Move to...
5043 * tests/sets.at: here.
5044
50452001-12-13 Akim Demaille <akim@epita.fr>
5046
5047 * src/closure.c (closure): Use nrules instead of playing tricks
5048 with BITS_PER_WORD.
5049
50502001-12-13 Akim Demaille <akim@epita.fr>
5051
5052 * src/print.c (print_actions): Output the handling of `$' as the
5053 traces do: shifting the token EOF. Before EOF was treated as a
5054 nonterminal.
5055 * tests/regression.at: Adjust some tests.
5056 * src/print_graph.c (print_core): Complete the set of items via
5057 closure. The next-to-final and final states are still unsatisfying,
5058 but that's to be addressed elsewhere.
5059 No longer output the rule numbers, but do output the state number.
5060 A single loop for the shifts + gotos is enough, but picked a
5061 distinct color for each.
5062 (print_graph): Initialize and finalize closure.
5063
50642001-12-13 Akim Demaille <akim@epita.fr>
5065
5066 * src/reader.c (readgram): Remove dead code, an strip useless
5067 braces.
5068 (get_type): Remove, unused.
5069
50702001-12-12 Akim Demaille <akim@epita.fr>
5071
5072 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
5073 on that of lib/error.c.
5074
50752001-12-12 Akim Demaille <akim@epita.fr>
5076
5077 Some hosts don't like `/' in includes.
5078
5079 * src/system.h: Include libgettext.h without qualifying the path.
5080 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
5081 $(top_srcdir).
5082
50832001-12-11 Marc Autret <autret_m@epita.fr>
5084
5085 * src/output.c (output_parser): Remove useless muscle.
5086
50872001-12-11 Marc Autret <autret_m@epita.fr>
5088
5089 * src/bison.simple: Remove #line just before %%epilogue. It
5090 is now handled in ...
5091 * src/reader.c (read_additionnal_code): Add the output of a
5092 #line for the epilogue.
5093
50942001-12-10 Marc Autret <autret_m@epita.fr>
5095
5096 * src/reader.c (copy_definition): Re-use CPP-outed code which
5097 replace precedent remove.
5098 * src/bison.simple: Remove #line before %%prologue because
5099 %%input-line is wrong at this time.
5100
51012001-12-10 Marc Autret <autret_m@epita.fr>
5102
5103 * src/reader.c (symbols_output): Clean up.
5104 * src/output.c (output_gram, output): Clean up.
5105
51062001-12-10 Akim Demaille <akim@epita.fr>
5107
5108 * src/lalr.c (initialize_lookaheads): New. Extracted from...
5109 * src/LR0.c (set_state_table): here.
5110 * src/lalr.c (lalr): Call it.
5111
51122001-12-10 Akim Demaille <akim@epita.fr>
5113
5114 * src/state.h (shifts): Remove the `number' member: shifts are
5115 attached to state, hence no longer need to be labelled with a
5116 state number.
5117
51182001-12-10 Akim Demaille <akim@epita.fr>
5119
5120 Now that states have a complete set of members, the linked list of
5121 shifts is useless: just fill directly the state's shifts member.
5122
5123 * src/state.h (shifts): Remove the `next' member.
5124 * src/LR0.c (first_state, last_state): Remove.
5125 Adjust the callers.
5126 (augment_automaton): Don't look for the shifts that must be added
5127 a shift on EOF: it is those of the state we looked for! But now,
5128 since shifts are attached, it is no longer needed to looking
5129 merely by its id: its number.
5130
51312001-12-10 Akim Demaille <akim@epita.fr>
5132
5133 * src/LR0.c (augment_automaton): Better variable locality.
5134 Remove an impossible branch: if there is a state corresponding to
5135 the start symbol being shifted, then there is shift for the start
5136 symbol from the initial state.
5137
51382001-12-10 Akim Demaille <akim@epita.fr>
5139
5140 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
5141 only when appropriate: when insert_start_shifting_state' is not
5142 invoked.
5143 * tests/regression.at (Rule Line Numbers): Adjust.
5144
51452001-12-10 Akim Demaille <akim@epita.fr>
5146
5147 * src/LR0.c (augment_automaton): Now that all states have shifts,
5148 merge the two cases addition shifts to the initial state.
5149
51502001-12-10 Akim Demaille <akim@epita.fr>
5151
5152 * src/lalr.c (set_state_table): Move to...
5153 * src/LR0.c: here.
5154 * src/lalr.c (lalr): Don't call it...
5155 * src/LR0.c (generate_states): do it.
5156 * src/LR0.h (first_state): Remove, only the table is used.
5157
51582001-12-10 Akim Demaille <akim@epita.fr>
5159
5160 * src/LR0.h (first_shift, first_reduction): Remove.
5161 * src/lalr.c: Don't use first_shift: find shifts through the
5162 states.
5163
51642001-12-10 Akim Demaille <akim@epita.fr>
5165
5166 * src/LR0.c: Attach shifts to states as soon as they are
5167 computed.
5168 * src/lalr.c (set_state_table): Instead of assigning shifts to
5169 state, just assert that the mapping was properly done.
5170
51712001-12-10 Akim Demaille <akim@epita.fr>
5172
5173 * src/LR0.c (insert_start_shift): Rename as...
5174 (insert_start_shifting_state): this.
5175 (insert_eof_shifting_state, insert_accepting_state): New.
5176 (augment_automaton): Adjust.
5177 Better locality of the variables.
5178 When looking if the start_symbol is shifted from the initial
5179 state, using `while (... symbol != start_symbol ...)' sounds
5180 better than `while (... symbol < start_symbol ...)': If fail
5181 to see how the order between symbols could be relevant!
5182
51832001-12-10 Akim Demaille <akim@epita.fr>
5184
5185 * src/getargs.h: Don't declare `spec_name_prefix' and
5186 `spec_file_prefix', declared by src/files.h.
5187 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
5188 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
5189 * src/output.c (prepare): Adjust.
5190 * src/reader.c (symbols_output): Likewise.
5191 * src/vmsgetargs.c: Vaguely adjust, but who cares?
5192
51932001-12-10 Akim Demaille <akim@epita.fr>
5194
5195 * src/muscle_tab.c (muscle_init): NULL is a better default than
5196 `"0"'.
5197
51982001-12-10 Akim Demaille <akim@epita.fr>
5199
5200 * src/reader.c (reader): Calling symbols_output once is enough.
5201
52022001-12-10 Akim Demaille <akim@epita.fr>
5203
5204 Now that states have a complete set of members, the linked list of
5205 reductions is useless: just fill directly the state's reductions
5206 member.
5207
5208 * src/state.h (struct reductions): Remove member `number' and
5209 `next'.
5210 * src/LR0.c (first_reduction, last_reduction): Remove.
5211 (save_reductions): Don't link the new reductions, store them in
5212 this_state.
5213 * src/lalr.c (set_state_table): No need to attach reductions to
5214 states, it's already done.
5215 * src/output.c (output_actions): No longer free the shifts, then
5216 the reductions, then the states: free all the states and their
5217 members.
5218
52192001-12-10 Akim Demaille <akim@epita.fr>
5220
5221 * src/options.c (OPTN, DRTV, BOTH): New.
5222 (option_table): Use them.
5223
5224 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
5225 the job of system.h.
5226 * src/options.c: Don't include stdio.h and xalloc.h for the same
5227 reasons.
5228
52292001-12-10 Akim Demaille <akim@epita.fr>
5230
5231 * src/output.c (output, prepare): Make sure the values of the
5232 muscles `action' and `prologue' are 0-terminated.
5233
52342001-12-10 Akim Demaille <akim@epita.fr>
5235
5236 Clean up GCC warnings.
5237
5238 * src/reader.c (copy_action): `buf' is not used.
5239 (parse_skel_decl): Be static.
5240 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
5241 * src/options.h (create_long_option_table): Have a real prototype.
5242 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
5243 (hash_delete_at): Return const void *.
5244 Adjust casts to preserve the const.
5245
52462001-12-10 Akim Demaille <akim@epita.fr>
5247
5248 * configure.in: Require 2.52g.
5249 M4 is not needed, but AUTOM4TE is.
5250 * m4/m4.m4: Remove.
5251 * tests/Makefile.am: Adjust.
5252
52532001-12-10 Akim Demaille <akim@epita.fr>
5254
5255 One structure for states is enough, even though theoretically
5256 there are LR(0) states and LALR(1) states.
5257
5258 * src/lalr.h (state_t): Remove.
5259 (state_table): Be state_t **, not state_t *.
5260 * src/state.h (core, CORE_ALLOC): Rename as...
5261 (state_t, STATE_ALLOC): this.
5262 Add the LALR(1) members: shifts, reductions, errs.
5263 * src/LR0.c (state_table): Rename as...
5264 (state_hash): this, to avoid name clashes with the global
5265 `state_table'.
5266 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
5267 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
5268
52692001-12-10 Akim Demaille <akim@epita.fr>
5270
5271 Bison dumps core on bash.y.
5272 Reported by Pascal Bart.
5273
5274 * src/warshall.c (bitmatrix_print): New.
5275 (TC): Use it.
5276 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
5277 j must be the outer loop.
5278 * tests/regression.at (Broken Closure): New.
5279
52802001-12-05 Akim Demaille <akim@epita.fr>
5281
5282 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
5283 its argument.
5284