]> git.saurik.com Git - bison.git/blame_incremental - ChangeLog
and Akim Demaille <akim@epita.fr>
[bison.git] / ChangeLog
... / ...
CommitLineData
12002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
2 and Akim Demaille <akim@epita.fr>
3
4 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
5 what's left on the stack when the error recovery hits EOF.
6 * tests/actions.at (Destructors): Complete to exercise this case.
7
82002-06-17 Akim Demaille <akim@epita.fr>
9
10 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
11 arguments is really empty, not only equal to `[]'.
12 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
13 member.
14 (symbol_destructor_set): New.
15 * src/output.c (symbol_destructors_output): New.
16 * src/reader.h (brace_code_t, current_braced_code): New.
17 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
18 (handle_dollar): Rename as...
19 (handle_action_dollar): this.
20 (handle_destructor_dollar): New.
21 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
22 (grammar_declaration): Use it.
23 * data/bison.simple (yystos): Is always defined.
24 (yydestructor): New.
25 * tests/actions.at (Destructors): New.
26 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
27
282002-06-17 Akim Demaille <akim@epita.fr>
29
30 * src/symlist.h, src/symlist.c (symbol_list_length): New.
31 * src/scan-gram.l (handle_dollar, handle_at): Compute the
32 rule_length only when needed.
33 * src/output.c (actions_output, token_definitions_output): Output
34 the full M4 block.
35 * src/symtab.c: Don't access directly to the symbol tag, use
36 symbol_tag_get.
37 * src/parse-gram.y: Use symbol_list_free.
38
392002-06-17 Akim Demaille <akim@epita.fr>
40
41 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
42 (symbol_list_prepend, get_type_name): Move to...
43 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
44 (symbol_list_prepend, symbol_list_n_type_name_get): here.
45 Adjust all callers.
46 (symbol_list_free): New.
47 * src/scan-gram.l (handle_dollar): Takes a location.
48 * tests/input.at (Invalid $n): Adjust.
49
502002-06-17 Akim Demaille <akim@epita.fr>
51
52 * src/reader.h, src/reader.c (symbol_list_new): Export it.
53 (symbol_list_prepend): New.
54 * src/parse-gram.y (%union): `list' is a new member.
55 (symbols.1): New, replaces...
56 (terms_to_prec.1, nterms_to_type.1): these.
57 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
58 Take a location as additional argument.
59 Adjust all callers.
60
612002-06-15 Akim Demaille <akim@epita.fr>
62
63 * src/parse-gram.y: Move %token in the declaration section so that
64 we don't depend upon CVS Bison.
65
662002-06-15 Akim Demaille <akim@epita.fr>
67
68 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
69 * src/print.c (print_core): Use it.
70
712002-06-15 Akim Demaille <akim@epita.fr>
72
73 * src/conflicts.c (log_resolution): Accept the rule involved in
74 the sr conflicts instead of the lookahead number that points to
75 that rule.
76 (flush_reduce): Accept the current lookahead vector as argument,
77 instead of the index in LA.
78 (resolve_sr_conflict): Accept the current number of lookahead
79 bitset to consider for the STATE, instead of the index in LA.
80 (set_conflicts): Adjust.
81 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
82
832002-06-15 Akim Demaille <akim@epita.fr>
84
85 * src/state.h (state_t): Replace the `lookaheadsp' member, a
86 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
87 Adjust all dependencies.
88 * src/lalr.c (initialize_lookaheads): Split into...
89 (states_lookaheads_count, states_lookaheads_initialize): these.
90 (lalr): Adjust.
91
922002-06-15 Akim Demaille <akim@epita.fr>
93
94 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
95 out of...
96 (grammar_rules_print): here.
97 * src/reduce.c (reduce_output): Use it.
98 * tests/reduce.at (Useless Rules, Reduced Automaton)
99 (Underivable Rules): Adjust.
100
1012002-06-15 Akim Demaille <akim@epita.fr>
102
103 Copy BYacc's nice way to report the grammar.
104
105 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
106 New.
107 Don't print the rules' location, it is confusing and useless.
108 (rule_print): Use grammar_rhs_print.
109 * src/print.c (print_grammar): Use grammar_rules_print.
110
1112002-06-15 Akim Demaille <akim@epita.fr>
112
113 Complete and rationalize `useless thing' warnings.
114
115 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
116 (symbol_tag_print): New.
117 Use them everywhere in place of accessing directly the tag member.
118 * src/gram.h, src/gram.c (rule_print): New.
119 Use it where a rule used to be printed `by hand'.
120 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
121 (reduce_grammar_tables): Report the useless rules.
122 (reduce_print): Useless things are a warning, not an error.
123 Report it as such.
124 * tests/reduce.at (Useless Nonterminals, Useless Rules):
125 (Reduced Automaton, Underivable Rules): Adjust.
126 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
127 * tests/conflicts.at (Unresolved SR Conflicts)
128 (Solved SR Conflicts): Adjust.
129
1302002-06-15 Akim Demaille <akim@epita.fr>
131
132 Let symbols have a location.
133
134 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
135 (getsym): Adjust.
136 Adjust all callers.
137 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
138 Use location_t, not int.
139 * src/symtab.c (symbol_check_defined): Take advantage of the
140 location.
141 * tests/regression.at (Invalid inputs): Adjust.
142
1432002-06-15 Akim Demaille <akim@epita.fr>
144
145 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
146 (input): Don't try to initialize yylloc here, do it in the
147 scanner.
148 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
149 * src/gram.h (rule_t): Change line and action_line into location
150 and action_location, of location_t type.
151 Adjust all dependencies.
152 * src/location.h, src/location.c (empty_location): New.
153 * src/reader.h, src/reader.c (grammar_start_symbol_set)
154 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
155 (grammar_current_rule_symbol_append)
156 (grammar_current_rule_action_append): Expect a location as argument.
157 * src/reader.c (grammar_midrule_action): Adjust to attach an
158 action's location as dummy symbol location.
159 * src/symtab.h, src/symtab.c (startsymbol_location): New.
160 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
161 the line numbers.
162
1632002-06-14 Akim Demaille <akim@epita.fr>
164
165 Grammar declarations may be found in the grammar section.
166
167 * src/parse-gram.y (rules_or_grammar_declaration): New.
168 (declarations): Each declaration may end with a semicolon, not
169 just...
170 (grammar_declaration): `"%union"'.
171 (grammar): Branch to rules_or_grammar_declaration.
172
1732002-06-14 Akim Demaille <akim@epita.fr>
174
175 * src/main.c (main): Invoke scanner_free.
176
1772002-06-14 Akim Demaille <akim@epita.fr>
178
179 * src/output.c (m4_invoke): Extracted from...
180 (output_skeleton): here.
181 Free tempfile.
182
1832002-06-14 Akim Demaille <akim@epita.fr>
184
185 * src/parse-gram.y (directives, directive, gram)
186 (grammar_directives, precedence_directives, precedence_directive):
187 Rename as...
188 (declarations, declaration, grammar, grammar_declaration)
189 (precedence_declaration, precedence_declarator): these.
190 (symbol_declaration): New.
191
1922002-06-14 Akim Demaille <akim@epita.fr>
193
194 * src/files.c (action_obstack): Remove, unused.
195 (output_obstack): Remove it, and all its dependencies, as it is no
196 longer needed.
197 * src/reader.c (epilogue_set): Build the epilogue in the
198 muscle_obstack.
199 * src/output.h, src/output.c (muscle_obstack): Move to...
200 * src/muscle_tab.h, src/muscle_tab.h: here.
201 (muscle_init): Initialize muscle_obstack.
202 (muscle_free): New.
203 * src/main.c (main): Call it.
204
2052002-06-14 Akim Demaille <akim@epita.fr>
206
207 * src/location.h: New, extracted from...
208 * src/reader.h: here.
209 * src/Makefile.am (noinst_HEADERS): Merge into
210 (bison_SOURCES): this.
211 Add location.h.
212 * src/parse-gram.y: Use location_t instead of Bison's.
213 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
214 Use location_t instead of ints.
215
2162002-06-14 Akim Demaille <akim@epita.fr>
217
218 * data/bison.simple, data/bison.c++: Be sure to restore the
219 current #line when returning to the skeleton contents after having
220 exposed the input file's #line.
221
2222002-06-12 Akim Demaille <akim@epita.fr>
223
224 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
225 eager.
226 * tests/actions.at (Exotic Dollars): New.
227
2282002-06-12 Akim Demaille <akim@epita.fr>
229
230 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
231 ['"/] too eagerly.
232 * tests/input.at (Torturing the Scanner): New.
233
2342002-06-11 Akim Demaille <akim@epita.fr>
235
236 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
237 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
238 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
239 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
240 * src/reader.c (reader): Use it.
241
2422002-06-11 Akim Demaille <akim@epita.fr>
243
244 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
245 Adjust all callers.
246 (scanner_last_string_free): New.
247
2482002-06-11 Akim Demaille <akim@epita.fr>
249
250 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
251 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
252 (last_string, YY_OBS_FREE): New.
253 Use them when returning an ID.
254
2552002-06-11 Akim Demaille <akim@epita.fr>
256
257 Have Bison grammars parsed by a Bison grammar.
258
259 * src/reader.c, src/reader.h (prologue_augment): New.
260 * src/reader.c (copy_definition): Remove.
261
262 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
263 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
264 (grammar_current_rule_prec_set, grammar_current_rule_check)
265 (grammar_current_rule_symbol_append)
266 (grammar_current_rule_action_append): Export.
267 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
268 (symbol_list_action_append): Remove.
269 Hook the routines from reader.
270 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
271 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
272
273 * src/reader.c (read_declarations): Remove, unused.
274
275 * src/parse-gram.y: Handle the epilogue.
276 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
277 (grammar_start_symbol_set): this.
278 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
279 * src/reader.c (readgram): Remove, unused.
280 (reader): Adjust to insert eoftoken and axiom where appropriate.
281
282 * src/reader.c (copy_dollar): Replace with...
283 * src/scan-gram.h (handle_dollar): this.
284 * src/parse-gram.y: Remove `%thong'.
285
286 * src/reader.c (copy_at): Replace with...
287 * src/scan-gram.h (handle_at): this.
288
289 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
290 New.
291
292 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
293 time being.
294
295 * src/reader.h, src/reader.c (grammar_rule_end): New.
296
297 * src/parse.y (current_type, current_class): New.
298 Implement `%nterm', `%token' support.
299 Merge `%term' into `%token'.
300 (string_as_id): New.
301 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
302 type name.
303
304 * src/parse-gram.y: Be sure to handle properly the beginning of
305 rules.
306
307 * src/parse-gram.y: Handle %type.
308 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
309
310 * src/parse-gram.y: More directives support.
311 * src/options.c: No longer handle source directives.
312
313 * src/parse-gram.y: Fix %output.
314
315 * src/parse-gram.y: Handle %union.
316 Use the prologue locations.
317 * src/reader.c (parse_union_decl): Remove.
318
319 * src/reader.h, src/reader.c (epilogue_set): New.
320 * src/parse-gram.y: Use it.
321
322 * data/bison.simple, data/bison.c++: b4_stype is now either not
323 defined, then default to int, or to the contents of %union,
324 without `union' itself.
325 Adjust.
326 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
327
328 * src/output.c (actions_output): Don't output braces, as they are
329 already handled by the scanner.
330
331 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
332 characters to themselves.
333
334 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
335 that the epilogue has a proper #line.
336
337 * src/parse-gram.y: Handle precedence/associativity.
338
339 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
340 a terminal.
341 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
342 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
343 at all to define terminals that cannot be emitted.
344
345 * src/scan-gram.l: Escape M4 characters.
346
347 * src/scan-gram.l: Working properly with escapes in user
348 strings/characters.
349
350 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
351 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
352 grammar.
353 Use more modest sizes, as for the time being the parser does not
354 release memory, and therefore the process swallows a huge amount
355 of memory.
356
357 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
358 stricter %token grammar.
359
360 * src/symtab.h (associativity): Add `undef_assoc'.
361 (symbol_precedence_set): Do nothing when passed an undef_assoc.
362 * src/symtab.c (symbol_check_alias_consistence): Adjust.
363
364 * tests/regression.at (Invalid %directive): Remove, as it is now
365 meaningless.
366 (Invalid inputs): Adjust to the new error messages.
367 (Token definitions): The new grammar doesn't allow too many
368 eccentricities.
369
370 * src/lex.h, src/lex.c: Remove.
371 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
372 (copy_character, copy_string2, copy_string, copy_identifier)
373 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
374 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
375 (parse_action): Remove.
376 * po/POTFILES.in: Adjust.
377
3782002-06-11 Akim Demaille <akim@epita.fr>
379
380 * src/reader.c (parse_action): Don't store directly into the
381 rule's action member: return the action as a string.
382 Don't require `rule_length' as an argument: compute it.
383 (grammar_current_rule_symbol_append)
384 (grammar_current_rule_action_append): New, eved out from
385 (readgram): here.
386 Remove `action_flag', `rulelength', unused now.
387
3882002-06-11 Akim Demaille <akim@epita.fr>
389
390 * src/reader.c (grammar_current_rule_prec_set).
391 (grammar_current_rule_check): New, eved out from...
392 (readgram): here.
393 Remove `xaction', `first_rhs': useless.
394 * tests/input.at (Type clashes): New.
395 * tests/existing.at (GNU Cim Grammar): Adjust.
396
3972002-06-11 Akim Demaille <akim@epita.fr>
398
399 * src/reader.c (grammar_midrule_action): New, Eved out from
400 (readgram): here.
401
4022002-06-11 Akim Demaille <akim@epita.fr>
403
404 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
405 New.
406 (readgram): Use them as replacement of inlined code, crule and
407 crule1.
408
4092002-06-11 Akim Demaille <akim@epita.fr>
410
411 * src/reader.c (grammar_end, grammar_symbol_append): New.
412 (readgram): Use them.
413 Make the use of `p' as local as possible.
414
4152002-06-10 Akim Demaille <akim@epita.fr>
416
417 GCJ's parser requires the tokens to be defined before the prologue.
418
419 * data/bison.simple: Output the token definition before the user's
420 prologue.
421 * tests/regression.at (Braces parsing, Duplicate string)
422 (Mixing %token styles): Check the output from bison.
423 (Early token definitions): New.
424
4252002-06-10 Akim Demaille <akim@epita.fr>
426
427 * src/symtab.c (symbol_user_token_number_set): Don't complain when
428 assigning twice the same user number to a token, so that we can
429 use it in...
430 * src/lex.c (lex): here.
431 Also use `symbol_class_set' instead of hand written code.
432 * src/reader.c (parse_assoc_decl): Likewise.
433
4342002-06-10 Akim Demaille <akim@epita.fr>
435
436 * src/symtab.c, src/symtab.c (symbol_class_set)
437 (symbol_user_token_number_set): New.
438 * src/reader.c (parse_token_decl): Use them.
439 Use a switch instead of ifs.
440 Use a single argument.
441
4422002-06-10 Akim Demaille <akim@epita.fr>
443
444 Remove `%thong' support as it is undocumented, unused, duplicates
445 `%token's job, and creates useless e-mail traffic with people who
446 want to know what it is, why it is undocumented, unused, and
447 duplicates `%token's job.
448
449 * src/reader.c (parse_thong_decl): Remove.
450 * src/options.c (option_table): Remove "thong".
451 * src/lex.h (tok_thong): Remove.
452
4532002-06-10 Akim Demaille <akim@epita.fr>
454
455 * src/symtab.c, src/symtab.c (symbol_type_set)
456 (symbol_precedence_set): New.
457 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
458 (value_components_used): Remove, unused.
459
4602002-06-09 Akim Demaille <akim@epita.fr>
461
462 Move symbols handling code out of the reader.
463
464 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
465 (axiom): Move to...
466 * src/symtab.h, src/symtab.c: here.
467
468 * src/gram.c (start_symbol): Remove: use startsymbol->number.
469 * src/reader.c (startval): Rename as...
470 * src/symtab.h, src/symtab.c (startsymbol): this.
471 * src/reader.c: Adjust.
472
473 * src/reader.c (symbol_check_defined, symbol_make_alias)
474 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
475 (token_translations_init)
476 Move to...
477 * src/symtab.c: here.
478 * src/reader.c (packsymbols): Move to...
479 * src/symtab.h, src/symtab.c (symbols_pack): here.
480 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
481 argument.
482
4832002-06-03 Akim Demaille <akim@epita.fr>
484
485 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
486 then statements.
487
4882002-06-03 Akim Demaille <akim@epita.fr>
489
490 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
491 structs with non literals.
492 * src/scan-skel.l: never-interactive.
493 * src/conflicts.c (enum conflict_resolution_e): No trailing
494 comma.
495 * src/getargs.c (usage): Split long literal strings.
496 Reported by Hans Aberg.
497
4982002-05-28 Akim Demaille <akim@epita.fr>
499
500 * data/bison.c++: Use C++ ostreams.
501 (cdebug_): New member.
502
5032002-05-28 Akim Demaille <akim@epita.fr>
504
505 * src/output.c (output_skeleton): Be sure to allocate enough room
506 for `/' _and_ for `\0' in full_skeleton.
507
5082002-05-28 Akim Demaille <akim@epita.fr>
509
510 * data/bison.c++: Catch up with bison.simple:
511 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
512 and Paul Eggert <eggert@twinsun.com>: `error' handing.
513 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
514 and popping traces.
515
5162002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
517
518 * src/output.c (output_skeleton): Put an explicit path in front of
519 the skeleton file name, rather than relying on the -I directory,
520 to partially alleviate effects of having a skeleton file lying around
521 in the current directory.
522
5232002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
524
525 * src/conflicts.c (log_resolution): Correct typo:
526 obstack_printf should be obstack_fgrow1.
527
5282002-05-26 Akim Demaille <akim@epita.fr>
529
530 * src/state.h (state_t): `solved_conflicts' is a new member.
531 * src/LR0.c (new_state): Set it to 0.
532 * src/conflicts.h, src/conflicts.c (print_conflicts)
533 (free_conflicts, solve_conflicts): Rename as...
534 (conflicts_print, conflicts_free, conflicts_solve): these.
535 Adjust callers.
536 * src/conflicts.c (enum conflict_resolution_e)
537 (solved_conflicts_obstack): New, used by...
538 (log_resolution): this.
539 Adjust to attach the conflict resolution to each state.
540 Complete the description with the precedence/associativity
541 information.
542 (resolve_sr_conflict): Adjust.
543 * src/print.c (print_state): Output its solved_conflicts.
544 * tests/conflicts.at (Unresolved SR Conflicts)
545 (Solved SR Conflicts): Exercise --report=all.
546
5472002-05-26 Akim Demaille <akim@epita.fr>
548
549 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
550 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
551 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
552 (token_number_t, item_number_as_token_number)
553 (token_number_as_item_number, muscle_insert_token_number_table):
554 Rename as...
555 (symbol_number_t, item_number_as_symbol_number)
556 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
557 these, since it is more appropriate.
558
5592002-05-26 Akim Demaille <akim@epita.fr>
560
561 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
562 `Error:' lines.
563 * data/bison.simple (yystos) [YYDEBUG]: New.
564 (yyparse) [YYDEBUG]: Display the symbols which are popped during
565 error recovery.
566 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
567
5682002-05-25 Akim Demaille <akim@epita.fr>
569
570 * doc/bison.texinfo (Debugging): Split into...
571 (Tracing): this new section, its former contents, and...
572 (Understanding): this new section.
573 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
574 by...
575 (report_flag): this.
576 Adjust all dependencies.
577 (report_args, report_types, report_argmatch): New.
578 (usage, getargs): Report/support -r, --report.
579 * src/options.h
580 (struct option_table_struct): Rename as..,
581 (struct option_table_s): this.
582 Rename the `set_flag' member to `flag' to match with getopt_long's
583 struct.
584 * src/options.c (option_table): Split verbose into an entry for
585 %verbose, and another for --verbose.
586 Support --report/-r, so remove -r from the obsolete --raw.
587 * src/print.c: Attach full item sets and lookaheads reports to
588 report_flag instead of trace_flag.
589 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
590
5912002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
592 and Paul Eggert <eggert@twinsun.com>
593
594 * data/bison.simple (yyparse): Correct error handling to conform to
595 POSIX and yacc. Specifically, after syntax error is discovered,
596 do not reduce further before shifting the error token.
597 Clean up the code a bit by removing the labels yyerrdefault,
598 yyerrhandle, yyerrpop.
599 * NEWS: Document the above.
600
6012002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
602
603 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
604 type; it isn't always big enough, since it doesn't necessarily
605 include non-terminals.
606 (yytranslate): Expand definition of yy_token_number_type, so that
607 the latter can be removed.
608 (yy_token_number_type): Remove, only one use.
609 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
610 don't use TokenNumberType as element type.
611
612 * tests/regression.at: Modify expected output to agree with change
613 to yyr1 and yytranslate.
614
6152002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
616
617 * src/reader.c (parse_action): Use copy_character instead of
618 obstack_1grow.
619
6202002-05-13 Akim Demaille <akim@epita.fr>
621
622 * tests/regression.at (Token definitions): Prototype yylex and
623 yyerror.
624
6252002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
626
627 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
628 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
629 32-bit arithmetic.
630 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
631
6322002-05-07 Akim Demaille <akim@epita.fr>
633
634 * tests/synclines.at: Be sure to prototype yylex and yyerror to
635 avoid GCC warnings.
636
6372002-05-07 Akim Demaille <akim@epita.fr>
638
639 Kill GCC warnings.
640
641 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
642 over the RHS of each rule.
643 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
644 * src/state.h (state_t): Member `nitems' is unsigned short.
645 * src/LR0.c (get_state): Adjust.
646 * src/reader.c (packgram): Likewise.
647 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
648 `Type'.
649 (muscle_insert_int_table): Remove, unused.
650 (prepare_rules): Remove `max'.
651
6522002-05-06 Akim Demaille <akim@epita.fr>
653
654 * src/closure.c (print_firsts): Display of the symbol tags.
655 (bitmatrix_print): Move to...
656 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
657 here.
658 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
659
6602002-05-06 Akim Demaille <akim@epita.fr>
661
662 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
663 hash_do_for_each.
664
6652002-05-06 Akim Demaille <akim@epita.fr>
666
667 * src/LR0.c (new_state, get_state): Instead of using the global
668 `kernel_size' and `kernel_base', have two new arguments:
669 `core_size' and `core'.
670 Adjust callers.
671
6722002-05-06 Akim Demaille <akim@epita.fr>
673
674 * src/reader.c (packgram): No longer end `ritem' with a 0
675 sentinel: it is not used.
676
6772002-05-05 Akim Demaille <akim@epita.fr>
678
679 New experimental feature: display the lookaheads in the report and
680 graph.
681
682 * src/print (print_core): When --trace-flag, display the rules
683 lookaheads.
684 * src/print_graph.c (print_core): Likewise.
685 Swap the arguments.
686 Adjust caller.
687
6882002-05-05 Akim Demaille <akim@epita.fr>
689
690 * tests/torture.at (Many lookaheads): New test.
691
6922002-05-05 Akim Demaille <akim@epita.fr>
693
694 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
695 (GENERATE_MUSCLE_INSERT_TABLE): this.
696 (output_int_table, output_unsigned_int_table, output_short_table)
697 (output_token_number_table, output_item_number_table): Replace with...
698 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
699 (muscle_insert_short_table, muscle_insert_token_number_table)
700 (muscle_insert_item_number_table): these.
701 Adjust all callers.
702 (prepare_tokens): Don't free `translations', since...
703 * src/reader.h, src/reader.c (grammar_free): do it.
704 Move to...
705 * src/gram.h, src/gram.c (grammar_free): here.
706 * data/bison.simple, data/bison.c++: b4_token_number_max is now
707 b4_translate_max.
708
7092002-05-05 Akim Demaille <akim@epita.fr>
710
711 * src/output.c (output_unsigned_int_table): New.
712 (prepare_rules): `i' is unsigned.
713 `prhs', `rline', `r2' are unsigned int.
714 Rename muscle `rhs_number_max' as `rhs_max'.
715 Output muscles `prhs_max', `rline_max', and `r2_max'.
716 Free rline and r1.
717 * data/bison.simple, data/bison.c++: Adjust to use these muscles
718 to compute types instead of constant types.
719 * tests/regression.at (Web2c Actions): Adjust.
720
7212002-05-04 Akim Demaille <akim@epita.fr>
722
723 * src/symtab.h (SALIAS, SUNDEF): Rename as...
724 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
725 Adjust dependencies.
726 * src/output.c (token_definitions_output): Be sure not to output a
727 `#define 'a'' when fed with `%token 'a' "a"'.
728 * tests/regression.at (Token definitions): New.
729
7302002-05-03 Paul Eggert <eggert@twinsun.com>
731
732 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
733 for K&R C.
734
7352002-05-03 gettextize <bug-gnu-gettext@gnu.org>
736
737 * Makefile.am (SUBDIRS): Remove intl.
738 (EXTRA_DIST): Add config/config.rpath.
739
7402002-05-03 Akim Demaille <akim@epita.fr>
741
742 * data/bison.simple (m4_if): Don't output empty enums.
743 And actually, output valid enum definitions :(.
744
7452002-05-03 Akim Demaille <akim@epita.fr>
746
747 * configure.bat: Remove, completely obsolete.
748 * Makefile.am (EXTRA_DIST): Adjust.
749 Don't distribute config.rpath...
750 * config/Makefile.am (EXTRA_DIST): Do it.
751
7522002-05-03 Akim Demaille <akim@epita.fr>
753
754 * configure.in (GETTEXT_VERSION): New.
755 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
756
7572002-05-03 Akim Demaille <akim@epita.fr>
758
759 * data/bison.simple (b4_token_enum): New.
760 (b4_token_defines): Use it to output tokens both as #define and
761 enums.
762 Suggested by Paul Eggert.
763 * src/output.c (token_definitions_output): Don't output spurious
764 white spaces.
765
7662002-05-03 Akim Demaille <akim@epita.fr>
767
768 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
769
7702002-05-02 Robert Anisko <robert@lrde.epita.fr>
771
772 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
773 Update the stack class, give a try to deque as the default container.
774
7752002-05-02 Akim Demaille <akim@epita.fr>
776
777 * data/bison.simple (yyparse): Do not implement @$ = @1.
778 (YYLLOC_DEFAULT): Adjust to do it.
779 * doc/bison.texinfo (Location Default Action): Fix.
780
7812002-05-02 Akim Demaille <akim@epita.fr>
782
783 * src/reader.c (parse_braces): Merge into...
784 (parse_action): this.
785
7862002-05-02 Akim Demaille <akim@epita.fr>
787
788 * configure.in (ALL_LINGUAS): Remove.
789 * po/LINGUAS, hr.po: New.
790
7912002-05-02 Akim Demaille <akim@epita.fr>
792
793 Remove the so called hairy (semantic) parsers.
794
795 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
796 * src/gram.h, src/gram.c (semantic_parser): Remove.
797 (rule_t): Remove the guard and guard_line members.
798 * src/lex.h (token_t): remove tok_guard.
799 * src/options.c (option_table): Remove %guard and %semantic_parser
800 support.
801 * src/output.c, src/output.h (guards_output): Remove.
802 (prepare): Adjust.
803 (token_definitions_output): Don't output the `T'
804 tokens (???).
805 (output_skeleton): Don't output the guards.
806 * src/files.c, src/files.c (attrsfile): Remove.
807 * src/reader.c (symbol_list): Remove the guard and guard_line
808 members.
809 Adjust dependencies.
810 (parse_guard): Remove.
811 * data/bison.hairy: Remove.
812 * doc/bison.texinfo (Environment Variables): Remove occurrences of
813 BISON_HAIRY.
814
8152002-05-02 Akim Demaille <akim@epita.fr>
816
817 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
818 (parse_guard): Rename the formal argument `stack_offset' as
819 `rule_length', which is more readable.
820 Adjust callers.
821 (copy_at, copy_dollar): Instead of outputting the hard coded
822 values of $$, $n and so forth, output invocation to b4_lhs_value,
823 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
824 Note: this patch partially drops `semantic-parser' support: it
825 always does `rule_length - n', where semantic parsers ought to
826 always use `-n'.
827 * data/bison.simple, data/bison.c++ (b4_lhs_value)
828 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
829
8302002-05-02 Akim Demaille <akim@epita.fr>
831
832 * configure.in (AC_INIT): Bump to 1.49b.
833 (AM_INIT_AUTOMAKE): Short invocation.
834
8352002-05-02 Akim Demaille <akim@epita.fr>
836
837 Version 1.49a.
838
8392002-05-01 Akim Demaille <akim@epita.fr>
840
841 * src/skeleton.h: Remove.
842
8432002-05-01 Akim Demaille <akim@epita.fr>
844
845 * src/skeleton.h: Fix the #endif.
846 Reported by Magnus Fromreide.
847
8482002-04-26 Paul Eggert <eggert@twinsun.com>
849
850 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
851 Define if we define YYSTYPE and YYLTYPE, respectively.
852 (YYCOPY): Fix [] quoting problem in the non-GCC case.
853
8542002-04-25 Robert Anisko <robert@lrde.epita.fr>
855
856 * src/scan-skel.l: Postprocess quadrigraphs.
857
858 * src/reader.c (copy_character): New function, used to output
859 single characters while replacing `[' and `]' with quadrigraphs, to
860 avoid troubles with M4 quotes.
861 (copy_comment): Output characters with copy_character.
862 (read_additionnal_code): Likewise.
863 (copy_string2): Likewise.
864 (copy_definition): Likewise.
865
866 * tests/calc.at: Exercise M4 quoting.
867
8682002-04-25 Akim Demaille <akim@epita.fr>
869
870 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
871 between `!' and the command.
872 Reported by Paul Eggert.
873
8742002-04-24 Robert Anisko <robert@lrde.epita.fr>
875
876 * tests/calc.at: Exercise prologue splitting.
877
878 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
879 `b4_post_prologue' instead of `b4_prologue'.
880
881 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
882 muscles.
883 (output): Free pre_prologue_obstack and post_prologue_obstack.
884 * src/files.h, src/files.c (attrs_obstack): Remove.
885 (pre_prologue_obstack, post_prologue_obstack): New.
886 * src/reader.c (copy_definition): Add a parameter to specify the
887 obstack to fill, instead of using attrs_obstack unconditionally.
888 (read_declarations): Pass pre_prologue_obstack to copy_definition if
889 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
890
8912002-04-23 Paul Eggert <eggert@twinsun.com>
892
893 * data/bison.simple: Remove unnecessary commentary and white
894 space differences from 1_29-branch.
895 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
896
897 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
898 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
899 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
900 constructors or destructors.
901
902 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
903
9042002-04-23 Akim Demaille <akim@epita.fr>
905
906 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
907 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
908 location with columns.
909 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
910 All reported by Paul Eggert.
911
9122002-04-22 Akim Demaille <akim@epita.fr>
913
914 * src/reduce.c (dump_grammar): Move to...
915 * src/gram.h, src/gram.c (grammar_dump): here.
916 Be sure to separate long item numbers.
917 Don't read the members of a rule's prec if its nil.
918
9192002-04-22 Akim Demaille <akim@epita.fr>
920
921 * src/output.c (table_size, table_grow): New.
922 (MAXTABLE): Remove, replace uses with table_size.
923 (pack_vector): Instead of dying when the table is too big, grow it.
924
9252002-04-22 Akim Demaille <akim@epita.fr>
926
927 * data/bison.simple (yyr1): Its type is that of a token number.
928 * data/bison.c++ (r1_): Likewise.
929 * tests/regression.at (Web2c Actions): Adjust.
930
9312002-04-22 Akim Demaille <akim@epita.fr>
932
933 * src/reader.c (token_translations_init): 256 is now the default
934 value for the error token, i.e., it will be assigned another
935 number if the user assigned 256 to one of her tokens.
936 (reader): Don't force 256 to error.
937 * doc/bison.texinfo (Symbols): Adjust.
938 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
939 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
940 etc. instead of 10, 20, 30 (which was used to `jump' over error
941 (256) and undefined (2)).
942
9432002-04-22 Akim Demaille <akim@epita.fr>
944
945 Propagate more token_number_t.
946
947 * src/gram.h (token_number_as_item_number)
948 (item_number_as_token_number): New.
949 * src/output.c (GENERATE_OUTPUT_TABLE): New.
950 Use it to create output_item_number_table and
951 output_token_number_table.
952 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
953 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
954 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
955 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
956
9572002-04-22 Akim Demaille <akim@epita.fr>
958
959 * src/output.h, src/output.c (get_lines_number): Remove.
960
9612002-04-19 Akim Demaille <akim@epita.fr>
962
963 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
964 as Lex/Flex'.
965 (Debugging): More details about enabling the debugging features.
966 (Table of Symbols): Describe $$, $n, @$, and @n.
967 Suggested by Tim Josling.
968
9692002-04-19 Akim Demaille <akim@epita.fr>
970
971 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
972
9732002-04-10 Akim Demaille <akim@epita.fr>
974
975 * src/system.h: Rely on HAVE_LIMITS_H.
976 Suggested by Paul Eggert.
977
9782002-04-09 Akim Demaille <akim@epita.fr>
979
980 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
981 full stderr, and strip it according to the bison options, instead
982 of composing the error message from different bits.
983 This makes it easier to check for several error messages.
984 Adjust all the invocations.
985 Add an invocation exercising the error token.
986 Add an invocation demonstrating a stupid error message.
987 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
988 Adjust the tests.
989 Error message are for stderr, not stdout.
990
9912002-04-09 Akim Demaille <akim@epita.fr>
992
993 * src/gram.h, src/gram.c (error_token_number): Remove, use
994 errtoken->number.
995 * src/reader.c (reader): Don't specify the user token number (2)
996 for $undefined, as it uselessly prevents using it.
997 * src/gram.h (token_number_t): Move to...
998 * src/symtab.h: here.
999 (state_t.number): Is a token_number_t.
1000 * src/print.c, src/reader.c: Use undeftoken->number instead of
1001 hard coded 2.
1002 (Even though this 2 is not the same as above: the number of the
1003 undeftoken remains being 2, it is its user token number which
1004 might not be 2).
1005 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
1006 `user_token_number_max'.
1007 Output `undef_token_number'.
1008 * data/bison.simple, data/bison.c++: Use them.
1009 Be sure to map invalid yylex return values to
1010 `undef_token_number'. This saves us from gratuitous SEGV.
1011
1012 * tests/conflicts.at (Solved SR Conflicts)
1013 (Unresolved SR Conflicts): Adjust.
1014 * tests/regression.at (Web2c Actions): Adjust.
1015
10162002-04-08 Akim Demaille <akim@epita.fr>
1017
1018 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
1019 Adding #line.
1020 Remove the duplicate `typedefs'.
1021 (RhsNumberType): Fix the declaration and various other typos.
1022 Use __ofile__.
1023 * data/bison.simple: Use __ofile__.
1024 * src/scan-skel.l: Handle __ofile__.
1025
10262002-04-08 Akim Demaille <akim@epita.fr>
1027
1028 * src/gram.h (item_number_t): New, the type of item numbers in
1029 RITEM. Note that it must be able to code symbol numbers as
1030 positive number, and the negation of rule numbers as negative
1031 numbers.
1032 Adjust all dependencies (pretty many).
1033 * src/reduce.c (rule): Remove this `short *' pointer: use
1034 item_number_t.
1035 * src/system.h (MINSHORT, MAXSHORT): Remove.
1036 Include `limits.h'.
1037 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
1038 (shortcpy): Remove.
1039 (MAXTABLE): Move to...
1040 * src/output.c (MAXTABLE): here.
1041 (prepare_rules): Use output_int_table to output rhs.
1042 * data/bison.simple, data/bison.c++: Adjust.
1043 * tests/torture.at (Big triangle): Move the limit from 254 to
1044 500.
1045 * tests/regression.at (Web2c Actions): Ajust.
1046
1047 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
1048 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
1049 passes, but produces negative #line number, once fixed, GCC is
1050 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
1051 C), it passes.
1052 * src/state.h (state_h): Code input lines on ints, not shorts.
1053
10542002-04-08 Akim Demaille <akim@epita.fr>
1055
1056 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
1057 and then the grammar.
1058
10592002-04-08 Akim Demaille <akim@epita.fr>
1060
1061 * src/system.h: No longer using strndup.
1062
10632002-04-07 Akim Demaille <akim@epita.fr>
1064
1065 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
1066 * src/output.c (output_table_data): Return the longest number.
1067 (prepare_tokens): Output `token_number_max').
1068 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
1069 New.
1070 Use them to define yy_token_number_type/TokenNumberType.
1071 Use this type for yytranslate.
1072 * tests/torture.at (Big triangle): Push the limit from 124 to
1073 253.
1074 * tests/regression.at (Web2c Actions): Adjust.
1075
10762002-04-07 Akim Demaille <akim@epita.fr>
1077
1078 * tests/torture.at (Big triangle): New.
1079 (GNU AWK Grammar, GNU Cim Grammar): Move to...
1080 * tests/existing.at: here.
1081
10822002-04-07 Akim Demaille <akim@epita.fr>
1083
1084 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
1085 nritems.
1086 Adjust dependencies.
1087
10882002-04-07 Akim Demaille <akim@epita.fr>
1089
1090 * src/reader.c: Normalize increments to prefix form.
1091
10922002-04-07 Akim Demaille <akim@epita.fr>
1093
1094 * src/reader.c, symtab.c: Remove debugging code.
1095
10962002-04-07 Akim Demaille <akim@epita.fr>
1097
1098 Rename all the `bucket's as `symbol_t'.
1099
1100 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
1101 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
1102 * src/symtab.c, src/symtab.h (bucket): Rename as...
1103 (symbol_t): this.
1104 (symbol_list_new, bucket_check_defined, bucket_make_alias)
1105 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
1106 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
1107 (buckets_new, buckets_free, buckets_do): Rename as...
1108 (symbol_list_new, symbol_check_defined, symbol_make_alias)
1109 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
1110 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
1111 (symbols_new, symbols_free, symbols_do): these.
1112
11132002-04-07 Akim Demaille <akim@epita.fr>
1114
1115 Use lib/hash for the symbol table.
1116
1117 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
1118 EOF.
1119 * src/lex.c (lex): Set the `number' member of new terminals.
1120 * src/reader.c (bucket_check_defined, bucket_make_alias)
1121 (bucket_check_alias_consistence, bucket_translation): New.
1122 (reader, grammar_free, readgram, token_translations_init)
1123 (packsymbols): Adjust.
1124 (reader): Number the predefined tokens.
1125 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
1126 for predefined tokens.
1127 * src/symtab.h (bucket): Remove all the hash table related
1128 members.
1129 * src/symtab.c (symtab): Replace by...
1130 (bucket_table): this.
1131 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
1132 (buckets_new, buckets_do): New.
1133
11342002-04-07 Akim Demaille <akim@epita.fr>
1135
1136 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
1137 (start_symbol, max_user_token_number, semantic_parser)
1138 (error_token_number): Initialize.
1139 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
1140 Initialize.
1141 (reader): Don't.
1142 (errtoken, eoftoken, undeftoken, axiom): Extern.
1143
11442002-04-07 Akim Demaille <akim@epita.fr>
1145
1146 * src/gram.h (rule_s): prec and precsym are now pointers
1147 to the bucket giving the priority/associativity.
1148 Member `associativity' removed: useless.
1149 * src/reduce.c, src/conflicts.c: Adjust.
1150
11512002-04-07 Akim Demaille <akim@epita.fr>
1152
1153 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
1154 Properly escape the symbols' TAG when outputting them.
1155
11562002-04-07 Akim Demaille <akim@epita.fr>
1157
1158 * src/lalr.h (LA): Is a bitsetv, not bitset*.
1159
11602002-04-07 Akim Demaille <akim@epita.fr>
1161
1162 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
1163 (LArule): this, which is an array to rule_t*.
1164 * src/print.c, src/conflicts.c: Adjust.
1165
11662002-04-07 Akim Demaille <akim@epita.fr>
1167
1168 * src/gram.h (rule_t): Rename `number' as `user_number'.
1169 `number' is a new member.
1170 Adjust dependencies.
1171 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
1172
11732002-04-07 Akim Demaille <akim@epita.fr>
1174
1175 As a result of the previous patch, it is no longer needed
1176 to reorder ritem itself.
1177
1178 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
1179
11802002-04-07 Akim Demaille <akim@epita.fr>
1181
1182 Be sure never to walk through RITEMS, but use only data related to
1183 the rules themselves. RITEMS should be banished.
1184
1185 * src/output.c (output_token_translations): Rename as...
1186 (prepare_tokens): this.
1187 In addition to `translate', prepare the muscles `tname' and
1188 `toknum', which were handled by...
1189 (output_rule_data): this.
1190 Remove, and move the remainder of its outputs into...
1191 (prepare_rules): this new routines, which also merges content from
1192 (output_gram): this.
1193 (prepare_rules): Be sure never to walk through RITEMS.
1194 (output_stos): Rename as...
1195 (prepare_stos): this.
1196 (output): Always invoke prepare_states, after all, just don't use it
1197 in the output if you don't need it.
1198
11992002-04-07 Akim Demaille <akim@epita.fr>
1200
1201 * src/LR0.c (new_state): Display `nstates' as the name of the
1202 newly created state.
1203 Adjust to initialize first_state and last_state if needed.
1204 Be sure to distinguish the initial from the final state.
1205 (new_states): Create the itemset of the initial state, and use
1206 new_state.
1207 * src/closure.c (closure): Now that the initial state has its
1208 items properly set, there is no need for a special case when
1209 creating `ruleset'.
1210
1211 As a result, now the rule 0, reducing to $axiom, is visible in the
1212 outputs. Adjust the test suite.
1213
1214 * tests/conflicts.at (Solved SR Conflicts)
1215 (Unresolved SR Conflicts): Adjust.
1216 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
1217 * tests/conflicts.at (S/R in initial): New.
1218
12192002-04-07 Akim Demaille <akim@epita.fr>
1220
1221 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
1222 the RHS of the rules.
1223 * src/output.c (output_gram): Likewise.
1224
12252002-04-07 Akim Demaille <akim@epita.fr>
1226
1227 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
1228 bucket.
1229 Adjust all dependencies.
1230 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
1231 `number' of the buckets too.
1232 * src/gram.h: Include `symtab.h'.
1233 (associativity): Move to...
1234 * src/symtab.h: here.
1235 No longer include `gram.h'.
1236
12372002-04-07 Akim Demaille <akim@epita.fr>
1238
1239 * src/gram.h, src/gram.c (rules_rhs_length): New.
1240 (ritem_longest_rhs): Use it.
1241 * src/gram.h (rule_t): `number' is a new member.
1242 * src/reader.c (packgram): Set it.
1243 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
1244 the end of `rules', and count them out of `nrules'.
1245 (reduce_output, dump_grammar): Adjust.
1246 * src/print.c (print_grammar): It is no longer needed to check for
1247 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
1248 * tests/reduce.at (Reduced Automaton): New test.
1249
12502002-04-07 Akim Demaille <akim@epita.fr>
1251
1252 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
1253 lacking `+ 1' to nrules, Bison reported as useless a token if it
1254 was used solely to set the precedence of the last rule...
1255
12562002-04-07 Akim Demaille <akim@epita.fr>
1257
1258 * data/bison.c++, data/bison.simple: Don't output the current file
1259 name in #line, to avoid useless diffs between two identical
1260 outputs under different names.
1261
12622002-04-07 Akim Demaille <akim@epita.fr>
1263
1264 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
1265 Normalize loops to using `< nrules + 1', not `<= nrules'.
1266
12672002-04-07 Akim Demaille <akim@epita.fr>
1268
1269 * TODO: Update.
1270
12712002-04-07 Akim Demaille <akim@epita.fr>
1272
1273 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
1274 bucket.value as bucket.number.
1275
12762002-04-07 Akim Demaille <akim@epita.fr>
1277
1278 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
1279 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
1280 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
1281 RHS, instead of being an index in RITEMS.
1282
12832002-04-04 Paul Eggert <eggert@twinsun.com>
1284
1285 * doc/bison.texinfo: Update copyright date.
1286 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
1287 (Symbols): Warn about running Bison in one character set,
1288 but compiling and/or running in an incompatible one.
1289 Warn about character code 256, too.
1290
12912002-04-03 Paul Eggert <eggert@twinsun.com>
1292
1293 * src/bison.data (YYSTACK_ALLOC): Depend on whether
1294 YYERROR_VERBOSE is nonzero, not whether it is defined.
1295
1296 Merge changes from bison-1_29-branch.
1297
12982002-03-20 Paul Eggert <eggert@twinsun.com>
1299
1300 Merge fixes from Debian bison_1.34-1.diff.
1301
1302 * configure.in (AC_PREREQ): 2.53.
1303
13042002-03-20 Akim Demaille <akim@epita.fr>
1305
1306 * src/conflicts.c (log_resolution): Argument `resolution' is const.
1307
13082002-03-19 Paul Eggert <eggert@twinsun.com>
1309
1310 * src/bison.simple (YYCOPY): New macro.
1311 (YYSTACK_RELOCATE): Use it.
1312 Remove Type arg; no longer needed. All callers changed.
1313 (yymemcpy): Remove; no longer needed.
1314
1315 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
1316 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
1317
13182002-03-19 Akim Demaille <akim@epita.fr>
1319
1320 Test and fix the #line outputs.
1321
1322 * tests/atlocal.at (GCC): New.
1323 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
1324 (Prologue synch line, ,%union synch line, Postprologue synch line)
1325 (Action synch line, Epilogue synch line): New tests.
1326 * src/reader.c (parse_union_decl): Define the muscle stype_line.
1327 * data/bison.simple, data/bison.c++: Use it.
1328
13292002-03-19 Akim Demaille <akim@epita.fr>
1330
1331 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
1332 (Solved SR Conflicts, %expect not enough, %expect right)
1333 (%expect too much): Move to...
1334 * tests/conflicts.at: this new file.
1335
13362002-03-19 Akim Demaille <akim@epita.fr>
1337
1338 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
1339 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
1340 that we can move to enums for instance.
1341 * src/output.c (token_definitions_output): Output a list of
1342 `token-name, token-number' instead of the #define.
1343 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
1344
13452002-03-14 Akim Demaille <akim@epita.fr>
1346
1347 Use Gettext 0.11.1.
1348
13492002-03-09 Robert Anisko <robert@lrde.epita.fr>
1350
1351 * data/bison.c++: Make the user able to add members to the generated
1352 parser by subclassing.
1353
13542002-03-05 Robert Anisko <robert@lrde.epita.fr>
1355
1356 * src/reader.c (read_additionnal_code): `c' should be an integer, not
1357 a character.
1358 Reported by Nicolas Tisserand and Nicolas Burrus.
1359
13602002-03-04 Robert Anisko <robert@lrde.epita.fr>
1361
1362 * src/reader.c: Warn about lacking semi-colons, do not complain.
1363
13642002-03-04 Robert Anisko <robert@lrde.epita.fr>
1365
1366 * data/bison.c++: Remove a debug line.
1367
13682002-03-04 Robert Anisko <robert@lrde.epita.fr>
1369
1370 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
1371 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
1372 provide a default implementation.
1373
13742002-03-04 Akim Demaille <akim@epita.fr>
1375
1376 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
1377 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
1378 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
1379 * tests/semantic.at (Parsing Guards): Similarly.
1380 * src/reader.at (readgram): Complain if the last rule is not ended
1381 with a semi-colon.
1382
13832002-03-04 Akim Demaille <akim@epita.fr>
1384
1385 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
1386 * src/closure.c: here.
1387 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
1388 RTC.
1389 * src/warshall.h, src/warshall.c: Remove.
1390 * tests/sets.at (Broken Closure): Adjust.
1391
13922002-03-04 Akim Demaille <akim@epita.fr>
1393
1394 * src/output.c (output_skeleton): tempdir is const.
1395 bytes_read is unused.
1396
13972002-03-04 Akim Demaille <akim@epita.fr>
1398
1399 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
1400 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
1401 Update.
1402 From Michael Hayes.
1403
14042002-03-04 Akim Demaille <akim@epita.fr>
1405
1406 * src/closure.c (closure): `r' is unused.
1407
14082002-03-04 Akim Demaille <akim@epita.fr>
1409
1410 * tests/sets.at (Broken Closure): Add the ending `;'.
1411 * src/reader.at (readgram): Complain if a rule is not ended with a
1412 semi-colon.
1413
14142002-03-04 Akim Demaille <akim@epita.fr>
1415
1416 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
1417 (count_sr_conflicts): Use bitset_count.
1418 * src/reduce.c (inaccessable_symbols): Ditto.
1419 (bits_size): Remove.
1420 * src/warshall.h, src/warshall.c: Convert to bitsetv.
1421
14222002-03-04 Akim Demaille <akim@epita.fr>
1423
1424 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
1425 * src/reduce.c: Remove the `bitset_zero's following the
1426 `bitset_create's, as now it is performed by the latter.
1427
14282002-03-04 Akim Demaille <akim@epita.fr>
1429
1430 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
1431 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
1432 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
1433 latest sources from Michael.
1434
14352002-03-04 Akim Demaille <akim@epita.fr>
1436
1437 * src/output.c (output): Don't free the grammar.
1438 * src/reader.c (grammar_free): New.
1439 * src/main.c (main): Call it and don't free symtab here.
1440
14412002-03-04 Akim Demaille <akim@epita.fr>
1442
1443 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
1444 before returning.
1445 Reported by Benoit Perrot.
1446
14472002-03-04 Akim Demaille <akim@epita.fr>
1448
1449 Use bitset operations when possible, not loops over bits.
1450
1451 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
1452 bitset_or.
1453 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
1454 * src/reduce.c (useless_nonterminals): Formatting changes.
1455 * src/warshall.c (TC): Use bitset_or.
1456
14572002-03-04 Akim Demaille <akim@epita.fr>
1458
1459 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
1460 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
1461 Ditto.
1462
14632002-03-04 Akim Demaille <akim@epita.fr>
1464
1465 * src/lalr.c (F): Now a bitset*.
1466 Adjust all dependencies.
1467
14682002-03-04 Akim Demaille <akim@epita.fr>
1469
1470 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
1471 Adjust all dependencies.
1472
14732002-03-04 Akim Demaille <akim@epita.fr>
1474
1475 * src/L0.c, src/LR0.h (nstates): Be size_t.
1476 Adjust comparisons (signed vs unsigned).
1477 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
1478 bitset*.
1479 Adjust all dependencies.
1480
14812002-03-04 Akim Demaille <akim@epita.fr>
1482
1483 * src/closure.c (firsts): Now, also a bitset.
1484 Adjust all dependencies.
1485 (varsetsize): Remove, now unused.
1486 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
1487
14882002-03-04 Akim Demaille <akim@epita.fr>
1489
1490 * src/print.c: Convert to use bitset.h, not hand coded iterations
1491 over ints.
1492
14932002-03-04 Akim Demaille <akim@epita.fr>
1494
1495 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
1496
14972002-03-04 Akim Demaille <akim@epita.fr>
1498
1499 * src/closure.c (ruleset): Be a bitset.
1500 (rulesetsize): Remove.
1501
15022002-03-04 Akim Demaille <akim@epita.fr>
1503
1504 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
1505 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
1506 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
1507 * src/closure.c (fderives): Be an array of bitsets.
1508
15092002-02-28 Robert Anisko <robert@lrde.epita.fr>
1510
1511 * data/bison.c++: Merge the two generated headers. Insert a copyright
1512 notice in each output file.
1513
15142002-02-28 Akim Demaille <akim@epita.fr>
1515
1516 * data/bison.c++: Copy the prologue of bison.simple to fetch
1517 useful M4 definitions, such as b4_header_guard.
1518
15192002-02-25 Akim Demaille <akim@epita.fr>
1520
1521 * src/getargs.c (version): Give the name of the authors, and use a
1522 translator friendly scheme for the bgr
1523 copyright notice.
1524
15252002-02-25 Akim Demaille <akim@epita.fr>
1526
1527 * src/output.c (header_output): Remove, now handled completely via
1528 M4.
1529
15302002-02-25 Akim Demaille <akim@epita.fr>
1531
1532 * m4/m4.m4: New, from CVS Autoconf.
1533 * configure.in: Invoke it.
1534 * src/output.c (output_skeleton): Use its result instead of the
1535 hard coded name.
1536
15372002-02-25 Akim Demaille <akim@epita.fr>
1538
1539 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
1540 Fileutils 4.1.5.
1541 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
1542 * src/output.c (output_skeleton): Use mkstemp to create a real
1543 temporary file.
1544 Move the filling of `skeleton' and its muscle to...
1545 (prepare): here.
1546 (output): Move the definition of the prologue muscle to...
1547 (prepare): here.
1548 * src/system.h (DEFAULT_TMPDIR): New.
1549
15502002-02-14 Paul Eggert <eggert@twinsun.com>
1551
1552 Remove the support for C++ namespace cleanliness; it was
1553 causing more problems than it was curing, since it didn't work
1554 properly on some nonstandard C++ compilers. This can wait
1555 for a proper C++ parser.
1556
1557 * NEWS: Document this.
1558 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
1559 of C++, as it's treated like C now.
1560 * src/bison.simple (YYSTD): Remove.
1561 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
1562 Treat C++ just like Standard C instead of trying to support
1563 namespace cleanliness.
1564
15652002-02-14 Akim Demaille <akim@epita.fr>
1566
1567 * tests/regression.at (else): Adjust to Andreas' change.
1568
15692002-02-14 Akim Demaille <akim@epita.fr>
1570
1571 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
1572
15732002-02-13 Andreas Schwab <schwab@suse.de>
1574
1575 * src/output.c (output_rule_data): Don't output NULL, it might
1576 not be defined yet.
1577
15782002-02-11 Robert Anisko <robert@lrde.epita.fr>
1579
1580 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
1581 (Copyright notice): Update.
1582
15832002-02-11 Akim Demaille <akim@epita.fr>
1584
1585 * tests/regression.at (%nonassoc and eof): Don't include
1586 nonportable headers.
1587
15882002-02-08 Robert Anisko <robert@lrde.epita.fr>
1589
1590 * data/bison.c++: Correct error recovery. Make the user able to
1591 initialize the starting location.
1592
15932002-02-07 Akim Demaille <akim@epita.fr>
1594
1595 * tests/input.at: New.
1596
15972002-02-07 Robert Anisko <robert@lrde.epita.fr>
1598
1599 * data/bison.c++: Replace some direct m4 expansions by constants. Be
1600 more consistent when naming methods and variables. Put preprocessor
1601 directives around tables only needed for debugging.
1602
16032002-02-07 Robert Anisko <robert@lrde.epita.fr>
1604
1605 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
1606 C++ parsers.
1607 (yy::b4_name::parse): Use print_.
1608
16092002-02-07 Robert Anisko <robert@lrde.epita.fr>
1610
1611 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
1612
16132002-02-07 Robert Anisko <robert@lrde.epita.fr>
1614
1615 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
1616 C++ parsers.
1617 (yy::b4_name::parse): Build verbose error messages, and use error_.
1618
16192002-02-06 Robert Anisko <robert@lrde.epita.fr>
1620
1621 * data/bison.c++: Fix m4 quoting in comments.
1622
16232002-02-06 Robert Anisko <robert@lrde.epita.fr>
1624
1625 * data/bison.c++: Adjust the parser code. Fix some muscles that were
1626 not expanded by m4.
1627
16282002-02-05 Akim Demaille <akim@epita.fr>
1629
1630 * data/bison.c++: Adjust to the M4 back end.
1631 More is certainly needed.
1632
16332002-02-05 Akim Demaille <akim@epita.fr>
1634
1635 Give a try to M4 as a back end.
1636
1637 * lib/readpipe.c: New, from wdiff.
1638 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
1639 BISON_HAIRY.
1640 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
1641 specific values. Now it is m4 that performs the lookup.
1642 * src/parse-skel.y: Remove.
1643 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
1644 * src/output.c (actions_output, guards_output)
1645 (token_definitions_output): No longer keeps track of the output
1646 line number, hence remove the second argument.
1647 (guards_output): Check against the guard member of a rule, not the
1648 action member.
1649 Adjust callers.
1650 (output_skeleton): Don't look for the skeleton location, let m4 do
1651 that.
1652 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
1653 file will be used.
1654 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
1655 (prepare): Given that for the time being changesyntax is not
1656 usable in M4, rename the muscles using `-' to `_'.
1657 Define `defines_flag', `output_parser_name' and `output_header_name'.
1658 * src/output.h (actions_output, guards_output)
1659 (token_definitions_output): Adjust prototypes.
1660 * src/scan-skel.l: Instead of scanning the skeletons, it now
1661 processes the output of m4: `__oline__' and `#output'.
1662 * data/bison.simple: Adjust to be used by M4(sugar).
1663 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
1664 to date.
1665 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
1666 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
1667 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
1668 shamelessly stolen from CVS Autoconf.
1669
16702002-02-05 Akim Demaille <akim@epita.fr>
1671
1672 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
1673 * configure.in: Check for the declarations of free and malloc.
1674 * src/muscle_tab.c: Adjust.
1675
16762002-02-05 Akim Demaille <akim@epita.fr>
1677
1678 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
1679 which have no values.
1680
16812002-02-05 Akim Demaille <akim@epita.fr>
1682
1683 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
1684 * data/: here.
1685
16862002-01-29 Paul Eggert <eggert@twinsun.com>
1687
1688 * src/bison.simple (YYSIZE_T): Do not define merely because
1689 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
1690 On some platforms, <alloca.h> does not declare YYSTD (size_t).
1691
16922002-01-27 Akim Demaille <akim@epita.fr>
1693
1694 Fix `%nonassoc and eof'.
1695
1696 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
1697 which were not properly copied! Replace
1698 memcpy (res->errs, src->errs, src->nerrs);
1699 with
1700 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
1701 !!!
1702 * tests/regression.at (%nonassoc and eof): Adjust to newest
1703 Autotest: `.' is not in the PATH.
1704
17052002-01-27 Akim Demaille <akim@epita.fr>
1706
1707 * tests/sets.at (AT_EXTRACT_SETS): New.
1708 (Nullable): Use it.
1709 (Firsts): New.
1710
17112002-01-26 Akim Demaille <akim@epita.fr>
1712
1713 * tests/actions.at, tests/calc.at, tests/headers.at,
1714 * tests/torture.at: Adjust to the newest Autotest which no longer
1715 forces `.' in the PATH.
1716
17172002-01-25 Akim Demaille <akim@epita.fr>
1718
1719 * tests/regression.at (%nonassoc and eof): New.
1720 Suggested by Robert Anisko.
1721
17222002-01-24 Akim Demaille <akim@epita.fr>
1723
1724 Bison dumps core when trying to complain about broken input files.
1725 Reported by Cris van Pelt.
1726
1727 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
1728 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
1729 into...
1730 (Invalid inputs): Strengthen: exercise parse_percent_token.
1731
17322002-01-24 Robert Anisko <robert.anisko@epita.fr>
1733
1734 * src/Makefile.am: Add bison.c++.
1735 * src/bison.c++: New skeleton.
1736
17372002-01-21 Paolo Bonzini <bonzini@gnu.org>
1738
1739 * po/it.po: New.
1740
17412002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
1742
1743 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
1744
17452002-01-20 Marc Autret <marc@gnu.org>
1746
1747 * src/files.c (compute_output_file_names): Fix
1748
17492002-01-20 Marc Autret <marc@gnu.org>
1750
1751 * tests/output.at: New test.
1752 * src/files.c (compute_base_names): Don't map extensions when
1753 the YACC flag is set, use defaults.
1754 Reported by Evgeny Stambulchik.
1755
17562002-01-20 Marc Autret <marc@gnu.org>
1757
1758 * src/system.h: Need to define __attribute__ away for non-GCC
1759 compilers as well (i.e. the vendor C compiler).
1760 Suggested by Albert Chin-A-Young.
1761
17622002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
1763
1764 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
1765 canonical definition.
1766 * src/system.h: Use the canonical definition for PARAMS (avoids
1767 a conflict with the macro from lib/hash.h).
1768
17692002-01-11 Akim Demaille <akim@epita.fr>
1770
1771 * configure.in: Use AC_FUNC_STRNLEN.
1772 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
1773
17742002-01-09 Akim Demaille <akim@epita.fr>
1775
1776 * src/files.c, src/files.h (output_infix): New.
1777 (tab_extension): Remove.
1778 (compute_base_names): Compute the former, drop the latter.
1779 * src/output.c (prepare): Insert the muscles `output-infix', and
1780 `output-suffix'.
1781 * src/parse-skel.y (string, string.1): New.
1782 (section.header): Use it.
1783 (section.yacc): Remove.
1784 (prefix): Remove too.
1785 * src/scan-skel.l: Adjust.
1786 * src/bison.simple, src/bison.hairy: Adjust.
1787
17882002-01-09 Akim Demaille <akim@epita.fr>
1789
1790 * configure.in (WERROR_CFLAGS): Compute it.
1791 * src/Makefile.am (CFLAGS): Pass it.
1792 * tests/atlocal.in (CFLAGS): Idem.
1793 * src/files.c: Fix a few warnings.
1794 (get_extension_index): Remove, unused.
1795
17962002-01-08 Akim Demaille <akim@epita.fr>
1797
1798 * src/getargs.c (AS_FILE_NAME): New.
1799 (getargs): Use it to convert DOSish file names.
1800 * src/files.c (base_name): Rename as full_base_name to avoid
1801 clashes with `base_name ()'.
1802 (filename_split): New.
1803 (compute_base_names): N-th rewrite, using filename_split.
1804
18052002-01-08 Akim Demaille <akim@epita.fr>
1806
1807 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
1808 New, stolen from the Fileutils 4.1.
1809 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
1810 * configure.in: Check for the presence of memrchr, and of its
1811 prototype.
1812
18132002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
1814
1815 * lib/hash.h (__P): Added definition for this macro.
1816 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
1817 BUILT_SOURCES, to ensure they are generated first.
1818 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
1819 %error-verbose to allow bootstrapping with bison 1.30x.
1820
18212002-01-06 Akim Demaille <akim@epita.fr>
1822
1823 * src/reader.c (parse_braces): Don't fetch the next char, the
1824 convention is to fetch on entry.
1825 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
1826 'switch' without a following semicolon.
1827 * tests/regression.at (braces parsing): New.
1828
18292002-01-06 Akim Demaille <akim@epita.fr>
1830
1831 Bison is dead wrong in its RR conflict reports.
1832
1833 * tests/torture.at (GNU Cim Grammar): New.
1834 * src/conflicts.c (count_rr_conflicts): Fix.
1835
18362002-01-06 Akim Demaille <akim@epita.fr>
1837
1838 Creating package.m4 from configure.ac causes too many problems.
1839
1840 * tests/Makefile.am (package.m4): Create it by hand,
1841 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
1842
18432002-01-06 Akim Demaille <akim@epita.fr>
1844
1845 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
1846 skeleton.h.
1847
18482002-01-04 Paul Eggert <eggert@twinsun.com>
1849
1850 * doc/bison.texinfo (Debugging):
1851 Remove YYSTDERR; it's no longer defined or used.
1852 Also, s/cstdio.h/cstdio/.
1853
18542002-01-03 Akim Demaille <akim@epita.fr>
1855
1856 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
1857
18582002-01-03 Akim Demaille <akim@epita.fr>
1859
1860 * src/parse-skel.y (process_skeleton): Don't bind the parser's
1861 tracing code to --trace, wait for a better --trace option, with
1862 args.
1863
18642002-01-03 Akim Demaille <akim@epita.fr>
1865
1866 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
1867 The ISO C++ standard is extremely clear about it: stderr is
1868 considered a macro, not a regular symbol (see table 94 `Header
1869 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
1870 Therefore std:: does not apply to it. It still does with fprintf.
1871 Also, s/cstdio.h/cstdio/.
1872
18732002-01-03 Akim Demaille <akim@epita.fr>
1874
1875 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
1876 for non system headers.
1877
18782002-01-02 Akim Demaille <akim@epita.fr>
1879
1880 Equip the skeleton chain with location tracking, runtime trace,
1881 pure parser and scanner.
1882
1883 * src/parse-skel.y: Request a pure parser, locations, and prefix
1884 renaming.
1885 (%union): Having several members with the same type does not help
1886 type mismatches, simplify.
1887 (YYPRINT, yyprint): New.
1888 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
1889 (skel_error): this.
1890 Handle locations.
1891 * src/scan-skel.l: Adjust to these changes.
1892 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
1893 (LOCATION_PRINT, skel_control_t): New.
1894
18952001-12-30 Akim Demaille <akim@epita.fr>
1896
1897 * src/parse-skel.y: Get rid of the shift/reduce conflict:
1898 replace `gb' with BLANKS.
1899 * src/scan-skel.l: Adjust.
1900
19012001-12-30 Akim Demaille <akim@epita.fr>
1902
1903 * src/system.h: We don't need nor want bcopy.
1904 Throw away MS-DOS crap: we don't need getpid.
1905 * configure.in: We don't need strndup. It was even causing
1906 problems: because Flex includes the headers *before* us,
1907 _GNU_SOURCE is not defined by config.h, and therefore strndup was
1908 not visible.
1909 * lib/xstrndup.c: New.
1910 * src/scan-skel.l: Use it.
1911 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
1912 * src/parse-skel.y: Use %directives instead of #defines.
1913
19142001-12-30 Akim Demaille <akim@epita.fr>
1915
1916 * src/skeleton.h: New.
1917 * src/output.c (output_parser, output_master_parser): Remove, dead
1918 code.
1919 * src/output.h (get_lines_number, actions_output, guards_output)
1920 (token_definitions_output): Prototype them.
1921 * src/parse-skel.y: Add the license notice.
1922 Include output.h and skeleton.h.
1923 (process_skeleton): Returns void, and takes a single parameter.
1924 * src/scan-skel.l: Add the license notice.
1925 Include skeleton.h.
1926 Don't use %option yylineno: it seems that then Flex imagines
1927 REJECT has been used, and therefore it won't reallocate its
1928 buffers (which makes no other sense to me than a bug). It results
1929 in warnings for `unused: yy_flex_realloc'.
1930
19312001-12-30 Robert Anisko <robert.anisko@epita.fr>
1932
1933 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
1934 (MUSCLE_INSERT_PREFIX): ...to there.
1935 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
1936 (MUSCLE_INSERT_PREFIX): Move from here...
1937
1938 * src/bison.hairy: Add a section directive. Put braces around muscle
1939 names. This parser skeleton is still broken, but Bison should not
1940 choke on a bad muscle 'syntax'.
1941 * src/bison.simple: Add a section directive. Put braces around muscle
1942 names.
1943
1944 * src/files.h (strsuffix, stringappend): Add declarations.
1945 (tab_extension): Add declaration.
1946 (short_base_name): Add declaration.
1947
1948 * src/files.c (strsuffix, stringappend): No longer static. These
1949 functions are used in the skeleton parser.
1950 (tab_extension): New.
1951 (compute_base_names): Use the computations done in this function
1952 to guess if the generated parsers should have '.tab' in their
1953 names.
1954 (short_base_name): No longer static.
1955
1956 * src/output.c (output_skeleton): New.
1957 (output): Disable call to output_master_parser, and give a try to
1958 a new skeleton handling system.
1959 (guards_output, actions_output): No longer static.
1960 (token_definitions_output, get_lines_number): No longer static.
1961
1962 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
1963
1964 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
1965 parse-skel.y.
1966
1967 * src/parse-skel.y: New file.
1968 * src/scan-skel.l: New file.
1969
19702001-12-29 Akim Demaille <akim@epita.fr>
1971
1972 %name-prefix is broken.
1973
1974 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
1975 Adjust all dependencies.
1976 * tests/headers.at (export YYLTYPE): Strengthen this test: use
1977 %name-prefix.
1978
1979 Renaming yylval but not yylloc is not consistent. Now we do.
1980
1981 * src/bison.simple: Prefix yylloc if used.
1982 * doc/bison.texinfo (Decl Summary): Document that.
1983
19842001-12-29 Akim Demaille <akim@epita.fr>
1985
1986 * doc/bison.texinfo: Promote `%long-directive' over
1987 `%long_directive'.
1988 Remove all references to fixed-output-files, yacc is enough.
1989
19902001-12-29 Akim Demaille <akim@epita.fr>
1991
1992 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
1993 user prologue. These are defaults.
1994 * tests/actions.at (Mid-rule actions): Make sure the user can
1995 define YYDEBUG and YYERROR_VERBOSE.
1996
19972001-12-29 Akim Demaille <akim@epita.fr>
1998
1999 * src/output.c (header_output): Don't forget to export YYLTYPE and
2000 yylloc.
2001 * tests/headers.at (export YYLTYPE): New, make sure it does.
2002 * tests/regression.at (%union and --defines, Invalid CPP headers):
2003 Move to...
2004 * tests/headers.at: here.
2005
20062001-12-29 Akim Demaille <akim@epita.fr>
2007
2008 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
2009
20102001-12-29 Akim Demaille <akim@epita.fr>
2011
2012 * tests/actions.at (Mid-rule actions): Output on a single line
2013 instead of several.
2014
20152001-12-29 Akim Demaille <akim@epita.fr>
2016
2017 * doc/bison.texinfo: Formatting changes.
2018
20192001-12-29 Akim Demaille <akim@epita.fr>
2020
2021 Don't store the token defs in a muscle, just be ready to output it
2022 on command. Now possible via `symbols'. Fixes a memory leak.
2023
2024 * src/output.c (token_definitions_output): New.
2025 (output_parser, header_output): Use it.
2026 * src/reader.c (symbols_save): Remove.
2027
20282001-12-29 Akim Demaille <akim@epita.fr>
2029
2030 * src/bison.simple: Do not provide a default for YYSTYPE and
2031 YYLTYPE before the user's prologue. Otherwise it's hardly... a
2032 default.
2033
20342001-12-29 Akim Demaille <akim@epita.fr>
2035
2036 Mid-rule actions are simply... ignored!
2037
2038 * src/reader.c (readgram): Be sure to attach mid-rule actions to
2039 the empty-rule associated to the dummy symbol, not to the host
2040 rule.
2041 * tests/actions.at (Mid-rule actions): New.
2042
20432001-12-29 Akim Demaille <akim@epita.fr>
2044
2045 Memory leak.
2046
2047 * src/reader.c (reader): Free grammar.
2048
20492001-12-29 Akim Demaille <akim@epita.fr>
2050
2051 Memory leak.
2052
2053 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
2054 since it allocates it for each state, although only one is needed.
2055 (allocate_storage): Do it here.
2056
20572001-12-29 Akim Demaille <akim@epita.fr>
2058
2059 * src/options.h, src/options.c (create_long_option_table): Rename
2060 as...
2061 (long_option_table_new): this, with a clearer prototype.
2062 (percent_table): Remove, unused,
2063 * src/getargs.c (getargs): Adjust.
2064
20652001-12-29 Akim Demaille <akim@epita.fr>
2066
2067 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
2068 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
2069 as states.
2070
20712001-12-29 Akim Demaille <akim@epita.fr>
2072
2073 * src/lalr.c (build_relations): Rename `states' as `states1'.
2074 Sorry, I don't understand exactly what it is, no better name...
2075
20762001-12-29 Akim Demaille <akim@epita.fr>
2077
2078 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
2079 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
2080 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
2081 as rules.
2082
20832001-12-29 Akim Demaille <akim@epita.fr>
2084
2085 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
2086 ago.
2087
20882001-12-29 Akim Demaille <akim@epita.fr>
2089
2090 * src/reader.c, src/reader.h (user_toknums): Remove.
2091 Adjust all users to use symbols[i]->user_token_number.
2092
20932001-12-29 Akim Demaille <akim@epita.fr>
2094
2095 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
2096 Adjust all users to use symbols[i]->prec or ->assoc.
2097
20982001-12-29 Akim Demaille <akim@epita.fr>
2099
2100 * src/reader.c, src/reader.h (tags): Remove.
2101 Adjust all users to use symbols[i]->tag.
2102
21032001-12-29 Akim Demaille <akim@epita.fr>
2104
2105 * src/gram.h, src/gram.c (symbols): New, similar to state_table
2106 and rule_table.
2107 * src/reader.c (packsymbols): Fill this table.
2108 Drop sprec.
2109 * src/conflicts.c (resolve_sr_conflict): Adjust.
2110 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
2111 single table.
2112 Use symbols[i]->tag instead of tags[i].
2113
21142001-12-29 Akim Demaille <akim@epita.fr>
2115
2116 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
2117 In addition, put a comment in there, to replace...
2118 * tests/regression.at (%union and C comments): Remove.
2119
21202001-12-29 Akim Demaille <akim@epita.fr>
2121
2122 * tests/regression.at (Web2c Actions): Blindly move the actual
2123 output as expected output. The contents *seem* right to me, but I
2124 can't pretend reading perfectly parser tables... Nonetheless, all
2125 the other tests pass correctly, the table look OK, even though the
2126 presence of `$axiom' is to be noted: AFAICS it is useless (but
2127 harmless).
2128
21292001-12-29 Akim Demaille <akim@epita.fr>
2130
2131 * src/reader.c (readgram): Don't add the rule 0 if there were no
2132 rules read. In other words, add it _after_ having performed
2133 grammar sanity checks.
2134 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
2135
21362001-12-29 Akim Demaille <akim@epita.fr>
2137
2138 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
2139 visible, and some states have now a different number.
2140
21412001-12-29 Akim Demaille <akim@epita.fr>
2142
2143 * src/reader.c (readgram): Bind the initial rule's lineno to that
2144 of the first rule.
2145 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
2146 (Solved SR Conflicts): Adjust rule 0's line number.
2147
21482001-12-29 Akim Demaille <akim@epita.fr>
2149
2150 Fix the `GAWK Grammar' failure.
2151
2152 * src/LR0.c (final_state): Initialize to -1 so that we do compute
2153 the reductions of the first state which was mistakenly confused
2154 with the final state because precisely final_state was initialized
2155 to 0.
2156 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
2157 now noticed by Bison.
2158 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
2159 have a reduction on $default.
2160
21612001-12-29 Akim Demaille <akim@epita.fr>
2162
2163 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
2164 rule line numbers.
2165 * src/closure.c (print_closure): Likewise.
2166 * src/derives.c (print_derives): Likewise.
2167 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
2168 now.
2169
21702001-12-29 Akim Demaille <akim@epita.fr>
2171
2172 * src/lalr.c (lookaheads_print): New.
2173 (lalr): Call it when --trace-flag.
2174 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
2175 are dumped.
2176
21772001-12-29 Akim Demaille <akim@epita.fr>
2178
2179 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
2180 when walking through ritem, even via rule->rhs.
2181 * src/reduce.c (dump_grammar, useful_production, reduce_output)
2182 (useful_production, useless_nonterminals): Likewise.
2183 (reduce_grammar_tables): Likewise, plus update nritems.
2184 * src/nullable.c (set_nullable): Likewise.
2185 * src/lalr.c (build_relations): Likewise.
2186 * tests/sets.at (Nullable): Adjust.
2187 Fortunately, now, the $axiom is no longer nullable.
2188
21892001-12-29 Akim Demaille <akim@epita.fr>
2190
2191 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
2192 the 0-sentinel.
2193 * src/gram.c (ritem_longest_rhs): Likewise.
2194 * src/reduce.c (nonterminals_reduce): Likewise.
2195 * src/print_graph.c (print_graph): Likewise.
2196 * src/output.c (output_rule_data): Likewise.
2197 * src/nullable.c (set_nullable): Likewise.
2198
21992001-12-29 Akim Demaille <akim@epita.fr>
2200
2201 * src/output.c: Comment changes.
2202
22032001-12-27 Paul Eggert <eggert@twinsun.com>
2204
2205 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
2206 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
2207 Sparc, as they were causing more porting problems than the
2208 (minor) performance improvement was worth.
2209
2210 Also, catch up with 1.31's YYSTD.
2211
22122001-12-27 Akim Demaille <akim@epita.fr>
2213
2214 * src/output.c (output_gram): Rely on nritems, not the
2215 0-sentinel. See below.
2216 Use -1 as separator, not 0.
2217 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
2218 Rely on -1 as separator in yyrhs, instead of 0.
2219 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
2220 twice `Now at end of input', therefore there are two lines less to
2221 expect.
2222
22232001-12-27 Akim Demaille <akim@epita.fr>
2224
2225 * tests/regression.at (Unresolved SR Conflicts):
2226 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
2227 below.
2228
22292001-12-27 Akim Demaille <akim@epita.fr>
2230
2231 * src/LR0.c (new_state): Recognize the final state by the fact it
2232 is reached by eoftoken.
2233 (insert_start_shifting_state, insert_eof_shifting_state)
2234 (insert_accepting_state, augment_automaton): Remove, since now
2235 these states are automatically computed from the initial state.
2236 (generate_states): Adjust.
2237 * src/print.c: When reporting a rule number to the user, substract
2238 1, so that the axiom rule is rule 0, and the first user rule is 1.
2239 * src/reduce.c: Likewise.
2240 * src/print_graph.c (print_core): For the time being, just as for
2241 the report, depend upon --trace-flags to dump the full set of
2242 items.
2243 * src/reader.c (readgram): Once the grammar read, insert the rule
2244 0: `$axiom: START-SYMBOL $'.
2245 * tests/set.at: Adjust: rule 0 is now displayed, and since the
2246 number of the states has changed (the final state is no longer
2247 necessarily the last), catch up.
2248
22492001-12-27 Akim Demaille <akim@epita.fr>
2250
2251 Try to make the use of the eoftoken valid. Given that its value
2252 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
2253 is used instead of > 0 where appropriate, (ii), depend upon nritems
2254 instead of the 0-sentinel.
2255
2256 * src/gram.h, src/gram.c (nritems): New.
2257 Expected to be duplication of nitems, but for the time being...
2258 * src/reader.c (packgram): Assert nritems and nitems are equal.
2259 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
2260 * src/closure.c (print_closure, print_fderives): Likewise.
2261 * src/gram.c (ritem_print): Likewise.
2262 * src/print.c (print_core, print_grammar): Likewise.
2263 * src/print_graph.c: Likewise.
2264
22652001-12-27 Akim Demaille <akim@epita.fr>
2266
2267 * src/main.c (main): If there are complains after grammar
2268 reductions, then output the report anyway if requested, then die.
2269 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
2270 * src/reader.c (eoftoken): New.
2271 (parse_token_decl): If the token being defined has value `0', it
2272 is the eoftoken.
2273 (packsymbols): No longer hack `tags' to insert `$' by hand.
2274 Be sure to preserve the value of the eoftoken.
2275 (reader): Make sure eoftoken is defined.
2276 Initialize nsyms to 0: now eoftoken is created just like the others.
2277 * src/print.c (print_grammar): Don't special case the eof token.
2278 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
2279 lie anyway, albeit pleasant.
2280 * tests/calc.at: Exercise error messages with eoftoken.
2281 Change the grammar so that empty input is invalid.
2282 Adjust expectations.
2283 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
2284
22852001-12-27 Akim Demaille <akim@epita.fr>
2286
2287 * configure.in: Check the protos of strchr ans strspn.
2288 Replace strchr if needed.
2289 * src/system.h: Provide the protos of strchr, strspn and memchr if
2290 missing.
2291 * lib/strchr.c: New.
2292 * src/reader.c (symbols_save): Use strchr.
2293
22942001-12-27 Akim Demaille <akim@epita.fr>
2295
2296 * src/print.c, src/print_graph.c (escape): New.
2297 Use it to quote the TAGS outputs.
2298 * src/print_graph.c (print_state): Now errors are in red, and
2299 reductions in green.
2300 Prefer high to wide: output the state number on a line of its own.
2301
23022001-12-27 Akim Demaille <akim@epita.fr>
2303
2304 * src/state.h, src/state.c (reductions_new): New.
2305 * src/LR0.c (set_state_table): Let all the states have a
2306 `reductions', even if reduced to 0.
2307 (save_reductions): Adjust.
2308 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
2309 * src/print.c (print_reductions, print_actions): Adjust.
2310 * src/output.c (action_row): Adjust.
2311
23122001-12-27 Akim Demaille <akim@epita.fr>
2313
2314 * src/state.h, src/state.c (errs_new, errs_dup): New.
2315 * src/LR0.c (set_state_table): Let all the states have an errs,
2316 even if reduced to 0.
2317 * src/print.c (print_errs, print_reductions): Adjust.
2318 * src/output.c (output_actions, action_row): Adjust.
2319 * src/conflicts.c (resolve_sr_conflict): Adjust.
2320
23212001-12-27 Akim Demaille <akim@epita.fr>
2322
2323 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
2324
23252001-12-27 Akim Demaille <akim@epita.fr>
2326
2327 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
2328 * src/print.c: here.
2329 (lookaheadset, shiftset): New, used as additional storage by
2330 print_reductions.
2331 (print_results): Adjust.
2332 (print_shifts, print_gotos, print_errs): New, extracted from...
2333 (print_actions): here.
2334 * src/print_graph.c (print_actions): Remove dead code.
2335
23362001-12-27 Akim Demaille <akim@epita.fr>
2337
2338 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
2339 `$n' and `@n'.
2340
23412001-12-27 Akim Demaille <akim@epita.fr>
2342
2343 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
2344 (build_relations): Adjust.
2345
23462001-12-27 Akim Demaille <akim@epita.fr>
2347
2348 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
2349 duplication.
2350
23512001-12-27 Akim Demaille <akim@epita.fr>
2352
2353 * src/reader.c (packgram): Catch nitems overflows.
2354
23552001-12-27 Akim Demaille <akim@epita.fr>
2356
2357 * src/files.c, src/files.h (guard_obstack): Remove.
2358 * src/output.c (output): Adjust.
2359 * src/reader.c (parse_braces): New, factoring...
2360 (copy_action, copy_guard): these two which are renamed as...
2361 (parse_action, parse_guard): these.
2362 As a voluntary consequence, using braces around guards is now
2363 mandatory.
2364
23652001-12-27 Akim Demaille <akim@epita.fr>
2366
2367 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
2368 * src/reader.c (symbol_list): `guard' and `guard_line' are new
2369 members.
2370 (symbol_list_new): Adjust.
2371 (copy_action): action_line is the first line, not the last.
2372 (copy_guard): Just as for actions, store the `action' only, not
2373 the switch/case/break flesh.
2374 Don't parse the user action that might follow the guard, let...
2375 (readgram): do it, i.e., now, there can be an action after a
2376 guard.
2377 In other words the guard is just explicitly optional.
2378 (packgram): Adjust.
2379 * src/output.c (guards_output): New.
2380 (output_parser): Call it when needed.
2381 (output): Also free the guard and attrs obstacks.
2382 * src/files.c, src/files.h (obstack_save): Remove.
2383 (output_files): Remove.
2384 As a result, if one needs the former `.act' file, using an
2385 appropriate skeleton which requires actions and guards is now
2386 required.
2387 * src/main.c (main): Adjust.
2388 * tests/semantic.at: New.
2389 * tests/regression.at: Use `input.y' as input file name.
2390 Avoid 8+3 problems by requiring input.c when the test needs the
2391 parser.
2392
23932001-12-27 Akim Demaille <akim@epita.fr>
2394
2395 * src/reader.c (symbol_list_new): Be sure to initialize all the
2396 fields.
2397
23982001-12-27 Akim Demaille <akim@epita.fr>
2399
2400 All the hacks using a final pseudo state are now useless.
2401
2402 * src/LR0.c (set_state_table): state_table holds exactly nstates.
2403 * src/lalr.c (nLA): New.
2404 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
2405 instead of lookaheadsp from the pseudo state (nstate + 1).
2406
24072001-12-27 Akim Demaille <akim@epita.fr>
2408
2409 * src/output.c (action_row, token_actions): Use a state_t instead
2410 of a integer, and nlookaheads instead of the following state's
2411 lookaheadsp.
2412
24132001-12-27 Akim Demaille <akim@epita.fr>
2414
2415 * src/conflicts.c (log_resolution, flush_shift)
2416 (resolve_sr_conflict, set_conflicts, solve_conflicts)
2417 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
2418 (conflicts_print, print_reductions): Use a state_t instead of an
2419 integer when referring to a state.
2420 As much as possible, depend upon nlookaheads, instead of the
2421 `lookaheadsp' member of the following state (since lookaheads of
2422 successive states are successive, the difference between state n + 1
2423 and n served as the number of lookaheads for state n).
2424 * src/lalr.c (add_lookback_edge): Likewise.
2425 * src/print.c (print_core, print_actions, print_state)
2426 (print_results): Likewise.
2427 * src/print_graph.c (print_core, print_actions, print_state)
2428 (print_graph): Likewise.
2429 * src/conflicts.h: Adjust.
2430
24312001-12-27 Akim Demaille <akim@epita.fr>
2432
2433 * src/bison.hairy: Formatting/comment changes.
2434 ANSIfy.
2435 Remove `register' indications.
2436 Add plenty of `static'.
2437
24382001-12-27 Akim Demaille <akim@epita.fr>
2439
2440 * src/output.c (prepare): Drop the muscle `ntbase' which
2441 duplicates ntokens.
2442 * src/bison.simple: Formatting/comment changes.
2443 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
2444 is an undocumented synonym.
2445
24462001-12-22 Akim Demaille <akim@epita.fr>
2447
2448 * src/output.c (output_table_data): Change the prototype to use
2449 `int' for array ranges: some invocations do pass an int, not a
2450 short.
2451 Reported by Wayne Green.
2452
24532001-12-22 Akim Demaille <akim@epita.fr>
2454
2455 Some actions of web2c.y are improperly triggered.
2456 Reported by Mike Castle.
2457
2458 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
2459 * tests/regression.at (Web2c): Rename as...
2460 (Web2c Report): this.
2461 (Web2c Actions): New.
2462
24632001-12-22 Akim Demaille <akim@epita.fr>
2464
2465 Reductions in web2c.y are improperly reported.
2466 Reported by Mike Castle.
2467
2468 * src/conflicts.c (print_reductions): Fix.
2469 * tests/regression.at (Web2c): New.
2470
24712001-12-18 Akim Demaille <akim@epita.fr>
2472
2473 Some host fail on `assert (!"foo")', which expands to
2474 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
2475 Reported by Nelson Beebee.
2476
2477 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
2478 `#define it_succeeded 0' and `assert (it_succeeded)'.
2479
24802001-12-17 Marc Autret <autret_m@epita.fr>
2481
2482 * src/bison.simple: Don't hard code the skeleton line and filename.
2483 * src/output.c (output_parser): Rename 'line' as 'output_line'.
2484 New line counter 'skeleton_line' (skeleton-line muscle).
2485
24862001-12-17 Paul Eggert <eggert@twinsun.com>
2487
2488 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
2489 YYDEBUG must be defined to a nonzero value.
2490
2491 * src/bison.simple (yytname): Do not assume that the user defines
2492 YYDEBUG to a properly parenthesized expression.
2493
24942001-12-17 Akim Demaille <akim@epita.fr>
2495
2496 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
2497 nlookaheads is a new member.
2498 Adjust all users.
2499 * src/lalr.h (nlookaheads): Remove this orphan declaration.
2500 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
2501 state.
2502
25032001-12-17 Akim Demaille <akim@epita.fr>
2504
2505 * src/files.h, src/files.c (open_files, close_files): Remove.
2506 * src/main.c (main): Don't open/close files, nor invoke lex_free,
2507 let...
2508 * src/reader.c (reader): Do it.
2509
25102001-12-17 Akim Demaille <akim@epita.fr>
2511
2512 * src/conflicts.c (print_reductions): Formatting changes.
2513
25142001-12-17 Akim Demaille <akim@epita.fr>
2515
2516 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
2517 (flush_reduce): New.
2518 (resolve_sr_conflict): Adjust.
2519
25202001-12-17 Akim Demaille <akim@epita.fr>
2521
2522 * src/output.c (output_obstack): Be static and rename as...
2523 (format_obstack): this, to avoid any confusion with files.c's
2524 output_obstack.
2525 * src/reader.h (muscle_obstack): Move to...
2526 * src/output.h: here, since it's defined in output.c.
2527
25282001-12-17 Akim Demaille <akim@epita.fr>
2529
2530 * src/output.c (action_row, save_column, default_goto)
2531 (sort_actions, matching_state, pack_vector): Better variable
2532 locality.
2533
25342001-12-17 Akim Demaille <akim@epita.fr>
2535
2536 * src/output.c: Various formatting changes.
2537
25382001-12-17 Akim Demaille <akim@epita.fr>
2539
2540 * src/files.c (output_files): Free the output_obstack.
2541 * src/main.c (main): Call print and print_graph conditionally.
2542 * src/print.c (print): Work unconditionally.
2543 * src/print_graph.c (print_graph): Work unconditionally.
2544 * src/conflicts.c (log_resolution): Output only if verbose_flag.
2545
25462001-12-16 Marc Autret <autret_m@epita.fr>
2547
2548 * src/output.c (actions_output): Fix. When we use %no-lines,
2549 there is one less line per action.
2550
25512001-12-16 Marc Autret <autret_m@epita.fr>
2552
2553 * src/bison.simple: Remove a useless #line directive.
2554 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
2555 * src/output.c (get_lines_number): New.
2556 (output_parser): Adjust, now takes care about the lines of a
2557 output muscles.
2558 Fix line numbering.
2559 (actions_output): Computes the number of lines taken by actions.
2560 (output_master_parser): Insert new skeleton which is the name of
2561 the output parser file name.
2562
25632001-12-15 Marc Autret <autret_m@epita.fr>
2564
2565 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
2566
25672001-12-15 Marc Autret <autret_m@epita.fr>
2568
2569 * src/output.c (output_gram): Keep track of the hairy one.
2570
25712001-12-15 Akim Demaille <akim@epita.fr>
2572
2573 Make `make distcheck' work.
2574
2575 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
2576 system.h which uses libgettext.h.
2577
25782001-12-15 Akim Demaille <akim@epita.fr>
2579
2580 * src/nullable.c (set_nullable): Useless rules must be skipped,
2581 otherwise, since we range over their symbols, we might look at a
2582 nonterminal which no longer ``exists'', i.e., it is not counted in
2583 `nvars', hence we overflow our arrays.
2584
25852001-12-15 Akim Demaille <akim@epita.fr>
2586
2587 The header can also be produced directly, without any obstack!
2588 Yahoo!
2589
2590 * src/files.c, src/files.h (defines_obstack): Remove.
2591 (compute_header_macro): Global.
2592 (defines_obstack_save): Remove.
2593 * src/reader.c (parse_union_decl): No longer output to
2594 defines_obstack: its content can be found in the `stype' muscle
2595 anyway.
2596 (output_token_translations): Merge into...
2597 (symbols_output): this.
2598 Rename as...
2599 (symbols_save): this.
2600 (reader): Adjust.
2601 * src/output.c (header_output): New.
2602 (output): Call it.
2603
26042001-12-15 Akim Demaille <akim@epita.fr>
2605
2606 * src/reader.c (parse_union_decl): Instead of handling two obstack
2607 simultaneously, use one to define the `stype' muscle, and use the
2608 value of the latter to fill defines_obstack.
2609 (copy_comment): Remove.
2610 (copy_comment2): Work for a single obstack.
2611 Rename as...
2612 (copy_comment): this.
2613
26142001-12-15 Akim Demaille <akim@epita.fr>
2615
2616 * src/lex.c, src/lex.h (xgetc): No longer static.
2617 * src/reader.c (parse_union_decl): Revamp.
2618
26192001-12-15 Akim Demaille <akim@epita.fr>
2620
2621 Still making progress in separating Bison into (i) input, (ii)
2622 process, (iii) output: now we can directly output the parser file
2623 without using table_obstack at all.
2624
2625 * src/files.c, src/files.h (table_obstack): Bye bye.
2626 (parser_file_name): New.
2627 * src/files.c (compute_output_file_names): Compute it.
2628 * src/output.c (actions_output, output_parser)
2629 (output_master_parser): To a file instead of an obstack.
2630
26312001-12-15 Akim Demaille <akim@epita.fr>
2632
2633 Attach actions to rules, instead of pre-outputting them to
2634 actions_obstack.
2635
2636 * src/gram.h (rule_t): action and action_line are new members.
2637 * src/reader.c (symbol_list): Likewise.
2638 (copy_action): Save the actions within the rule.
2639 (packgram): Save them in rule_table.
2640 * src/output.c (actions_output): New.
2641 (output_parser): Use it on `%%actions'.
2642 (output_rule_data): Don't free rule_table.
2643 (output): Do it.
2644 (prepare): Don't save the `action' muscle.
2645 * src/bison.simple: s/%%action/%%actions/.
2646
26472001-12-15 Akim Demaille <akim@epita.fr>
2648
2649 * src/reader.c (copy_action): When --yacc, don't append a `;'
2650 to the user action: let it fail if lacking.
2651 Suggested by Arnold Robbins and Tom Tromey.
2652
26532001-12-14 Akim Demaille <akim@epita.fr>
2654
2655 * src/lex.c (literalchar): Simply return the char you decoded, non
2656 longer mess around with obstacks and int pointers.
2657 Adjust all callers.
2658
26592001-12-14 Akim Demaille <akim@epita.fr>
2660
2661 * src/lex.c (literalchar): Don't escape the special characters,
2662 just decode them, and keep them as char (before, eol was output as
2663 the 2 char string `\n' etc.).
2664 * src/output.c (output_rule_data): Use quotearg to output the
2665 token strings.
2666
26672001-12-13 Paul Eggert <eggert@twinsun.com>
2668
2669 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
2670 Do not infringe on the global user namespace when using C++.
2671 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
2672 All uses of `fprintf' and `stderr' changed.
2673
2674 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
2675
26762001-12-13 Akim Demaille <akim@epita.fr>
2677
2678 The computation of nullable is broken: it doesn't handle empty
2679 RHS's properly.
2680
2681 * tests/torture.at (GNU AWK Grammar): New.
2682 * tests/sets.at (Nullable): New.
2683 * src/nullable.c (set_nullable): Instead of blindly looping over
2684 `ritems', loop over the rules, and then over their rhs's.
2685
2686 Work around Autotest bugs.
2687
2688 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
2689 frame, because Autotest understand lines starting with a `+' as
2690 traces from the shell. Then, they are not processed properly.
2691 Admittedly an Autotest bug, but we don't have time to wait for
2692 Autotest to catch up.
2693 * tests/regression.at (Broken Closure): Adjust to the new table
2694 frames.
2695 Move to...
2696 * tests/sets.at: here.
2697
26982001-12-13 Akim Demaille <akim@epita.fr>
2699
2700 * src/closure.c (closure): Use nrules instead of playing tricks
2701 with BITS_PER_WORD.
2702
27032001-12-13 Akim Demaille <akim@epita.fr>
2704
2705 * src/print.c (print_actions): Output the handling of `$' as the
2706 traces do: shifting the token EOF. Before EOF was treated as a
2707 nonterminal.
2708 * tests/regression.at: Adjust some tests.
2709 * src/print_graph.c (print_core): Complete the set of items via
2710 closure. The next-to-final and final states are still unsatisfying,
2711 but that's to be addressed elsewhere.
2712 No longer output the rule numbers, but do output the state number.
2713 A single loop for the shifts + gotos is enough, but picked a
2714 distinct color for each.
2715 (print_graph): Initialize and finalize closure.
2716
27172001-12-13 Akim Demaille <akim@epita.fr>
2718
2719 * src/reader.c (readgram): Remove dead code, an strip useless
2720 braces.
2721 (get_type): Remove, unused.
2722
27232001-12-12 Akim Demaille <akim@epita.fr>
2724
2725 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
2726 on that of lib/error.c.
2727
27282001-12-12 Akim Demaille <akim@epita.fr>
2729
2730 Some hosts don't like `/' in includes.
2731
2732 * src/system.h: Include libgettext.h without qualifying the path.
2733 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
2734 $(top_srcdir).
2735
27362001-12-11 Marc Autret <autret_m@epita.fr>
2737
2738 * src/output.c (output_parser): Remove useless muscle.
2739
27402001-12-11 Marc Autret <autret_m@epita.fr>
2741
2742 * src/bison.simple: Remove #line just before %%epilogue. It
2743 is now handled in ...
2744 * src/reader.c (read_additionnal_code): Add the output of a
2745 #line for the epilogue.
2746
27472001-12-10 Marc Autret <autret_m@epita.fr>
2748
2749 * src/reader.c (copy_definition): Re-use CPP-outed code which
2750 replace precedent remove.
2751 * src/bison.simple: Remove #line before %%prologue because
2752 %%input-line is wrong at this time.
2753
27542001-12-10 Marc Autret <autret_m@epita.fr>
2755
2756 * src/reader.c (symbols_output): Clean up.
2757 * src/output.c (output_gram, output): Clean up.
2758
27592001-12-10 Akim Demaille <akim@epita.fr>
2760
2761 * src/lalr.c (initialize_lookaheads): New. Extracted from...
2762 * src/LR0.c (set_state_table): here.
2763 * src/lalr.c (lalr): Call it.
2764
27652001-12-10 Akim Demaille <akim@epita.fr>
2766
2767 * src/state.h (shifts): Remove the `number' member: shifts are
2768 attached to state, hence no longer need to be labelled with a
2769 state number.
2770
27712001-12-10 Akim Demaille <akim@epita.fr>
2772
2773 Now that states have a complete set of members, the linked list of
2774 shifts is useless: just fill directly the state's shifts member.
2775
2776 * src/state.h (shifts): Remove the `next' member.
2777 * src/LR0.c (first_state, last_state): Remove.
2778 Adjust the callers.
2779 (augment_automaton): Don't look for the shifts that must be added
2780 a shift on EOF: it is those of the state we looked for! But now,
2781 since shifts are attached, it is no longer needed to looking
2782 merely by its id: its number.
2783
27842001-12-10 Akim Demaille <akim@epita.fr>
2785
2786 * src/LR0.c (augment_automaton): Better variable locality.
2787 Remove an impossible branch: if there is a state corresponding to
2788 the start symbol being shifted, then there is shift for the start
2789 symbol from the initial state.
2790
27912001-12-10 Akim Demaille <akim@epita.fr>
2792
2793 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
2794 only when appropriate: when insert_start_shifting_state' is not
2795 invoked.
2796 * tests/regression.at (Rule Line Numbers): Adjust.
2797
27982001-12-10 Akim Demaille <akim@epita.fr>
2799
2800 * src/LR0.c (augment_automaton): Now that all states have shifts,
2801 merge the two cases addition shifts to the initial state.
2802
28032001-12-10 Akim Demaille <akim@epita.fr>
2804
2805 * src/lalr.c (set_state_table): Move to...
2806 * src/LR0.c: here.
2807 * src/lalr.c (lalr): Don't call it...
2808 * src/LR0.c (generate_states): do it.
2809 * src/LR0.h (first_state): Remove, only the table is used.
2810
28112001-12-10 Akim Demaille <akim@epita.fr>
2812
2813 * src/LR0.h (first_shift, first_reduction): Remove.
2814 * src/lalr.c: Don't use first_shift: find shifts through the
2815 states.
2816
28172001-12-10 Akim Demaille <akim@epita.fr>
2818
2819 * src/LR0.c: Attach shifts to states as soon as they are
2820 computed.
2821 * src/lalr.c (set_state_table): Instead of assigning shifts to
2822 state, just assert that the mapping was properly done.
2823
28242001-12-10 Akim Demaille <akim@epita.fr>
2825
2826 * src/LR0.c (insert_start_shift): Rename as...
2827 (insert_start_shifting_state): this.
2828 (insert_eof_shifting_state, insert_accepting_state): New.
2829 (augment_automaton): Adjust.
2830 Better locality of the variables.
2831 When looking if the start_symbol is shifted from the initial
2832 state, using `while (... symbol != start_symbol ...)' sounds
2833 better than `while (... symbol < start_symbol ...)': If fail
2834 to see how the order between symbols could be relevant!
2835
28362001-12-10 Akim Demaille <akim@epita.fr>
2837
2838 * src/getargs.h: Don't declare `spec_name_prefix' and
2839 `spec_file_prefix', declared by src/files.h.
2840 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
2841 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
2842 * src/output.c (prepare): Adjust.
2843 * src/reader.c (symbols_output): Likewise.
2844 * src/vmsgetargs.c: Vaguely adjust, but who cares?
2845
28462001-12-10 Akim Demaille <akim@epita.fr>
2847
2848 * src/muscle_tab.c (muscle_init): NULL is a better default than
2849 `"0"'.
2850
28512001-12-10 Akim Demaille <akim@epita.fr>
2852
2853 * src/reader.c (reader): Calling symbols_output once is enough.
2854
28552001-12-10 Akim Demaille <akim@epita.fr>
2856
2857 Now that states have a complete set of members, the linked list of
2858 reductions is useless: just fill directly the state's reductions
2859 member.
2860
2861 * src/state.h (struct reductions): Remove member `number' and
2862 `next'.
2863 * src/LR0.c (first_reduction, last_reduction): Remove.
2864 (save_reductions): Don't link the new reductions, store them in
2865 this_state.
2866 * src/lalr.c (set_state_table): No need to attach reductions to
2867 states, it's already done.
2868 * src/output.c (output_actions): No longer free the shifts, then
2869 the reductions, then the states: free all the states and their
2870 members.
2871
28722001-12-10 Akim Demaille <akim@epita.fr>
2873
2874 * src/options.c (OPTN, DRTV, BOTH): New.
2875 (option_table): Use them.
2876
2877 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
2878 the job of system.h.
2879 * src/options.c: Don't include stdio.h and xalloc.h for the same
2880 reasons.
2881
28822001-12-10 Akim Demaille <akim@epita.fr>
2883
2884 * src/output.c (output, prepare): Make sure the values of the
2885 muscles `action' and `prologue' are 0-terminated.
2886
28872001-12-10 Akim Demaille <akim@epita.fr>
2888
2889 Clean up GCC warnings.
2890
2891 * src/reader.c (copy_action): `buf' is not used.
2892 (parse_skel_decl): Be static.
2893 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
2894 * src/options.h (create_long_option_table): Have a real prototype.
2895 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
2896 (hash_delete_at): Return const void *.
2897 Adjust casts to preserve the const.
2898
28992001-12-10 Akim Demaille <akim@epita.fr>
2900
2901 * configure.in: Require 2.52g.
2902 M4 is not needed, but AUTOM4TE is.
2903 * m4/m4.m4: Remove.
2904 * tests/Makefile.am: Adjust.
2905
29062001-12-10 Akim Demaille <akim@epita.fr>
2907
2908 One structure for states is enough, even though theoretically
2909 there are LR(0) states and LALR(1) states.
2910
2911 * src/lalr.h (state_t): Remove.
2912 (state_table): Be state_t **, not state_t *.
2913 * src/state.h (core, CORE_ALLOC): Rename as...
2914 (state_t, STATE_ALLOC): this.
2915 Add the LALR(1) members: shifts, reductions, errs.
2916 * src/LR0.c (state_table): Rename as...
2917 (state_hash): this, to avoid name clashes with the global
2918 `state_table'.
2919 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
2920 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
2921
29222001-12-10 Akim Demaille <akim@epita.fr>
2923
2924 Bison dumps core on bash.y.
2925 Reported by Pascal Bart.
2926
2927 * src/warshall.c (bitmatrix_print): New.
2928 (TC): Use it.
2929 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
2930 j must be the outer loop.
2931 * tests/regression.at (Broken Closure): New.
2932
29332001-12-05 Akim Demaille <akim@epita.fr>
2934
2935 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
2936 its argument.
2937