]> git.saurik.com Git - bison.git/blame - ChangeLog
Bump version number.
[bison.git] / ChangeLog
CommitLineData
23f2d9dc
PE
12002-12-24 Paul Eggert <eggert@twinsun.com>
2
3 Version 1.75e.
4
5 * Makefile.maint (cvs-update): Don't assume that the shell
6 supports $(...), as Solaris sh doesn't.
7
8 * src/parse-gram.y (lloc_default): Remove test for empty
9 nonterminals at the end, since it didn't change the result.
10
112002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
12
13 If the user does not define YYSTYPE as a macro, Bison now declares it
14 using typedef instead of defining it as a macro. POSIX requires this.
15 For consistency, YYLTYPE is also declared instead of defined.
16
17 %union directives can now have a tag before the `{', e.g., the
18 directive `%union foo {...}' now generates the C code
19 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
20 The default union tag is `YYSTYPE', for compatibility with Solaris 9
21 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
22 instead of `yyltype'.
23
24 `yystype' and `yyltype' are now obsolescent macros instead of being
25 typedefs or tags; they are no longer documented and will be
26 withdrawn in a future release.
27
28 * data/glr.c (b4_location_type): Remove.
29 (YYSTYPE): Renamed from yystype.
30 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
31 (struct YYLTYPE): Renamed from struct yyltype.
32 (YYLTYPE): Renamed from yyltype.
33 (yyltype, yystype): New (and obsolescent) macros,
34 for backward compatibility.
35 * data/yacc.c: Likewise.
36
37 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
38 does not specify a union tag. This is for compatibility with
39 Solaris 9 yacc.
40
41 * src/parse-gram.y (add_param): 2nd arg is now char * not char
42 const *, since it is now modified by stripping surrounding { }.
43 (current_braced_code): Remove.
44 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
45 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
46 trailing " {...}". Now of type <chars>.
47 (grammar_declaration): Adjust to bundled tokens.
48 (code_content): Remove; stripping is now done by add_param.
49 (print_token_value): Print contents of bundled tokens.
50 (token_name): New function.
51
52 * src/reader.h (braced_code, current_braced_code): Remove.
53 (token_name): New decl.
54
55 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
56 token_type, not braced_code code_kind. All uses changed.
57 (SC_PRE_CODE): New state, for scanning after a keyword that
58 has (or usually has) an immediately-following braced code.
59 (token_type): New local var, to keep track of which token type
60 to return when scanning braced code.
61 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
62 <INITIAL>"%parse-param", <INITIAL>"%printer,
63 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
64 instead of returning a token type immediately.
65 (<INITIAL>"{"): Set token type.
66 (<SC_BRACED_CODE>"}"): Use it.
67 (handle_action_dollar, handle_action_at): Now returns bool
68 indicating success. Fail if ! current_rule; this prevents a core dump.
69 (handle_symbol_code_dollar, handle_symbol_code_at):
70 Remove; merge body into caller.
71 (handle_dollar, handle_at): Complain in invalid contexts.
72
73 * NEWS, doc/bison.texinfo: Document the above.
74 * NEWS: Fix years and program names in copyright notice.
75
879ca4f8
PE
762002-12-17 Paul Eggert <eggert@twinsun.com>
77
78 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
79 Reporting, Table of Symbols): Omit mentions of %lex-param and
80 %parse-param from the documentation for now.
81
1c5fe69d
PE
822002-12-15 Paul Eggert <eggert@twinsun.com>
83
84 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
85 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
86 lookahead symbol, and which sets yychar in parser actions) and it
87 disagreed with the Bison documentation. This should fix the bug
88 reported by Andrew Walrond in
89 <http://mail.gnu.org/pipermail/bug-bison/2002-December/001949.html>.
90
91 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
92 as the caller now does that.
93 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
94 (YYEMPTY): Parenthesize right hand side, since others use it.
95 (yyparse): Don't assume that our generated code is the only code
96 that sets yychar.
97
d1de5372
PE
982002-12-13 Paul Eggert <eggert@twinsun.com>
99
100 Version 1.75d.
101
102 POSIX requires a "yacc" command.
103 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
104 (MOSTLYCLEANFILES): Add yacc.
105 (yacc): New rule.
1c5fe69d 106 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
107 as an alias for bison y.
108
109 * po/LINGUAS: Add da.
110
111 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
112 problem with latest <getopt.h>.
113 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
114
115 * doc/fdl.texi: Upgrade to 1.2.
116 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
117 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
118 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
119 gnulib.
120 * config/install-sh: Sync with autotools.
121
122 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
123 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001929.html>.
124 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
125 locations are requested.
126 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
127 locations are requested.
128
d0f3fe23
PE
1292002-12-12 Paul Eggert <eggert@twinsun.com>
130
131 Remove unportable casts and storage allocation tricks.
132 While we're at it, remove almost all casts, since they
133 usually aren't needed and are a sign of trouble.
134
135 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
136
137 * src/derives.c (derives_compute): Do not subtract NTOKENS from
138 the pointer DSET returned by malloc; this isn't portable.
139 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
140 Similarly for DERIVES.
141 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
142 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
143 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
144
145 * src/derives.c (derives_compute): Do not bother invoking
146 int_of_rule_number, since rule numbers are integers.
147
148 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
149 rather than XMALLOC (char, N).
150
151 * src/files.c (filename_split): Rewrite to avoid cast.
152
153 * src/gram.h (symbol_number_as_item_number,
154 item_number_as_symbol_number, rule_number_as_item_number,
155 item_number_as_rule_number):
156 Now inline functions rather than macros, to avoid casts.
157 * src/state.h (state_number_as_int): Likewise.
158 * src/tables.c (state_number_to_vector_number,
159 symbol_number_to_vector_number): Likewise.
160
161 * src/gram.h (int_of_rule_number): Remove; no longer used.
162
163 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
164 since the resulting storage is always stored into.
165
166 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
167 where it's needed.
168
169 * src/muscle_tab.c (muscle_m4_output):
170 Now inline. Return bool, not int.
171 * src/state.c (state_compare): Likewise.
172 * src/symtab.c (symbol_check_defined,
173 symbol_check_alias_consistency, symbol_pack, symbol_translation,
174 hash_compare_symbol, hash_symbol):
175 Likewise.
176 * src/uniqstr.c (uniqstr_print): Likewise.
177 * src/muscle_tab.c (muscle_m4_output_processor):
178 New function, to avoid casts.
179 * src/state.c (state_comparator, stage_hasher): Likewise.
180 * src/symtab.c (symbol_check_defined_processor,
181 symbol_check_alias_consistency_processor, symbol_pack_processor,
182 symbol_translation_processor, hash_symbol_comparator,
183 hash_symbol_hasher): Likewise.
184 * src/uniqstr.c (uniqstr_print_processor): Likewise.
185 * src/muscle_tab.c (muscles_m4_output):
186 Use new functions instead of casting old functions unportably.
187 * src/state.c (state_hash_new): Likewise.
188 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
189 symbols_token_translations_init):
190 Likewise.
191 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
192
193 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
194 var instead of casting to long, to avoid casts.
195 (prepare_states): Use MALLOC rather than alloca, so that we don't
196 have to worry about alloca.
197 * src/state.c (state_hash_lookup): Likewise.
198
199 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
200 local var instead of casting to unsigned char, to avoid casts.
201
202 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
203 STATE_ALLOC): Remove.
204 (transitions_new, errs_new, reductions_new, state_new): Use malloc
205 rather than calloc, and use offsetof to avoid allocating slightly
206 too much storage.
207 (state_new): Initialize all members.
208
209 * src/state.c (state_hash): Use unsigned accumulator, not signed.
210
211 * src/symtab.c (symbol_free): Remove; unused.
212 (symbol_get): Remove cast in lhs of assignment.
213 (symbols_do): Now static. Accept generic arguments, not
214 hashing-related ones.
215
216 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
217 (symbol_processor): Remove.
218 (symbols_do): Remove decl; now static.
219
220 * src/system.h (alloca): Remove; decl no longer needed.
221 (<stddef.h>): Include, for offsetof.
222 (<inttypes.>, <stdint.h>): Include if available.
223 (uintptr_t): New type, if system lacks it.
224 (CALLOC, MALLOC, REALLOC): New macros.
225 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
226 new macros.
227
228 * src/tables.c (table_size): Now int, to pacify GCC.
229 (table_grow, table_ninf_remap): Use signed table size.
230 (save_row): Don't bother initializing locals when not needed.
231 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
232 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
233
234 * src/vcg.h: Correct misspellings.
235
236 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
237
238
239 * src/getargs.c (getargs): Don't assume EOF == -1.
240
26b4a969
PE
2412002-12-09 Paul Eggert <eggert@twinsun.com>
242
243 Change identifier spellings to avoid collisions with names
244 that are reserved by POSIX.
245
246 Don't use names ending in _t, since POSIX reserves them.
247 For consistency, remove _e and _s endings -- they're weren't
248 needed to remove ambiguity. All uses changed.
249 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
250 turn was just renamed from struniq_t.
251 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
252 which in turn was just renamed from struniq_processor_t.
253 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
254 in turn was renamed from hash_compare_struniq_t.
255 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
256 (state_list): Renamed from state_list_t.
257 * src/assoc.h (assoc): Renamed from assoc_t.
258 * src/conflicts.c (enum conflict_resolution): Renamed from
259 enum conflict_resolution_e.
260 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
261 (rule_list): Renamed from rule_list_t.
262 * src/getargs.h (enum trace): Renamed from enum trace_e.
263 (enum report): Renamed from enum report_e.
264 * src/gram.h (item_number): Renamed from item_number_t.
265 (rule_number): Renamed from rule_number_t.
266 (struct rule_s): Remove the "rule_s" part; not used.
267 (rule): Renamed from rule_t.
268 (rule_filter): Renamed from rule_filter_t.
269 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
270 (goto_list): Renamed from goto_list_t.
271 * src/lalr.h (goto_number): Renamed from goto_number_t.
272 * src/location.h (location): Renamed from location_t.
273 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
274 and moved here from:
275 * src/muscle_tab.h (muscle_entry_t): here.
276 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
277 (rule_list): Renamed from rule_list_t.
278 * src/print_graph.c (static_graph): Renamed from graph.
279 * src/reader.h (braced_code): Renamed from braced_code_t.
280 Remove brace_code_e tag.
281 * src/relation.h (relation_node): Renamed from relation_node_t.
282 (relation_nodes): Renamed from relation_nodes_t.
283 (relation): Renamed from relation_t.
284 * src/state.h (state_number): Renamed from state_number_t.
285 (struct state): Renamed from struct state_s.
286 (state): Renamed from state_t.
287 (transitions): Renamed from transitions_t. Unused (and
288 misspelled) transtion_s tag removed.
289 (errs): Renamed from errs_t. Unused errs_s tag removed.
290 (reductions): Renamed from reductions_t. Unused tag
291 reductions_s removed.
292 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
293 (struct symbol_list): Renamed from struct symbol_list_s.
294 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
295 (struct symbol): Renamed from struct symbol_s.
296 (symbol): Renamed from symbol_t.
297 * src/tables.c (vector_number): Renamed from vector_number_t.
298 (action_number): Renamed from action_t.
299 * src/tables.h (base_number): Renamed from base_t.
300 * src/vcg.h (enum color): Renamed from enum color_e.
301 (enum textmode): Renamed from enum textmode_e.
302 (enum shape): Renamed from enum shape_e.
303 (struct colorentry): Renamed from struct colorentry_s.
304 (struct classname): Renamed from struct classname_s.
305 (struct infoname): Renamed from struct infoname_s.
306 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
307 (enum decision): Renamed from enum decision_e.
308 (enum orientation): Renamed from enum orientation_e.
309 (enum alignment): Renamed from enum alignment_e.
310 (enum arrow_mode): Renamed from enum arrow_mode_e.
311 (enum crossing_type): Renamed from enum crossing_type_e.
312 (enum view): Renamed from enum view_e.
313 (struct node): Renamed from struct node_s.
314 (node): Renamed from node_t.
315 (enum linestyle): Renamed from enum linestyle_e.
316 (enum arrowstyle): Renamed from enum arrowstyle_e.
317 (struct edge): Renamed from struct edge.
318 (edge): Renamed from edge_t.
319 (struct graph): Renamed from struct graph_s.
320 (graph): Renamed from graph_t.
321 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
322 Rename value_t -> value.
323 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
324 value_t_as_yystype -> value_as_yystype.
325
326 Don't include <errno.h> in the mainstream code, since it
327 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
328 * lib/get-errno.c, lib/get-errno.h: New files.
329 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
330 get-errno.c.
331 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
332 * src/output.c (output_skeleton): Likewise.
333 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
334 instead of errno.
335 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
336 Likewise.
337 (handle_action_dollar, handle_action_at): Likewise.
338 * src/system.h: Do not include <errno.h>.
339 (TAB_EXT): Renamed from EXT_TAB.
340 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
341
342 Avoid str[a-z]*, since <string.h> reserves that name space.
343 Change all instances of "struniq" in names to "uniqstr", and
344 likewise for "STRUNIQ" and "UNIQSTR".
345 * src/uniqstr.c: Renamed from src/struniq.c.
346 * src/uniqstr.h: Renamed from src/struniq.h.
347 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
348 * src/files.c (strsuffix): Remove; unused.
349 (concat2): Renamed from stringappend. Now static.
350 * src/files.h (strsuffix, stringappend): Remove; unused.
351 * src/parse-gram.y (<chars>): Renamed from <string>.
352 (<uniqstr>): Renamed from <struniq>.
353 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
354 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
355 (struct graph_s.expand): Renamed from struct graph_s.stretch.
356 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
357 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
358 (N_EXPAND): Renamed from N_STRETCH.
359
360 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
361 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
362 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
363 Remove; unused.
364 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
365 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
366 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
367 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
368 (BASE_MAXIMUM): Renamed from BASE_MAX.
369 (BASE_MINIMUM): Renamed from BASE_MIN.
370 (ACTION_MAX): Remove; unused.
371 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
372 Unnecessary casts removed from above defines.
373
374
375 Fix misspelling in names.
376 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
377 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
378 G_NODE_ALIGNEMENT.
379
380
381 * lib/timevar.c (timevar_report): Renamed from time_report,
382 for consistency with other names.
383 * lib/timevar.h (timevar_report): New decl.
384 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
385
386
387 Sort include-file uses.
388
389 Reorder all include files under src to be in the order "system.h".
390 then the ../lib include files in angle brackets (alphabetized),
391 then the . include files in double-quotes (alphabetized). Fix
392 dependency breakages encountered in this process, as follows:
393 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
394 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
395 * src/state.h: Include "symtab.h".
396
996b1c7e
PE
3972002-12-08 Paul Eggert <eggert@twinsun.com>
398
399 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
400 since this causes problems when __file__ contains character
401 sequences like "@" that are treated specially by src/scan-skel.l.
402 Instead, just use the file's basename. This fixes the bug
403 reported by Martin Mokrejs in
26b4a969 404 <http://mail.gnu.org/pipermail/bug-bison/2002-December/001945.html>.
996b1c7e 405
e19c4e5d
PE
4062002-12-06 Paul Eggert <eggert@twinsun.com>
407
408 Add support for rules that do not have trailing semicolons, as
409 POSIX requires. Improve the quality of locations in Bison
410 diagnostics.
26b4a969 411
e19c4e5d
PE
412 * src/location.c: Include <quotearg.h>.
413 (empty_location): Now const.
414 (location_print): New function. Follow the recommendation of the
415 GNU Coding Standards for locations that span file boundaries.
416 * src/location.h: Do not include <quotearg.h>; no longer needed.
417 (boundary): New type.
418 (location_t): Use it. This allows locations to span file boundaries.
419 All member uses changed: file -> start.file or end.file (as needed),
420 first_line -> start.line, first_column -> start.column,
421 last_line -> end.line, last_column -> end.column.
422 (equal_boundaries): New function.
423 (LOCATION_RESET, LOCATION_STEP): Remove.
424 (LOCATION_PRINT): Remove. All callers changed to use location_print.
425 (empty_location): Now const.
426 (location_print): New decl.
427 * src/parse-gram.y (lloc_default): New function, which handles
428 empty locations more accurately.
429 (YYLLOC_DEFAULT): Use it.
430 (%token COLON): Remove.
431 (%token ID_COLON): New token.
26b4a969 432 (rules): Use it.
e19c4e5d
PE
433 (declarations, rules): Remove trailing semicolon.
434 (declaration, rules_or_grammar_declaration):
435 Allow empty (";") declaration.
436 (symbol_def): Remove empty actions; no longer needed.
437 (rules_or_grammar_declaration): Remove trailing semicolon.
438 (semi_colon.opt): Remove.
439 * src/reader.h: Include location.h.
440 (scanner_cursor): New decl.
441 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
442 rolling our own.
443 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
444 of *loc.
445 (STEP): Remove. No longer needed, now that adjust_location does
446 the work. All uses removed.
447 (scanner_cursor): New var.
448 (adjust_location): Renamed from extend_location. It now sets
449 *loc and adjusts the scanner cursor. All uses changed.
450 Don't bother testing for CR.
451 (handle_syncline): Remove location arg; now updates scanner cursor.
452 All callers changed.
453 (unexpected_end_of_file): Now accepts start boundary of token or
454 comment, not location. All callers changed. Update scanner cursor,
455 not the location.
456 (SC_AFTER_IDENTIFIER): New state.
457 (context_state): Renamed from c_context. All uses changed.
458 (id_loc, code_start, token_start): New local vars.
459 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
460 processing of Yacc white space and equivalents here.
461 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
462 instead of returning ID immediately, since we need to search for
463 a subsequent colon.
464 (<INITIAL>"'", "\""): Save token_start.
465 (<INITIAL>"%{", "{", "%%"): Save code_start.
466 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
467 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
468 BEGIN context_state at end, not INITIAL.
469 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
470 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
471 Return correct token start.
472 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
473 the start of a character, string or multiline comment is found.
474 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
475 Reduction): Adjust reported locations to match the more-precise
476 results now expected.
477 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
478 * tests/reduce.at (Useless Rules, Reduced Automaton,
479 Underivable Rules): Likewise.
480 * tests/regression.at (Invalid inputs): No longer `expecting ";"
481 or "|"' now that so many other tokens are allowed by the new grammar.
482
483 * src/complain.h (current_file): Remove duplicate decl;
484 current_file is now owned by files.h.
485 * src/complain.c, src/scan-gram.l: Include files.h.
486
4872002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 488
e19c4e5d
PE
489 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
490 promotes to int; it might be unsigned int.
491 * data/yacc.c (yy_reduce_print): Likewise.
492
493 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
494 be #defined in the prologue, not in the Bison declarations.
495 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 496
b64755e3
PE
4972002-12-02 Paul Eggert <eggert@twinsun.com>
498
499 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
500 * lib/strtoul.c: New file, from gnulib.
501 This fixes a porting bug reported by Peter Klein in
502 <http://mail.gnu.org/pipermail/bug-bison/2002-December/001944.html>.
503
6e746484
PE
5042002-11-30 Paul Eggert <eggert@twinsun.com>
505
b64755e3
PE
506 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
507 and put only a forward declaration in the prologue. This is for
508 consistency with the other scanner helper functions.
509
6ba55592
PE
510 Type clashes now generate warnings, not errors, since it
511 appears that POSIX may allow some grammars with type clashes.
512 * src/reader.c (grammar_current_rule_check): Warn about
513 type clashes instead of complaining.
514 * tests/input.at (Type Clashes): Expect warnings, not complaints.
515
6e746484
PE
516 Add Yacc library, since POSIX requires it.
517 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
518 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
519 * lib/main.c, lib/yyerror.c: New files.
520
521 gram_error can be static; it need not be extern.
522 * src/reader.h (gram_error): Remove decl.
523 * src/parse-gram.y (gram_error): Now static. Add static decl.
524 (print_token_value): Omit parameter names from forward decl,
525 for consistency.
526
88510f9c
PE
5272002-11-29 Paul Eggert <eggert@twinsun.com>
528
6e746484
PE
529 * doc/bison.texinfo: Emphasize that yylex and yyerror must
530 be declared before being used. E.g., one should typically
531 declare them in the prologue. Use GNU coding style in examples.
532 Put "const" consistently after the type it modifies. Mention
533 that C99 supports "inline". Mention that yyerror traditionally
534 returns "int".
535
88510f9c
PE
536 %parse-param and %lex-param now take just one argument, the
537 declaration; the argument name is deduced from the declaration.
538
539 * doc/bison.texinfo (Parser Function, Pure Calling, Error
540 Reporting, Table of Symbols): Document this.
541 * src/parse-gram.y (add_param): New function.
542 (COMMA): Remove.
543 (declaration): Implement new rule for %parse-param and %lex-param.
544 * src/scan-gram.l: "," now elicits a warning, rather than being
545 a token; this is more compatible with byacc.
546 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
547
bb92250c
PE
5482002-11-27 Paul Eggert <eggert@twinsun.com>
549
550 Rename identifiers to avoid real and potential collisions.
551
552 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
553 to avoid collision with lex macro described by Bruce Lilly in
554 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001929.html>.
555 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
556 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
557 * src/parse-gram.y (print_token_value): Renamed from yyprint.
558 All uses changed.
559 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
560 The name "yycontrol" violates the name space rules, and this stuff
561 wasn't being used anyway.
562 (input): Remove action; this stuff wasn't being used.
563 (gram_error): Rename local variable yylloc -> loc.
564 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
565 (YY_DECL): Don't use "yy" at start of local variables.
566 All uses changed, e.g., yylloc -> loc.
567 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
568 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
569 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
570 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
571
572 * src/parse-gram.y (gram_error): loc is now const *.
573 * src/reader.h (gram_error): Likewise.
574
3af4feb2
PE
5752002-11-24 Paul Eggert <eggert@twinsun.com>
576
577 Version 1.75c.
578
579 * tests/actions.at (Actions after errors): Use an output format
580 more similar to that of the Printers and Destructors test.
581 Test the position of the ';' token too.
582 (Printers and Destructors): Likewise.
583 (Printers and Destructors: %glr-parser): Remove for now, to avoid
584 unnecessarily alarming people when the test fails.
585
586 * data/yacc.c (yyerrlab1): Move this label down, so that the
587 parser does not discard the lookahead token if the user code
588 invokes YYERROR. This change is required for POSIX conformance.
589
590 * lib/error.c: Sync with gnulib.
591
5922002-11-22 Paul Eggert <eggert@twinsun.com>
593
594 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
595 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
596 * lib/xmalloc.c: Likewise.
26b4a969 597
58004308
PE
5982002-11-20 Paul Eggert <eggert@twinsun.com>
599
600 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
601
6022002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 603
58004308
PE
604 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
605 should use `if (! x) abort ();' rather than `assert (x);', and
606 anyway it's one less thing to worry about configuring.
607
608 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
609 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
610 and replace all instances of assert with abort.
611 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
612 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
613
614 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
615 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
616 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
617 hash_find_entry, hash_rehash, hash_insert): Likewise.
618 * src/conflicts.c (resolve_sr_conflict): Likewise.
619 * src/lalr.c (set_goto_map, map_goto): Likewise.
620 * src/nullable.c (nullable_compute): Likewise.
621 * src/output.c (prepare_rules, token_definitions_output): Likewise.
622 * src/reader.c (packgram, reader): Likewise.
623 * src/state.c (state_new, state_free, state_transitions_set,
624 state_reduction_find): Likewise.
625 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
626 symbol_pack): Likewise.
627 * src/tables.c (conflict_row, pack_vector): Likewise.
628 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
629 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
630 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
631 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
632
633 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
634 (ARGMATCH_CONSTRAINT): New macro.
635 (ARGMATCH_ASSERT): Use it.
636
637 * src/system.h (verify): New macro.
638 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
639 rather than assert.
640 * src/tables.c (tables_generate): Likewise.
641
642 * src/struniq.c (struniq_assert): Now returns void, and aborts
643 if the assertion is false.
644 (struniq_assert_p): Remove.
645 * src/struniq.h: Likewise.
646
76ae8198
PE
6472002-11-18 Paul Eggert <eggert@twinsun.com>
648
649 * data/glr.c (yygetLRActions): Replace `yyindex' with
650 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
651 This fixes the regression with Sun ONE Studio 7 cc that I reported in
652 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001892.html>.
653
d3c4e709
AD
6542002-11-18 Akim Demaille <akim@epita.fr>
655
656 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
657 space.
658 From Tim Van Holder.
659
8d8a7238
PE
6602002-11-17 Paul Eggert <eggert@twinsun.com>
661
662 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
663 to "SyntaxError" for consistency with my 2002-11-15 change.
664
665 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
666 not define to {}, since this breaks the common use of `YYDPRINTF
667 ((...));' if a single statement is desired (e.g. before `else').
668 Work around GCC warnings by surrounding corresponding calls with
669 {} if needed.
670 (yyhasResolvedValue): Remove unused function.
671 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
672 loop body.
673 (yyreportSyntaxError): Renamed from yyreportParseError.
674 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
675 All uses changed.
676 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
677 extern when possible. Remove unused initializations.
678
b0937b22
AD
6792002-11-16 Akim Demaille <akim@epita.fr>
680
681 Augment the similarity between GLR and LALR traces.
682
683 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
684 (YY_REDUCE_PRINT): New.
685 (yyparse): Use them.
686 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
687 YYDPRINT here.
688 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
689 state reached after the reduction/recovery, since...
690 (yyparse, yyprocessOneStack): Report the state we are entering in.
691
c5e3e510
AD
6922002-11-16 Akim Demaille <akim@epita.fr>
693
694 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
695 Add support for --trace=skeleton.
696 * src/scan-skel.l: %option debug.
697 Scan strings of non-@ or \n instead of character by character.
698 (scan_skel): Handle trace_skeleton.
699 (QPUTS): New.
700 (@output_parser_name@, @output_header_name@): ``Restore'' their
701 support (used to be M4 macros).
702 * data/yacc.c: Quote larger chunks, a la glr.c.
703 * data/lalr1.cc: Likewise.
704 The header guards are no longer available, so use some other
705 string than `YYLSP_NEEDED'.
706
4c6cc1db
AD
7072002-11-16 Akim Demaille <akim@epita.fr>
708
709 Make the ``Printers and Destructors'' test more verbose, taking
710 `yacc.c''s behavior as (possibly wrong) reference.
711
712 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
713 instead of fprint on stdout.
714 Set and report the last_line of the symbols.
715 Consistently display values and locations.
716
6d9e8019
PE
7172002-11-16 Paul Eggert <eggert@twinsun.com>
718
719 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
720
6e649e65
PE
7212002-11-15 Paul Eggert <eggert@twinsun.com>
722
b25d88f6
PE
723 * tests/actions.at (Actions after errors): New test case.
724
6e649e65
PE
725 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
726 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
727 tests/action.at, tests/calc.at, tests/conflicts.at,
728 tests/cxx-type.at, tests/regression.at:
729 "parse error" -> "syntax error" for POSIX compatibility.
730 "parsing stack overflow..." -> "parser stack overflow" so
731 that code matches Bison documentation.
732
0f39aab9
AD
7332002-11-15 Akim Demaille <akim@epita.fr>
734
735 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
736 take two BRACED_CODE, not two string_content.
737 Free the scanner's obstack when we are done.
738 (code_content): New.
739 * tests/calc.at: Adjust.
740 * doc/bison.texinfo: Adjust.
741 Also, make sure to include the `,' for these declarations.
742
761c1926
AD
7432002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
744
745 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
746 definition; avoids potential autoreconf problems.
747
b0f98b10
AD
7482002-11-15 Akim Demaille <akim@epita.fr>
749
750 Always check the value returned by yyparse.
751
752 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
753 returned by yyparse.
754 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
755 Adjust calls.
756 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
757 returned by yyparse.
758
970785f1
PH
7592002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
760
761 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
762 on input.at test.
763
8fcc7db1
PE
7642002-11-14 Paul Eggert <eggert@twinsun.com>
765
7ec1b48e
PE
766 * src/output.c (output_skeleton): Call xfopen instead of
767 duplicating xfopen's body.
768
cfff7583
PE
769 Fix bugs reported by Nelson H. F. Beebe in
770 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001893.html>.
771
8fcc7db1
PE
772 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
773 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
774 Group compiler. Instead, use "$CC -E bar.c". Include the .h
775 file twice in the grammar, as an extra check.
776
777 * tests/input.at (Torturing the Scanner): Surround the
778 backslash-newline tests with "#if 0", to make it less likely that
779 we'll run into compiler bugs. Bring back solitary \ inside
780 comment, but add a closing comment to work around HP C bug. Don't
781 test backslash-newline in C character constant. This should fix
782 the input.at bug reported by Nelson H. F. Beebe in
783 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001893.html>.
784
4e8d992c
AD
7852002-11-14 Akim Demaille <akim@epita.fr>
786
787 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
788 status of the compiler.
f32b346d 789 Calling `exit 1' is no longer needed.
4e8d992c
AD
790 Reported by Nelson H. F. Beebe.
791
9501dc6e
AD
7922002-11-14 Akim Demaille <akim@epita.fr>
793
794 * tests/atlocal.in (CPPFLAGS): We have config.h.
795 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
796 New.
797 * tests/actions.at, tests/calc.at, tests/conflicts.at,
798 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
799 * tests/regression.at, tests/torture.at: Use them for all the
800 grammars that are to be compiled.
801 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
802 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
803 * doc/bison.texinfo (GLR Parsers): Document `inline'.
804
18b519c0
AD
8052002-11-14 Akim Demaille <akim@epita.fr>
806
807 * doc/bison.texinfo: Various formatting changes (alignments in
808 samples, additional @group/@end group, GCS in samples.
809 Use @deffn instead of simple @table to define the directives,
810 macros, variables etc.
811
9a86cdb9
PE
8122002-11-13 Paul Eggert <eggert@twinsun.com>
813
daa33def
PE
814 Fix some bugs reported by Albert Chin-A-Young in
815 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001881.html>.
18b519c0 816
daa33def 817 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 818 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
819 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
820 * tests/headers.at (export YYLTYPE): Likewise.
821
822 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 823 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 824
9a86cdb9
PE
825 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
826 comments, since they're not portable. Use GNU coding style.
827
9c1e26bd
AD
8282002-11-13 Akim Demaille <akim@epita.fr>
829
830 * data/yacc.c: Leave bigger chunks of quoted text.
831 (YYDSYMPRINTF): New.
832 Use it to report symbol activities.
833 * data/glr.c (YYDSYMPRINTF): New.
834 Use it.
835
87f721cc
PE
8362002-11-12 Paul Eggert <eggert@twinsun.com>
837
838 Version 1.75b.
839
840 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
841 (yyglrReduce): Return yyok, not 0.
842 This should avoid the enumerated-type warnings reported
843 by Nelson H.F. Beebe in
844 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001872.html>.
845
846 * lib/bbitset.h (BITSET_INLINE): Remove.
847 * lib/bitset.h [! BITSET_INLINE]: Remove.
848 (bitset_set, bitset_reset, bitset_test): Rename local vars
849 to avoid shadowing warnings by GCC.
850
851 * data/glr.c (inline): Remove #define. It's the user's
852 responsibility to #define it away, just like 'const'.
853 This fixes one of the bugs reported by Nelson H.F. Beebe in
854 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001873.html>.
18b519c0 855
87f721cc
PE
856 * Makefile.maint (po-check): Scan .l and .y files instead of the
857 .c and the .h files that they generate. This fixes the bug
858 reported by Tim Van Holder in:
859 <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
860 Look for N_ as well as for _. Try to avoid matching #define for
861 N_ and _.
862 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
863 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
864 * src/scan-gram.l: Revamp regular expressions so that " and '
865 do not confuse xgettext.
866
867 * src/struniq.h (struniq_new): Do not declare the return type
868 to be 'const'; this violates the C standard.
869 * src/struniq.c (struniq_new): Likewise.
870
be14ade5
AD
8712002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
872
873 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
874 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
875 linker.
876
05291fbc
AD
8772002-11-12 Akim Demaille <akim@epita.fr>
878
879 * Makefile.maint: Sync with Autoconf:
880 (local_updates): New.
881
1f5fd52e
AD
8822002-11-12 Akim Demaille <akim@epita.fr>
883
884 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
885
283f1e64
AD
8862002-11-12 Akim Demaille <akim@epita.fr>
887
888 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
889 locations.
890
886b69d1
AD
8912002-11-12 Akim Demaille <akim@epita.fr>
892
893 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
894 not yyvalue.
895
3df37415
AD
8962002-11-12 Akim Demaille <akim@epita.fr>
897
898 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
899 Use it to test the GLR parser.
900
7bd6c77e
AD
9012002-11-12 Akim Demaille <akim@epita.fr>
902
903 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
904 defines it.
905 * data/glr.c (yystos): New.
906 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
907 (YYDSYMPRINT): New.
908 (yyval): Don't define it, it is handled via M4.
909 (yyrecoverParseError): Free verbosely the discarded symbols.
910 * data/yacc.c (yysymprint): Remove, rather...
911 (b4_yysymprint_generate): invoke.
912 * data/c.m4 (b4_yysymprint_generate): New.
913 Accept pointers as arguments, as opposed to the version from
914 yacc.c.
915 (b4_yydestruct_generate): Likewise.
916 * tests/cations.at (Printers and Destructors): Use Bison directives
917 instead of CPP macros.
918 Don't rely on internal details.
919
b0400cc6
AD
9202002-11-12 Akim Demaille <akim@epita.fr>
921
922 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
923 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
924 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
925 it against YYEMPTY and so forth), work on yytoken (i.e., set
926 it to YYEMPTY etc.).
927 (yydestruct): Replace with a b4_yydestruct_generate invocation.
928 (b4_symbol_actions): Remove.
929 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
930 for 0, end-of-input.
931
72f889cc
AD
9322002-11-12 Akim Demaille <akim@epita.fr>
933
934 * doc/bison.texinfo (Destructor Decl): New.
935
b1ae9233
AD
9362002-11-12 Akim Demaille <akim@epita.fr>
937
938 * src/tables.c (tables_generate): Use free for pointers that
939 cannot be NULL, not XFREE.
940 (pack_vector): Use assert, not fatal, for bound violations.
941 * src/state.c (state_new): Likewise.
942 * src/reader.c (reader): Likewise.
943 * src/lalr.c (set_goto_map): Likewise.
72f889cc 944 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
945 the file name.
946
7ec2d4cd
AD
9472002-11-12 Akim Demaille <akim@epita.fr>
948
949 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
950 Restore.
951 * src/scan-gram.l (last_string): Is global to the file, not to
952 yylex.
953 * src/parse-gram.y (input): Don't append the epilogue here,
954 (epilogue.opt): do it here, and free the scanner's obstack.
955 * src/reader.c (epilogue_set): Rename as...
956 (epilogue_augment): this.
957 * data/c.m4 (b4_epilogue): Defaults to empty.
958
573a6cd3
AD
9592002-11-12 Akim Demaille <akim@epita.fr>
960
961 * src/getargs.c (long_options): Remove duplicates.
962 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
963 Remove.
964 * doc/bison.rnh: Remove.
965 * doc/bison.texinfo (VMS Invocation): Remove.
966
95612cfa
AD
9672002-11-12 Akim Demaille <akim@epita.fr>
968
969 * src/struniq.h, src/struniq.c (struniq_t): Is const.
970 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
971
972 Use struniq for symbols.
973
974 * src/symtab.h (symbol_t): The tag member is a struniq.
975 (symbol_type_set): Adjust.
976 * src/symtab.c (symbol_new): Takes a struniq.
977 (symbol_free): Don't free the tag member.
978 (hash_compare_symbol_t, hash_symbol_t): Rename as...
979 (hash_compare_symbol, hash_symbol): these.
980 Use the fact that tags as struniqs.
981 (symbol_get): Use struniq_new.
982 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
983 Returns a strniq.
984 * src/reader.h (merger_list, grammar_currentmerge_set): The name
985 and type members are struniqs.
986 * src/reader.c (get_merge_function)
987 (grammar_current_rule_merge_set): Adjust.
988 (TYPE, current_type): Are struniq.
989
990 Use struniq for file names.
991
992 * src/files.h, src/files.c (infile): Split into...
993 (grammar_file, current_file): these.
994 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
995 * src/reduce.c (reduce_print): Likewise.
996 * src/getargs.c (getargs): Likewise.
997 * src/complain.h, src/complain.c: Likewise.
998 * src/main.c (main): Call struniqs_new early enough to use it for
999 file names.
1000 Don't free the input file name.
1001
3e6656f9
AD
10022002-11-12 Akim Demaille <akim@epita.fr>
1003
1004 * src/symtab.c (symbol_free): Remove dead deactivated code:
1005 type_name are properly removed.
1006 Don't use XFREE to free items that cannot be NULL.
1007 * src/struniq.h, src/struniq.c: New.
1008 * src/main.c (main): Initialize/free struniqs.
1009 * src/parse-gram.y (%union): Add astruniq member.
1010 (yyprint): Adjust.
1011 * src/scan-gram.l (<{tag}>): Return a struniq.
1012 Free the obstack bit that used to store it.
1013 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
1014
7672019c
PE
10152002-11-11 Paul Eggert <eggert@twinsun.com>
1016
1017 Revamp to fix many (but not all) of the C- and M4-related quoting
1018 problems. Among other things, this fixes the Bison bug reported
1019 by Jan Hubicka when processing the Bash grammar; see:
1020 <http://mail.gnu.org/pipermail/bison-patches/2002-November/001329.html>
1021
1022 Use new @ escapes consistently. Represent brackets with @{ and @}
1023 rather than @<:@ and @:>@, since this works a bit better with dumb
1024 editors like vi. Represent @ with @@, since @ is now consistently
1025 an escape. Use @oline@ and @ofile@ rather than __oline__ and
1026 __ofile__, to avoid unexpected expansions. Similarly, use @output
1027 rather than #output.
1028
1029 * data/c.m4 (b4_copyright): Omit file name from comment, since
1030 the file name could contain "*/".
1031 (b4_synclines_flag): Don't quote the 2nd argument; it should already
1032 be quoted. All uses changed.
1033
1034 * data/glr.c: Use new @ escapes consistently.
1035 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
1036 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
1037 Remove, since they couldn't handle arbitrary characters in file
1038 names.
1039 * data/lalr1.cc: Likewise.
1040 * data/yacc.c: Likewise.
1041
1042 * src/files.c (output_infix): Remove; all uses removed.
1043 * src/files.h: Likewise.
1044
1045 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
1046 mishandled funny characters in file names, and anyway it isn't
1047 needed any more.
1048 * data/yacc.c: Likewise.
1049 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
1050
1051 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
1052 * data/yacc.c: Likewise.
1053
1054 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
1055 strings now.
1056 (muscle_init): Quote filename as a C string.
1057 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
1058 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
1059 * src/output.c (escaped_file_name_output): New function.
1060 (prepare_symbols): Quote tokens for M4.
1061 (prepare): Don't insert output_infix, output_prefix,
1062 output_parser_name, output_header_name; this is now down by scan-skel.
1063 Insert skeleton as a C string.
1064
1065 * src/output.c (user_actions_output, symbol_destructors_output,
1066 symbol_printers_output): Quote filenames for C and M4.
1067 * src/reader.c (prologue_augment, epilogue_set): Likewise.
1068
1069 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
1070 escapes other than \\ and \'; this simplifies the code.
1071 (<SC_STRING>): Likewise, for \\ and \".
1072 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
1073 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
1074 Use new escapes @{ and @} for [ and ].
1075
1076 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
1077 them with auto vars.
1078 Switch to new escape scheme, where @ is the escape character uniformly.
1079 Abort if a stray escape character is found. Avoid unbounded input
1080 buffer when parsing non-escaped text.
1081
1082 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
1083 __oline__, #output, $@, and @{ do not have unintended meanings.
1084
acea4f3b
PE
10852002-11-09 Paul Eggert <eggert@twinsun.com>
1086
1087 Fix the test failure due to GCC warnings described in
1088 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001815.html>.
1089 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
1090 evaluate to 0 if it's impossible for NINF to be in the respective
1091 table.
1092 (yygetLRActions, yyrecoverParseError): Use them.
1093
1094 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
1095 counted in the token inserted at end of file. Now takes
1096 location_t *, not location_t, so that the location can be
1097 adjusted. All uses changed.
1098
1099 * tests/regression.at (Invalid inputs): Adjust wording in
1100 diagnostic to match the new behavior.
1101
1102 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
1103 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
1104 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
1105 abort ();'. This reduces the runtime of the "Many lookaheads"
1106 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
1107 GCC 3.2.
1108
20ef1ad5
PE
11092002-11-07 Paul Eggert <eggert@twinsun.com>
1110
1111 * src/parse-gram.y (CHARACTER): Remove unused token.
1112 All uses removed.
1113
1114 * src/scan-gram.l: Remove stack option. We no longer use the
1115 stack, since the stack was never deeper than 1; instead, use the
1116 new auto var c_context to record the stacked value.
1117
1118 Remove nounput option. At an unexpected end of file, we now unput
1119 the minimal input necessary to end cleanly; this simplifies the
1120 code.
1121
1122 Avoid unbounded token sizes where this is easy.
1123
1124 (unexpected_end_of_file): New function.
1125 Use it to systematize the error message on unexpected EOF.
1126 (last-string): Now auto, not static.
1127 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
1128 (scanner_last_string_free): Remove; not used.
1129 (percent_percent_count): Move decl to just before use.
1130 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
1131 not the (never otherwised-used) CHARACTER.
1132
93724f13
AD
11332002-11-07 Akim Demaille <akim@epita.fr>
1134
1135 Let yyerror always receive the msg as last argument, so that
1136 yyerror can be variadic.
1137
1138 * data/yacc.c (b4_yyerror_args): New.
1139 Use it when calling yyerror.
1140 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
1141 Use it when calling yyerror.
1142 * doc/bison.texinfo (Error Reporting): Adjust.
1143 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
1144 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
1145
6e40b4eb
AD
11462002-11-06 Akim Demaille <akim@epita.fr>
1147
1148 #line should have quoted strings.
1149 Ideally, this should be done by m4_quotearg.
1150
1151 * src/scan-skel.l: Include quotearg.h.
1152 Quote __ofile__.
1153 * src/output.c (symbol_printers_output)
1154 (symbol_destructors_output): Quote the file name.
1155
2dfbfc12
AD
11562002-11-06 Akim Demaille <akim@epita.fr>
1157
1158 * tests/regression.at (Invalid inputs): Adjust to the recent
1159 messages.
1160
437c2d80
AD
11612002-11-06 Akim Demaille <akim@epita.fr>
1162
1163 Restore --no-lines.
1164 Reported by Jim Kent.
1165
1166 * data/c.m4 (b4_syncline): New.
1167 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
1168 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
1169 * src/output.c (user_actions_output): Likewise.
1170 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 1171 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 1172
900c5db5
AD
11732002-11-06 Akim Demaille <akim@epita.fr>
1174
1175 * src/main.c (main): Free `infile'.
1176 * src/scan-gram.l (handle_syncline): New.
1177 Recognize `#line'.
1178 * src/output.c (user_actions_output, symbol_destructors_output)
1179 (symbol_printers_output): Use the location's file name, not
1180 infile.
1181 * src/reader.c (prologue_augment, epilogue_set): Likewise.
1182
e183b123 11832002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 1184
e183b123 1185 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 1186 either has GLR conflict entries.
e183b123 1187
193eb6b7
PE
11882002-11-05 Paul Eggert <eggert@twinsun.com>
1189
e183b123
PE
1190 * src/scan-gram.l: Use more accurate diagnostics, e.g.
1191 "integer out of range" rather than "invalid value".
1192 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
1193 accordingly.
1194
193eb6b7
PE
1195 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
1196 Also, remove one static variable in the scanner.
1197
1198 * src/scan-gram.l (braces_level): Now auto, not static.
1199 Initialize to zero if the compiler is being picky.
1200 (INITIAL): Clear braces_level instead of incrementing it.
1201 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
1202 as POSIX 1003.1-2001 requires.
1203 * src/system.h (IF_LINT): New macro, taken from coreutils.
1204 * configure.ac: Define "lint" if --enable-gcc-warnings.
1205
29c01725
AD
12062002-11-05 Akim Demaille <akim@epita.fr>
1207
1208 * src/scan-gram.l: When it starts with `%', complain about the
1209 whole directive, not just that `invalid character: %'.
1210
8aeac3ca
AD
12112002-11-04 Akim Demaille <akim@epita.fr>
1212
1213 * Makefile.maint: Update from Autoconf.
1214 (update, cvs-update, po-update, do-po-update): New.
1215
793a58bb
AD
12162002-11-04 Akim Demaille <akim@epita.fr>
1217
1218 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
1219 and yyerror.
1220 Have yyerror `use' its arguments.
1221 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
1222 returns true when location & yacc & pure & parse-param.
1223 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
1224
c4d720cd
AD
12252002-11-04 Akim Demaille <akim@epita.fr>
1226
1227 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
1228 clashes.
1229 * src/scan-gram.l: Use [\'] instead of ['] to pacify
1230 font-lock-mode.
1231 Use complain_at.
1232 Use quote, not quote_n since LOCATION_PRINT no longer uses the
1233 slot 0.
1234
613a0dc5
PE
12352002-11-03 Paul Eggert <eggert@twinsun.com>
1236
1237 * src/reader.c (get_merge_function, grammar_current_rule_check):
1238 Use consistent diagnostics for reporting type name clashes.
1239 Quote the types with <>, for consistency with Yacc.
1240 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
1241
2a8d363a
AD
12422002-11-03 Akim Demaille <akim@epita.fr>
1243
1244 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
1245 New.
1246 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
1247 (b4_parse_param): Remove.
1248 Use b4_identification.
1249 Propagate b4_pure_args where needed to pass them to yyerror.
1250 * data/glr.m4 (b4_parse_param): Remove.
1251 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
1252 (b4_lpure_formals): New.
1253 Use b4_identification.
1254 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
1255 b4_user_formals and b4_user_args.
1256 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
1257 (yyreportAmbiguity): When using a pure parser, also need
1258 the location, and the parse-params.
1259 Adjust callers.
1260 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
1261 When using a pure parser, also need the parse-params.
1262 Adjust callers.
1263 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
1264 (%pure-parser + %parse-param) LALR and GLR parsers.
1265 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
1266 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
1267 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
1268 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
1269 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
1270 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
1271 * doc/bison.texinfo: Untabify the whole file.
1272 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
1273 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
1274 (Error Reporting): Adjust to these new directives.
1275 Document %error-verbose, deprecate YYERROR_VERBOSE.
1276
9e32add8
AD
12772002-11-03 Akim Demaille <akim@epita.fr>
1278
1279 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
1280 AT_CHECK_CALC_GLR invocations to use % directives, instead of
1281 command line options.
1282 * tests/cxx-type.at: Formatting changes.
1283
b02d90a5
PE
12842002-11-03 Paul Eggert <eggert@twinsun.com>
1285
1286 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
1287 to count columns correctly, and to check for invalid inputs.
9e32add8 1288
b02d90a5
PE
1289 Use mbsnwidth to count columns correctly. Account for tabs, too.
1290 Include mbswidth.h.
1291 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
1292 (extend_location): New function.
1293 (YY_LINES): Remove.
1294
1295 Handle CRLF in C code rather than in Lex code.
1296 (YY_INPUT): New macro.
1297 (no_cr_read): New function.
1298
1299 Scan UCNs, even though we don't fully handle them yet.
1300 (convert_ucn_to_byte): New function.
1301
1302 Handle backslash-newline correctly in C code.
1303 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
1304 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
1305 all uses changed.
1306 (tag, splice): New EREs. Do not allow NUL or newline in tags.
1307 Use {splice} wherever C allows backslash-newline.
1308 YY_STEP after space, newline, vertical-tab.
1309 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 1310
b02d90a5
PE
1311 (letter, id): Don't assume ASCII; e.g., spell out a-z.
1312
1313 ({int}, handle_action_dollar, handle_action_at): Check for integer
1314 overflow.
9e32add8 1315
b02d90a5
PE
1316 (YY_STEP): Omit trailing semicolon, so that it's more like C.
1317
1318 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
1319 as well as \000. Check for UCHAR_MAX, not 255.
1320 Allow \x with an arbitrary positive number of digits, as in C.
1321 Check for overflow here.
1322 Allow \? and UCNs, for compatibility with C.
1323
1324 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
1325 with quote slot used by complain_at.
1326
1327 * tests/input.at: Add tests for backslash-newline, m4 quotes
1328 in symbols, long literals, and funny escapes in strings.
1329
1330 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
1331 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
1332 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
1333 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
1334 * m4/mbswidth.m4: New file, from GNU coreutils.
1335
1336 * doc/bison.texinfo (Grammar Outline): Document // comments.
1337 (Symbols): Document that trigraphs have no special meaning in Bison,
1338 nor is backslash-newline allowed.
1339 (Actions): Document that trigraphs have no special meaning.
1340
1341 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
1342 no longer used.
1343
13442002-11-02 Paul Eggert <eggert@twinsun.com>
1345
1346 * src/reader.c: Don't include quote.h; not needed.
1347 (get_merge_function): Reword warning to be consistent with
1348 type clash diagnostic in grammar_current_rule_check.
1349
1350 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
1351 bug in trigraph handling.
1352
1353 * src/output.c (prepare_symbols): When printing token names,
1354 escape "[" as "@<:@" and likewise for "]".
1355
1356 * src/system.h (errno): Remove declaration, as we are now
1357 assuming C89 or better, and C89 guarantees errno.
1358
762b212b
PE
13592002-10-30 Paul Eggert <eggert@twinsun.com>
1360
1361 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
1362 Check for close failures.
1363 * src/files.h (xfclose): Return void, not int, since it always
1364 returned zero.
1365 * src/files.c (xfclose): Likewise. Report I/O error if ferror
1366 indicates one.
1367 * src/output.c (output_skeleton): Use xfclose rather than fclose
1368 and ferror. xfclose now checks ferror.
1369
1370 * data/glr.c (YYLEFTMOST_STATE): Remove.
1371 (yyreportTree): Use a stack-based leftmost state. This avoids
1372 our continuing battles with bogus warnings about initializers.
1373
56100c60
AD
13742002-10-30 Akim Demaille <akim@epita.fr>
1375
1376 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
1377 #if.
1378
51b4a04c
PH
13792002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1380
1381 * tests/glr-regr1.at: New test for reported regressions.
1382 * tests/testsuite.at: Add glr-regr1.at test.
1383 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 1384
bf1ebda2
PE
13852002-10-24 Paul Eggert <eggert@twinsun.com>
1386
5c16c6b1
PE
1387 Version 1.75a.
1388
bf1ebda2
PE
1389 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
1390 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
1391 we use malloc. Don't assume 'A' through 'Z' are contiguous.
1392 Don't assume strdup exists; POSIX says its an XSI extension.
1393 Check for buffer overflow on input.
1394
b526ee61
AD
13952002-10-24 Akim Demaille <akim@epita.fr>
1396
1397 * src/output.c (output_skeleton): Don't disable M4sugar comments
1398 too soon: it results in comments being expanded.
1399 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
1400 first output.
1401
f1886bb2
AD
14022002-10-24 Akim Demaille <akim@epita.fr>
1403
1404 * data/yacc.c (m4_int_type): New.
1405 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
1406 char' as only yacc.c wants K&R portability.
1407 * data/glr.c (yysigned_char): Remove.
1408 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
1409 Reported by Quoc Peyrot.
1410
c5576256
PE
14112002-10-23 Paul Eggert <eggert@twinsun.com>
1412
1413 * src/main.c (main): With --trace=time, report times even if a
1414 non-fatal error occurs. Formerly, the times were reported in some
1415 such cases but not in others.
1416 * src/reader.c (reader): Just return if a complaint has been issued,
1417 instead of exiting, so that 'main' can report times.
1418
27b0ffea
AD
14192002-10-22 Akim Demaille <akim@epita.fr>
1420
1421 * src/system.h: Include sys/types.
1422 Reported by Bert Deknuydt.
1423
223a7883
PE
14242002-10-23 Paul Eggert <eggert@twinsun.com>
1425
1426 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
1427 Suggested by Art Haas.
1428
14292002-10-22 Paul Eggert <eggert@twinsun.com>
1430
1431 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
1432 decl; not needed any more.
1433 * src/main.c (main): Use return to exit, undoing yesterday's change.
1434 The last OS that we could find where this wouldn't work is
1435 SunOS 3.5, and that's too old to worry about now.
1436
1437 * data/glr.c (struct yyltype): Define members even when not
1438 doing locations. This is more consistent with yacc.c, and it
1439 works around the following bug reports:
1440 http://mail.gnu.org/pipermail/bug-bison/2002-October/001764.html
1441 http://mail.gnu.org/pipermail/bug-bison/2002-October/001769.html
1442 and I hope it also fixes this bug report:
1443 http://mail.gnu.org/pipermail/bug-bison/2002-October/001748.html
27b0ffea 1444
223a7883
PE
1445 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
1446 @acronym consistently. Standardize on "Yacc" instead of "YACC",
1447 "Algol" instead of "ALGOL". Give a bit more history about BNF.
1448
8b76775a
AD
14492002-10-22 Akim Demaille <akim@epita.fr>
1450
1451 * data/README: New.
1452
6db10d14
PE
14532002-10-21 Paul Eggert <eggert@twinsun.com>
1454
1455 Be consistent about 'bool'; the old code used an enum in one
1456 module and an int in another, and this violates the C standard.
1457 * m4/stdbool.m4: New file, from coreutils 4.5.3.
1458 * configure.ac (AC_HEADER_STDBOOL): Add.
1459 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
1460 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
1461 * src/symtab.c (hash_compare_symbol_t): Likewise.
1462 * src/system.h (bool, false, true): Use a definition consistent
1463 with ../lib/hash.c. All uses changed.
1464
1465 * src/complain.c (warning_issued): Renamed from warn_message_count,
1466 so that we needn't worry about integer overflow (!).
1467 Now of type bool. All uses changed.
1468 (complaint_issued): Renamed from complain_message_count; likewise.
1469
1470 * src/main.c (main): Use exit to exit with failure.
27b0ffea 1471
6db10d14
PE
1472 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
1473 rather than 1 and 0.
1474 * src/main.c (main): Likewise.
1475 * src/getargs.c (getargs): Likewise.
1476 * src/reader.c (reader): Likewise.
1477
1478 * src/getarg.c (getargs): Remove duplicate code for
1479 "Try `bison --help'".
1480
1481 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
1482 What was that "2" for?
1483
1484 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
1485 * src/getargs.c (usage): Likewise.
1486
1487 * src/getargs.c (getargs): When there are too few operands, report
1488 the last one. When there are too many, report the first extra
1489 one. This is how diffutils does it.
1490
92a060fd
PE
14912002-10-20 Paul Eggert <eggert@twinsun.com>
1492
1493 Remove K&R vestiges.
1494 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
1495 * src/complain.c (VA_START): Remove. Assume prototypes.
1496 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
1497 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
1498 fatal): Assume prototypes.
1499 * src/complain.h: Assume prototypes.
1500 * src/system.h (PARAMS): Remove.
1501 Include <limits.h> unconditionally, since it's guaranteeed even
1502 for a freestanding C89 compiler.
1503 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
1504 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 1505
e7cb57c0
AD
15062002-10-20 Akim Demaille <akim@epita.fr>
1507
1508 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
1509 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
1510 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
1511 (yyresolveStates, yyresolveAction, yyresolveStack)
1512 (yyprocessOneStack): Use them.
1513 (yy_reduce_print): New.
1514 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
1515
0245f82d
AD
15162002-10-20 Akim Demaille <akim@epita.fr>
1517
1518 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
1519 arguments and output `void'.
1520 (b4_c_function): Rename as...
1521 (b4_c_function_def): this.
1522 (b4_c_function_decl, b4_c_ansi_function_def)
1523 (b4_c_ansi_function_decl): New.
1524 Change the interpretation of the arguments: before `int, foo', now
1525 `int foo, foo'.
1526 * data/yacc.c (yyparse): Prototype and define thanks to these.
1527 Adjust b4_c_function_def uses.
1528 * data/glr.c (yyparse): Likewise, but ANSI only.
1529
39912f52
AD
15302002-10-20 Akim Demaille <akim@epita.fr>
1531
1532 * src/output.c (prepare): Move the definition of `tokens_number',
1533 `nterms_number', `undef_token_number', `user_token_number_max'
1534 to...
1535 (prepare_tokens): Here.
1536 (prepare_tokens): Rename as...
1537 (prepare_symbols): this.
1538 (prepare): Move the definition of `rules_number' to...
1539 (prepare_rules): here.
1540 (prepare): Move the definition of `last', `final_state_number',
1541 `states_number' to...
1542 (prepare_states): here.
1543 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
1544
20c1e2ad
AD
15452002-10-20 Akim Demaille <akim@epita.fr>
1546
1547 * src/tables.h, src/tables.c, src/output.c: Comment changes.
1548
21964f43
AD
15492002-10-20 Akim Demaille <akim@epita.fr>
1550
1551 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
1552 * data/c.m4: here.
1553
66d30cd4
AD
15542002-10-20 Akim Demaille <akim@epita.fr>
1555
1556 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
1557 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
1558 `pair'.
1559 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
1560 `name' to...
1561 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
1562 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
1563 These.
1564
95f2c9fe
PE
15652002-10-19 Paul Eggert <eggert@twinsun.com>
1566
1567 Do not create a temporary file, as that involves security and
1568 cleanup headaches. Instead, use a pair of pipes.
1569 Derived from a suggestion by Florian Krohm.
1570 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
1571 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
1572 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
1573 (BISON_PREREQ_SUBPIPE): Add.
1574 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
1575 Add subpipe.h, subpipe.c.
1576 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
1577 * po/POTFILES.in: Add lib/subpipe.c.
1578 * src/output.c: Include "subpipe.h".
1579 (m4_invoke): Remove decl.
1580 (scan_skel): New decl.
1581 (output_skeleton): Use pipe rather than temporary file for m4 input.
1582 Check that m4sugar.m4 is readable, to avoid deadlock.
1583 Check for pipe I/O error.
1584 * src/scan-skel.l (readpipe): Remove decl.
1585 (scan_skel): New function, to be used in place of m4_invoke.
1586 Read from stream rather than file.
66d30cd4 1587
95f2c9fe
PE
1588 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
1589 float, as this generates a warning on Solaris 8 + GCC 3.2 with
1590 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
1591 this generates a more-accurate value anyway.
1592
1593 * lib/timevar.c (timervar_accumulate): Rename locals to
1594 avoid confusion with similarly-named more-global.
1595 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
1596
1597 * src/output.c (prepare): Use xstrdup to convert char const *
1598 to char *, to avoid GCC warning.
1599
c19988b7
AD
16002002-10-19 Akim Demaille <akim@epita.fr>
1601
1602 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
1603 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
1604 Use them to have `calc.y' ready for %pure-parser.
1605 * data/yacc.c (YYLEX): Pass a yylex return type to
1606 b4_c_function_call.
1607
ae7453f2
AD
16082002-10-19 Akim Demaille <akim@epita.fr>
1609
1610 Prototype support of %lex-param and %parse-param.
1611
1612 * src/parse-gram.y: Add the definition of the %lex-param and
1613 %parse-param tokens, plus their rules.
1614 Drop the `_' version of %glr-parser.
1615 Add the "," token.
1616 * src/scan-gram.l (INITIAL): Scan them.
1617 * src/muscle_tab.c: Comment changes.
1618 (muscle_insert, muscle_find): Rename `pair' as `probe'.
1619 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
1620 (muscle_entry_s): The `value' member is no longer const.
1621 Adjust all dependencies.
1622 * src/muscle_tab.c (muscle_init): Adjust: use
1623 MUSCLE_INSERT_STRING.
1624 Initialize the obstack earlier.
1625 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
1626 (muscle_pair_list_grow): New.
1627 * data/c.m4 (b4_c_function_call, b4_c_args): New.
1628 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
1629 * tests/calc.at: Use %locations, not --locations.
1630 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
1631
0e575721
AD
16322002-10-19 Akim Demaille <akim@epita.fr>
1633
1634 * src/getargs.c (usage): Take status as argument and exit
1635 accordingly.
1636 Report the traditional `Try ... --help' message when status != 0.
1637 (usage, version): Don't take a FILE * as arg, it is pointless.
1638 (getargs): When there is an incorrect number of arguments, make it
1639 an error, and report it GNUlically thanks to `usage ()'.
1640
724ce7f5
PE
16412002-10-18 Paul Eggert <eggert@twinsun.com>
1642
3a781eb2
PE
1643 * data/glr.c (yyreportParseError): Don't assume that sprintf
1644 yields the length of the printed string, as this is not true
1645 on SunOS 4.1.4. Reported by Peter Klein.
1646
724ce7f5
PE
1647 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
1648 * tests/conflicts.at (%nonassoc and eof): Likewise.
1649 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
1650
473d0a75
AD
16512002-10-17 Akim Demaille <akim@epita.fr>
1652
1653 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
1654 * src/getargs.c (trace_types, trace_args): Adjust.
1655 * src/reader.c (grammar_current_rule_prec_set)
1656 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
1657 Standardize error messages.
1658 And s/@prec/%prec/!
1659 (reader): Use trace_flag to enable scanner/parser debugging,
1660 instead of an adhoc scheme.
1661 * src/scan-gram.l: Remove trailing debugging code.
1662
e76d2469
PE
16632002-10-16 Paul Eggert <eggert@twinsun.com>
1664
93e2236a
PE
1665 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
1666 MUSCLE_TAB_H.
1667
e76d2469
PE
1668 * NEWS: Officially drop support for building Bison with K&R C,
1669 since it didn't work anyway and it's not worth worrying about.
1670 * Makefile.maint (wget_files): Remove ansi2knr.c.
1671 (ansi2knr.c-url_prefix): Remove.
1672 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
1673 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
1674 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
1675
5bd1c419
PE
16762002-10-15 Paul Eggert <eggert@twinsun.com>
1677
1678 Stop using the "enum_" trick for K&R-style function definitions;
1679 it confused me, and I was the author! Instead, assume that people
1680 who want to use K&R C compilers (when using these modules in GCC,
1681 perhaps?) will run ansi2knr.
1682
1683 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
1684 All uses of "enum_" changed to "enum ".
1685 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
1686 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 1687
5bd1c419
PE
1688 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
1689 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
1690 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
1691 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
1692 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
1693 abitset_not, abitset_ones, abitset_or, abitset_or_and,
1694 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
1695 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
1696 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
1697 Use function prototypes; this removes the need for declaring
1698 static functions simply to provide their prototypes.
1699 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
1700 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
1701 bitset_count_, bitset_create, bitset_dump, bitset_first,
1702 bitset_free, bitset_init, bitset_last, bitset_next,
1703 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
1704 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
1705 bitset_print, bitset_release_memory, bitset_toggle_,
1706 bitset_type_choose, bitset_type_get, bitset_type_name_get,
1707 debug_bitset): Likewise.
1708 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
1709 * lib/bitset_stats.c (bitset_log_histogram_print,
1710 bitset_percent_histogram_print, bitset_stats_and,
1711 bitset_stats_and_cmp, bitset_stats_and_or,
1712 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
1713 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
1714 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
1715 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
1716 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
1717 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
1718 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
1719 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
1720 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
1721 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
1722 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
1723 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
1724 bitset_stats_zero): Likewise.
1725 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
1726 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
1727 bitsetv_dump, debug_bitsetv): Likewise.
1728 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
1729 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
1730 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
1731 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
1732 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
1733 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
1734 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
1735 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
1736 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
1737 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
1738 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
1739 Likewise.
1740 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
1741 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
1742 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
1743 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
1744 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
1745 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
1746 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
1747 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
1748 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
1749 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
1750 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 1751
ae26e1f0
AD
17522002-10-14 Akim Demaille <akim@epita.fr>
1753
1754 Version 1.75.
1755
d43baf71
AD
17562002-10-14 Akim Demaille <akim@epita.fr>
1757
1758 * tests/Makefile.am (maintainer-check-posix): New.
1759
7ebc83e3
AD
17602002-10-14 Akim Demaille <akim@epita.fr>
1761
1762 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
1763 member.
1764
05846dae
AD
17652002-10-14 Akim Demaille <akim@epita.fr>
1766
1767 * src/tables.c (table_ninf_remap): base -> tab.
1768 Reported by Matt Rosing.
1769
1318e37d
PE
17702002-10-14 Paul Eggert <eggert@twinsun.com>
1771
447fbb17
PE
1772 * tests/action.at, tests/calc.at, tests/conflicts.at,
1773 tests/cxx-type.at, tests/headers.at, tests/input.at,
1774 tests/regression.at, tests/synclines.at, tests/torture.at:
1775 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
1776 so that the tests still work even if POSIXLY_CORRECT is set.
1777 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 1778
1318e37d
PE
1779 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
1780 for portability to K&R hosts. Fix typo: signed char is guaranteed
1781 only to 127, not to 128.
1782 * data/glr.c (yysigned_char): New type.
1783 * data/yacc.c (yysigned_char): Likewise.
1784 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
1785
cc0f0794
PE
17862002-10-13 Paul Eggert <eggert@twinsun.com>
1787
5038f418
PE
1788 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
1789 true due to limited range of data type" warning from GCC.
1790
cc0f0794
PE
1791 * data/c.m4 (b4_token_defines): Protect against double-inclusion
1792 by wrapping enum yytokentype's definition inside #ifndef
1793 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
1794
6fed0802
AD
17952002-10-13 Akim Demaille <akim@epita.fr>
1796
1797 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
1798 Un yy- yyrhs to avoid the name clash with the global YYRHS.
1799
32f0598d
AD
18002002-10-13 Akim Demaille <akim@epita.fr>
1801
1802 * Makefile.maint: Update from Autoconf 2.54.
1803 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
1804
7ea9a33f
AD
18052002-10-13 Akim Demaille <akim@epita.fr>
1806
1807 * src/print.c (print_state): Separate the list of solved conflicts
1808 from the other items.
1809 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
1810
ea99527d
AD
18112002-10-13 Akim Demaille <akim@epita.fr>
1812
1813 Let nondeterministic skeletons be usable with deterministic
1814 tables.
1815
1816 With the patch, GAWK compiled by GCC without -O2 passes its test
1817 suite using a GLR parser driven by LALR tables. It fails with -O2
1818 because `struct stat' gives two different answers on my machine:
1819 88 (definition of an auto var) and later 96 (memset on this var).
1820 Hence the stack is badly corrumpted. The headers inclusion is to
1821 blame: if I move the awk.h inclusion before GLR's system header
1822 inclusion, the two struct stat have the same size.
1823
1824 * src/tables.c (pack_table): Always create conflict_table.
1825 (token_actions): Always create conflict_list.
1826 * data/glr.c (YYFLAG): Remove, unused.
1827
f377f69f
AD
18282002-10-13 Akim Demaille <akim@epita.fr>
1829
1830 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
1831 (O0FLAGS): New.
1832 (VALGRIND, GXX): New.
1833 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
1834 * tests/bison.in: Run $PREBISON a pre-command.
1835 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
1836 (maintainer-check-g++): New.
1837 * Makefile.am (maintainer-check): New.
1838
2a1fe6ed
AD
18392002-10-13 Akim Demaille <akim@epita.fr>
1840
1841 * data/glr.c: Formatting changes.
1842 Tweak some trace messages to match yacc.c's.
1843
f50adbbd
AD
18442002-10-13 Akim Demaille <akim@epita.fr>
1845
1846 GLR parsers sometimes raise parse errors instead of performing the
1847 default reduction.
1848 Reported by Charles-Henry de Boysson.
1849
1850 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
1851 check the length of the traces when %glr.
1852 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
1853 GLR's traces.
1854 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
1855 Test GLR parsers.
1856 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
1857 (yyltype): Remove the yy prefix from the member names.
1858 (yytable): Complete its comment.
1859 (yygetLRActions): Map error action number from YYTABLE from
1860 YYTABLE_NINF to 0.
1861 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
1862 (which was a bug: it should have been YYTABEL_NINF, and yet it was
1863 not satisfying as we could compare an YYACTION computed from
1864 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
1865 only value for error actions.
1866 (yyreportParseError): In verbose parse error messages, don't issue
1867 `error' in the list of expected tokens.
1868 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
1869 next action to perform to match glr.c's decoding.
1870 (yytable): Complete its comment.
1871
bcbad5b9
PE
18722002-10-13 Paul Eggert <eggert@twinsun.com>
1873
1874 Fix problem reported by Henrik Grubbstroem in
1875 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001670.html>:
1876 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
1877 because the Bison parser reads the second action before reducing
1878 the first one.
1879 * src/scan-gram.l (rule_length): New static var.
1880 Use it to keep track of the rule length in the scanner, since
1881 we can't expect the parser to be in lock-step sync with the scanner.
1882 (handle_action_dollar, handle_action_at): Use this var.
1883 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 1884
14904b89
PE
18852002-10-12 Paul Eggert <eggert@twinsun.com>
1886
1fe611e5
PE
1887 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
1888 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
1889 Include <sys/time.h> when checking for clock_t and struct tms.
1890 Use same include order as source.
1891 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
1892 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001674.html>.
05846dae 1893
1fe611e5
PE
1894 * lib/timevar.c: Update copyright date and clarify comments.
1895 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 1896
1fe611e5
PE
1897 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
1898 GCC version as of today, then merge Bison's changes.
1899 Change "GCC" to "Bison" in copyright notice. timevar.def's
1900 author is Akim, so change that too.
1901
98194095
PE
1902 * src/reader.c (grammar_current_rule_check):
1903 Don't worry about the default action if $$ is untyped.
1904 Prevents bogus warnings reported by Jim Gifford in
1905 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001673.html>.
1906
14904b89
PE
1907 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
1908 * data/glr.c, data/lalr1.cc, data/yacc.c:
1909 Output token definitions before the first part of user declarations.
1910 Fixes compatibility problem reported by Jim Gifford for kbd in
1911 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001672.html>.
1912
ff6dca18
PE
19132002-10-11 Paul Eggert <eggert@twinsun.com>
1914
1915 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
1916 (yyparse): here. This undoes some of the 2002-07-25 change.
1917 Compatibility problem reported by Ralf S. Engelschall with
1918 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
1919
eb714592
AD
19202002-10-11 Akim Demaille <akim@epita.fr>
1921
1922 * tests/regression.at Characters Escapes): New.
1923 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
1924 characters.
1925 Reported by Jan Nieuwenhuizen.
1926
b7195100
AD
19272002-10-11 Akim Demaille <akim@epita.fr>
1928
1929 * po/id.po: New.
1930
f28a0f2d
PE
19312002-10-10 Paul Eggert <eggert@twinsun.com>
1932
1933 Portability fixes for bitsets; this also avoids several GCC
1934 warnings.
1935
1936 * lib/abitset.c: Include <stddef.h>, for offsetof.
1937 * lib/lbitset.c: Likewise.
1938
1939 * lib/abitset.c (abitset_bytes): Return a size that is aligned
1940 properly for vectors of objects. Do not assume that adding a
1941 header size to a multiple of a word size yields a value that is
1942 properly aligned for the whole union.
1943 * lib/bitsetv.c (bitsetv_alloc): Likewise.
1944
1945 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
1946 unique names for structures.
1947 * lib/ebitset.c (ebitset_bytes): Likewise.
1948 * lib/lbitset.c (lbitset_bytes): Likewise.
1949
1950 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
1951 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
1952 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
1953 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
1954 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
1955 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
1956 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
1957 to improve the type-checking that GCC can do.
1958 * lib/bitset.c (bitset_op4_cmp): Likewise.
1959 * lib/bitset_stats.c (bitset_stats_count,
1960 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
1961 bitset_stats_copy, bitset_stats_disjoint_p,
1962 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
1963 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
1964 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
1965 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
1966 bitset_stats_and_or_cmp, bitset_stats_andn_or,
1967 bitset_stats_andn_or_cmp, bitset_stats_or_and,
1968 bitset_stats_or_and_cmp): Likewise.
1969 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
1970 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
1971 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
1972 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
1973
1974 * lib/abitset.h: Include bitset.h, not bbitset.h.
1975 * lib/ebitset.h: Likewise.
1976 * lib/lbitset.h: Likewise.
1977
1978 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
1979 All instances of parameters of type enum bitset_opts are now of
1980 type enum_bitset_opts, to conform to the C Standard, and similarly
1981 for enum_bitset_type.
1982 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
1983 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
1984
1985 Do not use "struct bitset_struct" to mean different things in
1986 different modules. Not only is this confusing, it violates
1987 the C Standard, which requires that structure types in different
1988 modules must be compatible if one is to be passed to the other.
1989 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
1990 All instances of "struct bitset_struct *" replaced with "bitset".
1991 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
1992 (union bitset_union, struct abitset_struct, struct ebitset_struct,
1993 struct lbitset_struct, struct bitset_stats_struct): New types.
1994 All uses of struct bitset_struct changed to union bitset_union,
1995 etc.
1996 * lib/abitset.c (struct abitset_struct, abitset,
1997 struct bitset_struct): Remove.
1998 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
1999 struct bitset_struct): Remove.
2000 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
2001 bitset_struct): Remove.
2002 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
2003 Likewise.
2004
2005 Do not call a function of type T using a call that assumes the
2006 function is of a different type U. Standard C requires that a
2007 function must be called with a type that is compatible with its
2008 definition.
2009 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
2010 New decls.
2011 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
2012 New functions.
2013 * lib/ebitset.c (PFV): Remove.
2014 * lib/lbitset.c (PFV): Likewise.
2015 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
2016 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
2017 decls.
2018 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
2019 (ebitset_vtable): Use them.
2020 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
2021 lbitset_xor): New functions.
2022 (lbitset_vtable): Use them.
2023
2024 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
2025 Declare.
2026
2027 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
2028 GCC warning.
2029 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
2030 Use offsetof, for simplicity.
2031
6fbe4984
PE
20322002-10-06 Paul Eggert <eggert@twinsun.com>
2033
2034 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
2035 the same width as int. This reapplies a hunk of the 2002-08-12 patch
2036 <http://mail.gnu.org/pipermail/bison-patches/2002-August/001111.html>,
2037 which was inadvertently undone by the 2002-09-30 patch.
2038 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
2039 the same width as int.
2040
420f93c8
PE
20412002-10-04 Paul Eggert <eggert@twinsun.com>
2042
2043 Version 1.50.
2044
2045 * configure.ac (AC_INIT), NEWS: Increment version number.
2046
2047 * doc/bison.texinfo: Minor spelling, grammar, and white space
2048 fixes.
2049 (Symbols): Mention that any negative value returned from yylex
2050 signifies end-of-input. Warn about negative chars. Mention
2051 the portable Standard C character set.
2052
2053 The GNU coding standard says CFLAGS and YFLAGS are reserved
2054 for the installer to set.
2055 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
2056 * src/Makefile.am (AM_CFLAGS): Likewise.
2057 (AM_YFLAGS): Renamed from YFLAGS.
2058
2059 Fix some MAX and MIN problems.
2060 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
2061 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
2062 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
2063 * src/reader.c (reader): Use it.
2064
2065 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
2066 POSIX 1003.1-2001 has removed fgrep.
2067
20682002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
2069
2070 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
2071 interpreted as signed.
2072 * lib/ebitset.c (ebitset_list): Fix bug.
2073
ff68026d
PE
20742002-10-01 Paul Eggert <eggert@twinsun.com>
2075
2076 More fixes for 64-bit hosts and large bitsets.
2077
2078 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
2079 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
2080 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
2081 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
2082 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
2083 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
2084 bitset_count_): Likewise.
2085 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
2086 bitset_first, bitset_last): Likewise.
2087 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
2088 bitset_stats_list_reverse, bitset_stats_size,
2089 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
2090 Likewise.
2091 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
2092 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
2093 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
2094 bitsetv_reflexive_transitive_closure): Likewise.
2095 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
2096 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
2097 Likewise.
2098 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
2099 Likewise.
420f93c8 2100
ff68026d
PE
2101 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
2102 Use size_t, not unsigned int, to count bytes.
2103 * lib/abitset.h (abitset_bytes): Likewise.
2104 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
2105 Likewise.
2106 * lib/bitset.h (bitset_bytes): Likewise.
2107 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
2108 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
2109 * lib/bitsetv.c (bitsetv_alloc): Likewise.
2110 * lib/ebitset.c (ebitset_bytes): Likewise.
2111 * lib/ebitset.h (ebitset_bytes): Likewise.
2112 * lib/lbitset.c (lbitset_bytes): Likewise.
2113 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 2114
ff68026d
PE
2115 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
2116 abitset_subset_p, abitset_disjoint_p, abitset_and,
2117 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
2118 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
2119 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
2120 abitset_or_and, abitset_or_and_cmp):
2121 Use bitset_windex instead of unsigned int.
2122 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
2123 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
2124 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
2125 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
2126 Likewise.
2127 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 2128
ff68026d
PE
2129 * lib/bitset.c (bitset_print):
2130 Use proper printf formats for widths of integer types.
2131 * lib/bitset_stats.c (bitset_percent_histogram_print,
2132 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
2133 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
2134 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
2135 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 2136
ff68026d
PE
2137 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
2138 BITSET_SIZE_MAX): New macros.
2139 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
2140 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
2141 to BITSET_WINDEX_MAX.
2142
2143 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
2144 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
2145 since we now return the bitset_bindex type (not int).
2146
2147 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
2148 when computing sizes.
2149 * lib/ebitset.c (ebitset_elts_grow): Likewise.
2150
2151 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
2152 and avoid cast to unsigned.
2153
6aa452a6
AD
21542002-09-30 Akim Demaille <akim@epita.fr>
2155
2156 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
2157 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
2158 Updates from Michael Hayes.
2159
927f7817
AD
21602002-09-30 Art Haas <ahaas@neosoft.com>
2161
2162 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
2163 invocations.
2164 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
2165 defined.
2166
9738f41e
AD
21672002-09-27 Akim Demaille <akim@epita.fr>
2168
2169 Version 1.49c.
2170
a5c75d7f
AD
21712002-09-27 Akim Demaille <akim@epita.fr>
2172
2173 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
2174 (Because of AC_LIBSOURCE).
2175
8280e179
AD
21762002-09-27 Akim Demaille <akim@epita.fr>
2177
2178 Playing with Autoscan.
2179
2180 * configure.ac: Remove the old LIBOBJ tweaks.
2181 (AC_REPLACE_FUNCS): Add strrchr and strtol.
2182 * lib/strrchr.c: New.
2183 * lib/strtol.c: New, from the Coreutils 4.5.1.
2184
ae64af35
AD
21852002-09-27 Akim Demaille <akim@epita.fr>
2186
2187 Playing with Autoscan.
2188
2189 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
2190 * lib/Makefile.am (libbison_a_SOURCES): No longer include
2191 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
2192 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
2193 Coreutils 4.5.1.
2194
d1a1114f
AD
21952002-09-24 Akim Demaille <akim@epita.fr>
2196
2197 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
2198 (Frequently Asked Questions, Parser Stack Overflow): New.
2199
b906441c
AD
22002002-09-13 Akim Demaille <akim@epita.fr>
2201
2202 Playing with autoscan.
2203
2204 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
2205 * src/files.c (skeleton_find): Remove, unused.
2206 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
2207 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
2208
bd701811
AD
22092002-09-13 Akim Demaille <akim@epita.fr>
2210
2211 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
2212 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
2213
e0a13e7b
AD
22142002-09-13 Akim Demaille <akim@epita.fr>
2215
2216 * configure.ac: Require 2.54.
2217 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
2218 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
2219 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
2220 Remove, provided by Autoconf macros.
2221
c97011bf
AD
22222002-09-12 Akim Demaille <akim@epita.fr>
2223
2224 * m4/prereq.m4: Update, from Coreutils 4.5.1.
2225
d862b1be
AD
22262002-09-12 Akim Demaille <akim@epita.fr>
2227
2228 * m4/prereq.m4: Update, from Fileutils 4.1.5.
2229 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
2230 Reported by Martin Mokrejs.
2231
3d38c03a
AD
22322002-09-10 Akim Demaille <akim@epita.fr>
2233
2234 * src/parse-gram.y: Associate a human readable string to each
2235 token type.
2236 * tests/regression.at (Invalid inputs): Adjust.
2237
b6347355
AD
22382002-09-10 Gary V. Vaughan <gary@gnu.org>
2239
2240 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
2241 with an Autoconf-2.5x style configure.ac.
2242
09ba4ab2
PE
22432002-09-06 Paul Eggert <eggert@twinsun.com>
2244
2245 * doc/bison.texinfo (Conditions): Make explicit that the GPL
2246 exception applies only to yacc.c. This is a modification of a
2247 patch originally suggested by Akim Demaille.
2248
21846f69
AD
22492002-09-06 Akim Demaille <akim@epita.fr>
2250
09ba4ab2
PE
2251 * data/c.m4 (b4_copyright): Move the GPL exception comment from
2252 here to...
2253 * data/yacc.c: here.
2254
21846f69
AD
2255 * data/lalr1.cc (struct yyltype): Don't define it, since we use
2256 LocationType.
2257 (b4_ltype): Default to yy::Location from location.hh.
2258
c0ad8bf3
AD
22592002-09-04 Jim Meyering <jim@meyering.net>
2260
2261 * data/yacc.c: Guard the declaration of yytoknum also with
2262 `#ifdef YYPRINT', so it is declared only when used.
2263
3a93251e
AD
22642002-09-04 Akim Demaille <akim@epita.fr>
2265
2266 * configure.in: Rename as...
2267 * configure.ac: this.
2268 Bump to 1.49c.
2269
427c0dda
AD
22702002-09-04 Akim Demaille <akim@epita.fr>
2271
2272 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
2273 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
2274 translate maintainer only messages.
2275
6a254321
PE
22762002-08-12 Paul Eggert <eggert@twinsun.com>
2277
645e30d1
PE
2278 Version 1.49b.
2279
6a254321
PE
2280 * Makefile.am (SUBDIRS): Remove intl.
2281 (DISTCLEANFILES): Remove.
2282 * NEWS: Mention that GNU M4 is now required. Clarify what is
2283 meant by "larger grammars". Mention the pt_BR translation.
2284 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
2285 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
2286 Bump version from 0.11.2 to 0.11.5.
2287 (BISON_PREREQ_STAGE): Remove.
2288 (AM_GNU_GETTEXT): Use external gettext.
2289 (AC_OUTPUT): Remove intl/Makefile.
2290
2291 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
2292
2293 * data/glr.c: Include string.h, for strlen.
2294 (yyreportParseError): Use size_t for yysize.
2295 (yy_yypstack): No longer nested inside yypstates, as nested
2296 functions are not portable. Do not assume size_t is the
2297 same width as int.
2298 (yypstates): Do not assume that ptrdiff_t is the same width
2299 as int, and similarly for yyposn and YYINDEX.
2300
2301 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
2302
2303 * lib/Makefile.am (INCLUDES): Do not include from the intl
2304 directory, which has been removed.
2305 * src/Makefile.am (INCLUDES): Likewise.
2306
2307 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
2308 (bitsets_sources, additional_bitsets_sources, timevars_sources):
2309 New vars.
2310
2311 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
2312 * tests/Makefile.am (EXTRA_DIST): Likewise.
2313
2314 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
2315 Do not assume that bitset_windex is the same width as unsigned.
2316
2317 * lib/abitset.c (abitset_unused_clear): Do not assume that
2318 bitset_word is the same width as int.
2319 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
2320 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
2321 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
2322 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
2323 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
2324
2325 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
2326 portability to one's complement hosts!).
2327 * lib/ebitset.c (ebitset_op1): Likewise.
2328 * lib/lbitset.c (lbitset_op1): Likewise.
2329
2330 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
2331 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
2332 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
2333 Sync with fileutils.
2334 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
2335 lib/gettext.h: Sync with diffutils.
2336
2337 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
2338 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
2339
2340 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
2341 PROTOTYPES to check for prototypes, and "defined __STDC__" to
2342 check for void *.
2343
2344 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
2345 size_t; the old version tried to do this but casted improperly.
2346 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
2347 (bitset_test): Now returns int, not unsigned long.
2348
2349 * lib/bitset_stats.c: Include "gettext.h".
2350 (_): New macro.
2351 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
2352 name locals "index", as it generates unnecessary warnings on some
2353 hosts that have an "index" function.
2354
2355 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
2356 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
2357 they need translation.
2358 * src/LR0.c (state_list_append, new_itemsets, get_state,
2359 append_states, generate_states): Likewise.
2360 * src/assoc.c (assoc_to_string): Likewise.
2361 * src/closure.c (print_closure, set_firsts, closure): Likewise.
2362 * src/gram.c (grammar_dump): Likewise.
2363 * src/injections.c (injections_compute): Likewise.
2364 * src/lalr.c (lookaheads_print): Likewise.
2365 * src/relation.c (relation_transpose): Likewise.
2366 * src/scan-gram.l: Likewise.
2367 * src/tables.c (table_grow, pack_vector): Likewise.
2368
2369 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
2370 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
2371 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
2372 * m4/mbstate_t.m4: Sync with fileutils.
2373 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
2374
2375 * po/LINGUAS: Add pt_BR.
2376 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
2377 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
2378 lib/timevar.c.
2379 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
2380 manual recommends.
2381 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
2382
2383 * src/complain.c (strerror_r): Remove decl; not needed.
2384 (strerror): Use same pattern as ../lib/error.c.
2385
2386 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
2387
2388 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
2389
2390 * src/main.c (main): Cast result of bindtextdomain and textdomain
2391 to void, to avoid a GCC warning when --disable-nls is in effect.
2392
2393 * src/scan-gram.l: Use strings rather than escapes when possible,
2394 to minimize the number of warnings from xgettext.
2395 (handle_action_dollar, handle_action_at): Don't use isdigit,
2396 as it mishandles negative chars and it may not work as expected
2397 outside the C locale.
2398
2399 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
2400 this is a GCC extension and is not portable to other compilers.
2401
2402 * src/system.h (alloca): Use same pattern as ../lib/error.c.
2403 Do not include <ctype.h>; no longer needed.
2404 Do not include <malloc.h>; no longer needed (and generates
2405 warnings on OpenBSD 3.0).
2406
2407 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
2408 it's not portable.
2409
2410 * tests/regression.at: Do not use 'cc -c input.c -o input';
2411 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
2412
2413 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
2414 exit status as failure, not just exit status 1. Sun C exits
2415 with status 2 sometimes.
2416
2417 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
2418 Use it for the two large tests.
2419
c8f002c7
AD
24202002-08-02 Akim Demaille <akim@epita.fr>
2421
2422 * src/conflicts.c (conflicts_output): Don't output rules never
2423 reduced here, since anyway that computation doesn't work.
2424 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
2425 (rule_useless_p, rule_never_reduced_p): New.
2426 (grammar_rules_partial_print): Use a filter instead of a range.
2427 Display the title only if needed.
2428 (grammar_rules_print): Adjust.
2429 (grammar_rules_never_reduced_report): New.
2430 * src/tables.c (action_row): Move the computation of rules never
2431 reduced to...
2432 (token_actions): here.
2433 * src/main.c (main): Make the parser before making the report, so
2434 that rules never reduced are computed.
2435 Call grammar_rules_never_reduced_report.
2436 * src/print.c (print_results): Report rules never reduced.
2437 * tests/conflicts.at, tests/reduce.at: Adjust.
2438
cd08e51e
AD
24392002-08-01 Akim Demaille <akim@epita.fr>
2440
2441 Instead of attaching lookaheads and duplicating the rules being
2442 reduced by a state, attach the lookaheads to the reductions.
2443
2444 * src/state.h (state_t): Remove the `lookaheads',
2445 `lookaheads_rule' member.
2446 (reductions_t): Add a `lookaheads' member.
2447 Use a regular array for the `rules'.
2448 * src/state.c (reductions_new): Initialize the lookaheads member
2449 to 0.
2450 (state_rule_lookaheads_print): Adjust.
2451 * src/state.h, src/state.c (state_reductions_find): New.
2452 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
2453 (count_rr_conflicts): Adjust.
2454 * src/lalr.c (LArule): Remove.
2455 (add_lookback_edge): Adjust.
2456 (state_lookaheads_count): New.
2457 (states_lookaheads_initialize): Merge into...
2458 (initialize_LA): this.
2459 (lalr_free): Adjust.
2460 * src/main.c (main): Don't free nullable and derives too early: it
2461 is used by --verbose.
2462 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
2463
bb0027a9
AD
24642002-08-01 Akim Demaille <akim@epita.fr>
2465
2466 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
2467 `rule_number_t**'.
2468 (set_derives, free_derives): Rename as...
2469 (derives_compute, derives_free): this.
2470 Adjust all dependencies.
2471 * src/nullable.c (set_nullable, free_nullable): Rename as...
2472 (nullable_compute, nullable_free): these.
2473 (rule_list_t): Store rule_t *, not rule_number_t.
2474 * src/state.c (state_rule_lookaheads_print): Directly compare rule
2475 pointers, instead of their numbers.
2476 * src/main.c (main): Call nullable_free, and derives_free earlier,
2477 as they were lo longer used.
2478
3325ddc4
AD
24792002-08-01 Akim Demaille <akim@epita.fr>
2480
2481 * lib/timevar.c (get_time): Include children time.
2482 * src/lalr.h (LA, LArule): Don't export them: used with the
2483 state_t.
2484 * src/lalr.c (LA, LArule): Static.
2485 * src/lalr.h, src/lalr.c (lalr_free): New.
2486 * src/main.c (main): Call it.
2487 * src/tables.c (pack_vector): Check whether loc is >= to the
2488 table_size, not >.
2489 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
2490 (tables_generate): do it, since that's also it which allocates
2491 them.
2492 Don't free LA and LArule, main does.
2493
c6f1a33c
AD
24942002-07-31 Akim Demaille <akim@epita.fr>
2495
2496 Separate parser tables computation and output.
2497
2498 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
2499 (conflict_list, conflict_list_cnt, table, check, table_ninf)
2500 (yydefgoto, yydefact, high): Move to...
2501 * src/tables.h, src/tables.c: here.
2502 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
2503 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
2504 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
2505 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
2506 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
2507 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
2508 (action_row, save_row, token_actions, save_column, default_goto)
2509 (goto_actions, sort_actions, matching_state, pack_vector)
2510 (table_ninf_remap, pack_table, prepare_actions): Move to...
2511 * src/tables.c: here.
2512 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
2513 * src/output.c (token_actions, output_base, output_conflicts)
2514 (output_check): Merge into...
2515 (prepare_actions): this.
2516 (actions_output): Rename as...
2517 (user_actions_output): this.
2518 * src/main.c (main): Call tables_generate and tables_free.
2519
1509d42f
AD
25202002-07-31 Akim Demaille <akim@epita.fr>
2521
2522 Steal GCC's --time-report support.
2523
2524 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
2525 stolen/adjusted from GCC.
2526 * m4/stage.m4: Remove time related checks.
2527 * m4/timevar.m4: New.
2528 * configure.in: Adjust.
2529 * src/system.h: Adjust to using timevar.h.
2530 * src/getargs.h, src/getargs.c: Support trace_time for
2531 --trace=time.
2532 * src/main.c (stage): Remove.
2533 (main): Replace `stage' invocations with timevar calls.
2534 * src/output.c: Insert pertinent timevar calls.
2535
273a74fa
AD
25362002-07-31 Akim Demaille <akim@epita.fr>
2537
2538 Let --trace have arguments.
2539
2540 * src/getargs.h (enum trace_e): New.
2541 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
2542 (long_options, short_options): --trace/-T takes an optional
2543 argument.
2544 Change all the uses of trace_flag to reflect the new flags.
2545 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
2546
2547 Strengthen `stage' portability.
2548
2549 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
2550 * configure.in: Use it.
2551 Don't check for malloc.h and sys/times.h.
2552 * src/system.h: Include them when appropriate.
2553 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
2554 times and struct tms are available.
2555
217598da
AD
25562002-07-30 Akim Demaille <akim@epita.fr>
2557
2558 In verbose parse error message, don't report `error' as an
2559 expected token.
2560 * tests/actions.at (Printers and Destructors): Adjust.
2561 * tests/calc.at (Calculator $1): Adjust.
2562 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
2563 error message, do not report the parser accepts the error token in
2564 that state.
2565
52489d44
AD
25662002-07-30 Akim Demaille <akim@epita.fr>
2567
2568 Normalize conflict related messages.
2569
2570 * src/complain.h, src/complain.c (warn, complain): New.
2571 * src/conflicts.c (conflicts_print): Use them.
2572 (conflict_report_yacc): New, extracted from...
2573 (conflicts_print): here.
2574 * tests/conflicts.at, tests/existing.at: Adjust.
2575
e8832397
AD
25762002-07-30 Akim Demaille <akim@epita.fr>
2577
2578 Report rules which are never reduced by the parser: those hidden
2579 by conflicts.
2580
2581 * src/LR0.c (save_reductions): Don't make the final state too
2582 different: save its reduction (accept) instead of having a state
2583 without any action (no shift or goto, no reduce).
2584 Note: the final state is now a ``regular'' state, i.e., the
2585 parsers now contain `reduce 0' as default reduction.
2586 Nevertheless, since they decide to `accept' when yystate =
2587 final_state, they still will not reduce rule 0.
2588 * src/print.c (print_actions, print_reduction): Adjust.
2589 * src/output.c (action_row): Track reduced rules.
2590 (token_actions): Report rules never reduced.
2591 * tests/conflicts.at, tests/regression.at: Adjust.
2592
caf23d24
AD
25932002-07-30 Akim Demaille <akim@epita.fr>
2594
2595 `stage' was accidently included in a previous patch.
2596 Initiate its autoconfiscation.
2597
2598 * configure.in: Look for malloc.h and sys/times.h.
2599 * src/main.c (stage): Adjust.
2600 Report only when trace_flag.
2601
640748ee
AD
26022002-07-29 Akim Demaille <akim@epita.fr>
2603
2604 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
2605 state_number_t.
2606 (errs_t): symbol_t*, not symbol_number_t.
2607 (reductions_t): rule_t*, not rule_number_t.
2608 (FOR_EACH_SHIFT): New.
2609 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
2610 * src/print.c, src/print_graph.c: Adjust.
2611
88bce5a2
AD
26122002-07-29 Akim Demaille <akim@epita.fr>
2613
2614 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
2615
2616 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
2617 (endtoken, accept): these.
2618 * src/reader.c (reader): Set endtoken's default tag to "$end".
2619 Set undeftoken's tag to "$undefined" instead of "$undefined.".
2620 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
2621 Adjust.
2622
1bfb97db
AD
26232002-07-29 Akim Demaille <akim@epita.fr>
2624
2625 * src/reduce.c (reduce_grammar): When the language is empty,
2626 complain about the start symbol, not the axiom.
2627 Use its location.
2628 * tests/reduce.at (Empty Language): New.
2629
fc5734fe
AD
26302002-07-26 Akim Demaille <akim@epita.fr>
2631
2632 * src/reader.h, src/reader.c (gram_error): ... can't get
2633 yycontrol without making too strong assumptions on the parser
2634 itself.
2635 * src/output.c (prepare_tokens): Use the real 0th value of
2636 token_translations instead of `0'.
2637 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
2638 visible here.
2639 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
2640 for the time being: %locations ought to provide it to yyerror.
2641
3650b4b8
AD
26422002-07-25 Akim Demaille <akim@epita.fr>
2643
2644 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
2645 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
2646 * tests/regression.at (Web2c Actions): Adjust.
2647
4b3d3a8e
AD
26482002-07-25 Akim Demaille <akim@epita.fr>
2649
2650 Stop storing rules from 1 to nrules + 1.
2651
2652 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
2653 * src/nullable.c, src/output.c, src/print.c, src/reader.c
2654 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
2655 Iterate from 0 to nrules.
2656 Use rule_number_as_item_number and item_number_as_rule_number.
2657 Adjust to `derive' now containing possibly 0.
2658 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
2659 Handle the `- 1' part in rule numbers from/to item numbers.
2660 * src/conflicts.c (log_resolution): Fix the message which reversed
2661 shift and reduce.
2662 * src/output.c (action_row): Initialize default_rule to -1.
2663 (token_actions): Adjust.
2664 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
2665 expected output.
2666 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
2667
4a2a22f4
AD
26682002-07-25 Akim Demaille <akim@epita.fr>
2669
2670 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
2671 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
2672 (b4_c_knr_arg_decl): New.
2673 * data/yacc.c: Use it to define yysymprint, yydestruct, and
2674 yyreport_parse_error.
2675
b8df3223
AD
26762002-07-25 Akim Demaille <akim@epita.fr>
2677
2678 * data/yacc.c (yyreport_parse_error): New, extracted from...
2679 (yyparse): here.
2680 (yydestruct, yysymprint): Move above yyparse.
2681 Be K&R compliant.
2682
a762e609
AD
26832002-07-25 Akim Demaille <akim@epita.fr>
2684
2685 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
2686 replace...
2687 (b4_sint_type, b4_uint_type): these.
2688 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
2689 * tests/regression.at (Web2c Actions): Adjust.
2690
12b0043a
AD
26912002-07-25 Akim Demaille <akim@epita.fr>
2692
2693 * src/gram.h (TIEM_NUMBER_MAX): New.
2694 (item_number_of_rule_number, rule_number_of_item_number): Rename
2695 as...
2696 (rule_number_as_item_number, item_number_as_rule_number): these.
2697 Adjust dependencies.
2698 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
2699 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
2700 (symbol_number_to_vector_number): New.
2701 (order): Of vector_number_t* type.
2702 (base_t, BASE_MAX, BASE_MIN): New.
2703 (froms, tos, width, pos, check): Of base_t type.
2704 (action_number_t, ACTION_MIN, ACTION_MAX): New.
2705 (actrow): Of action_number_t type.
2706 (conflrow): Of unsigned int type.
2707 (table_ninf, base_ninf): New.
2708 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
2709 (muscle_insert_int_table, muscle_insert_base_table)
2710 (muscle_insert_rule_number_table): New.
2711 (prepare_tokens): Output `toknum' as int_table.
2712 (action_row): Returns a rule_number_t.
2713 Use ACTION_MIN, not SHRT_MIN.
2714 (token_actions): yydefact is rule_number_t*.
2715 (table_ninf_remap): New.
2716 (pack_table): Use it for `base' and `table'.
2717 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
2718 replaced with...
2719 (YYPACT_NINF, YYTABLE_NINF): these.
2720 (yypact, yytable): Compute their types instead of hard-coded
2721 `short'.
2722 * tests/regression.at (Web2c Actions): Adjust.
2723
5dde258a
AD
27242002-07-19 Akim Demaille <akim@epita.fr>
2725
2726 * src/scan-gram.l (id): Can start with an underscore.
2727
a945ec39
AD
27282002-07-16 Akim Demaille <akim@epita.fr>
2729
2730 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
2731 Adjust all former `associativity' dependencies.
2732 * src/symtab.c (symbol_new): Default associativity is `undef', not
2733 `right'.
2734 (symbol_check_alias_consistence): Adjust.
2735
fae437e8
AD
27362002-07-09 Akim Demaille <akim@epita.fr>
2737
2738 * doc/bison.texinfo: Properly set the ``header'' part.
2739 Use @dircategory ``GNU programming tools'' as per Texinfo's
2740 documentation.
2741 Use @copying.
2742
1a715ef2
AD
27432002-07-09 Akim Demaille <akim@epita.fr>
2744
2745 * lib/quotearg.h: Protect against multiple inclusions.
2746 * src/location.h (location_t): Add a `file' member.
2747 (LOCATION_RESET, LOCATION_PRINT): Adjust.
2748 * src/complain.c (warn_at, complain_at, fatal_at): Drop
2749 `error_one_per_line' support.
2750
a5d50994
AD
27512002-07-09 Akim Demaille <akim@epita.fr>
2752
2753 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
2754 * src/reader.c (lineno): Remove.
2755 Adjust all dependencies.
2756 (get_merge_function): Take a location and use complain_at.
2757 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
2758 * tests/regression.at (Invalid inputs, Mixing %token styles):
2759 Adjust.
2760
b275314e
AD
27612002-07-09 Akim Demaille <akim@epita.fr>
2762
2763 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
2764 recovery rule, and forbid extensions when --yacc.
2765 (gram_error): Use complain_at.
2766 * src/reader.c (reader): Exit if there were parse errors.
2767
865b9df1
AD
27682002-07-09 Akim Demaille <akim@epita.fr>
2769
2770 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
2771 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
2772 Reported by R Blake <blakers@mac.com>.
2773
c76e14da
AD
27742002-07-09 Akim Demaille <akim@epita.fr>
2775
2776 * data/yacc.c: Output the copyright notive in the header.
2777
7db2ed2d
AD
27782002-07-03 Akim Demaille <akim@epita.fr>
2779
2780 * src/output.c (froms, tos): Are state_number_t.
2781 (save_column): sp, sp1, and sp2 are state_number_t.
2782 (prepare): Rename `final' as `final_state_number', `nnts' as
2783 `nterms_number', `nrules' as `rules_number', `nstates' as
2784 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
2785 unused.
2786 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
2787 * data/lalr1.cc (nsym_): Remove, unused.
2788
e68e0410
AD
27892002-07-03 Akim Demaille <akim@epita.fr>
2790
2791 * src/lalr.h, src/lalr.c (goto_number_t): New.
2792 * src/lalr.c (goto_list_t): New.
2793 Propagate them.
2794 * src/nullable.c (rule_list_t): New.
2795 Propagate.
2796 * src/types.h: Remove.
2797
e1a4f3a4
AD
27982002-07-03 Akim Demaille <akim@epita.fr>
2799
2800 * src/closure.c (print_fderives): Use rule_rhs_print.
2801 * src/derives.c (print_derives): Use rule_rhs_print.
2802 (rule_list_t): New, replaces `shorts'.
2803 (set_derives): Add comments.
2804 * tests/sets.at (Nullable, Firsts): Adjust.
2805
536545f3
AD
28062002-07-03 Akim Demaille <akim@epita.fr>
2807
2808 * src/output.c (prepare_actions): Free `tally' and `width'.
2809 (prepare_actions): Allocate and free `order'.
2810 * src/symtab.c (symbols_free): Free `symbols'.
2811 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
2812 * src/output.c (m4_invoke): Move to...
2813 * src/scan-skel.l: here.
2814 (<<EOF>>): Close yyout, and free its name.
2815
8b752b00
AD
28162002-07-03 Akim Demaille <akim@epita.fr>
2817
2818 Fix some memory leaks, and fix a bug: state 0 was examined twice.
2819
2820 * src/LR0.c (new_state): Merge into...
2821 (state_list_append): this.
2822 (new_states): Merge into...
2823 (generate_states): here.
2824 (set_states): Don't ensure a proper `errs' state member here, do it...
2825 * src/conflicts.c (conflicts_solve): here.
2826 * src/state.h, src/state.c: Comment changes.
2827 (state_t): Rename member `shifts' as `transitions'.
2828 Adjust all dependencies.
2829 (errs_new): For consistency, also take the values as argument.
2830 (errs_dup): Remove.
2831 (state_errs_set): New.
2832 (state_reductions_set, state_transitions_set): Assert that no
2833 previous value was assigned.
2834 (state_free): New.
2835 (states_free): Use it.
2836 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
2837 temporary storage: use `errs' and `nerrs' as elsewhere.
2838 (set_conflicts): Allocate and free this `errs'.
2839
613f5e1a
AD
28402002-07-02 Akim Demaille <akim@epita.fr>
2841
2842 * lib/libiberty.h: New.
2843 * lib: Update the bitset implementation from upstream.
2844 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
2845 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
2846 * src/main.c: Adjust bitset stats calls.
2847
26e0cadc
PE
28482002-07-01 Paul Eggert <eggert@twinsun.com>
2849
2850 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
2851 char, so that negative chars don't collide with $.
2852
1154cced
AD
28532002-06-30 Akim Demaille <akim@epita.fr>
2854
2855 Have the GLR tests be `warning' checked, and fix the warnings.
2856
2857 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
2858 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
2859 (yyremoveDeletes): `yyi' and `yyj' are size_t.
2860 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
2861 (yyaddDeferredAction): static.
2862 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
2863 (yyreportParseError): yyprefix is const.
2864 yytokenp is used only when verbose.
2865 (yy__GNUC__): Replace with __GNUC__.
2866 (yypdumpstack): yyi is size_t.
2867 (yypreference): Un-yy local variables and arguments, to avoid
2868 clashes with `yyr1'. Anyway, we are not in the user name space.
2869 (yytname_size): be an int, as is compared with ints.
2870 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
2871 Use them.
2872 * tests/cxx-gram.at: Use quotation to protect $1.
2873 Use AT_COMPILE to enable warnings hunts.
2874 Prototype yylex and yyerror.
2875 `Use' argc.
2876 Include `string.h', not `strings.h'.
2877 Produce and prototype stmtMerge only when used.
2878 yylex takes a location.
2879
97650f4e
AD
28802002-06-30 Akim Demaille <akim@epita.fr>
2881
2882 We spend a lot of time in quotearg, in particular when --verbose.
2883
2884 * src/symtab.c (symbol_get): Store a quoted version of the key.
2885 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
2886 Adjust all callers.
2887
d2576365
AD
28882002-06-30 Akim Demaille <akim@epita.fr>
2889
2890 * src/state.h (reductions_t): Rename member `nreds' as num.
2891 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
2892 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
2893
ccaf65bc
AD
28942002-06-30 Akim Demaille <akim@epita.fr>
2895
2896 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
2897 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
2898 (shifts_to): Rename as...
2899 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
2900 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
2901 (TRANSITION_IS_DISABLED, transitions_to): these.
2902
87675353
AD
29032002-06-30 Akim Demaille <akim@epita.fr>
2904
2905 * src/print.c (print_shifts, print_gotos): Merge into...
2906 (print_transitions): this.
2907 (print_transitions, print_errs, print_reductions): Align the
2908 lookaheads columns.
2909 (print_core, print_transitions, print_errs, print_state,
2910 print_grammar): Output empty lines separator before, not after.
2911 (state_default_rule_compute): Rename as...
2912 (state_default_rule): this.
2913 * tests/conflicts.at (Defaulted Conflicted Reduction),
2914 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
2915 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
2916
ce4ccb4b
AD
29172002-06-30 Akim Demaille <akim@epita.fr>
2918
2919 Display items as we display rules.
2920
2921 * src/gram.h, src/gram.c (rule_lhs_print): New.
2922 * src/gram.c (grammar_rules_partial_print): Use it.
2923 * src/print.c (print_core): Likewise.
2924 * tests/conflicts.at (Defaulted Conflicted Reduction),
2925 (Unresolved SR Conflicts): Adjust.
2926 (Unresolved SR Conflicts): Adjust and rename as...
2927 (Resolved SR Conflicts): this, as was meant.
2928 * tests/regression.at (Web2c Report): Adjust.
2929
bc933ef1
AD
29302002-06-30 Akim Demaille <akim@epita.fr>
2931
2932 * src/print.c (state_default_rule_compute): New, extracted from...
2933 (print_reductions): here.
2934 Pessimize, but clarify the code.
2935 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
2936
53d4308d
AD
29372002-06-30 Akim Demaille <akim@epita.fr>
2938
2939 * src/output.c (action_row): Let default_rule be always a rule
2940 number.
2941
574fb2d5
AD
29422002-06-30 Akim Demaille <akim@epita.fr>
2943
2944 * src/closure.c (print_firsts, print_fderives, closure):
2945 Use BITSET_EXECUTE.
2946 * src/lalr.c (lookaheads_print): Likewise.
2947 * src/state.c (state_rule_lookaheads_print): Likewise.
2948 * src/print_graph.c (print_core): Likewise.
2949 * src/print.c (print_reductions): Likewise.
2950 * src/output.c (action_row): Likewise.
2951 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
2952
05811fd7
AD
29532002-06-30 Akim Demaille <akim@epita.fr>
2954
2955 * src/print_graph.c: Use report_flag.
2956
0e4d5753
AD
29572002-06-30 Akim Demaille <akim@epita.fr>
2958
2959 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
2960 to...
2961 * src/relation.h, src/relation.c (traverse, relation_digraph)
2962 (relation_print, relation_transpose): New.
2963
24c7d800
AD
29642002-06-30 Akim Demaille <akim@epita.fr>
2965
2966 * src/state.h, src/state.c (shifts_to): New.
2967 * src/lalr.c (build_relations): Use it.
2968
9222837b
AD
29692002-06-30 Akim Demaille <akim@epita.fr>
2970
2971 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
2972 (item_number_of_rule_number, rule_number_of_item_number): New.
2973 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
2974 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
2975 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
2976 Propagate their use.
2977 Much remains to be done, in particular wrt `shorts' from types.h.
2978
260008e5
AD
29792002-06-30 Akim Demaille <akim@epita.fr>
2980
2981 * src/symtab.c (symbol_new): Initialize the `printer' member.
2982
8a731ca8
AD
29832002-06-30 Akim Demaille <akim@epita.fr>
2984
2985 * src/LR0.c (save_reductions): Remove, replaced by...
2986 * src/state.h, src/state.c (state_reductions_set): New.
2987 (reductions, errs): Rename as...
2988 (reductions_t, errs_t): these.
2989 Adjust all dependencies.
2990
32e1e0a4
AD
29912002-06-30 Akim Demaille <akim@epita.fr>
2992
2993 * src/LR0.c (state_list_t, state_list_append): New.
2994 (first_state, last_state): Now symbol_list_t.
2995 (this_state): Remove.
2996 (new_itemsets, append_states, save_reductions): Take a state_t as
2997 argument.
2998 (set_states, generate_states): Adjust.
2999 (save_shifts): Remove, replaced by...
3000 * src/state.h, src/state.c (state_shifts_set): New.
3001 (shifts): Rename as...
3002 (shifts_t): this.
3003 Adjust all dependencies.
3004 * src/state.h (state_t): Remove the `next' member.
3005
e5fb6710
AD
30062002-06-30 Akim Demaille <akim@epita.fr>
3007
3008 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
3009 escaped in slot 0.
3010
c7ca99d4
AD
30112002-06-30 Akim Demaille <akim@epita.fr>
3012
3013 Use hash.h for the state hash table.
3014
3015 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
3016 (allocate_storage): Use state_hash_new.
3017 (free_storage): Use state_hash_free.
3018 (new_state, get_state): Adjust.
3019 * src/lalr.h, src/lalr.c (states): Move to...
3020 * src/states.h (state_t): Remove the `link' member, no longer
3021 used.
3022 * src/states.h, src/states.c: here.
3023 (state_hash_new, state_hash_free, state_hash_lookup)
3024 (state_hash_insert, states_free): New.
3025 * src/states.c (state_table, state_compare, state_hash): New.
3026 * src/output.c (output_actions): Do not free states now, since we
3027 still need to know the final_state number in `prepare', called
3028 afterwards. Do it...
3029 * src/main.c (main): here: call states_free after `output'.
3030
df0e7316
AD
30312002-06-30 Akim Demaille <akim@epita.fr>
3032
3033 * src/state.h, src/state.c (state_new): New, extracted from...
3034 * src/LR0.c (new_state): here.
3035 * src/state.h (STATE_ALLOC): Move to...
3036 * src/state.c: here.
3037 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
3038 * src/state.h, src/state.c: here.
3039
39f41916
AD
30402002-06-30 Akim Demaille <akim@epita.fr>
3041
3042 * src/reader.c (gensym): Rename as...
3043 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
3044 (getsym): Rename as...
3045 (symbol_get): this.
3046
d57650a5
AD
30472002-06-30 Akim Demaille <akim@epita.fr>
3048
3049 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
3050 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
3051 * src/output.c, src/print.c, src/print_graph.c: Propagate.
3052 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
3053
5a08f1ce
AD
30542002-06-30 Akim Demaille <akim@epita.fr>
3055
3056 Make the test suite pass with warnings checked.
3057
3058 * tests/actions.at (Printers and Destructors): Improve.
3059 Avoid unsigned vs. signed issues.
3060 * tests/calc.at: Don't exercise the scanner here, do it...
3061 * tests/input.at (Torturing the Scanner): here.
3062
720623af
PH
30632002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3064
88e7e941 3065 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
3066 reorganize first lines parallel to yacc.c.
3067
fb8135fa
AD
30682002-06-28 Akim Demaille <akim@epita.fr>
3069
3070 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
3071 (b4_token_enum, b4_token_defines): New, factored from...
3072 * data/lalr1.cc, data/yacc.c, glr.c: here.
3073
41442480
AD
30742002-06-28 Akim Demaille <akim@epita.fr>
3075
3076 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
3077 unused variables.
3078 * src/output.c (merger_output): static.
3079
e0e5bf84
AD
30802002-06-28 Akim Demaille <akim@epita.fr>
3081
3082 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
3083 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
3084 pacify GCC.
3085 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 3086
676385e2
PH
30872002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3088
3089 Accumulated changelog for new GLR parsing features.
3090
6a254321 3091 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
3092 conflicts_total_count.
3093 * src/conflicts.h: Ditto.
3094 * src/output.c (token_actions): Use the new name.
3095 (output_conflicts): Change conflp => conflict_list_heads, and
3096 confl => conflict_list for better readability.
3097 * data/glr.c: Use the new names.
3098 * NEWS: Add self to GLR announcement.
e0e5bf84 3099
676385e2
PH
3100 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
3101
3102 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
3103 Akim Demaille.
3104
3105 * data/bison.glr: Change name to glr.c
3106 * data/glr.c: Renamed from bison.glr.
3107 * data/Makefile.am: Add glr.c
e0e5bf84
AD
3108
3109 * src/getargs.c:
3110
676385e2
PH
3111 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
3112 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 3113
676385e2
PH
3114 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3115
3116 * data/bison.glr: Be sure to restore the
3117 current #line when returning to the skeleton contents after having
3118 exposed the input file's #line.
3119
3120 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3121
3122 * data/bison.glr: Bring up to date with changes to bison.simple.
3123
3124 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3125
3126 * data/bison.glr: Correct definitions that use b4_prefix.
3127 Various reformatting.
3128 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
3129 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
3130 yytokenp argument; now part of stack.
3131 (yychar): Define to behave as documented.
3132 (yyclearin): Ditto.
e0e5bf84 3133
676385e2
PH
3134 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3135
3136 * src/reader.h: Add declaration for free_merger_functions.
3137
3138 * src/reader.c (merge_functions): New variable.
3139 (get_merge_function): New function.
3140 (free_merger_functions): New function.
3141 (readgram): Check for %prec that is not followed by a symbol.
3142 Handle %dprec and %merge declarations.
3143 (packgram): Initialize dprec and merger fields in rules array.
3144
3145 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
3146 conflict_list_cnt, conflict_list_free): New variables.
3147 (table_grow): Also grow conflict_table.
e0e5bf84 3148 (prepare_rules): Output dprec and merger tables.
676385e2 3149 (conflict_row): New function.
e0e5bf84 3150 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
3151 default reduction in conflicted states for GLR parser so that there
3152 are spaces for the conflict lists.
3153 (save_row): Also save conflict information.
3154 (token_actions): Allocate conflict list.
3155 (merger_output): New function.
3156 (pack_vector): Pack conflict table, too.
3157 (output_conflicts): New function to output yyconflp and yyconfl.
3158 (output_check): Allocate conflict_tos.
3159 (output_actions): Output conflict tables, also.
3160 (output_skeleton): Output b4_mergers definition.
3161 (prepare): Output b4_max_rhs_length definition.
3162 Use 'bison.glr' as default skeleton for GLR parsers.
3163
3164 * src/gram.c (glr_parser): New flag.
3165 (grammar_free): Call free_merger_functions.
3166
3167 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
3168 all pairs of conflicting reductions, rather than just all tokens
3169 causing conflicts. Needed to size conflict tables.
e0e5bf84 3170 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
3171 interface.
3172 (conflicts_print): Ditto.
3173 (count_total_conflicts): New function.
3174
3175 * src/reader.h (merger_list): New type.
3176 (merge_functions): New variable.
3177
3178 * src/lex.h (tok_dprec, tok_merge): New token types.
3179
3180 * src/gram.h (rule_s): Add dprec and merger fields.
3181 (glr_parser): New flag.
3182
3183 * src/conflicts.h (count_total_conflicts): New function.
3184
3185 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
3186
3187 * doc/bison.texinfo (Generalized LR Parsing): New section.
3188 (GLR Parsers): New section.
3189 (Language and Grammar): Mention GLR parsing.
3190 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
3191 Correct typo ("tge" -> "the").
3192
3193 * data/bison.glr: New skeleton for GLR parsing.
3194
3195 * tests/cxx-gram.at: New tests for GLR parsing.
3196
3197 * tests/testsuite.at: Include cxx-gram.at.
3198
3199 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 3200
676385e2
PH
3201 * src/parse-gram.y:
3202
3203 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
3204
3205 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 3206
b5480d74 32072002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
3208
3209 * src/options.h, src/options.c: Remove.
3210 * src/getargs.c (short_options, long_options): New.
3211
60491a94
AD
32122002-06-27 Akim Demaille <akim@epita.fr>
3213
3214 * data/bison.simple, data/bison.c++: Rename as...
3215 * data/yacc.c, data/lalr1.cc: these.
3216 * doc/bison.texinfo (Environment Variables): Remove.
3217
9be0c25b
AD
32182002-06-25 Raja R Harinath <harinath@cs.umn.edu>
3219
3220 * src/getargs.c (report_argmatch): Initialize strtok().
3221
1ae72863
AD
32222002-06-20 Akim Demaille <akim@epita.fr>
3223
3224 * data/bison.simple (b4_symbol_actions): New, replaces...
3225 (b4_symbol_destructor, b4_symbol_printer): these.
3226 (yysymprint): Be sure to call YYPRINT only for tokens, and using
3227 user token numbers.
3228
87542d29
AD
32292002-06-20 Akim Demaille <akim@epita.fr>
3230
3231 * data/bison.simple (yydestructor): Rename as...
3232 (yydestruct): this.
3233
1a31ed21
AD
32342002-06-20 Akim Demaille <akim@epita.fr>
3235
3236 * src/symtab.h, src/symtab.c (symbol_type_set)
3237 (symbol_destructor_set, symbol_precedence_set): The location is
3238 the last argument.
3239 Adjust all callers.
3240
e776192e
AD
32412002-06-20 Akim Demaille <akim@epita.fr>
3242
3243 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
3244 internals.
3245 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
3246 Takes a location.
3247 * src/symtab.h, src/symtab.c (symbol_class_set)
3248 (symbol_user_token_number_set): Likewise.
3249 Adjust all callers.
3250 Promote complain_at.
3251 * tests/input.at (Type Clashes): Adjust.
3252
5c1180b3
AD
32532002-06-20 Akim Demaille <akim@epita.fr>
3254
3255 * data/bison.simple (YYLEX): Fix the declaration when
3256 %pure-parser.
3257
e3170060
AD
32582002-06-20 Akim Demaille <akim@epita.fr>
3259
3260 * data/bison.simple (yysymprint): Don't print the token number,
3261 just its name.
3262 * tests/actions.at (Destructors): Rename as...
3263 (Printers and Destructors): this.
3264 Also exercise %printer.
3265
253862fd
AD
32662002-06-20 Akim Demaille <akim@epita.fr>
3267
3268 * data/bison.simple (YYDSYMPRINT): New.
3269 Use it to remove many of the #if YYDEBUG/if (yydebug).
3270
366eea36
AD
32712002-06-20 Akim Demaille <akim@epita.fr>
3272
3273 * src/symtab.h, src/symtab.c (symbol_t): printer and
3274 printer_location are new members.
3275 (symbol_printer_set): New.
3276 * src/parse-gram.y (PERCENT_PRINTER): New token.
3277 Handle its associated rule.
3278 * src/scan-gram.l: Adjust.
3279 (handle_destructor_at, handle_destructor_dollar): Rename as...
3280 (handle_symbol_code_at, handle_symbol_code_dollar): these.
3281 * src/output.c (symbol_printers_output): New.
3282 (output_skeleton): Call it.
3283 * data/bison.simple (yysymprint): New. Cannot be named yyprint
3284 since there are already many grammar files with a user `yyprint'.
3285 Replace the calls to YYPRINT to calls to yysymprint.
3286 * tests/calc.at: Adjust.
3287 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
3288 taking advantage of parser very internal details (stack size!).
3289
4f25ebb0
AD
32902002-06-20 Akim Demaille <akim@epita.fr>
3291
3292 * src/scan-gram.l: Complete the scanner with the missing patterns
3293 to pacify Flex.
3294 Use `quote' and `symbol_tag_get' where appropriate.
3295
93b68a0e
AD
32962002-06-19 Akim Demaille <akim@epita.fr>
3297
3298 * tests/actions.at (Destructors): Augment to test locations.
3299 * data/bison.simple (yydestructor): Pass it the current location
3300 if locations are enabled.
3301 Prototype only when __STDC__ or C++.
3302 Change the argument names to move into the yy name space: there is
3303 user code here.
3304
58612f1d
AD
33052002-06-19 Akim Demaille <akim@epita.fr>
3306
74310291
AD
3307 * data/bison.simple (b4_pure_if): New.
3308 Use it instead of #ifdef YYPURE.
3309
33102002-06-19 Akim Demaille <akim@epita.fr>
3311
3312 * data/bison.simple (b4_location_if): New.
58612f1d
AD
3313 Use it instead of #ifdef YYLSP_NEEDED.
3314
f25bfb75
AD
33152002-06-19 Akim Demaille <akim@epita.fr>
3316
3317 Prepare @$ in %destructor, but currently don't bind it in the
3318 skeleton, as %location use is not cleaned up yet.
3319
3320 * src/scan-gram.l (handle_dollar, handle_destructor_at)
3321 (handle_action_at): New.
3322 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
3323 a braced_code_t and a location as additional arguments.
3324 (handle_destructor_dollar): Instead of requiring `b4_eval', just
3325 unquote one when outputting `b4_dollar_dollar'.
3326 Adjust callers.
3327 * data/bison.simple (b4_eval): Remove.
3328 (b4_symbol_destructor): Adjust.
3329 * tests/input.at (Invalid @n): Adjust.
3330
c732d2c6
AD
33312002-06-19 Zack Weinberg <zack@codesourcery.com>
3332
3333 * doc/bison.texinfo: Document ability to have multiple
3334 prologue sections.
3335
8c165d89
AD
33362002-06-18 Akim Demaille <akim@epita.fr>
3337
3338 * src/files.c (compute_base_names): When computing the output file
3339 names from the input file name, strip the directory part.
3340
ca98bf57
AD
33412002-06-18 Akim Demaille <akim@epita.fr>
3342
3343 * data/bison.simple.new: Comment changes.
3344 Reported by Andreas Schwab.
3345
0bfb02ff
AD
33462002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
3347
3348 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
3349 there are no `label `yyoverflowlab' defined but not used' warnings
3350 when yyoverflow is defined.
3351
24c0aad7
AD
33522002-06-18 Akim Demaille <akim@epita.fr>
3353
3354 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
3355 new member.
3356 (symbol_destructor_set): Adjust.
3357 * src/output.c (symbol_destructors_output): Output the destructor
3358 locations.
3359 Output the symbol name.
3360 * data/bison.simple (b4_symbol_destructor): Adjust.
3361
5719c109
AD
33622002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
3363 and Akim Demaille <akim@epita.fr>
3364
3365 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
3366 what's left on the stack when the error recovery hits EOF.
3367 * tests/actions.at (Destructors): Complete to exercise this case.
3368
9280d3ef
AD
33692002-06-17 Akim Demaille <akim@epita.fr>
3370
3371 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
3372 arguments is really empty, not only equal to `[]'.
3373 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
3374 member.
3375 (symbol_destructor_set): New.
3376 * src/output.c (symbol_destructors_output): New.
3377 * src/reader.h (brace_code_t, current_braced_code): New.
3378 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
3379 (handle_dollar): Rename as...
3380 (handle_action_dollar): this.
3381 (handle_destructor_dollar): New.
3382 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
3383 (grammar_declaration): Use it.
3384 * data/bison.simple (yystos): Is always defined.
3385 (yydestructor): New.
3386 * tests/actions.at (Destructors): New.
3387 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
3388
dafdc66f
AD
33892002-06-17 Akim Demaille <akim@epita.fr>
3390
3391 * src/symlist.h, src/symlist.c (symbol_list_length): New.
3392 * src/scan-gram.l (handle_dollar, handle_at): Compute the
3393 rule_length only when needed.
3394 * src/output.c (actions_output, token_definitions_output): Output
3395 the full M4 block.
3396 * src/symtab.c: Don't access directly to the symbol tag, use
3397 symbol_tag_get.
3398 * src/parse-gram.y: Use symbol_list_free.
3399
56c47203
AD
34002002-06-17 Akim Demaille <akim@epita.fr>
3401
3402 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
3403 (symbol_list_prepend, get_type_name): Move to...
3404 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
3405 (symbol_list_prepend, symbol_list_n_type_name_get): here.
3406 Adjust all callers.
3407 (symbol_list_free): New.
3408 * src/scan-gram.l (handle_dollar): Takes a location.
3409 * tests/input.at (Invalid $n): Adjust.
3410
1e0bab92
AD
34112002-06-17 Akim Demaille <akim@epita.fr>
3412
3413 * src/reader.h, src/reader.c (symbol_list_new): Export it.
3414 (symbol_list_prepend): New.
3415 * src/parse-gram.y (%union): `list' is a new member.
3416 (symbols.1): New, replaces...
3417 (terms_to_prec.1, nterms_to_type.1): these.
3418 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
3419 Take a location as additional argument.
3420 Adjust all callers.
3421
04e60654
AD
34222002-06-15 Akim Demaille <akim@epita.fr>
3423
3424 * src/parse-gram.y: Move %token in the declaration section so that
3425 we don't depend upon CVS Bison.
3426
10e5b8bd
AD
34272002-06-15 Akim Demaille <akim@epita.fr>
3428
3429 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
3430 * src/print.c (print_core): Use it.
3431
9801d40c
AD
34322002-06-15 Akim Demaille <akim@epita.fr>
3433
3434 * src/conflicts.c (log_resolution): Accept the rule involved in
3435 the sr conflicts instead of the lookahead number that points to
3436 that rule.
3437 (flush_reduce): Accept the current lookahead vector as argument,
3438 instead of the index in LA.
3439 (resolve_sr_conflict): Accept the current number of lookahead
3440 bitset to consider for the STATE, instead of the index in LA.
3441 (set_conflicts): Adjust.
3442 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
3443
c0263492
AD
34442002-06-15 Akim Demaille <akim@epita.fr>
3445
3446 * src/state.h (state_t): Replace the `lookaheadsp' member, a
3447 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
3448 Adjust all dependencies.
3449 * src/lalr.c (initialize_lookaheads): Split into...
3450 (states_lookaheads_count, states_lookaheads_initialize): these.
3451 (lalr): Adjust.
3452
9757c359
AD
34532002-06-15 Akim Demaille <akim@epita.fr>
3454
3455 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
3456 out of...
3457 (grammar_rules_print): here.
3458 * src/reduce.c (reduce_output): Use it.
3459 * tests/reduce.at (Useless Rules, Reduced Automaton)
3460 (Underivable Rules): Adjust.
3461
6b98e4b5
AD
34622002-06-15 Akim Demaille <akim@epita.fr>
3463
3464 Copy BYacc's nice way to report the grammar.
3465
3466 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
3467 New.
3468 Don't print the rules' location, it is confusing and useless.
3469 (rule_print): Use grammar_rhs_print.
3470 * src/print.c (print_grammar): Use grammar_rules_print.
3471
6b98e4b5
AD
34722002-06-15 Akim Demaille <akim@epita.fr>
3473
3474 Complete and rationalize `useless thing' warnings.
3475
3476 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
3477 (symbol_tag_print): New.
3478 Use them everywhere in place of accessing directly the tag member.
3479 * src/gram.h, src/gram.c (rule_print): New.
3480 Use it where a rule used to be printed `by hand'.
3481 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
3482 (reduce_grammar_tables): Report the useless rules.
3483 (reduce_print): Useless things are a warning, not an error.
3484 Report it as such.
3485 * tests/reduce.at (Useless Nonterminals, Useless Rules):
3486 (Reduced Automaton, Underivable Rules): Adjust.
3487 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
3488 * tests/conflicts.at (Unresolved SR Conflicts)
3489 (Solved SR Conflicts): Adjust.
3490
ee000ba4
AD
34912002-06-15 Akim Demaille <akim@epita.fr>
3492
3493 Let symbols have a location.
3494
3495 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
3496 (getsym): Adjust.
3497 Adjust all callers.
3498 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
3499 Use location_t, not int.
3500 * src/symtab.c (symbol_check_defined): Take advantage of the
3501 location.
3502 * tests/regression.at (Invalid inputs): Adjust.
3503
8efe435c
AD
35042002-06-15 Akim Demaille <akim@epita.fr>
3505
3506 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
3507 (input): Don't try to initialize yylloc here, do it in the
3508 scanner.
3509 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
3510 * src/gram.h (rule_t): Change line and action_line into location
3511 and action_location, of location_t type.
3512 Adjust all dependencies.
3513 * src/location.h, src/location.c (empty_location): New.
3514 * src/reader.h, src/reader.c (grammar_start_symbol_set)
3515 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
3516 (grammar_current_rule_symbol_append)
3517 (grammar_current_rule_action_append): Expect a location as argument.
3518 * src/reader.c (grammar_midrule_action): Adjust to attach an
3519 action's location as dummy symbol location.
3520 * src/symtab.h, src/symtab.c (startsymbol_location): New.
3521 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
3522 the line numbers.
3523
1921f1d7
AD
35242002-06-14 Akim Demaille <akim@epita.fr>
3525
3526 Grammar declarations may be found in the grammar section.
3527
3528 * src/parse-gram.y (rules_or_grammar_declaration): New.
3529 (declarations): Each declaration may end with a semicolon, not
3530 just...
3531 (grammar_declaration): `"%union"'.
3532 (grammar): Branch to rules_or_grammar_declaration.
3533
4515534c
AD
35342002-06-14 Akim Demaille <akim@epita.fr>
3535
3536 * src/main.c (main): Invoke scanner_free.
3537
f958596b
AD
35382002-06-14 Akim Demaille <akim@epita.fr>
3539
3540 * src/output.c (m4_invoke): Extracted from...
3541 (output_skeleton): here.
3542 Free tempfile.
3543
2c569025
AD
35442002-06-14 Akim Demaille <akim@epita.fr>
3545
3546 * src/parse-gram.y (directives, directive, gram)
3547 (grammar_directives, precedence_directives, precedence_directive):
3548 Rename as...
3549 (declarations, declaration, grammar, grammar_declaration)
3550 (precedence_declaration, precedence_declarator): these.
3551 (symbol_declaration): New.
3552
592e8d4d
AD
35532002-06-14 Akim Demaille <akim@epita.fr>
3554
3555 * src/files.c (action_obstack): Remove, unused.
3556 (output_obstack): Remove it, and all its dependencies, as it is no
3557 longer needed.
3558 * src/reader.c (epilogue_set): Build the epilogue in the
3559 muscle_obstack.
3560 * src/output.h, src/output.c (muscle_obstack): Move to...
3561 * src/muscle_tab.h, src/muscle_tab.h: here.
3562 (muscle_init): Initialize muscle_obstack.
3563 (muscle_free): New.
3564 * src/main.c (main): Call it.
3565
0c15323d
AD
35662002-06-14 Akim Demaille <akim@epita.fr>
3567
3568 * src/location.h: New, extracted from...
3569 * src/reader.h: here.
3570 * src/Makefile.am (noinst_HEADERS): Merge into
3571 (bison_SOURCES): this.
3572 Add location.h.
3573 * src/parse-gram.y: Use location_t instead of Bison's.
3574 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
3575 Use location_t instead of ints.
3576
e96c9728
AD
35772002-06-14 Akim Demaille <akim@epita.fr>
3578
3579 * data/bison.simple, data/bison.c++: Be sure to restore the
3580 current #line when returning to the skeleton contents after having
3581 exposed the input file's #line.
3582
75d1fe16
AD
35832002-06-12 Akim Demaille <akim@epita.fr>
3584
3585 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
3586 eager.
3587 * tests/actions.at (Exotic Dollars): New.
3588
6c35d22c
AD
35892002-06-12 Akim Demaille <akim@epita.fr>
3590
3591 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
3592 ['"/] too eagerly.
3593 * tests/input.at (Torturing the Scanner): New.
3594
1d6412ad
AD
35952002-06-11 Akim Demaille <akim@epita.fr>
3596
3597 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
3598 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
3599 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
3600 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
3601 * src/reader.c (reader): Use it.
3602
4cdb01db
AD
36032002-06-11 Akim Demaille <akim@epita.fr>
3604
3605 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
3606 Adjust all callers.
3607 (scanner_last_string_free): New.
3608
44995b2e
AD
36092002-06-11 Akim Demaille <akim@epita.fr>
3610
3611 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
3612 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
3613 (last_string, YY_OBS_FREE): New.
3614 Use them when returning an ID.
3615
e9955c83
AD
36162002-06-11 Akim Demaille <akim@epita.fr>
3617
3618 Have Bison grammars parsed by a Bison grammar.
3619
3620 * src/reader.c, src/reader.h (prologue_augment): New.
3621 * src/reader.c (copy_definition): Remove.
3622
3623 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
3624 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
3625 (grammar_current_rule_prec_set, grammar_current_rule_check)
3626 (grammar_current_rule_symbol_append)
3627 (grammar_current_rule_action_append): Export.
3628 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
3629 (symbol_list_action_append): Remove.
3630 Hook the routines from reader.
3631 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
3632 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
3633
3634 * src/reader.c (read_declarations): Remove, unused.
3635
3636 * src/parse-gram.y: Handle the epilogue.
3637 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
3638 (grammar_start_symbol_set): this.
3639 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
3640 * src/reader.c (readgram): Remove, unused.
3641 (reader): Adjust to insert eoftoken and axiom where appropriate.
3642
3643 * src/reader.c (copy_dollar): Replace with...
3644 * src/scan-gram.h (handle_dollar): this.
3645 * src/parse-gram.y: Remove `%thong'.
3646
3647 * src/reader.c (copy_at): Replace with...
3648 * src/scan-gram.h (handle_at): this.
3649
3650 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
3651 New.
3652
3653 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
3654 time being.
3655
3656 * src/reader.h, src/reader.c (grammar_rule_end): New.
3657
3658 * src/parse.y (current_type, current_class): New.
3659 Implement `%nterm', `%token' support.
3660 Merge `%term' into `%token'.
3661 (string_as_id): New.
3662 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
3663 type name.
3664
3665 * src/parse-gram.y: Be sure to handle properly the beginning of
3666 rules.
3667
3668 * src/parse-gram.y: Handle %type.
3669 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
3670
3671 * src/parse-gram.y: More directives support.
3672 * src/options.c: No longer handle source directives.
3673
3674 * src/parse-gram.y: Fix %output.
3675
3676 * src/parse-gram.y: Handle %union.
3677 Use the prologue locations.
3678 * src/reader.c (parse_union_decl): Remove.
3679
3680 * src/reader.h, src/reader.c (epilogue_set): New.
3681 * src/parse-gram.y: Use it.
3682
3683 * data/bison.simple, data/bison.c++: b4_stype is now either not
3684 defined, then default to int, or to the contents of %union,
3685 without `union' itself.
3686 Adjust.
3687 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
3688
3689 * src/output.c (actions_output): Don't output braces, as they are
3690 already handled by the scanner.
3691
3692 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
3693 characters to themselves.
3694
3695 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
3696 that the epilogue has a proper #line.
3697
3698 * src/parse-gram.y: Handle precedence/associativity.
3699
3700 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
3701 a terminal.
3702 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
3703 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
3704 at all to define terminals that cannot be emitted.
3705
3706 * src/scan-gram.l: Escape M4 characters.
3707
3708 * src/scan-gram.l: Working properly with escapes in user
3709 strings/characters.
3710
3711 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
3712 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
3713 grammar.
3714 Use more modest sizes, as for the time being the parser does not
3715 release memory, and therefore the process swallows a huge amount
3716 of memory.
3717
3718 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
3719 stricter %token grammar.
3720
3721 * src/symtab.h (associativity): Add `undef_assoc'.
3722 (symbol_precedence_set): Do nothing when passed an undef_assoc.
3723 * src/symtab.c (symbol_check_alias_consistence): Adjust.
3724
3725 * tests/regression.at (Invalid %directive): Remove, as it is now
3726 meaningless.
3727 (Invalid inputs): Adjust to the new error messages.
3728 (Token definitions): The new grammar doesn't allow too many
3729 eccentricities.
3730
3731 * src/lex.h, src/lex.c: Remove.
3732 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
3733 (copy_character, copy_string2, copy_string, copy_identifier)
3734 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
3735 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
3736 (parse_action): Remove.
3737 * po/POTFILES.in: Adjust.
3738
2e047461
AD
37392002-06-11 Akim Demaille <akim@epita.fr>
3740
3741 * src/reader.c (parse_action): Don't store directly into the
3742 rule's action member: return the action as a string.
3743 Don't require `rule_length' as an argument: compute it.
3744 (grammar_current_rule_symbol_append)
3745 (grammar_current_rule_action_append): New, eved out from
3746 (readgram): here.
3747 Remove `action_flag', `rulelength', unused now.
3748
9af3fbce
AD
37492002-06-11 Akim Demaille <akim@epita.fr>
3750
3751 * src/reader.c (grammar_current_rule_prec_set).
3752 (grammar_current_rule_check): New, eved out from...
3753 (readgram): here.
3754 Remove `xaction', `first_rhs': useless.
3755 * tests/input.at (Type clashes): New.
3756 * tests/existing.at (GNU Cim Grammar): Adjust.
3757
1485e106
AD
37582002-06-11 Akim Demaille <akim@epita.fr>
3759
3760 * src/reader.c (grammar_midrule_action): New, Eved out from
3761 (readgram): here.
3762
da4160c3
AD
37632002-06-11 Akim Demaille <akim@epita.fr>
3764
3765 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
3766 New.
3767 (readgram): Use them as replacement of inlined code, crule and
3768 crule1.
3769
f6d0f937
AD
37702002-06-11 Akim Demaille <akim@epita.fr>
3771
3772 * src/reader.c (grammar_end, grammar_symbol_append): New.
3773 (readgram): Use them.
3774 Make the use of `p' as local as possible.
3775
69078d4b
AD
37762002-06-10 Akim Demaille <akim@epita.fr>
3777
3778 GCJ's parser requires the tokens to be defined before the prologue.
3779
3780 * data/bison.simple: Output the token definition before the user's
3781 prologue.
3782 * tests/regression.at (Braces parsing, Duplicate string)
3783 (Mixing %token styles): Check the output from bison.
3784 (Early token definitions): New.
3785
5e424082
AD
37862002-06-10 Akim Demaille <akim@epita.fr>
3787
3788 * src/symtab.c (symbol_user_token_number_set): Don't complain when
3789 assigning twice the same user number to a token, so that we can
3790 use it in...
3791 * src/lex.c (lex): here.
3792 Also use `symbol_class_set' instead of hand written code.
3793 * src/reader.c (parse_assoc_decl): Likewise.
3794
44536b35
AD
37952002-06-10 Akim Demaille <akim@epita.fr>
3796
3797 * src/symtab.c, src/symtab.c (symbol_class_set)
3798 (symbol_user_token_number_set): New.
3799 * src/reader.c (parse_token_decl): Use them.
3800 Use a switch instead of ifs.
3801 Use a single argument.
3802
8b9f2372
AD
38032002-06-10 Akim Demaille <akim@epita.fr>
3804
3805 Remove `%thong' support as it is undocumented, unused, duplicates
3806 `%token's job, and creates useless e-mail traffic with people who
3807 want to know what it is, why it is undocumented, unused, and
3808 duplicates `%token's job.
3809
3810 * src/reader.c (parse_thong_decl): Remove.
3811 * src/options.c (option_table): Remove "thong".
3812 * src/lex.h (tok_thong): Remove.
3813
3ae2b51f
AD
38142002-06-10 Akim Demaille <akim@epita.fr>
3815
3816 * src/symtab.c, src/symtab.c (symbol_type_set)
3817 (symbol_precedence_set): New.
3818 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
3819 (value_components_used): Remove, unused.
3820
2f1afb73
AD
38212002-06-09 Akim Demaille <akim@epita.fr>
3822
3823 Move symbols handling code out of the reader.
3824
3825 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
3826 (axiom): Move to...
3827 * src/symtab.h, src/symtab.c: here.
3828
3829 * src/gram.c (start_symbol): Remove: use startsymbol->number.
3830 * src/reader.c (startval): Rename as...
3831 * src/symtab.h, src/symtab.c (startsymbol): this.
3832 * src/reader.c: Adjust.
3833
3834 * src/reader.c (symbol_check_defined, symbol_make_alias)
3835 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
3836 (token_translations_init)
3837 Move to...
3838 * src/symtab.c: here.
3839 * src/reader.c (packsymbols): Move to...
3840 * src/symtab.h, src/symtab.c (symbols_pack): here.
3841 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
3842 argument.
3843
e9bca3ad
AD
38442002-06-03 Akim Demaille <akim@epita.fr>
3845
3846 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
3847 then statements.
3848
86eff183
AD
38492002-06-03 Akim Demaille <akim@epita.fr>
3850
3851 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
3852 structs with non literals.
3853 * src/scan-skel.l: never-interactive.
3854 * src/conflicts.c (enum conflict_resolution_e): No trailing
3855 comma.
3856 * src/getargs.c (usage): Split long literal strings.
3857 Reported by Hans Aberg.
3858
717be197
AD
38592002-05-28 Akim Demaille <akim@epita.fr>
3860
3861 * data/bison.c++: Use C++ ostreams.
3862 (cdebug_): New member.
3863
670ddffd
AD
38642002-05-28 Akim Demaille <akim@epita.fr>
3865
3866 * src/output.c (output_skeleton): Be sure to allocate enough room
3867 for `/' _and_ for `\0' in full_skeleton.
3868
769b430f
AD
38692002-05-28 Akim Demaille <akim@epita.fr>
3870
3871 * data/bison.c++: Catch up with bison.simple:
3872 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3873 and Paul Eggert <eggert@twinsun.com>: `error' handing.
3874 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
3875 and popping traces.
3876
7067cb36
PH
38772002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3878
3879 * src/output.c (output_skeleton): Put an explicit path in front of
3880 the skeleton file name, rather than relying on the -I directory,
3881 to partially alleviate effects of having a skeleton file lying around
3882 in the current directory.
769b430f 3883
4a713ec2
PH
38842002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3885
769b430f 3886 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
3887 obstack_printf should be obstack_fgrow1.
3888
b408954b
AD
38892002-05-26 Akim Demaille <akim@epita.fr>
3890
3891 * src/state.h (state_t): `solved_conflicts' is a new member.
3892 * src/LR0.c (new_state): Set it to 0.
3893 * src/conflicts.h, src/conflicts.c (print_conflicts)
3894 (free_conflicts, solve_conflicts): Rename as...
3895 (conflicts_print, conflicts_free, conflicts_solve): these.
3896 Adjust callers.
3897 * src/conflicts.c (enum conflict_resolution_e)
3898 (solved_conflicts_obstack): New, used by...
3899 (log_resolution): this.
3900 Adjust to attach the conflict resolution to each state.
3901 Complete the description with the precedence/associativity
3902 information.
3903 (resolve_sr_conflict): Adjust.
3904 * src/print.c (print_state): Output its solved_conflicts.
3905 * tests/conflicts.at (Unresolved SR Conflicts)
3906 (Solved SR Conflicts): Exercise --report=all.
3907
a49aecd5
AD
39082002-05-26 Akim Demaille <akim@epita.fr>
3909
3910 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
3911 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
3912 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
3913 (token_number_t, item_number_as_token_number)
3914 (token_number_as_item_number, muscle_insert_token_number_table):
3915 Rename as...
3916 (symbol_number_t, item_number_as_symbol_number)
3917 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
3918 these, since it is more appropriate.
3919
5504898e
AD
39202002-05-26 Akim Demaille <akim@epita.fr>
3921
3922 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
3923 `Error:' lines.
3924 * data/bison.simple (yystos) [YYDEBUG]: New.
3925 (yyparse) [YYDEBUG]: Display the symbols which are popped during
3926 error recovery.
3927 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
3928
ec3bc396
AD
39292002-05-25 Akim Demaille <akim@epita.fr>
3930
3931 * doc/bison.texinfo (Debugging): Split into...
3932 (Tracing): this new section, its former contents, and...
3933 (Understanding): this new section.
3934 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
3935 by...
3936 (report_flag): this.
3937 Adjust all dependencies.
3938 (report_args, report_types, report_argmatch): New.
3939 (usage, getargs): Report/support -r, --report.
3940 * src/options.h
3941 (struct option_table_struct): Rename as..,
3942 (struct option_table_s): this.
3943 Rename the `set_flag' member to `flag' to match with getopt_long's
3944 struct.
3945 * src/options.c (option_table): Split verbose into an entry for
3946 %verbose, and another for --verbose.
3947 Support --report/-r, so remove -r from the obsolete --raw.
3948 * src/print.c: Attach full item sets and lookaheads reports to
3949 report_flag instead of trace_flag.
3950 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
3951
78df8250
PE
39522002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3953 and Paul Eggert <eggert@twinsun.com>
769b430f 3954
78df8250
PE
3955 * data/bison.simple (yyparse): Correct error handling to conform to
3956 POSIX and yacc. Specifically, after syntax error is discovered,
3957 do not reduce further before shifting the error token.
3958 Clean up the code a bit by removing the labels yyerrdefault,
3959 yyerrhandle, yyerrpop.
3960 * NEWS: Document the above.
3961
c0c9ea05
PH
39622002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3963
3964 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
3965 type; it isn't always big enough, since it doesn't necessarily
3966 include non-terminals.
769b430f 3967 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
3968 the latter can be removed.
3969 (yy_token_number_type): Remove, only one use.
3970 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
3971 don't use TokenNumberType as element type.
769b430f 3972
c0c9ea05
PH
3973 * tests/regression.at: Modify expected output to agree with change
3974 to yyr1 and yytranslate.
769b430f 3975
6390a83f
FK
39762002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
3977
3978 * src/reader.c (parse_action): Use copy_character instead of
3979 obstack_1grow.
3980
db7c8e9a
AD
39812002-05-13 Akim Demaille <akim@epita.fr>
3982
3983 * tests/regression.at (Token definitions): Prototype yylex and
3984 yyerror.
3985
fcc61800
PH
39862002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3987
158c687b 3988 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
3989 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
3990 32-bit arithmetic.
3991 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
3992
5683e9b2
AD
39932002-05-07 Akim Demaille <akim@epita.fr>
3994
3995 * tests/synclines.at: Be sure to prototype yylex and yyerror to
3996 avoid GCC warnings.
3997
0c2d3f4c
AD
39982002-05-07 Akim Demaille <akim@epita.fr>
3999
4000 Kill GCC warnings.
4001
4002 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
4003 over the RHS of each rule.
4004 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
4005 * src/state.h (state_t): Member `nitems' is unsigned short.
4006 * src/LR0.c (get_state): Adjust.
4007 * src/reader.c (packgram): Likewise.
4008 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
4009 `Type'.
4010 (muscle_insert_int_table): Remove, unused.
4011 (prepare_rules): Remove `max'.
4012
1565b720
AD
40132002-05-06 Akim Demaille <akim@epita.fr>
4014
4015 * src/closure.c (print_firsts): Display of the symbol tags.
4016 (bitmatrix_print): Move to...
4017 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
4018 here.
4019 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
4020
cfaee611
AD
40212002-05-06 Akim Demaille <akim@epita.fr>
4022
4023 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
4024 hash_do_for_each.
4025
458be8e0
AD
40262002-05-06 Akim Demaille <akim@epita.fr>
4027
4028 * src/LR0.c (new_state, get_state): Instead of using the global
4029 `kernel_size' and `kernel_base', have two new arguments:
4030 `core_size' and `core'.
4031 Adjust callers.
4032
a900a624
AD
40332002-05-06 Akim Demaille <akim@epita.fr>
4034
4035 * src/reader.c (packgram): No longer end `ritem' with a 0
4036 sentinel: it is not used.
4037
d4e7d3a1
AD
40382002-05-05 Akim Demaille <akim@epita.fr>
4039
4040 New experimental feature: display the lookaheads in the report and
4041 graph.
4042
4043 * src/print (print_core): When --trace-flag, display the rules
4044 lookaheads.
4045 * src/print_graph.c (print_core): Likewise.
4046 Swap the arguments.
4047 Adjust caller.
4048
39ceb25b
AD
40492002-05-05 Akim Demaille <akim@epita.fr>
4050
4051 * tests/torture.at (Many lookaheads): New test.
4052
5372019f
AD
40532002-05-05 Akim Demaille <akim@epita.fr>
4054
4055 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
4056 (GENERATE_MUSCLE_INSERT_TABLE): this.
4057 (output_int_table, output_unsigned_int_table, output_short_table)
4058 (output_token_number_table, output_item_number_table): Replace with...
4059 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
4060 (muscle_insert_short_table, muscle_insert_token_number_table)
4061 (muscle_insert_item_number_table): these.
4062 Adjust all callers.
4063 (prepare_tokens): Don't free `translations', since...
4064 * src/reader.h, src/reader.c (grammar_free): do it.
4065 Move to...
4066 * src/gram.h, src/gram.c (grammar_free): here.
4067 * data/bison.simple, data/bison.c++: b4_token_number_max is now
4068 b4_translate_max.
4069
5df5f6d5
AD
40702002-05-05 Akim Demaille <akim@epita.fr>
4071
4072 * src/output.c (output_unsigned_int_table): New.
4073 (prepare_rules): `i' is unsigned.
4074 `prhs', `rline', `r2' are unsigned int.
4075 Rename muscle `rhs_number_max' as `rhs_max'.
4076 Output muscles `prhs_max', `rline_max', and `r2_max'.
4077 Free rline and r1.
4078 * data/bison.simple, data/bison.c++: Adjust to use these muscles
4079 to compute types instead of constant types.
4080 * tests/regression.at (Web2c Actions): Adjust.
4081
b87f8b21
AD
40822002-05-04 Akim Demaille <akim@epita.fr>
4083
4084 * src/symtab.h (SALIAS, SUNDEF): Rename as...
4085 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
4086 Adjust dependencies.
4087 * src/output.c (token_definitions_output): Be sure not to output a
4088 `#define 'a'' when fed with `%token 'a' "a"'.
4089 * tests/regression.at (Token definitions): New.
4090
8bb936e4
PE
40912002-05-03 Paul Eggert <eggert@twinsun.com>
4092
4093 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
4094 for K&R C.
4095
40962002-05-03 gettextize <bug-gnu-gettext@gnu.org>
4097
4098 * Makefile.am (SUBDIRS): Remove intl.
4099 (EXTRA_DIST): Add config/config.rpath.
4100
53c71a12
AD
41012002-05-03 Akim Demaille <akim@epita.fr>
4102
4103 * data/bison.simple (m4_if): Don't output empty enums.
4104 And actually, output valid enum definitions :(.
4105
289dd0cf
AD
41062002-05-03 Akim Demaille <akim@epita.fr>
4107
4108 * configure.bat: Remove, completely obsolete.
4109 * Makefile.am (EXTRA_DIST): Adjust.
4110 Don't distribute config.rpath...
4111 * config/Makefile.am (EXTRA_DIST): Do it.
4112
db85e524
AD
41132002-05-03 Akim Demaille <akim@epita.fr>
4114
4115 * configure.in (GETTEXT_VERSION): New.
4116 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
4117
83ccf991
AD
41182002-05-03 Akim Demaille <akim@epita.fr>
4119
4120 * data/bison.simple (b4_token_enum): New.
4121 (b4_token_defines): Use it to output tokens both as #define and
4122 enums.
4123 Suggested by Paul Eggert.
4124 * src/output.c (token_definitions_output): Don't output spurious
4125 white spaces.
4126
1f418995
AD
41272002-05-03 Akim Demaille <akim@epita.fr>
4128
4129 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
4130
45119f04
RA
41312002-05-02 Robert Anisko <robert@lrde.epita.fr>
4132
4133 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
4134 Update the stack class, give a try to deque as the default container.
4135
b2d52318
AD
41362002-05-02 Akim Demaille <akim@epita.fr>
4137
4138 * data/bison.simple (yyparse): Do not implement @$ = @1.
4139 (YYLLOC_DEFAULT): Adjust to do it.
4140 * doc/bison.texinfo (Location Default Action): Fix.
4141
3a8b4109
AD
41422002-05-02 Akim Demaille <akim@epita.fr>
4143
4144 * src/reader.c (parse_braces): Merge into...
4145 (parse_action): this.
4146
84614e13
AD
41472002-05-02 Akim Demaille <akim@epita.fr>
4148
4149 * configure.in (ALL_LINGUAS): Remove.
4150 * po/LINGUAS, hr.po: New.
4151
fdbcd8e2
AD
41522002-05-02 Akim Demaille <akim@epita.fr>
4153
4154 Remove the so called hairy (semantic) parsers.
4155
4156 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
4157 * src/gram.h, src/gram.c (semantic_parser): Remove.
4158 (rule_t): Remove the guard and guard_line members.
4159 * src/lex.h (token_t): remove tok_guard.
4160 * src/options.c (option_table): Remove %guard and %semantic_parser
4161 support.
4162 * src/output.c, src/output.h (guards_output): Remove.
4163 (prepare): Adjust.
4164 (token_definitions_output): Don't output the `T'
4165 tokens (???).
4166 (output_skeleton): Don't output the guards.
4167 * src/files.c, src/files.c (attrsfile): Remove.
4168 * src/reader.c (symbol_list): Remove the guard and guard_line
4169 members.
4170 Adjust dependencies.
4171 (parse_guard): Remove.
4172 * data/bison.hairy: Remove.
4173 * doc/bison.texinfo (Environment Variables): Remove occurrences of
4174 BISON_HAIRY.
4175
82b6cb3f
AD
41762002-05-02 Akim Demaille <akim@epita.fr>
4177
4178 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
4179 (parse_guard): Rename the formal argument `stack_offset' as
4180 `rule_length', which is more readable.
4181 Adjust callers.
4182 (copy_at, copy_dollar): Instead of outputting the hard coded
4183 values of $$, $n and so forth, output invocation to b4_lhs_value,
4184 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
4185 Note: this patch partially drops `semantic-parser' support: it
4186 always does `rule_length - n', where semantic parsers ought to
4187 always use `-n'.
82b6cb3f
AD
4188 * data/bison.simple, data/bison.c++ (b4_lhs_value)
4189 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
4190
6cbfbcc5
AD
41912002-05-02 Akim Demaille <akim@epita.fr>
4192
4193 * configure.in (AC_INIT): Bump to 1.49b.
4194 (AM_INIT_AUTOMAKE): Short invocation.
4195
b8548114
AD
41962002-05-02 Akim Demaille <akim@epita.fr>
4197
4198 Version 1.49a.
4199
c20cd1fa
AD
42002002-05-01 Akim Demaille <akim@epita.fr>
4201
4202 * src/skeleton.h: Remove.
4203
8a9566d4
AD
42042002-05-01 Akim Demaille <akim@epita.fr>
4205
4206 * src/skeleton.h: Fix the #endif.
4207 Reported by Magnus Fromreide.
4208
8c6d399a
PE
42092002-04-26 Paul Eggert <eggert@twinsun.com>
4210
4211 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
4212 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 4213 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 4214
2b7ed18a
RA
42152002-04-25 Robert Anisko <robert@lrde.epita.fr>
4216
4217 * src/scan-skel.l: Postprocess quadrigraphs.
4218
4219 * src/reader.c (copy_character): New function, used to output
4220 single characters while replacing `[' and `]' with quadrigraphs, to
4221 avoid troubles with M4 quotes.
4222 (copy_comment): Output characters with copy_character.
4223 (read_additionnal_code): Likewise.
4224 (copy_string2): Likewise.
4225 (copy_definition): Likewise.
4226
4227 * tests/calc.at: Exercise M4 quoting.
4228
34a89c50
AD
42292002-04-25 Akim Demaille <akim@epita.fr>
4230
4231 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
4232 between `!' and the command.
4233 Reported by Paul Eggert.
4234
0dd1580a
RA
42352002-04-24 Robert Anisko <robert@lrde.epita.fr>
4236
4237 * tests/calc.at: Exercise prologue splitting.
4238
4239 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
4240 `b4_post_prologue' instead of `b4_prologue'.
4241
4242 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
4243 muscles.
4244 (output): Free pre_prologue_obstack and post_prologue_obstack.
4245 * src/files.h, src/files.c (attrs_obstack): Remove.
4246 (pre_prologue_obstack, post_prologue_obstack): New.
4247 * src/reader.c (copy_definition): Add a parameter to specify the
4248 obstack to fill, instead of using attrs_obstack unconditionally.
4249 (read_declarations): Pass pre_prologue_obstack to copy_definition if
4250 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
4251
83c1796f
PE
42522002-04-23 Paul Eggert <eggert@twinsun.com>
4253
4254 * data/bison.simple: Remove unnecessary commentary and white
4255 space differences from 1_29-branch.
4256 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
4257
4258 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
4259 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
4260 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
4261 constructors or destructors.
4262
4263 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
4264
1207eeac
AD
42652002-04-23 Akim Demaille <akim@epita.fr>
4266
4267 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
4268 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
4269 location with columns.
4270 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
4271 All reported by Paul Eggert.
4272
78ab8f67
AD
42732002-04-22 Akim Demaille <akim@epita.fr>
4274
4275 * src/reduce.c (dump_grammar): Move to...
4276 * src/gram.h, src/gram.c (grammar_dump): here.
4277 Be sure to separate long item numbers.
4278 Don't read the members of a rule's prec if its nil.
4279
133c20e2
AD
42802002-04-22 Akim Demaille <akim@epita.fr>
4281
4282 * src/output.c (table_size, table_grow): New.
4283 (MAXTABLE): Remove, replace uses with table_size.
4284 (pack_vector): Instead of dying when the table is too big, grow it.
4285
9515e8a7
AD
42862002-04-22 Akim Demaille <akim@epita.fr>
4287
4288 * data/bison.simple (yyr1): Its type is that of a token number.
4289 * data/bison.c++ (r1_): Likewise.
4290 * tests/regression.at (Web2c Actions): Adjust.
4291
23c5a174
AD
42922002-04-22 Akim Demaille <akim@epita.fr>
4293
4294 * src/reader.c (token_translations_init): 256 is now the default
4295 value for the error token, i.e., it will be assigned another
4296 number if the user assigned 256 to one of her tokens.
4297 (reader): Don't force 256 to error.
4298 * doc/bison.texinfo (Symbols): Adjust.
4299 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
4300 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
4301 etc. instead of 10, 20, 30 (which was used to `jump' over error
4302 (256) and undefined (2)).
4303
5fbb0954
AD
43042002-04-22 Akim Demaille <akim@epita.fr>
4305
4306 Propagate more token_number_t.
4307
4308 * src/gram.h (token_number_as_item_number)
4309 (item_number_as_token_number): New.
4310 * src/output.c (GENERATE_OUTPUT_TABLE): New.
4311 Use it to create output_item_number_table and
4312 output_token_number_table.
4313 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
4314 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
4315 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
4316 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
4317
4f940944
AD
43182002-04-22 Akim Demaille <akim@epita.fr>
4319
4320 * src/output.h, src/output.c (get_lines_number): Remove.
4321
3ded9a63
AD
43222002-04-19 Akim Demaille <akim@epita.fr>
4323
4324 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
4325 as Lex/Flex'.
4326 (Debugging): More details about enabling the debugging features.
4327 (Table of Symbols): Describe $$, $n, @$, and @n.
4328 Suggested by Tim Josling.
4329
e0c471a9
AD
43302002-04-19 Akim Demaille <akim@epita.fr>
4331
4332 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
4333
fecc10cd
AD
43342002-04-10 Akim Demaille <akim@epita.fr>
4335
4336 * src/system.h: Rely on HAVE_LIMITS_H.
4337 Suggested by Paul Eggert.
4338
51dec47b
AD
43392002-04-09 Akim Demaille <akim@epita.fr>
4340
4341 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
4342 full stderr, and strip it according to the bison options, instead
4343 of composing the error message from different bits.
4344 This makes it easier to check for several error messages.
4345 Adjust all the invocations.
4346 Add an invocation exercising the error token.
4347 Add an invocation demonstrating a stupid error message.
4348 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
4349 Adjust the tests.
4350 Error message are for stderr, not stdout.
4351
007a50a4
AD
43522002-04-09 Akim Demaille <akim@epita.fr>
4353
4354 * src/gram.h, src/gram.c (error_token_number): Remove, use
4355 errtoken->number.
4356 * src/reader.c (reader): Don't specify the user token number (2)
4357 for $undefined, as it uselessly prevents using it.
4358 * src/gram.h (token_number_t): Move to...
4359 * src/symtab.h: here.
4360 (state_t.number): Is a token_number_t.
4361 * src/print.c, src/reader.c: Use undeftoken->number instead of
4362 hard coded 2.
4363 (Even though this 2 is not the same as above: the number of the
4364 undeftoken remains being 2, it is its user token number which
4365 might not be 2).
4366 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
4367 `user_token_number_max'.
4368 Output `undef_token_number'.
4369 * data/bison.simple, data/bison.c++: Use them.
4370 Be sure to map invalid yylex return values to
4371 `undef_token_number'. This saves us from gratuitous SEGV.
4372
4373 * tests/conflicts.at (Solved SR Conflicts)
4374 (Unresolved SR Conflicts): Adjust.
4375 * tests/regression.at (Web2c Actions): Adjust.
4376
06446ccf
AD
43772002-04-08 Akim Demaille <akim@epita.fr>
4378
4379 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
4380 Adding #line.
4381 Remove the duplicate `typedefs'.
4382 (RhsNumberType): Fix the declaration and various other typos.
4383 Use __ofile__.
4384 * data/bison.simple: Use __ofile__.
4385 * src/scan-skel.l: Handle __ofile__.
4386
62a3e4f0
AD
43872002-04-08 Akim Demaille <akim@epita.fr>
4388
4389 * src/gram.h (item_number_t): New, the type of item numbers in
4390 RITEM. Note that it must be able to code symbol numbers as
4391 positive number, and the negation of rule numbers as negative
4392 numbers.
4393 Adjust all dependencies (pretty many).
4394 * src/reduce.c (rule): Remove this `short *' pointer: use
4395 item_number_t.
4396 * src/system.h (MINSHORT, MAXSHORT): Remove.
4397 Include `limits.h'.
4398 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
4399 (shortcpy): Remove.
4400 (MAXTABLE): Move to...
4401 * src/output.c (MAXTABLE): here.
4402 (prepare_rules): Use output_int_table to output rhs.
4403 * data/bison.simple, data/bison.c++: Adjust.
4404 * tests/torture.at (Big triangle): Move the limit from 254 to
4405 500.
4406 * tests/regression.at (Web2c Actions): Ajust.
4407
4408 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
4409 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
4410 passes, but produces negative #line number, once fixed, GCC is
4411 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
4412 C), it passes.
4413 * src/state.h (state_h): Code input lines on ints, not shorts.
4414
bb88b0fc
AD
44152002-04-08 Akim Demaille <akim@epita.fr>
4416
4417 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
4418 and then the grammar.
4419
9a636f47
AD
44202002-04-08 Akim Demaille <akim@epita.fr>
4421
4422 * src/system.h: No longer using strndup.
4423
680e8701
AD
44242002-04-07 Akim Demaille <akim@epita.fr>
4425
4426 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
4427 * src/output.c (output_table_data): Return the longest number.
4428 (prepare_tokens): Output `token_number_max').
4429 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
4430 New.
4431 Use them to define yy_token_number_type/TokenNumberType.
4432 Use this type for yytranslate.
4433 * tests/torture.at (Big triangle): Push the limit from 124 to
4434 253.
4435 * tests/regression.at (Web2c Actions): Adjust.
4436
817e9f41
AD
44372002-04-07 Akim Demaille <akim@epita.fr>
4438
4439 * tests/torture.at (Big triangle): New.
4440 (GNU AWK Grammar, GNU Cim Grammar): Move to...
4441 * tests/existing.at: here.
4442
5123689b
AD
44432002-04-07 Akim Demaille <akim@epita.fr>
4444
4445 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
4446 nritems.
4447 Adjust dependencies.
4448
f3849179
AD
44492002-04-07 Akim Demaille <akim@epita.fr>
4450
4451 * src/reader.c: Normalize increments to prefix form.
4452
bd02036a
AD
44532002-04-07 Akim Demaille <akim@epita.fr>
4454
4455 * src/reader.c, symtab.c: Remove debugging code.
4456
db8837cb
AD
44572002-04-07 Akim Demaille <akim@epita.fr>
4458
4459 Rename all the `bucket's as `symbol_t'.
4460
4461 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
4462 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
4463 * src/symtab.c, src/symtab.h (bucket): Rename as...
4464 (symbol_t): this.
4465 (symbol_list_new, bucket_check_defined, bucket_make_alias)
4466 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
4467 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
4468 (buckets_new, buckets_free, buckets_do): Rename as...
4469 (symbol_list_new, symbol_check_defined, symbol_make_alias)
4470 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
4471 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
4472 (symbols_new, symbols_free, symbols_do): these.
4473
72a23c97
AD
44742002-04-07 Akim Demaille <akim@epita.fr>
4475
4476 Use lib/hash for the symbol table.
4477
4478 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
4479 EOF.
4480 * src/lex.c (lex): Set the `number' member of new terminals.
4481 * src/reader.c (bucket_check_defined, bucket_make_alias)
4482 (bucket_check_alias_consistence, bucket_translation): New.
4483 (reader, grammar_free, readgram, token_translations_init)
4484 (packsymbols): Adjust.
4485 (reader): Number the predefined tokens.
4486 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
4487 for predefined tokens.
4488 * src/symtab.h (bucket): Remove all the hash table related
4489 members.
4490 * src/symtab.c (symtab): Replace by...
4491 (bucket_table): this.
4492 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
4493 (buckets_new, buckets_do): New.
4494
280a38c3
AD
44952002-04-07 Akim Demaille <akim@epita.fr>
4496
4497 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
4498 (start_symbol, max_user_token_number, semantic_parser)
4499 (error_token_number): Initialize.
4500 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
4501 Initialize.
4502 (reader): Don't.
4503 (errtoken, eoftoken, undeftoken, axiom): Extern.
4504
03b31c0c
AD
45052002-04-07 Akim Demaille <akim@epita.fr>
4506
4507 * src/gram.h (rule_s): prec and precsym are now pointers
4508 to the bucket giving the priority/associativity.
4509 Member `associativity' removed: useless.
4510 * src/reduce.c, src/conflicts.c: Adjust.
4511
8b3df748
AD
45122002-04-07 Akim Demaille <akim@epita.fr>
4513
4514 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
4515 Properly escape the symbols' TAG when outputting them.
4516
e601aa1d
AD
45172002-04-07 Akim Demaille <akim@epita.fr>
4518
4519 * src/lalr.h (LA): Is a bitsetv, not bitset*.
4520
b0299a2e
AD
45212002-04-07 Akim Demaille <akim@epita.fr>
4522
4523 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
4524 (LArule): this, which is an array to rule_t*.
4525 * src/print.c, src/conflicts.c: Adjust.
4526
d7e1f00c
AD
45272002-04-07 Akim Demaille <akim@epita.fr>
4528
4529 * src/gram.h (rule_t): Rename `number' as `user_number'.
4530 `number' is a new member.
4531 Adjust dependencies.
4532 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
4533
cc9305dd
AD
45342002-04-07 Akim Demaille <akim@epita.fr>
4535
4536 As a result of the previous patch, it is no longer needed
4537 to reorder ritem itself.
4538
4539 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
4540
b0940840
AD
45412002-04-07 Akim Demaille <akim@epita.fr>
4542
4543 Be sure never to walk through RITEMS, but use only data related to
4544 the rules themselves. RITEMS should be banished.
4545
4546 * src/output.c (output_token_translations): Rename as...
4547 (prepare_tokens): this.
4548 In addition to `translate', prepare the muscles `tname' and
4549 `toknum', which were handled by...
4550 (output_rule_data): this.
4551 Remove, and move the remainder of its outputs into...
4552 (prepare_rules): this new routines, which also merges content from
4553 (output_gram): this.
4554 (prepare_rules): Be sure never to walk through RITEMS.
4555 (output_stos): Rename as...
4556 (prepare_stos): this.
4557 (output): Always invoke prepare_states, after all, just don't use it
4558 in the output if you don't need it.
4559
643a5994
AD
45602002-04-07 Akim Demaille <akim@epita.fr>
4561
4562 * src/LR0.c (new_state): Display `nstates' as the name of the
4563 newly created state.
4564 Adjust to initialize first_state and last_state if needed.
4565 Be sure to distinguish the initial from the final state.
4566 (new_states): Create the itemset of the initial state, and use
4567 new_state.
4568 * src/closure.c (closure): Now that the initial state has its
4569 items properly set, there is no need for a special case when
4570 creating `ruleset'.
4571
4572 As a result, now the rule 0, reducing to $axiom, is visible in the
4573 outputs. Adjust the test suite.
4574
4575 * tests/conflicts.at (Solved SR Conflicts)
4576 (Unresolved SR Conflicts): Adjust.
4577 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
4578 * tests/conflicts.at (S/R in initial): New.
4579
b4c4ccc2
AD
45802002-04-07 Akim Demaille <akim@epita.fr>
4581
4582 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
4583 the RHS of the rules.
4584 * src/output.c (output_gram): Likewise.
4585
bba97eb2
AD
45862002-04-07 Akim Demaille <akim@epita.fr>
4587
4588 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
4589 bucket.
4590 Adjust all dependencies.
4591 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
4592 `number' of the buckets too.
4593 * src/gram.h: Include `symtab.h'.
4594 (associativity): Move to...
4595 * src/symtab.h: here.
4596 No longer include `gram.h'.
4597
c3b407f4
AD
45982002-04-07 Akim Demaille <akim@epita.fr>
4599
4600 * src/gram.h, src/gram.c (rules_rhs_length): New.
4601 (ritem_longest_rhs): Use it.
4602 * src/gram.h (rule_t): `number' is a new member.
4603 * src/reader.c (packgram): Set it.
4604 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
4605 the end of `rules', and count them out of `nrules'.
4606 (reduce_output, dump_grammar): Adjust.
4607 * src/print.c (print_grammar): It is no longer needed to check for
4608 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
4609 * tests/reduce.at (Reduced Automaton): New test.
4610
11652ab3
AD
46112002-04-07 Akim Demaille <akim@epita.fr>
4612
4613 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
4614 lacking `+ 1' to nrules, Bison reported as useless a token if it
4615 was used solely to set the precedence of the last rule...
4616
26b23c1a
AD
46172002-04-07 Akim Demaille <akim@epita.fr>
4618
4619 * data/bison.c++, data/bison.simple: Don't output the current file
4620 name in #line, to avoid useless diffs between two identical
4621 outputs under different names.
4622
18bcecb0
AD
46232002-04-07 Akim Demaille <akim@epita.fr>
4624
4625 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
4626 Normalize loops to using `< nrules + 1', not `<= nrules'.
4627
fa770c86
AD
46282002-04-07 Akim Demaille <akim@epita.fr>
4629
4630 * TODO: Update.
4631
d9b739c3
AD
46322002-04-07 Akim Demaille <akim@epita.fr>
4633
4634 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
4635 bucket.value as bucket.number.
4636
99013900
AD
46372002-04-07 Akim Demaille <akim@epita.fr>
4638
4639 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
4640 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
4641 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
4642 RHS, instead of being an index in RITEMS.
4643
e966383b
PE
46442002-04-04 Paul Eggert <eggert@twinsun.com>
4645
4646 * doc/bison.texinfo: Update copyright date.
4647 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
4648 (Symbols): Warn about running Bison in one character set,
4649 but compiling and/or running in an incompatible one.
4650 Warn about character code 256, too.
4651
46522002-04-03 Paul Eggert <eggert@twinsun.com>
4653
4654 * src/bison.data (YYSTACK_ALLOC): Depend on whether
4655 YYERROR_VERBOSE is nonzero, not whether it is defined.
4656
4657 Merge changes from bison-1_29-branch.
c307773e 4658
8d6c48b9
PE
46592002-03-20 Paul Eggert <eggert@twinsun.com>
4660
4661 Merge fixes from Debian bison_1.34-1.diff.
4662
4663 * configure.in (AC_PREREQ): 2.53.
4664
e53c6322
AD
46652002-03-20 Akim Demaille <akim@epita.fr>
4666
4667 * src/conflicts.c (log_resolution): Argument `resolution' is const.
4668
9ffbeca7
PE
46692002-03-19 Paul Eggert <eggert@twinsun.com>
4670
21db0b2a
PE
4671 * src/bison.simple (YYCOPY): New macro.
4672 (YYSTACK_RELOCATE): Use it.
4673 Remove Type arg; no longer needed. All callers changed.
4674 (yymemcpy): Remove; no longer needed.
4675
9ffbeca7
PE
4676 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
4677 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
4678
642cb8f8
AD
46792002-03-19 Akim Demaille <akim@epita.fr>
4680
4681 Test and fix the #line outputs.
4682
4683 * tests/atlocal.at (GCC): New.
4684 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
4685 (Prologue synch line, ,%union synch line, Postprologue synch line)
4686 (Action synch line, Epilogue synch line): New tests.
4687 * src/reader.c (parse_union_decl): Define the muscle stype_line.
4688 * data/bison.simple, data/bison.c++: Use it.
4689
3c31a486
AD
46902002-03-19 Akim Demaille <akim@epita.fr>
4691
4692 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
4693 (Solved SR Conflicts, %expect not enough, %expect right)
4694 (%expect too much): Move to...
4695 * tests/conflicts.at: this new file.
4696
0d8bed56
AD
46972002-03-19 Akim Demaille <akim@epita.fr>
4698
4699 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
4700 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
4701 that we can move to enums for instance.
4702 * src/output.c (token_definitions_output): Output a list of
4703 `token-name, token-number' instead of the #define.
4704 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
4705
9208d17f
AD
47062002-03-14 Akim Demaille <akim@epita.fr>
4707
4708 Use Gettext 0.11.1.
4709
af27eacb
RA
47102002-03-09 Robert Anisko <robert@lrde.epita.fr>
4711
4712 * data/bison.c++: Make the user able to add members to the generated
4713 parser by subclassing.
4714
9101a310
RA
47152002-03-05 Robert Anisko <robert@lrde.epita.fr>
4716
4717 * src/reader.c (read_additionnal_code): `c' should be an integer, not
4718 a character.
4719 Reported by Nicolas Tisserand and Nicolas Burrus.
4720
fff9bf0b
RA
47212002-03-04 Robert Anisko <robert@lrde.epita.fr>
4722
4723 * src/reader.c: Warn about lacking semi-colons, do not complain.
4724
64dba31e
RA
47252002-03-04 Robert Anisko <robert@lrde.epita.fr>
4726
4727 * data/bison.c++: Remove a debug line.
4728
374f5a14
RA
47292002-03-04 Robert Anisko <robert@lrde.epita.fr>
4730
4731 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
4732 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
4733 provide a default implementation.
4734
bfcf1f3a
AD
47352002-03-04 Akim Demaille <akim@epita.fr>
4736
4737 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
4738 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
4739 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
4740 * tests/semantic.at (Parsing Guards): Similarly.
4741 * src/reader.at (readgram): Complain if the last rule is not ended
4742 with a semi-colon.
4743
65ccf9fc
AD
47442002-03-04 Akim Demaille <akim@epita.fr>
4745
4746 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
4747 * src/closure.c: here.
4748 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
4749 RTC.
4750 * src/warshall.h, src/warshall.c: Remove.
4751 * tests/sets.at (Broken Closure): Adjust.
4752
d0039cbc
AD
47532002-03-04 Akim Demaille <akim@epita.fr>
4754
4755 * src/output.c (output_skeleton): tempdir is const.
4756 bytes_read is unused.
4757
345cea78
AD
47582002-03-04 Akim Demaille <akim@epita.fr>
4759
4760 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
4761 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
4762 Update.
4763 From Michael Hayes.
4764
564801f7
AD
47652002-03-04 Akim Demaille <akim@epita.fr>
4766
4767 * src/closure.c (closure): `r' is unused.
4768
e5352bc7
AD
47692002-03-04 Akim Demaille <akim@epita.fr>
4770
4771 * tests/sets.at (Broken Closure): Add the ending `;'.
4772 * src/reader.at (readgram): Complain if a rule is not ended with a
4773 semi-colon.
4774
914feea9
AD
47752002-03-04 Akim Demaille <akim@epita.fr>
4776
4777 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
4778 (count_sr_conflicts): Use bitset_count.
4779 * src/reduce.c (inaccessable_symbols): Ditto.
4780 (bits_size): Remove.
4781 * src/warshall.h, src/warshall.c: Convert to bitsetv.
4782
f0250de6
AD
47832002-03-04 Akim Demaille <akim@epita.fr>
4784
4785 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
4786 * src/reduce.c: Remove the `bitset_zero's following the
4787 `bitset_create's, as now it is performed by the latter.
4788
ef017502
AD
47892002-03-04 Akim Demaille <akim@epita.fr>
4790
4791 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
4792 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
4793 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
4794 latest sources from Michael.
4795
76514394
AD
47962002-03-04 Akim Demaille <akim@epita.fr>
4797
4798 * src/output.c (output): Don't free the grammar.
4799 * src/reader.c (grammar_free): New.
4800 * src/main.c (main): Call it and don't free symtab here.
4801
55024580
AD
48022002-03-04 Akim Demaille <akim@epita.fr>
4803
4804 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
4805 before returning.
4806 Reported by Benoit Perrot.
4807
f9abaa2c
AD
48082002-03-04 Akim Demaille <akim@epita.fr>
4809
4810 Use bitset operations when possible, not loops over bits.
4811
4812 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
4813 bitset_or.
4814 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
4815 * src/reduce.c (useless_nonterminals): Formatting changes.
4816 * src/warshall.c (TC): Use bitset_or.
4817
0e721e75
AD
48182002-03-04 Akim Demaille <akim@epita.fr>
4819
4820 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
4821 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
4822 Ditto.
4823
0fb1ffb1
AD
48242002-03-04 Akim Demaille <akim@epita.fr>
4825
4826 * src/lalr.c (F): Now a bitset*.
4827 Adjust all dependencies.
4828
b86796bf
AD
48292002-03-04 Akim Demaille <akim@epita.fr>
4830
4831 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
4832 Adjust all dependencies.
4833
602bbf31
AD
48342002-03-04 Akim Demaille <akim@epita.fr>
4835
4836 * src/L0.c, src/LR0.h (nstates): Be size_t.
4837 Adjust comparisons (signed vs unsigned).
4838 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
4839 bitset*.
4840 Adjust all dependencies.
4841
d8a0245c
AD
48422002-03-04 Akim Demaille <akim@epita.fr>
4843
4844 * src/closure.c (firsts): Now, also a bitset.
4845 Adjust all dependencies.
4846 (varsetsize): Remove, now unused.
4847 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
4848
34ba9743
AD
48492002-03-04 Akim Demaille <akim@epita.fr>
4850
4851 * src/print.c: Convert to use bitset.h, not hand coded iterations
4852 over ints.
4853
ed86e78c
AD
48542002-03-04 Akim Demaille <akim@epita.fr>
4855
4856 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
4857
dfdb1797
AD
48582002-03-04 Akim Demaille <akim@epita.fr>
4859
4860 * src/closure.c (ruleset): Be a bitset.
4861 (rulesetsize): Remove.
4862
7086e707
AD
48632002-03-04 Akim Demaille <akim@epita.fr>
4864
4865 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
4866 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
4867 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
4868 * src/closure.c (fderives): Be an array of bitsets.
4869
98254360
RA
48702002-02-28 Robert Anisko <robert@lrde.epita.fr>
4871
4872 * data/bison.c++: Merge the two generated headers. Insert a copyright
4873 notice in each output file.
4874
a75c057f
AD
48752002-02-28 Akim Demaille <akim@epita.fr>
4876
4877 * data/bison.c++: Copy the prologue of bison.simple to fetch
4878 useful M4 definitions, such as b4_header_guard.
4879
06b00abc
AD
48802002-02-25 Akim Demaille <akim@epita.fr>
4881
4882 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
4883 translator friendly scheme for the bgr
4884 copyright notice.
06b00abc 4885
70e7d534
AD
48862002-02-25 Akim Demaille <akim@epita.fr>
4887
4888 * src/output.c (header_output): Remove, now handled completely via
4889 M4.
4890
abe017f6
AD
48912002-02-25 Akim Demaille <akim@epita.fr>
4892
4893 * m4/m4.m4: New, from CVS Autoconf.
4894 * configure.in: Invoke it.
4895 * src/output.c (output_skeleton): Use its result instead of the
4896 hard coded name.
4897
381fb12e
AD
48982002-02-25 Akim Demaille <akim@epita.fr>
4899
4900 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
4901 Fileutils 4.1.5.
4902 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
4903 * src/output.c (output_skeleton): Use mkstemp to create a real
4904 temporary file.
4905 Move the filling of `skeleton' and its muscle to...
4906 (prepare): here.
4907 (output): Move the definition of the prologue muscle to...
4908 (prepare): here.
4909 * src/system.h (DEFAULT_TMPDIR): New.
4910
6f38107f
PE
49112002-02-14 Paul Eggert <eggert@twinsun.com>
4912
4913 Remove the support for C++ namespace cleanliness; it was
4914 causing more problems than it was curing, since it didn't work
4915 properly on some nonstandard C++ compilers. This can wait
4916 for a proper C++ parser.
4917
4918 * NEWS: Document this.
4919 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
4920 of C++, as it's treated like C now.
4921 * src/bison.simple (YYSTD): Remove.
4922 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
4923 Treat C++ just like Standard C instead of trying to support
4924 namespace cleanliness.
4925
80cce3da
AD
49262002-02-14 Akim Demaille <akim@epita.fr>
4927
4928 * tests/regression.at (else): Adjust to Andreas' change.
4929
842e8679
AD
49302002-02-14 Akim Demaille <akim@epita.fr>
4931
4932 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
4933
4bda3f10
AD
49342002-02-13 Andreas Schwab <schwab@suse.de>
4935
4936 * src/output.c (output_rule_data): Don't output NULL, it might
4937 not be defined yet.
4938
4162fa07 49392002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 4940
4162fa07
RA
4941 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
4942 (Copyright notice): Update.
b418ecd8 4943
bd16a5dc
AD
49442002-02-11 Akim Demaille <akim@epita.fr>
4945
4946 * tests/regression.at (%nonassoc and eof): Don't include
4947 nonportable headers.
4948
8d69a1a3
RA
49492002-02-08 Robert Anisko <robert@lrde.epita.fr>
4950
4951 * data/bison.c++: Correct error recovery. Make the user able to
4952 initialize the starting location.
4953
9b2d0677
AD
49542002-02-07 Akim Demaille <akim@epita.fr>
4955
4956 * tests/input.at: New.
4957
69e2658b
RA
49582002-02-07 Robert Anisko <robert@lrde.epita.fr>
4959
4960 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 4961 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
4962 directives around tables only needed for debugging.
4963
4aacc3a7
RA
49642002-02-07 Robert Anisko <robert@lrde.epita.fr>
4965
4966 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
4967 C++ parsers.
4968 (yy::b4_name::parse): Use print_.
4969
762a801e
RA
49702002-02-07 Robert Anisko <robert@lrde.epita.fr>
4971
4972 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
4973
4bb2bc3f
RA
49742002-02-07 Robert Anisko <robert@lrde.epita.fr>
4975
4976 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
4977 C++ parsers.
4978 (yy::b4_name::parse): Build verbose error messages, and use error_.
4979
6b45a3ca
RA
49802002-02-06 Robert Anisko <robert@lrde.epita.fr>
4981
4982 * data/bison.c++: Fix m4 quoting in comments.
4983
50997c6e
RA
49842002-02-06 Robert Anisko <robert@lrde.epita.fr>
4985
4986 * data/bison.c++: Adjust the parser code. Fix some muscles that were
4987 not expanded by m4.
4988
3f3eed27
AD
49892002-02-05 Akim Demaille <akim@epita.fr>
4990
4991 * data/bison.c++: Adjust to the M4 back end.
4992 More is certainly needed.
4993
be2a1a68
AD
49942002-02-05 Akim Demaille <akim@epita.fr>
4995
4996 Give a try to M4 as a back end.
4997
4998 * lib/readpipe.c: New, from wdiff.
4999 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
5000 BISON_HAIRY.
5001 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
5002 specific values. Now it is m4 that performs the lookup.
5003 * src/parse-skel.y: Remove.
5004 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
5005 * src/output.c (actions_output, guards_output)
5006 (token_definitions_output): No longer keeps track of the output
5007 line number, hence remove the second argument.
5008 (guards_output): Check against the guard member of a rule, not the
5009 action member.
5010 Adjust callers.
5011 (output_skeleton): Don't look for the skeleton location, let m4 do
5012 that.
5013 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
5014 file will be used.
5015 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
5016 (prepare): Given that for the time being changesyntax is not
5017 usable in M4, rename the muscles using `-' to `_'.
5018 Define `defines_flag', `output_parser_name' and `output_header_name'.
5019 * src/output.h (actions_output, guards_output)
5020 (token_definitions_output): Adjust prototypes.
5021 * src/scan-skel.l: Instead of scanning the skeletons, it now
5022 processes the output of m4: `__oline__' and `#output'.
5023 * data/bison.simple: Adjust to be used by M4(sugar).
5024 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
5025 to date.
5026 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
5027 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
5028 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
5029 shamelessly stolen from CVS Autoconf.
5030
beda758b
AD
50312002-02-05 Akim Demaille <akim@epita.fr>
5032
5033 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
5034 * configure.in: Check for the declarations of free and malloc.
5035 * src/muscle_tab.c: Adjust.
5036
5ece6d43
AD
50372002-02-05 Akim Demaille <akim@epita.fr>
5038
5039 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
5040 which have no values.
5041
5bb18f9a
AD
50422002-02-05 Akim Demaille <akim@epita.fr>
5043
5044 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
5045 * data/: here.
5046
894dd62e
PE
50472002-01-29 Paul Eggert <eggert@twinsun.com>
5048
5049 * src/bison.simple (YYSIZE_T): Do not define merely because
5050 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
5051 On some platforms, <alloca.h> does not declare YYSTD (size_t).
5052
82841af7
AD
50532002-01-27 Akim Demaille <akim@epita.fr>
5054
5055 Fix `%nonassoc and eof'.
5056
5057 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
5058 which were not properly copied! Replace
5059 memcpy (res->errs, src->errs, src->nerrs);
5060 with
5061 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
5062 !!!
5063 * tests/regression.at (%nonassoc and eof): Adjust to newest
5064 Autotest: `.' is not in the PATH.
5065
318b76e9
AD
50662002-01-27 Akim Demaille <akim@epita.fr>
5067
5068 * tests/sets.at (AT_EXTRACT_SETS): New.
5069 (Nullable): Use it.
5070 (Firsts): New.
5071
30d2f3d5
AD
50722002-01-26 Akim Demaille <akim@epita.fr>
5073
5074 * tests/actions.at, tests/calc.at, tests/headers.at,
5075 * tests/torture.at: Adjust to the newest Autotest which no longer
5076 forces `.' in the PATH.
5077
30f8c395
AD
50782002-01-25 Akim Demaille <akim@epita.fr>
5079
5080 * tests/regression.at (%nonassoc and eof): New.
5081 Suggested by Robert Anisko.
5082
29ae55f1
AD
50832002-01-24 Akim Demaille <akim@epita.fr>
5084
5085 Bison dumps core when trying to complain about broken input files.
5086 Reported by Cris van Pelt.
5087
5088 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
5089 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
5090 into...
5091 (Invalid inputs): Strengthen: exercise parse_percent_token.
5092
2b548aa6
RA
50932002-01-24 Robert Anisko <robert.anisko@epita.fr>
5094
5095 * src/Makefile.am: Add bison.c++.
5096 * src/bison.c++: New skeleton.
5097
bb0146c2
AD
50982002-01-21 Paolo Bonzini <bonzini@gnu.org>
5099
5100 * po/it.po: New.
5101
bec30531
AD
51022002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
5103
5104 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
5105
fc6edc45
MA
51062002-01-20 Marc Autret <marc@gnu.org>
5107
5108 * src/files.c (compute_output_file_names): Fix
5109
5e5d5415
MA
51102002-01-20 Marc Autret <marc@gnu.org>
5111
5112 * tests/output.at: New test.
5113 * src/files.c (compute_base_names): Don't map extensions when
5114 the YACC flag is set, use defaults.
5115 Reported by Evgeny Stambulchik.
5116
44ea3fbd
MA
51172002-01-20 Marc Autret <marc@gnu.org>
5118
bb0146c2 5119 * src/system.h: Need to define __attribute__ away for non-GCC
44ea3fbd
MA
5120 compilers as well (i.e. the vendor C compiler).
5121 Suggested by Albert Chin-A-Young.
5122
338963d1
TVH
51232002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
5124
5125 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
5126 canonical definition.
5127 * src/system.h: Use the canonical definition for PARAMS (avoids
5128 a conflict with the macro from lib/hash.h).
5129
c57b2479
AD
51302002-01-11 Akim Demaille <akim@epita.fr>
5131
5132 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 5133 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 5134
b85810ae
AD
51352002-01-09 Akim Demaille <akim@epita.fr>
5136
5137 * src/files.c, src/files.h (output_infix): New.
5138 (tab_extension): Remove.
5139 (compute_base_names): Compute the former, drop the latter.
5140 * src/output.c (prepare): Insert the muscles `output-infix', and
5141 `output-suffix'.
5142 * src/parse-skel.y (string, string.1): New.
5143 (section.header): Use it.
5144 (section.yacc): Remove.
5145 (prefix): Remove too.
5146 * src/scan-skel.l: Adjust.
5147 * src/bison.simple, src/bison.hairy: Adjust.
5148
cae60122
AD
51492002-01-09 Akim Demaille <akim@epita.fr>
5150
5151 * configure.in (WERROR_CFLAGS): Compute it.
5152 * src/Makefile.am (CFLAGS): Pass it.
5153 * tests/atlocal.in (CFLAGS): Idem.
5154 * src/files.c: Fix a few warnings.
5155 (get_extension_index): Remove, unused.
5156
ae404801
AD
51572002-01-08 Akim Demaille <akim@epita.fr>
5158
5159 * src/getargs.c (AS_FILE_NAME): New.
5160 (getargs): Use it to convert DOSish file names.
5161 * src/files.c (base_name): Rename as full_base_name to avoid
5162 clashes with `base_name ()'.
5163 (filename_split): New.
5164 (compute_base_names): N-th rewrite, using filename_split.
5165
22312b71
AD
51662002-01-08 Akim Demaille <akim@epita.fr>
5167
5168 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
5169 New, stolen from the Fileutils 4.1.
5170 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
5171 * configure.in: Check for the presence of memrchr, and of its
5172 prototype.
5173
a67cef01
TVH
51742002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
5175
5176 * lib/hash.h (__P): Added definition for this macro.
5177 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
5178 BUILT_SOURCES, to ensure they are generated first.
5179 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
5180 %error-verbose to allow bootstrapping with bison 1.30x.
5181
2b25d624
AD
51822002-01-06 Akim Demaille <akim@epita.fr>
5183
5184 * src/reader.c (parse_braces): Don't fetch the next char, the
5185 convention is to fetch on entry.
5186 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
5187 'switch' without a following semicolon.
5188 * tests/regression.at (braces parsing): New.
5189
3460813b
AD
51902002-01-06 Akim Demaille <akim@epita.fr>
5191
5192 Bison is dead wrong in its RR conflict reports.
5193
5194 * tests/torture.at (GNU Cim Grammar): New.
5195 * src/conflicts.c (count_rr_conflicts): Fix.
5196
73784c64
AD
51972002-01-06 Akim Demaille <akim@epita.fr>
5198
5199 Creating package.m4 from configure.ac causes too many problems.
5200
5201 * tests/Makefile.am (package.m4): Create it by hand,
5202 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
5203
25d81090
AD
52042002-01-06 Akim Demaille <akim@epita.fr>
5205
5206 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
5207 skeleton.h.
5208
a9b8959e
PE
52092002-01-04 Paul Eggert <eggert@twinsun.com>
5210
5211 * doc/bison.texinfo (Debugging):
5212 Remove YYSTDERR; it's no longer defined or used.
5213 Also, s/cstdio.h/cstdio/.
5214
25d81090
AD
52152002-01-03 Akim Demaille <akim@epita.fr>
5216
5217 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
5218
1109455c
AD
52192002-01-03 Akim Demaille <akim@epita.fr>
5220
5221 * src/parse-skel.y (process_skeleton): Don't bind the parser's
5222 tracing code to --trace, wait for a better --trace option, with
5223 args.
5224
7ea5e977
AD
52252002-01-03 Akim Demaille <akim@epita.fr>
5226
5227 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
5228 The ISO C++ standard is extremely clear about it: stderr is
5229 considered a macro, not a regular symbol (see table 94 `Header
5230 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
5231 Therefore std:: does not apply to it. It still does with fprintf.
5232 Also, s/cstdio.h/cstdio/.
5233
fab5b110
AD
52342002-01-03 Akim Demaille <akim@epita.fr>
5235
5236 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
5237 for non system headers.
5238
aed7fd9b
AD
52392002-01-02 Akim Demaille <akim@epita.fr>
5240
5241 Equip the skeleton chain with location tracking, runtime trace,
5242 pure parser and scanner.
5243
5244 * src/parse-skel.y: Request a pure parser, locations, and prefix
5245 renaming.
5246 (%union): Having several members with the same type does not help
5247 type mismatches, simplify.
5248 (YYPRINT, yyprint): New.
5249 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
5250 (skel_error): this.
5251 Handle locations.
5252 * src/scan-skel.l: Adjust to these changes.
5253 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
5254 (LOCATION_PRINT, skel_control_t): New.
5255
24fad99e
AD
52562001-12-30 Akim Demaille <akim@epita.fr>
5257
5258 * src/parse-skel.y: Get rid of the shift/reduce conflict:
5259 replace `gb' with BLANKS.
5260 * src/scan-skel.l: Adjust.
5261
a4b36db4
AD
52622001-12-30 Akim Demaille <akim@epita.fr>
5263
5264 * src/system.h: We don't need nor want bcopy.
5265 Throw away MS-DOS crap: we don't need getpid.
5266 * configure.in: We don't need strndup. It was even causing
5267 problems: because Flex includes the headers *before* us,
5268 _GNU_SOURCE is not defined by config.h, and therefore strndup was
5269 not visible.
5270 * lib/xstrndup.c: New.
5271 * src/scan-skel.l: Use it.
5272 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
5273 * src/parse-skel.y: Use %directives instead of #defines.
5274
1239777d
AD
52752001-12-30 Akim Demaille <akim@epita.fr>
5276
5277 * src/skeleton.h: New.
5278 * src/output.c (output_parser, output_master_parser): Remove, dead
5279 code.
5280 * src/output.h (get_lines_number, actions_output, guards_output)
5281 (token_definitions_output): Prototype them.
5282 * src/parse-skel.y: Add the license notice.
5283 Include output.h and skeleton.h.
5284 (process_skeleton): Returns void, and takes a single parameter.
5285 * src/scan-skel.l: Add the license notice.
5286 Include skeleton.h.
5287 Don't use %option yylineno: it seems that then Flex imagines
5288 REJECT has been used, and therefore it won't reallocate its
5289 buffers (which makes no other sense to me than a bug). It results
5290 in warnings for `unused: yy_flex_realloc'.
5291
9b3add5b
RA
52922001-12-30 Robert Anisko <robert.anisko@epita.fr>
5293
5294 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
5295 (MUSCLE_INSERT_PREFIX): ...to there.
5296 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
5297 (MUSCLE_INSERT_PREFIX): Move from here...
5298
5299 * src/bison.hairy: Add a section directive. Put braces around muscle
5300 names. This parser skeleton is still broken, but Bison should not
5301 choke on a bad muscle 'syntax'.
5302 * src/bison.simple: Add a section directive. Put braces around muscle
5303 names.
5304
5305 * src/files.h (strsuffix, stringappend): Add declarations.
5306 (tab_extension): Add declaration.
5307 (short_base_name): Add declaration.
5308
5309 * src/files.c (strsuffix, stringappend): No longer static. These
5310 functions are used in the skeleton parser.
5311 (tab_extension): New.
5312 (compute_base_names): Use the computations done in this function
fab5b110 5313 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
5314 names.
5315 (short_base_name): No longer static.
5316
5317 * src/output.c (output_skeleton): New.
5318 (output): Disable call to output_master_parser, and give a try to
5319 a new skeleton handling system.
5320 (guards_output, actions_output): No longer static.
5321 (token_definitions_output, get_lines_number): No longer static.
5322
5323 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
5324
fab5b110 5325 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
5326 parse-skel.y.
5327
5328 * src/parse-skel.y: New file.
5329 * src/scan-skel.l: New file.
5330
b5b61c61
AD
53312001-12-29 Akim Demaille <akim@epita.fr>
5332
5333 %name-prefix is broken.
5334
5335 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
5336 Adjust all dependencies.
5337 * tests/headers.at (export YYLTYPE): Strengthen this test: use
5338 %name-prefix.
5339
5340 Renaming yylval but not yylloc is not consistent. Now we do.
5341
5342 * src/bison.simple: Prefix yylloc if used.
5343 * doc/bison.texinfo (Decl Summary): Document that.
5344
8c9a50be
AD
53452001-12-29 Akim Demaille <akim@epita.fr>
5346
5347 * doc/bison.texinfo: Promote `%long-directive' over
5348 `%long_directive'.
5349 Remove all references to fixed-output-files, yacc is enough.
5350
d99361e6
AD
53512001-12-29 Akim Demaille <akim@epita.fr>
5352
5353 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
5354 user prologue. These are defaults.
5355 * tests/actions.at (Mid-rule actions): Make sure the user can
5356 define YYDEBUG and YYERROR_VERBOSE.
5357
b9cecb91
AD
53582001-12-29 Akim Demaille <akim@epita.fr>
5359
5360 * src/output.c (header_output): Don't forget to export YYLTYPE and
5361 yylloc.
5362 * tests/headers.at (export YYLTYPE): New, make sure it does.
5363 * tests/regression.at (%union and --defines, Invalid CPP headers):
5364 Move to...
5365 * tests/headers.at: here.
5366
aea13e97
AD
53672001-12-29 Akim Demaille <akim@epita.fr>
5368
5369 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
5370
931394cb
AD
53712001-12-29 Akim Demaille <akim@epita.fr>
5372
5373 * tests/actions.at (Mid-rule actions): Output on a single line
5374 instead of several.
5375
704a47c4
AD
53762001-12-29 Akim Demaille <akim@epita.fr>
5377
5378 * doc/bison.texinfo: Formatting changes.
5379
091e20bb
AD
53802001-12-29 Akim Demaille <akim@epita.fr>
5381
5382 Don't store the token defs in a muscle, just be ready to output it
5383 on command. Now possible via `symbols'. Fixes a memory leak.
5384
5385 * src/output.c (token_definitions_output): New.
5386 (output_parser, header_output): Use it.
5387 * src/reader.c (symbols_save): Remove.
5388
cce71710
AD
53892001-12-29 Akim Demaille <akim@epita.fr>
5390
5391 * src/bison.simple: Do not provide a default for YYSTYPE and
5392 YYLTYPE before the user's prologue. Otherwise it's hardly... a
5393 default.
5394
82c035a8
AD
53952001-12-29 Akim Demaille <akim@epita.fr>
5396
5397 Mid-rule actions are simply... ignored!
5398
5399 * src/reader.c (readgram): Be sure to attach mid-rule actions to
5400 the empty-rule associated to the dummy symbol, not to the host
5401 rule.
5402 * tests/actions.at (Mid-rule actions): New.
5403
8419d367
AD
54042001-12-29 Akim Demaille <akim@epita.fr>
5405
5406 Memory leak.
5407
5408 * src/reader.c (reader): Free grammar.
5409
375d5806
AD
54102001-12-29 Akim Demaille <akim@epita.fr>
5411
5412 Memory leak.
5413
5414 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
5415 since it allocates it for each state, although only one is needed.
5416 (allocate_storage): Do it here.
5417
f51cb8ff
AD
54182001-12-29 Akim Demaille <akim@epita.fr>
5419
5420 * src/options.h, src/options.c (create_long_option_table): Rename
5421 as...
5422 (long_option_table_new): this, with a clearer prototype.
5423 (percent_table): Remove, unused,
5424 * src/getargs.c (getargs): Adjust.
5425
29e88316
AD
54262001-12-29 Akim Demaille <akim@epita.fr>
5427
5428 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
5429 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
5430 as states.
5431
b9f71f19
AD
54322001-12-29 Akim Demaille <akim@epita.fr>
5433
5434 * src/lalr.c (build_relations): Rename `states' as `states1'.
5435 Sorry, I don't understand exactly what it is, no better name...
5436
1a2b5d37
AD
54372001-12-29 Akim Demaille <akim@epita.fr>
5438
5439 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
5440 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
5441 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
5442 as rules.
5443
1cca533e
AD
54442001-12-29 Akim Demaille <akim@epita.fr>
5445
5446 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
5447 ago.
5448
c03ae966
AD
54492001-12-29 Akim Demaille <akim@epita.fr>
5450
5451 * src/reader.c, src/reader.h (user_toknums): Remove.
5452 Adjust all users to use symbols[i]->user_token_number.
5453
5a670b1e
AD
54542001-12-29 Akim Demaille <akim@epita.fr>
5455
5456 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
5457 Adjust all users to use symbols[i]->prec or ->assoc.
5458
ad949da9
AD
54592001-12-29 Akim Demaille <akim@epita.fr>
5460
5461 * src/reader.c, src/reader.h (tags): Remove.
5462 Adjust all users to use symbols[i]->tag.
5463
0e78e603
AD
54642001-12-29 Akim Demaille <akim@epita.fr>
5465
5466 * src/gram.h, src/gram.c (symbols): New, similar to state_table
5467 and rule_table.
5468 * src/reader.c (packsymbols): Fill this table.
5469 Drop sprec.
5470 * src/conflicts.c (resolve_sr_conflict): Adjust.
5471 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
5472 single table.
5473 Use symbols[i]->tag instead of tags[i].
5474
213e640e
AD
54752001-12-29 Akim Demaille <akim@epita.fr>
5476
5477 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
5478 In addition, put a comment in there, to replace...
5479 * tests/regression.at (%union and C comments): Remove.
5480
e7b8bef1
AD
54812001-12-29 Akim Demaille <akim@epita.fr>
5482
5483 * tests/regression.at (Web2c Actions): Blindly move the actual
5484 output as expected output. The contents *seem* right to me, but I
5485 can't pretend reading perfectly parser tables... Nonetheless, all
5486 the other tests pass correctly, the table look OK, even though the
5487 presence of `$axiom' is to be noted: AFAICS it is useless (but
5488 harmless).
5489
b68e7744
AD
54902001-12-29 Akim Demaille <akim@epita.fr>
5491
5492 * src/reader.c (readgram): Don't add the rule 0 if there were no
5493 rules read. In other words, add it _after_ having performed
5494 grammar sanity checks.
5495 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
5496
78d5bae9
AD
54972001-12-29 Akim Demaille <akim@epita.fr>
5498
5499 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
5500 visible, and some states have now a different number.
5501
ff442794
AD
55022001-12-29 Akim Demaille <akim@epita.fr>
5503
5504 * src/reader.c (readgram): Bind the initial rule's lineno to that
5505 of the first rule.
5506 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
5507 (Solved SR Conflicts): Adjust rule 0's line number.
5508
610ab194
AD
55092001-12-29 Akim Demaille <akim@epita.fr>
5510
5511 Fix the `GAWK Grammar' failure.
5512
5513 * src/LR0.c (final_state): Initialize to -1 so that we do compute
5514 the reductions of the first state which was mistakenly confused
5515 with the final state because precisely final_state was initialized
5516 to 0.
5517 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
5518 now noticed by Bison.
5519 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
5520 have a reduction on $default.
5521
29d29c8f
AD
55222001-12-29 Akim Demaille <akim@epita.fr>
5523
5524 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
5525 rule line numbers.
5526 * src/closure.c (print_closure): Likewise.
5527 * src/derives.c (print_derives): Likewise.
5528 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
5529 now.
5530
7c6b64d0
AD
55312001-12-29 Akim Demaille <akim@epita.fr>
5532
5533 * src/lalr.c (lookaheads_print): New.
5534 (lalr): Call it when --trace-flag.
5535 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
5536 are dumped.
5537
3d4daee3
AD
55382001-12-29 Akim Demaille <akim@epita.fr>
5539
5540 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
5541 when walking through ritem, even via rule->rhs.
5542 * src/reduce.c (dump_grammar, useful_production, reduce_output)
5543 (useful_production, useless_nonterminals): Likewise.
5544 (reduce_grammar_tables): Likewise, plus update nritems.
5545 * src/nullable.c (set_nullable): Likewise.
5546 * src/lalr.c (build_relations): Likewise.
5547 * tests/sets.at (Nullable): Adjust.
5548 Fortunately, now, the $axiom is no longer nullable.
5549
9e7f6bbd
AD
55502001-12-29 Akim Demaille <akim@epita.fr>
5551
5552 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
5553 the 0-sentinel.
5554 * src/gram.c (ritem_longest_rhs): Likewise.
5555 * src/reduce.c (nonterminals_reduce): Likewise.
5556 * src/print_graph.c (print_graph): Likewise.
5557 * src/output.c (output_rule_data): Likewise.
5558 * src/nullable.c (set_nullable): Likewise.
5559
255ef638
AD
55602001-12-29 Akim Demaille <akim@epita.fr>
5561
5562 * src/output.c: Comment changes.
5563
0d8a7363
AD
55642001-12-27 Paul Eggert <eggert@twinsun.com>
5565
5566 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
5567 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
5568 Sparc, as they were causing more porting problems than the
5569 (minor) performance improvement was worth.
5570
5571 Also, catch up with 1.31's YYSTD.
5572
3db472b9
AD
55732001-12-27 Akim Demaille <akim@epita.fr>
5574
5575 * src/output.c (output_gram): Rely on nritems, not the
5576 0-sentinel. See below.
5577 Use -1 as separator, not 0.
5578 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
5579 Rely on -1 as separator in yyrhs, instead of 0.
5580 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
5581 twice `Now at end of input', therefore there are two lines less to
5582 expect.
5583
b365aa05
AD
55842001-12-27 Akim Demaille <akim@epita.fr>
5585
5586 * tests/regression.at (Unresolved SR Conflicts):
5587 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
5588 below.
5589
30171f79
AD
55902001-12-27 Akim Demaille <akim@epita.fr>
5591
5592 * src/LR0.c (new_state): Recognize the final state by the fact it
5593 is reached by eoftoken.
5594 (insert_start_shifting_state, insert_eof_shifting_state)
5595 (insert_accepting_state, augment_automaton): Remove, since now
5596 these states are automatically computed from the initial state.
5597 (generate_states): Adjust.
5598 * src/print.c: When reporting a rule number to the user, substract
5599 1, so that the axiom rule is rule 0, and the first user rule is 1.
5600 * src/reduce.c: Likewise.
5601 * src/print_graph.c (print_core): For the time being, just as for
5602 the report, depend upon --trace-flags to dump the full set of
5603 items.
5604 * src/reader.c (readgram): Once the grammar read, insert the rule
5605 0: `$axiom: START-SYMBOL $'.
5606 * tests/set.at: Adjust: rule 0 is now displayed, and since the
5607 number of the states has changed (the final state is no longer
5608 necessarily the last), catch up.
5609
75142d45
AD
56102001-12-27 Akim Demaille <akim@epita.fr>
5611
5612 Try to make the use of the eoftoken valid. Given that its value
5613 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
5614 is used instead of > 0 where appropriate, (ii), depend upon nritems
5615 instead of the 0-sentinel.
5616
5617 * src/gram.h, src/gram.c (nritems): New.
5618 Expected to be duplication of nitems, but for the time being...
5619 * src/reader.c (packgram): Assert nritems and nitems are equal.
5620 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
5621 * src/closure.c (print_closure, print_fderives): Likewise.
5622 * src/gram.c (ritem_print): Likewise.
5623 * src/print.c (print_core, print_grammar): Likewise.
5624 * src/print_graph.c: Likewise.
5625
b7c49edf
AD
56262001-12-27 Akim Demaille <akim@epita.fr>
5627
5628 * src/main.c (main): If there are complains after grammar
5629 reductions, then output the report anyway if requested, then die.
5630 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
5631 * src/reader.c (eoftoken): New.
5632 (parse_token_decl): If the token being defined has value `0', it
5633 is the eoftoken.
5634 (packsymbols): No longer hack `tags' to insert `$' by hand.
5635 Be sure to preserve the value of the eoftoken.
5636 (reader): Make sure eoftoken is defined.
5637 Initialize nsyms to 0: now eoftoken is created just like the others.
5638 * src/print.c (print_grammar): Don't special case the eof token.
5639 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
5640 lie anyway, albeit pleasant.
5641 * tests/calc.at: Exercise error messages with eoftoken.
5642 Change the grammar so that empty input is invalid.
5643 Adjust expectations.
5644 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
5645
ec2da99f
AD
56462001-12-27 Akim Demaille <akim@epita.fr>
5647
5648 * configure.in: Check the protos of strchr ans strspn.
5649 Replace strchr if needed.
5650 * src/system.h: Provide the protos of strchr, strspn and memchr if
5651 missing.
5652 * lib/strchr.c: New.
5653 * src/reader.c (symbols_save): Use strchr.
5654
8adfa272
AD
56552001-12-27 Akim Demaille <akim@epita.fr>
5656
5657 * src/print.c, src/print_graph.c (escape): New.
5658 Use it to quote the TAGS outputs.
5659 * src/print_graph.c (print_state): Now errors are in red, and
5660 reductions in green.
5661 Prefer high to wide: output the state number on a line of its own.
5662
80dac38c
AD
56632001-12-27 Akim Demaille <akim@epita.fr>
5664
5665 * src/state.h, src/state.c (reductions_new): New.
5666 * src/LR0.c (set_state_table): Let all the states have a
5667 `reductions', even if reduced to 0.
5668 (save_reductions): Adjust.
5669 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
5670 * src/print.c (print_reductions, print_actions): Adjust.
5671 * src/output.c (action_row): Adjust.
5672
2cec70b9
AD
56732001-12-27 Akim Demaille <akim@epita.fr>
5674
5675 * src/state.h, src/state.c (errs_new, errs_dup): New.
5676 * src/LR0.c (set_state_table): Let all the states have an errs,
5677 even if reduced to 0.
5678 * src/print.c (print_errs, print_reductions): Adjust.
5679 * src/output.c (output_actions, action_row): Adjust.
5680 * src/conflicts.c (resolve_sr_conflict): Adjust.
5681
13ca549a
AD
56822001-12-27 Akim Demaille <akim@epita.fr>
5683
5684 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
5685
5092aba5
AD
56862001-12-27 Akim Demaille <akim@epita.fr>
5687
5688 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
5689 * src/print.c: here.
5690 (lookaheadset, shiftset): New, used as additional storage by
5691 print_reductions.
5692 (print_results): Adjust.
5693 (print_shifts, print_gotos, print_errs): New, extracted from...
5694 (print_actions): here.
5695 * src/print_graph.c (print_actions): Remove dead code.
5696
11e2beca
AD
56972001-12-27 Akim Demaille <akim@epita.fr>
5698
5699 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
5700 `$n' and `@n'.
5701
dac3c910
AD
57022001-12-27 Akim Demaille <akim@epita.fr>
5703
5704 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
5705 (build_relations): Adjust.
5706
d0b0fefa
AD
57072001-12-27 Akim Demaille <akim@epita.fr>
5708
5709 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
5710 duplication.
5711
adc8c848
AD
57122001-12-27 Akim Demaille <akim@epita.fr>
5713
5714 * src/reader.c (packgram): Catch nitems overflows.
5715
14d293ac
AD
57162001-12-27 Akim Demaille <akim@epita.fr>
5717
5718 * src/files.c, src/files.h (guard_obstack): Remove.
5719 * src/output.c (output): Adjust.
5720 * src/reader.c (parse_braces): New, factoring...
5721 (copy_action, copy_guard): these two which are renamed as...
5722 (parse_action, parse_guard): these.
5723 As a voluntary consequence, using braces around guards is now
5724 mandatory.
5725
f499b062
AD
57262001-12-27 Akim Demaille <akim@epita.fr>
5727
5728 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
5729 * src/reader.c (symbol_list): `guard' and `guard_line' are new
5730 members.
5731 (symbol_list_new): Adjust.
5732 (copy_action): action_line is the first line, not the last.
5733 (copy_guard): Just as for actions, store the `action' only, not
5734 the switch/case/break flesh.
5735 Don't parse the user action that might follow the guard, let...
5736 (readgram): do it, i.e., now, there can be an action after a
5737 guard.
5738 In other words the guard is just explicitly optional.
5739 (packgram): Adjust.
5740 * src/output.c (guards_output): New.
5741 (output_parser): Call it when needed.
5742 (output): Also free the guard and attrs obstacks.
5743 * src/files.c, src/files.h (obstack_save): Remove.
5744 (output_files): Remove.
5745 As a result, if one needs the former `.act' file, using an
5746 appropriate skeleton which requires actions and guards is now
5747 required.
5748 * src/main.c (main): Adjust.
5749 * tests/semantic.at: New.
5750 * tests/regression.at: Use `input.y' as input file name.
5751 Avoid 8+3 problems by requiring input.c when the test needs the
5752 parser.
5753
d945f5cd
AD
57542001-12-27 Akim Demaille <akim@epita.fr>
5755
5756 * src/reader.c (symbol_list_new): Be sure to initialize all the
5757 fields.
5758
d200e455
AD
57592001-12-27 Akim Demaille <akim@epita.fr>
5760
5761 All the hacks using a final pseudo state are now useless.
5762
5763 * src/LR0.c (set_state_table): state_table holds exactly nstates.
5764 * src/lalr.c (nLA): New.
5765 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
5766 instead of lookaheadsp from the pseudo state (nstate + 1).
5767
f9507c28
AD
57682001-12-27 Akim Demaille <akim@epita.fr>
5769
5770 * src/output.c (action_row, token_actions): Use a state_t instead
5771 of a integer, and nlookaheads instead of the following state's
5772 lookaheadsp.
5773
065fbd27
AD
57742001-12-27 Akim Demaille <akim@epita.fr>
5775
5776 * src/conflicts.c (log_resolution, flush_shift)
5777 (resolve_sr_conflict, set_conflicts, solve_conflicts)
5778 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
5779 (conflicts_print, print_reductions): Use a state_t instead of an
5780 integer when referring to a state.
5781 As much as possible, depend upon nlookaheads, instead of the
5782 `lookaheadsp' member of the following state (since lookaheads of
5783 successive states are successive, the difference between state n + 1
5784 and n served as the number of lookaheads for state n).
5785 * src/lalr.c (add_lookback_edge): Likewise.
5786 * src/print.c (print_core, print_actions, print_state)
5787 (print_results): Likewise.
5788 * src/print_graph.c (print_core, print_actions, print_state)
5789 (print_graph): Likewise.
5790 * src/conflicts.h: Adjust.
5791
1b177bd7
AD
57922001-12-27 Akim Demaille <akim@epita.fr>
5793
5794 * src/bison.hairy: Formatting/comment changes.
5795 ANSIfy.
5796 Remove `register' indications.
5797 Add plenty of `static'.
5798
7742ddeb
AD
57992001-12-27 Akim Demaille <akim@epita.fr>
5800
5801 * src/output.c (prepare): Drop the muscle `ntbase' which
5802 duplicates ntokens.
5803 * src/bison.simple: Formatting/comment changes.
5804 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
5805 is an undocumented synonym.
5806
1fa14068
AD
58072001-12-22 Akim Demaille <akim@epita.fr>
5808
5809 * src/output.c (output_table_data): Change the prototype to use
5810 `int' for array ranges: some invocations do pass an int, not a
5811 short.
5812 Reported by Wayne Green.
5813
b9752825
AD
58142001-12-22 Akim Demaille <akim@epita.fr>
5815
5816 Some actions of web2c.y are improperly triggered.
5817 Reported by Mike Castle.
5818
5819 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
5820 * tests/regression.at (Web2c): Rename as...
5821 (Web2c Report): this.
5822 (Web2c Actions): New.
5823
776209d6
AD
58242001-12-22 Akim Demaille <akim@epita.fr>
5825
5826 Reductions in web2c.y are improperly reported.
5827 Reported by Mike Castle.
5828
5829 * src/conflicts.c (print_reductions): Fix.
5830 * tests/regression.at (Web2c): New.
5831
275fc3ad
AD
58322001-12-18 Akim Demaille <akim@epita.fr>
5833
5834 Some host fail on `assert (!"foo")', which expands to
5835 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
5836 Reported by Nelson Beebee.
5837
5838 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
5839 `#define it_succeeded 0' and `assert (it_succeeded)'.
5840
897668ee
MA
58412001-12-17 Marc Autret <autret_m@epita.fr>
5842
5843 * src/bison.simple: Don't hard code the skeleton line and filename.
5844 * src/output.c (output_parser): Rename 'line' as 'output_line'.
5845 New line counter 'skeleton_line' (skeleton-line muscle).
5846
ab3399e0
PE
58472001-12-17 Paul Eggert <eggert@twinsun.com>
5848
5849 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
5850 YYDEBUG must be defined to a nonzero value.
5851
5852 * src/bison.simple (yytname): Do not assume that the user defines
5853 YYDEBUG to a properly parenthesized expression.
5854
3877f72b
AD
58552001-12-17 Akim Demaille <akim@epita.fr>
5856
5857 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
5858 nlookaheads is a new member.
5859 Adjust all users.
5860 * src/lalr.h (nlookaheads): Remove this orphan declaration.
5861 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
5862 state.
776209d6 5863
331dbc1b
AD
58642001-12-17 Akim Demaille <akim@epita.fr>
5865
5866 * src/files.h, src/files.c (open_files, close_files): Remove.
5867 * src/main.c (main): Don't open/close files, nor invoke lex_free,
5868 let...
5869 * src/reader.c (reader): Do it.
776209d6 5870
be750e4c
AD
58712001-12-17 Akim Demaille <akim@epita.fr>
5872
5873 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 5874
709ae8c6
AD
58752001-12-17 Akim Demaille <akim@epita.fr>
5876
5877 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
5878 (flush_reduce): New.
5879 (resolve_sr_conflict): Adjust.
776209d6 5880
f87685c3
AD
58812001-12-17 Akim Demaille <akim@epita.fr>
5882
5883 * src/output.c (output_obstack): Be static and rename as...
5884 (format_obstack): this, to avoid any confusion with files.c's
5885 output_obstack.
5886 * src/reader.h (muscle_obstack): Move to...
5887 * src/output.h: here, since it's defined in output.c.
5888
837491d8
AD
58892001-12-17 Akim Demaille <akim@epita.fr>
5890
5891 * src/output.c (action_row, save_column, default_goto)
5892 (sort_actions, matching_state, pack_vector): Better variable
5893 locality.
5894
796d61fb
AD
58952001-12-17 Akim Demaille <akim@epita.fr>
5896
5897 * src/output.c: Various formatting changes.
776209d6 5898
64d15509
AD
58992001-12-17 Akim Demaille <akim@epita.fr>
5900
5901 * src/files.c (output_files): Free the output_obstack.
5902 * src/main.c (main): Call print and print_graph conditionally.
5903 * src/print.c (print): Work unconditionally.
5904 * src/print_graph.c (print_graph): Work unconditionally.
5905 * src/conflicts.c (log_resolution): Output only if verbose_flag.
5906
fbc8ecb7
MA
59072001-12-16 Marc Autret <autret_m@epita.fr>
5908
5909 * src/output.c (actions_output): Fix. When we use %no-lines,
5910 there is one less line per action.
5911
f0440388
MA
59122001-12-16 Marc Autret <autret_m@epita.fr>
5913
5914 * src/bison.simple: Remove a useless #line directive.
5915 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
5916 * src/output.c (get_lines_number): New.
776209d6 5917 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
5918 output muscles.
5919 Fix line numbering.
5920 (actions_output): Computes the number of lines taken by actions.
5921 (output_master_parser): Insert new skeleton which is the name of
5922 the output parser file name.
5923
a79986b8
MA
59242001-12-15 Marc Autret <autret_m@epita.fr>
5925
5926 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
5927
4ec8e00f
MA
59282001-12-15 Marc Autret <autret_m@epita.fr>
5929
5930 * src/output.c (output_gram): Keep track of the hairy one.
5931
1a4648ff
AD
59322001-12-15 Akim Demaille <akim@epita.fr>
5933
5934 Make `make distcheck' work.
5935
5936 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
5937 system.h which uses libgettext.h.
5938
9c2c67e6
AD
59392001-12-15 Akim Demaille <akim@epita.fr>
5940
5941 * src/nullable.c (set_nullable): Useless rules must be skipped,
5942 otherwise, since we range over their symbols, we might look at a
5943 nonterminal which no longer ``exists'', i.e., it is not counted in
5944 `nvars', hence we overflow our arrays.
5945
93ede233
AD
59462001-12-15 Akim Demaille <akim@epita.fr>
5947
5948 The header can also be produced directly, without any obstack!
5949 Yahoo!
5950
5951 * src/files.c, src/files.h (defines_obstack): Remove.
5952 (compute_header_macro): Global.
5953 (defines_obstack_save): Remove.
5954 * src/reader.c (parse_union_decl): No longer output to
5955 defines_obstack: its content can be found in the `stype' muscle
5956 anyway.
5957 (output_token_translations): Merge into...
5958 (symbols_output): this.
5959 Rename as...
5960 (symbols_save): this.
5961 (reader): Adjust.
5962 * src/output.c (header_output): New.
5963 (output): Call it.
5964
2666f928
AD
59652001-12-15 Akim Demaille <akim@epita.fr>
5966
5967 * src/reader.c (parse_union_decl): Instead of handling two obstack
5968 simultaneously, use one to define the `stype' muscle, and use the
5969 value of the latter to fill defines_obstack.
5970 (copy_comment): Remove.
5971 (copy_comment2): Work for a single obstack.
5972 Rename as...
5973 (copy_comment): this.
5974
428046f8
AD
59752001-12-15 Akim Demaille <akim@epita.fr>
5976
5977 * src/lex.c, src/lex.h (xgetc): No longer static.
5978 * src/reader.c (parse_union_decl): Revamp.
5979
ea52d706
AD
59802001-12-15 Akim Demaille <akim@epita.fr>
5981
5982 Still making progress in separating Bison into (i) input, (ii)
5983 process, (iii) output: now we can directly output the parser file
5984 without using table_obstack at all.
5985
5986 * src/files.c, src/files.h (table_obstack): Bye bye.
5987 (parser_file_name): New.
5988 * src/files.c (compute_output_file_names): Compute it.
5989 * src/output.c (actions_output, output_parser)
5990 (output_master_parser): To a file instead of an obstack.
5991
3f96f4dc
AD
59922001-12-15 Akim Demaille <akim@epita.fr>
5993
5994 Attach actions to rules, instead of pre-outputting them to
5995 actions_obstack.
5996
5997 * src/gram.h (rule_t): action and action_line are new members.
5998 * src/reader.c (symbol_list): Likewise.
5999 (copy_action): Save the actions within the rule.
6000 (packgram): Save them in rule_table.
6001 * src/output.c (actions_output): New.
6002 (output_parser): Use it on `%%actions'.
6003 (output_rule_data): Don't free rule_table.
6004 (output): Do it.
6005 (prepare): Don't save the `action' muscle.
6006 * src/bison.simple: s/%%action/%%actions/.
6007
51576fb3
AD
60082001-12-15 Akim Demaille <akim@epita.fr>
6009
6010 * src/reader.c (copy_action): When --yacc, don't append a `;'
6011 to the user action: let it fail if lacking.
dee049eb 6012 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 6013
2648a72d
AD
60142001-12-14 Akim Demaille <akim@epita.fr>
6015
6016 * src/lex.c (literalchar): Simply return the char you decoded, non
6017 longer mess around with obstacks and int pointers.
6018 Adjust all callers.
6019
92790e5b
AD
60202001-12-14 Akim Demaille <akim@epita.fr>
6021
6022 * src/lex.c (literalchar): Don't escape the special characters,
6023 just decode them, and keep them as char (before, eol was output as
6024 the 2 char string `\n' etc.).
6025 * src/output.c (output_rule_data): Use quotearg to output the
6026 token strings.
6027
927c1557
PE
60282001-12-13 Paul Eggert <eggert@twinsun.com>
6029
6030 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
6031 Do not infringe on the global user namespace when using C++.
6032 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
6033 All uses of `fprintf' and `stderr' changed.
6034
6035 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
6036
ed8e1f68
AD
60372001-12-13 Akim Demaille <akim@epita.fr>
6038
6039 The computation of nullable is broken: it doesn't handle empty
6040 RHS's properly.
6041
6042 * tests/torture.at (GNU AWK Grammar): New.
6043 * tests/sets.at (Nullable): New.
6044 * src/nullable.c (set_nullable): Instead of blindly looping over
6045 `ritems', loop over the rules, and then over their rhs's.
6046
6047 Work around Autotest bugs.
6048
6049 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
6050 frame, because Autotest understand lines starting with a `+' as
6051 traces from the shell. Then, they are not processed properly.
6052 Admittedly an Autotest bug, but we don't have time to wait for
6053 Autotest to catch up.
6054 * tests/regression.at (Broken Closure): Adjust to the new table
6055 frames.
6056 Move to...
6057 * tests/sets.at: here.
6058
cb581495
AD
60592001-12-13 Akim Demaille <akim@epita.fr>
6060
6061 * src/closure.c (closure): Use nrules instead of playing tricks
6062 with BITS_PER_WORD.
6063
2e729273
AD
60642001-12-13 Akim Demaille <akim@epita.fr>
6065
6066 * src/print.c (print_actions): Output the handling of `$' as the
6067 traces do: shifting the token EOF. Before EOF was treated as a
6068 nonterminal.
6069 * tests/regression.at: Adjust some tests.
6070 * src/print_graph.c (print_core): Complete the set of items via
6071 closure. The next-to-final and final states are still unsatisfying,
6072 but that's to be addressed elsewhere.
6073 No longer output the rule numbers, but do output the state number.
6074 A single loop for the shifts + gotos is enough, but picked a
6075 distinct color for each.
6076 (print_graph): Initialize and finalize closure.
6077
107f7dfb
AD
60782001-12-13 Akim Demaille <akim@epita.fr>
6079
6080 * src/reader.c (readgram): Remove dead code, an strip useless
6081 braces.
6082 (get_type): Remove, unused.
6083
9b53a24f
AD
60842001-12-12 Akim Demaille <akim@epita.fr>
6085
6086 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
6087 on that of lib/error.c.
6088
dbfb6dcd
AD
60892001-12-12 Akim Demaille <akim@epita.fr>
6090
6091 Some hosts don't like `/' in includes.
6092
6093 * src/system.h: Include libgettext.h without qualifying the path.
6094 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
6095 $(top_srcdir).
6096
c25fb648
MA
60972001-12-11 Marc Autret <autret_m@epita.fr>
6098
6099 * src/output.c (output_parser): Remove useless muscle.
6100
710ddc4f
MA
61012001-12-11 Marc Autret <autret_m@epita.fr>
6102
6103 * src/bison.simple: Remove #line just before %%epilogue. It
6104 is now handled in ...
6105 * src/reader.c (read_additionnal_code): Add the output of a
6106 #line for the epilogue.
6107
e83d80b8
MA
61082001-12-10 Marc Autret <autret_m@epita.fr>
6109
927c1557 6110 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
6111 replace precedent remove.
6112 * src/bison.simple: Remove #line before %%prologue because
6113 %%input-line is wrong at this time.
6114
971d5158
MA
61152001-12-10 Marc Autret <autret_m@epita.fr>
6116
6117 * src/reader.c (symbols_output): Clean up.
927c1557 6118 * src/output.c (output_gram, output): Clean up.
971d5158 6119
5edafffd
AD
61202001-12-10 Akim Demaille <akim@epita.fr>
6121
6122 * src/lalr.c (initialize_lookaheads): New. Extracted from...
6123 * src/LR0.c (set_state_table): here.
6124 * src/lalr.c (lalr): Call it.
6125
0279f8e9
AD
61262001-12-10 Akim Demaille <akim@epita.fr>
6127
6128 * src/state.h (shifts): Remove the `number' member: shifts are
6129 attached to state, hence no longer need to be labelled with a
6130 state number.
6131
190c4f5f
AD
61322001-12-10 Akim Demaille <akim@epita.fr>
6133
6134 Now that states have a complete set of members, the linked list of
6135 shifts is useless: just fill directly the state's shifts member.
6136
6137 * src/state.h (shifts): Remove the `next' member.
6138 * src/LR0.c (first_state, last_state): Remove.
6139 Adjust the callers.
6140 (augment_automaton): Don't look for the shifts that must be added
6141 a shift on EOF: it is those of the state we looked for! But now,
6142 since shifts are attached, it is no longer needed to looking
6143 merely by its id: its number.
6144
2a73b93d
AD
61452001-12-10 Akim Demaille <akim@epita.fr>
6146
6147 * src/LR0.c (augment_automaton): Better variable locality.
6148 Remove an impossible branch: if there is a state corresponding to
6149 the start symbol being shifted, then there is shift for the start
6150 symbol from the initial state.
6151
74392f6a
AD
61522001-12-10 Akim Demaille <akim@epita.fr>
6153
6154 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
6155 only when appropriate: when insert_start_shifting_state' is not
6156 invoked.
6157 * tests/regression.at (Rule Line Numbers): Adjust.
6158
37c82725
AD
61592001-12-10 Akim Demaille <akim@epita.fr>
6160
6161 * src/LR0.c (augment_automaton): Now that all states have shifts,
6162 merge the two cases addition shifts to the initial state.
6163
6a164e0c
AD
61642001-12-10 Akim Demaille <akim@epita.fr>
6165
6166 * src/lalr.c (set_state_table): Move to...
6167 * src/LR0.c: here.
6168 * src/lalr.c (lalr): Don't call it...
6169 * src/LR0.c (generate_states): do it.
6170 * src/LR0.h (first_state): Remove, only the table is used.
6171
7215de24
AD
61722001-12-10 Akim Demaille <akim@epita.fr>
6173
6174 * src/LR0.h (first_shift, first_reduction): Remove.
6175 * src/lalr.c: Don't use first_shift: find shifts through the
6176 states.
6177
80e25d4d
AD
61782001-12-10 Akim Demaille <akim@epita.fr>
6179
6180 * src/LR0.c: Attach shifts to states as soon as they are
6181 computed.
6182 * src/lalr.c (set_state_table): Instead of assigning shifts to
6183 state, just assert that the mapping was properly done.
6184
0ab3728b
AD
61852001-12-10 Akim Demaille <akim@epita.fr>
6186
6187 * src/LR0.c (insert_start_shift): Rename as...
6188 (insert_start_shifting_state): this.
6189 (insert_eof_shifting_state, insert_accepting_state): New.
6190 (augment_automaton): Adjust.
6191 Better locality of the variables.
6192 When looking if the start_symbol is shifted from the initial
6193 state, using `while (... symbol != start_symbol ...)' sounds
6194 better than `while (... symbol < start_symbol ...)': If fail
6195 to see how the order between symbols could be relevant!
6196
78af9bbc
AD
61972001-12-10 Akim Demaille <akim@epita.fr>
6198
6199 * src/getargs.h: Don't declare `spec_name_prefix' and
6200 `spec_file_prefix', declared by src/files.h.
6201 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
6202 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
6203 * src/output.c (prepare): Adjust.
6204 * src/reader.c (symbols_output): Likewise.
6205 * src/vmsgetargs.c: Vaguely adjust, but who cares?
6206
bdef2a41
AD
62072001-12-10 Akim Demaille <akim@epita.fr>
6208
6209 * src/muscle_tab.c (muscle_init): NULL is a better default than
6210 `"0"'.
6211
3735969c
AD
62122001-12-10 Akim Demaille <akim@epita.fr>
6213
6214 * src/reader.c (reader): Calling symbols_output once is enough.
6215
49701457
AD
62162001-12-10 Akim Demaille <akim@epita.fr>
6217
6218 Now that states have a complete set of members, the linked list of
6219 reductions is useless: just fill directly the state's reductions
6220 member.
6221
6222 * src/state.h (struct reductions): Remove member `number' and
6223 `next'.
6224 * src/LR0.c (first_reduction, last_reduction): Remove.
6225 (save_reductions): Don't link the new reductions, store them in
6226 this_state.
6227 * src/lalr.c (set_state_table): No need to attach reductions to
6228 states, it's already done.
6229 * src/output.c (output_actions): No longer free the shifts, then
6230 the reductions, then the states: free all the states and their
6231 members.
6232
0edad749
AD
62332001-12-10 Akim Demaille <akim@epita.fr>
6234
6235 * src/options.c (OPTN, DRTV, BOTH): New.
6236 (option_table): Use them.
6237
0edad749
AD
6238 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
6239 the job of system.h.
6240 * src/options.c: Don't include stdio.h and xalloc.h for the same
6241 reasons.
6242
5449dd0f
AD
62432001-12-10 Akim Demaille <akim@epita.fr>
6244
6245 * src/output.c (output, prepare): Make sure the values of the
6246 muscles `action' and `prologue' are 0-terminated.
6247
a870c567
AD
62482001-12-10 Akim Demaille <akim@epita.fr>
6249
6250 Clean up GCC warnings.
6251
6252 * src/reader.c (copy_action): `buf' is not used.
6253 (parse_skel_decl): Be static.
6254 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
6255 * src/options.h (create_long_option_table): Have a real prototype.
6256 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
6257 (hash_delete_at): Return const void *.
6258 Adjust casts to preserve the const.
6259
80df8768
AD
62602001-12-10 Akim Demaille <akim@epita.fr>
6261
6262 * configure.in: Require 2.52g.
6263 M4 is not needed, but AUTOM4TE is.
6264 * m4/m4.m4: Remove.
6265 * tests/Makefile.am: Adjust.
6266
f693ad14
AD
62672001-12-10 Akim Demaille <akim@epita.fr>
6268
6269 One structure for states is enough, even though theoretically
6270 there are LR(0) states and LALR(1) states.
6271
6272 * src/lalr.h (state_t): Remove.
6273 (state_table): Be state_t **, not state_t *.
6274 * src/state.h (core, CORE_ALLOC): Rename as...
6275 (state_t, STATE_ALLOC): this.
6276 Add the LALR(1) members: shifts, reductions, errs.
6277 * src/LR0.c (state_table): Rename as...
6278 (state_hash): this, to avoid name clashes with the global
6279 `state_table'.
6280 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
6281 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
6282
74ffbcb6
AD
62832001-12-10 Akim Demaille <akim@epita.fr>
6284
6285 Bison dumps core on bash.y.
6286 Reported by Pascal Bart.
6287
6288 * src/warshall.c (bitmatrix_print): New.
6289 (TC): Use it.
6290 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
6291 j must be the outer loop.
6292 * tests/regression.at (Broken Closure): New.
6293
07708e19
AD
62942001-12-05 Akim Demaille <akim@epita.fr>
6295
6296 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
6297 its argument.
6298