1 2002-04-07 Akim Demaille <akim@epita.fr>
3 * src/output.c (output_rule_data): Fix various range errors:
4 `rules' starts at 1, not 0.
7 2002-04-07 Akim Demaille <akim@epita.fr>
9 Remove the useless rules from the parser.
11 * src/gram.h, src/gram.c (rules_swap, rule_rhs_length): New.
12 (ritem_longest_rhs): Use the latter.
13 * src/gram.h (rule_t): `number' is a new member.
14 * src/reader.c (packgram): Set it.
15 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
16 the end of `rules', and count them out of `nrules'.
17 (reduce_output, dump_grammar): Adjust.
18 * src/print.c (print_grammar): It is no longer needed to check for
19 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
20 * tests/reduce.at (Reduced Automaton): New test.
22 diff -x *.po -ur -x testsuite bison-1.49a/NEWS bison/NEWS
23 --- bison-1.49a/NEWS Sun Apr 7 17:36:56 2002
24 +++ bison/NEWS Sun Apr 7 18:19:39 2002
27 Changes in version 1.49a:
29 +* Useless rules are actually removed.
30 + Before, Bison reported the useless rules, but, although not used,
31 + included them in the parsers.
33 * False `Token not used' report fixed.
36 diff -x *.po -ur -x testsuite bison-1.49a/src/gram.c bison/src/gram.c
37 --- bison-1.49a/src/gram.c Sun Apr 7 17:36:56 2002
38 +++ bison/src/gram.c Sun Apr 7 18:19:39 2002
40 /* Allocate input grammar variables for bison,
41 - Copyright 1984, 1986, 1989, 2001 Free Software Foundation, Inc.
42 + Copyright 1984, 1986, 1989, 2001, 2002 Free Software Foundation, Inc.
44 This file is part of Bison, the GNU Compiler Compiler.
47 int error_token_number;
50 +/*----------------------------------.
51 +| Swap the rules number R1 and R2. |
52 +`----------------------------------*/
55 +rules_swap (int r1, int r2)
57 + /* The easy part: swap the immediate contents of the structures. */
59 + rule_t rule = rules[r1];
60 + rules[r1] = rules[r2];
64 + /* The first negative number in the RHS is the rule number. */
67 + for (rhsp = rules[r1].rhs; *rhsp >= 0; ++rhsp)
69 + assert (*rhsp == -r2);
72 + for (rhsp = rules[r2].rhs; *rhsp >= 0; ++rhsp)
74 + assert (*rhsp == -r1);
80 +/*--------------------------------------.
81 +| Return the number of symbols in RHS. |
82 +`--------------------------------------*/
85 +rule_rhs_length (rule_t *rule)
89 + for (rhsp = rule->rhs; *rhsp >= 0; ++rhsp)
95 /*------------------------.
96 | Dump RITEM for traces. |
97 `------------------------*/
100 ritem_longest_rhs (void)
109 - for (i = 0; i < nritems; ++i)
120 + for (i = 1; i < nrules + 1; ++i)
122 + int length = rule_rhs_length (&rules[i]);
129 diff -x *.po -ur -x testsuite bison-1.49a/src/gram.h bison/src/gram.h
130 --- bison-1.49a/src/gram.h Sun Apr 7 17:55:00 2002
131 +++ bison/src/gram.h Sun Apr 7 18:19:39 2002
134 typedef struct rule_s
136 + /* The number of the rule in the source. It is usually the index in
137 + RULES too, except if there are useless rules. */
145 extern int error_token_number;
147 +/* Swap two rules. */
148 +void rules_swap PARAMS ((int r1, int r2));
150 +/* Report the length of the RHS. */
151 +int rule_rhs_length PARAMS ((rule_t *rule));
153 /* Dump RITEM for traces. */
154 void ritem_print PARAMS ((FILE *out));
155 diff -x *.po -ur -x testsuite bison-1.49a/src/print.c bison/src/print.c
156 --- bison-1.49a/src/print.c Sun Apr 7 17:55:00 2002
157 +++ bison/src/print.c Sun Apr 7 18:19:39 2002
158 @@ -366,19 +366,17 @@
159 fprintf (out, "%s\n\n", _("Grammar"));
160 fprintf (out, " %s\n", _("Number, Line, Rule"));
161 for (i = 1; i < nrules + 1; i++)
162 - /* Don't print rules disabled in reduce_grammar_tables. */
163 - if (rules[i].useful)
165 - fprintf (out, _(" %3d %3d %s ->"),
166 - i - 1, rules[i].line, escape (symbols[rules[i].lhs]->tag));
167 - rule = rules[i].rhs;
170 - fprintf (out, " %s", escape (symbols[*rule++]->tag));
172 - fprintf (out, " /* %s */", _("empty"));
176 + fprintf (out, _(" %3d %3d %s ->"),
177 + i - 1, rules[i].line, escape (symbols[rules[i].lhs]->tag));
178 + rule = rules[i].rhs;
181 + fprintf (out, " %s", escape (symbols[*rule++]->tag));
183 + fprintf (out, " /* %s */", _("empty"));
189 diff -x *.po -ur -x testsuite bison-1.49a/src/reader.c bison/src/reader.c
190 --- bison-1.49a/src/reader.c Sun Apr 7 17:56:13 2002
191 +++ bison/src/reader.c Sun Apr 7 18:19:39 2002
192 @@ -1687,6 +1687,7 @@
195 bucket *ruleprec = p->ruleprec;
196 + rules[ruleno].number = ruleno;
197 rules[ruleno].lhs = p->sym->number;
198 rules[ruleno].rhs = ritem + itemno;
199 rules[ruleno].line = p->line;
200 diff -x *.po -ur -x testsuite bison-1.49a/src/reduce.c bison/src/reduce.c
201 --- bison-1.49a/src/reduce.c Sun Apr 7 17:55:00 2002
202 +++ bison/src/reduce.c Sun Apr 7 18:19:39 2002
203 @@ -220,70 +220,59 @@
204 bitset_set (V1, rules[i].precsym);
208 +/*-------------------------------------------------------------------.
209 +| Put the useless productions at the end of RULES, and adjust NRULES |
211 +`-------------------------------------------------------------------*/
214 reduce_grammar_tables (void)
216 - /* This is turned off because we would need to change the numbers in
217 - the case statements in the actions file.
219 - We don't disable it via CPP so that it is still checked with the
220 - rest of the code, to avoid its becoming completely obsolete.
222 - FIXME: I think the comment above demonstrates this code must be
223 - turned off for *semantic* parser, not in the general case. Try
224 - to understand this better --akim. */
227 - /* remove useless productions */
228 - if (nuseless_productions > 0)
230 - short np, pn, ni, pi;
234 - for (pn = 1; pn < nrules + 1; pn++)
235 - if (bitset_test (P, pn))
240 - rules[np].lhs = rules[pn].lhs;
241 - rules[np].line = rules[pn].line;
242 - rules[np].prec = rules[pn].prec;
243 - rules[np].assoc = rules[pn].assoc;
244 - rules[np].rhs = rules[pn].rhs;
245 - if (rules[np].rhs - ritem != ni)
247 - pi = rules[np].rhs - ritem;
248 - rules[np].rhs = ritem + ni;
249 - while (ritem[pi] >= 0)
250 - ritem[ni++] = ritem[pi++];
256 - while (ritem[ni++] >= 0)
262 - nrules -= nuseless_productions;
266 - /* Is it worth it to reduce the amount of memory for the
267 - grammar? Probably not. */
270 - /* Disable useless productions. */
271 + /* Flag useless productions. */
272 if (nuseless_productions > 0)
275 for (pn = 1; pn < nrules + 1; pn++)
276 rules[pn].useful = bitset_test (P, pn);
279 + /* Map the nonterminals to their new index: useful first, useless
280 + afterwards. Kept for later report. */
281 + if (nuseless_productions > 0)
283 + short *map = XCALLOC (short, nrules + 1) - 1;
285 + int useless = nrules + 1 - nuseless_productions;
287 + for (i = 1; i < nrules + 1; ++i)
288 + map[i] = rules[i].useful ? useful++ : useless++;
290 + /* Shuffle elements of tables indexed by symbol number. */
291 + for (i = 1; i < nrules + 1; ++i)
295 + rules_swap (i, map[i]);
301 + nrules -= nuseless_productions;
304 + /* Adjust NRITEMS and NITEMS. */
308 + for (r = nrules + 1; r < nrules + 1 + nuseless_productions; ++r)
310 + length = rule_rhs_length (&rules[r]);
311 + nritems -= length + 1;
312 + nitems -= length + 1;
318 @@ -378,16 +367,15 @@
321 fprintf (out, "%s\n\n", _("Useless rules:"));
322 - for (i = 1; i < nrules + 1; i++)
323 - if (!rules[i].useful)
326 - fprintf (out, "#%-4d ", i - 1);
327 - fprintf (out, "%s:", symbols[rules[i].lhs]->tag);
328 - for (r = rules[i].rhs; *r >= 0; r++)
329 - fprintf (out, " %s", symbols[*r]->tag);
330 - fputs (";\n", out);
332 + for (i = nrules + 1; i < nuseless_productions + nrules + 1; i++)
335 + fprintf (out, "#%-4d ", rules[i].number - 1);
336 + fprintf (out, "%s:", symbols[rules[i].lhs]->tag);
337 + for (r = rules[i].rhs; *r >= 0; r++)
338 + fprintf (out, " %s", symbols[*r]->tag);
339 + fputs (";\n", out);
345 fprintf (out, "\n\n");
346 fprintf (out, "Rules\n-----\n\n");
347 fprintf (out, "Num (Prec, Assoc, Useful, Ritem Range) Lhs -> Rhs (Ritem range) [Num]\n");
348 - for (i = 1; i < nrules + 1; i++)
349 + for (i = 1; i < nrules + nuseless_productions + 1; i++)
352 /* Find the last RHS index in ritems. */
355 fprintf (out, "\n\n");
356 fprintf (out, "Rules interpreted\n-----------------\n\n");
357 - for (i = 1; i < nrules + 1; i++)
358 + for (i = 1; i < nrules + nuseless_productions + 1; i++)
360 fprintf (out, "%-5d %s :", i, symbols[rules[i].lhs]->tag);
361 for (r = rules[i].rhs; *r >= 0; r++)
362 diff -x *.po -ur -x testsuite bison-1.49a/tests/reduce.at bison/tests/reduce.at
363 --- bison-1.49a/tests/reduce.at Sun Apr 7 17:36:56 2002
364 +++ bison/tests/reduce.at Sun Apr 7 18:19:39 2002
368 ## ------------------- ##
369 +## Reduced Automaton. ##
370 +## ------------------- ##
372 +# Check that the automaton is that as the for the grammar reduced by
375 +AT_SETUP([Reduced Automaton])
377 +# The non reduced grammar.
378 +# ------------------------
379 +AT_DATA([[not-reduced.y]],
380 +[[/* A useless token. */
381 +%token useless_token
385 +%output="not-reduced.c"
389 +exp: useful { /* A useful action. */ }
390 + | non_productive { /* A non productive action. */ }
393 +not_reachable: useful { /* A not reachable action. */ }
396 +non_productive: non_productive useless_token
397 + { /* Another non productive action. */ }
401 +AT_CHECK([[bison not-reduced.y]], 0, [],
402 +[[not-reduced.y contains 2 useless nonterminals and 3 useless rules
405 +AT_CHECK([[sed -n '/^Grammar/q;/^$/!p' not-reduced.output]], 0,
406 +[[Useless nonterminals:
409 +Terminals which are not used:
412 +#2 exp: non_productive;
413 +#3 not_reachable: useful;
414 +#4 non_productive: non_productive useless_token;
417 +# The reduced grammar.
418 +# --------------------
419 +AT_DATA([[reduced.y]],
420 +[[/* A useless token. */
421 +%token useless_token
429 +exp: useful { /* A useful action. */ }
430 +// | non_productive { /* A non productive action. */ } */
433 +//not_reachable: useful { /* A not reachable action. */ }
436 +//non_productive: non_productive useless_token
437 +// { /* Another non productive action. */ }
441 +AT_CHECK([[bison reduced.y]])
443 +# Comparing the parsers.
445 +AT_CHECK([sed 's/not-reduced/reduced/g' not-reduced.c], 0, [expout])
451 +## ------------------- ##
452 ## Underivable Rules. ##
453 ## ------------------- ##
455 2002-04-07 Akim Demaille <akim@epita.fr>
457 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
458 lacking `+ 1' to nrules, Bison reported as useless a token if it
459 was used solely to set the precedence of the last rule...
462 2002-04-07 Akim Demaille <akim@epita.fr>
464 * data/bison.c++, data/bison.simple: Don't output the current file
465 name in #line, to avoid useless diffs between two identical
466 outputs under different names.
469 2002-04-07 Akim Demaille <akim@epita.fr>
471 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
472 Normalize loops to using `< nrules + 1', not `<= nrules'.
475 2002-04-07 Akim Demaille <akim@epita.fr>
480 2002-04-07 Akim Demaille <akim@epita.fr>
482 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
483 bucket.value as bucket.number.
486 2002-04-07 Akim Demaille <akim@epita.fr>
488 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
489 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
490 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
491 RHS, instead of being an index in RITEMS.
493 2002-04-04 Paul Eggert <eggert@twinsun.com>
495 * doc/bison.texinfo: Update copyright date.
496 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
497 (Symbols): Warn about running Bison in one character set,
498 but compiling and/or running in an incompatible one.
499 Warn about character code 256, too.
501 2002-04-03 Paul Eggert <eggert@twinsun.com>
503 * src/bison.data (YYSTACK_ALLOC): Depend on whether
504 YYERROR_VERBOSE is nonzero, not whether it is defined.
506 Merge changes from bison-1_29-branch.
508 2002-03-20 Paul Eggert <eggert@twinsun.com>
510 Merge fixes from Debian bison_1.34-1.diff.
512 * configure.in (AC_PREREQ): 2.53.
514 2002-03-20 Akim Demaille <akim@epita.fr>
516 * src/conflicts.c (log_resolution): Argument `resolution' is const.
518 2002-03-19 Paul Eggert <eggert@twinsun.com>
520 * src/bison.simple (YYCOPY): New macro.
521 (YYSTACK_RELOCATE): Use it.
522 Remove Type arg; no longer needed. All callers changed.
523 (yymemcpy): Remove; no longer needed.
525 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
526 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
528 2002-03-19 Akim Demaille <akim@epita.fr>
530 Test and fix the #line outputs.
532 * tests/atlocal.at (GCC): New.
533 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
534 (Prologue synch line, ,%union synch line, Postprologue synch line)
535 (Action synch line, Epilogue synch line): New tests.
536 * src/reader.c (parse_union_decl): Define the muscle stype_line.
537 * data/bison.simple, data/bison.c++: Use it.
540 2002-03-19 Akim Demaille <akim@epita.fr>
542 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
543 (Solved SR Conflicts, %expect not enough, %expect right)
544 (%expect too much): Move to...
545 * tests/conflicts.at: this new file.
547 2002-03-19 Akim Demaille <akim@epita.fr>
549 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
550 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
551 that we can move to enums for instance.
552 * src/output.c (token_definitions_output): Output a list of
553 `token-name, token-number' instead of the #define.
554 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
556 2002-03-14 Akim Demaille <akim@epita.fr>
560 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
562 * data/bison.c++: Make the user able to add members to the generated
563 parser by subclassing.
565 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
567 * src/reader.c (read_additionnal_code): `c' should be an integer, not
569 Reported by Nicolas Tisserand and Nicolas Burrus.
571 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
573 * src/reader.c: Warn about lacking semi-colons, do not complain.
575 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
577 * data/bison.c++: Remove a debug line.
579 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
581 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
582 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
583 provide a default implementation.
585 2002-03-04 Akim Demaille <akim@epita.fr>
587 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
588 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
589 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
590 * tests/semantic.at (Parsing Guards): Similarly.
591 * src/reader.at (readgram): Complain if the last rule is not ended
594 2002-03-04 Akim Demaille <akim@epita.fr>
596 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
597 * src/closure.c: here.
598 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
600 * src/warshall.h, src/warshall.c: Remove.
601 * tests/sets.at (Broken Closure): Adjust.
603 2002-03-04 Akim Demaille <akim@epita.fr>
605 * src/output.c (output_skeleton): tempdir is const.
606 bytes_read is unused.
608 2002-03-04 Akim Demaille <akim@epita.fr>
610 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
611 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
615 2002-03-04 Akim Demaille <akim@epita.fr>
617 * src/closure.c (closure): `r' is unused.
619 2002-03-04 Akim Demaille <akim@epita.fr>
621 * tests/sets.at (Broken Closure): Add the ending `;'.
622 * src/reader.at (readgram): Complain if a rule is not ended with a
625 2002-03-04 Akim Demaille <akim@epita.fr>
627 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
628 (count_sr_conflicts): Use bitset_count.
629 * src/reduce.c (inaccessable_symbols): Ditto.
631 * src/warshall.h, src/warshall.c: Convert to bitsetv.
633 2002-03-04 Akim Demaille <akim@epita.fr>
635 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
636 * src/reduce.c: Remove the `bitset_zero's following the
637 `bitset_create's, as now it is performed by the latter.
639 2002-03-04 Akim Demaille <akim@epita.fr>
641 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
642 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
643 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
644 latest sources from Michael.
646 2002-03-04 Akim Demaille <akim@epita.fr>
648 * src/output.c (output): Don't free the grammar.
649 * src/reader.c (grammar_free): New.
650 * src/main.c (main): Call it and don't free symtab here.
652 2002-03-04 Akim Demaille <akim@epita.fr>
654 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
656 Reported by Benoit Perrot.
658 2002-03-04 Akim Demaille <akim@epita.fr>
660 Use bitset operations when possible, not loops over bits.
662 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
664 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
665 * src/reduce.c (useless_nonterminals): Formatting changes.
666 * src/warshall.c (TC): Use bitset_or.
668 2002-03-04 Akim Demaille <akim@epita.fr>
670 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
671 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
674 2002-03-04 Akim Demaille <akim@epita.fr>
676 * src/lalr.c (F): Now a bitset*.
677 Adjust all dependencies.
679 2002-03-04 Akim Demaille <akim@epita.fr>
681 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
682 Adjust all dependencies.
684 2002-03-04 Akim Demaille <akim@epita.fr>
686 * src/L0.c, src/LR0.h (nstates): Be size_t.
687 Adjust comparisons (signed vs unsigned).
688 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
690 Adjust all dependencies.
692 2002-03-04 Akim Demaille <akim@epita.fr>
694 * src/closure.c (firsts): Now, also a bitset.
695 Adjust all dependencies.
696 (varsetsize): Remove, now unused.
697 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
699 2002-03-04 Akim Demaille <akim@epita.fr>
701 * src/print.c: Convert to use bitset.h, not hand coded iterations
704 2002-03-04 Akim Demaille <akim@epita.fr>
706 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
708 2002-03-04 Akim Demaille <akim@epita.fr>
710 * src/closure.c (ruleset): Be a bitset.
711 (rulesetsize): Remove.
713 2002-03-04 Akim Demaille <akim@epita.fr>
715 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
716 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
717 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
718 * src/closure.c (fderives): Be an array of bitsets.
720 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
722 * data/bison.c++: Merge the two generated headers. Insert a copyright
723 notice in each output file.
725 2002-02-28 Akim Demaille <akim@epita.fr>
727 * data/bison.c++: Copy the prologue of bison.simple to fetch
728 useful M4 definitions, such as b4_header_guard.
730 2002-02-25 Akim Demaille <akim@epita.fr>
732 * src/getargs.c (version): Give the name of the authors, and use a
733 translator friendly scheme for the bgr
736 2002-02-25 Akim Demaille <akim@epita.fr>
738 * src/output.c (header_output): Remove, now handled completely via
741 2002-02-25 Akim Demaille <akim@epita.fr>
743 * m4/m4.m4: New, from CVS Autoconf.
744 * configure.in: Invoke it.
745 * src/output.c (output_skeleton): Use its result instead of the
748 2002-02-25 Akim Demaille <akim@epita.fr>
750 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
752 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
753 * src/output.c (output_skeleton): Use mkstemp to create a real
755 Move the filling of `skeleton' and its muscle to...
757 (output): Move the definition of the prologue muscle to...
759 * src/system.h (DEFAULT_TMPDIR): New.
761 2002-02-14 Paul Eggert <eggert@twinsun.com>
763 Remove the support for C++ namespace cleanliness; it was
764 causing more problems than it was curing, since it didn't work
765 properly on some nonstandard C++ compilers. This can wait
766 for a proper C++ parser.
768 * NEWS: Document this.
769 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
770 of C++, as it's treated like C now.
771 * src/bison.simple (YYSTD): Remove.
772 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
773 Treat C++ just like Standard C instead of trying to support
774 namespace cleanliness.
776 2002-02-14 Akim Demaille <akim@epita.fr>
778 * tests/regression.at (else): Adjust to Andreas' change.
780 2002-02-14 Akim Demaille <akim@epita.fr>
782 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
784 2002-02-13 Andreas Schwab <schwab@suse.de>
786 * src/output.c (output_rule_data): Don't output NULL, it might
789 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
791 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
792 (Copyright notice): Update.
794 2002-02-11 Akim Demaille <akim@epita.fr>
796 * tests/regression.at (%nonassoc and eof): Don't include
799 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
801 * data/bison.c++: Correct error recovery. Make the user able to
802 initialize the starting location.
804 2002-02-07 Akim Demaille <akim@epita.fr>
806 * tests/input.at: New.
808 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
810 * data/bison.c++: Replace some direct m4 expansions by constants. Be
811 more consistent when naming methods and variables. Put preprocessor
812 directives around tables only needed for debugging.
814 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
816 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
818 (yy::b4_name::parse): Use print_.
820 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
822 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
824 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
826 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
828 (yy::b4_name::parse): Build verbose error messages, and use error_.
830 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
832 * data/bison.c++: Fix m4 quoting in comments.
834 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
836 * data/bison.c++: Adjust the parser code. Fix some muscles that were
839 2002-02-05 Akim Demaille <akim@epita.fr>
841 * data/bison.c++: Adjust to the M4 back end.
842 More is certainly needed.
844 2002-02-05 Akim Demaille <akim@epita.fr>
846 Give a try to M4 as a back end.
848 * lib/readpipe.c: New, from wdiff.
849 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
851 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
852 specific values. Now it is m4 that performs the lookup.
853 * src/parse-skel.y: Remove.
854 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
855 * src/output.c (actions_output, guards_output)
856 (token_definitions_output): No longer keeps track of the output
857 line number, hence remove the second argument.
858 (guards_output): Check against the guard member of a rule, not the
861 (output_skeleton): Don't look for the skeleton location, let m4 do
863 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
865 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
866 (prepare): Given that for the time being changesyntax is not
867 usable in M4, rename the muscles using `-' to `_'.
868 Define `defines_flag', `output_parser_name' and `output_header_name'.
869 * src/output.h (actions_output, guards_output)
870 (token_definitions_output): Adjust prototypes.
871 * src/scan-skel.l: Instead of scanning the skeletons, it now
872 processes the output of m4: `__oline__' and `#output'.
873 * data/bison.simple: Adjust to be used by M4(sugar).
874 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
876 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
877 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
878 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
879 shamelessly stolen from CVS Autoconf.
881 2002-02-05 Akim Demaille <akim@epita.fr>
883 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
884 * configure.in: Check for the declarations of free and malloc.
885 * src/muscle_tab.c: Adjust.
887 2002-02-05 Akim Demaille <akim@epita.fr>
889 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
890 which have no values.
892 2002-02-05 Akim Demaille <akim@epita.fr>
894 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
897 2002-01-29 Paul Eggert <eggert@twinsun.com>
899 * src/bison.simple (YYSIZE_T): Do not define merely because
900 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
901 On some platforms, <alloca.h> does not declare YYSTD (size_t).
903 2002-01-27 Akim Demaille <akim@epita.fr>
905 Fix `%nonassoc and eof'.
907 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
908 which were not properly copied! Replace
909 memcpy (res->errs, src->errs, src->nerrs);
911 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
913 * tests/regression.at (%nonassoc and eof): Adjust to newest
914 Autotest: `.' is not in the PATH.
916 2002-01-27 Akim Demaille <akim@epita.fr>
918 * tests/sets.at (AT_EXTRACT_SETS): New.
922 2002-01-26 Akim Demaille <akim@epita.fr>
924 * tests/actions.at, tests/calc.at, tests/headers.at,
925 * tests/torture.at: Adjust to the newest Autotest which no longer
926 forces `.' in the PATH.
928 2002-01-25 Akim Demaille <akim@epita.fr>
930 * tests/regression.at (%nonassoc and eof): New.
931 Suggested by Robert Anisko.
933 2002-01-24 Akim Demaille <akim@epita.fr>
935 Bison dumps core when trying to complain about broken input files.
936 Reported by Cris van Pelt.
938 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
939 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
941 (Invalid inputs): Strengthen: exercise parse_percent_token.
943 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
945 * src/Makefile.am: Add bison.c++.
946 * src/bison.c++: New skeleton.
948 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
952 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
954 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
956 2002-01-20 Marc Autret <marc@gnu.org>
958 * src/files.c (compute_output_file_names): Fix
960 2002-01-20 Marc Autret <marc@gnu.org>
962 * tests/output.at: New test.
963 * src/files.c (compute_base_names): Don't map extensions when
964 the YACC flag is set, use defaults.
965 Reported by Evgeny Stambulchik.
967 2002-01-20 Marc Autret <marc@gnu.org>
969 * src/system.h: Need to define __attribute__ away for non-GCC
970 compilers as well (i.e. the vendor C compiler).
971 Suggested by Albert Chin-A-Young.
973 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
975 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
976 canonical definition.
977 * src/system.h: Use the canonical definition for PARAMS (avoids
978 a conflict with the macro from lib/hash.h).
980 2002-01-11 Akim Demaille <akim@epita.fr>
982 * configure.in: Use AC_FUNC_STRNLEN.
983 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
985 2002-01-09 Akim Demaille <akim@epita.fr>
987 * src/files.c, src/files.h (output_infix): New.
988 (tab_extension): Remove.
989 (compute_base_names): Compute the former, drop the latter.
990 * src/output.c (prepare): Insert the muscles `output-infix', and
992 * src/parse-skel.y (string, string.1): New.
993 (section.header): Use it.
994 (section.yacc): Remove.
995 (prefix): Remove too.
996 * src/scan-skel.l: Adjust.
997 * src/bison.simple, src/bison.hairy: Adjust.
999 2002-01-09 Akim Demaille <akim@epita.fr>
1001 * configure.in (WERROR_CFLAGS): Compute it.
1002 * src/Makefile.am (CFLAGS): Pass it.
1003 * tests/atlocal.in (CFLAGS): Idem.
1004 * src/files.c: Fix a few warnings.
1005 (get_extension_index): Remove, unused.
1007 2002-01-08 Akim Demaille <akim@epita.fr>
1009 * src/getargs.c (AS_FILE_NAME): New.
1010 (getargs): Use it to convert DOSish file names.
1011 * src/files.c (base_name): Rename as full_base_name to avoid
1012 clashes with `base_name ()'.
1013 (filename_split): New.
1014 (compute_base_names): N-th rewrite, using filename_split.
1016 2002-01-08 Akim Demaille <akim@epita.fr>
1018 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
1019 New, stolen from the Fileutils 4.1.
1020 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
1021 * configure.in: Check for the presence of memrchr, and of its
1024 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
1026 * lib/hash.h (__P): Added definition for this macro.
1027 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
1028 BUILT_SOURCES, to ensure they are generated first.
1029 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
1030 %error-verbose to allow bootstrapping with bison 1.30x.
1032 2002-01-06 Akim Demaille <akim@epita.fr>
1034 * src/reader.c (parse_braces): Don't fetch the next char, the
1035 convention is to fetch on entry.
1036 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
1037 'switch' without a following semicolon.
1038 * tests/regression.at (braces parsing): New.
1040 2002-01-06 Akim Demaille <akim@epita.fr>
1042 Bison is dead wrong in its RR conflict reports.
1044 * tests/torture.at (GNU Cim Grammar): New.
1045 * src/conflicts.c (count_rr_conflicts): Fix.
1047 2002-01-06 Akim Demaille <akim@epita.fr>
1049 Creating package.m4 from configure.ac causes too many problems.
1051 * tests/Makefile.am (package.m4): Create it by hand,
1052 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
1054 2002-01-06 Akim Demaille <akim@epita.fr>
1056 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
1059 2002-01-04 Paul Eggert <eggert@twinsun.com>
1061 * doc/bison.texinfo (Debugging):
1062 Remove YYSTDERR; it's no longer defined or used.
1063 Also, s/cstdio.h/cstdio/.
1065 2002-01-03 Akim Demaille <akim@epita.fr>
1067 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
1069 2002-01-03 Akim Demaille <akim@epita.fr>
1071 * src/parse-skel.y (process_skeleton): Don't bind the parser's
1072 tracing code to --trace, wait for a better --trace option, with
1075 2002-01-03 Akim Demaille <akim@epita.fr>
1077 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
1078 The ISO C++ standard is extremely clear about it: stderr is
1079 considered a macro, not a regular symbol (see table 94 `Header
1080 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
1081 Therefore std:: does not apply to it. It still does with fprintf.
1082 Also, s/cstdio.h/cstdio/.
1084 2002-01-03 Akim Demaille <akim@epita.fr>
1086 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
1087 for non system headers.
1089 2002-01-02 Akim Demaille <akim@epita.fr>
1091 Equip the skeleton chain with location tracking, runtime trace,
1092 pure parser and scanner.
1094 * src/parse-skel.y: Request a pure parser, locations, and prefix
1096 (%union): Having several members with the same type does not help
1097 type mismatches, simplify.
1098 (YYPRINT, yyprint): New.
1099 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
1102 * src/scan-skel.l: Adjust to these changes.
1103 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
1104 (LOCATION_PRINT, skel_control_t): New.
1106 2001-12-30 Akim Demaille <akim@epita.fr>
1108 * src/parse-skel.y: Get rid of the shift/reduce conflict:
1109 replace `gb' with BLANKS.
1110 * src/scan-skel.l: Adjust.
1112 2001-12-30 Akim Demaille <akim@epita.fr>
1114 * src/system.h: We don't need nor want bcopy.
1115 Throw away MS-DOS crap: we don't need getpid.
1116 * configure.in: We don't need strndup. It was even causing
1117 problems: because Flex includes the headers *before* us,
1118 _GNU_SOURCE is not defined by config.h, and therefore strndup was
1120 * lib/xstrndup.c: New.
1121 * src/scan-skel.l: Use it.
1122 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
1123 * src/parse-skel.y: Use %directives instead of #defines.
1125 2001-12-30 Akim Demaille <akim@epita.fr>
1127 * src/skeleton.h: New.
1128 * src/output.c (output_parser, output_master_parser): Remove, dead
1130 * src/output.h (get_lines_number, actions_output, guards_output)
1131 (token_definitions_output): Prototype them.
1132 * src/parse-skel.y: Add the license notice.
1133 Include output.h and skeleton.h.
1134 (process_skeleton): Returns void, and takes a single parameter.
1135 * src/scan-skel.l: Add the license notice.
1137 Don't use %option yylineno: it seems that then Flex imagines
1138 REJECT has been used, and therefore it won't reallocate its
1139 buffers (which makes no other sense to me than a bug). It results
1140 in warnings for `unused: yy_flex_realloc'.
1142 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
1144 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
1145 (MUSCLE_INSERT_PREFIX): ...to there.
1146 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
1147 (MUSCLE_INSERT_PREFIX): Move from here...
1149 * src/bison.hairy: Add a section directive. Put braces around muscle
1150 names. This parser skeleton is still broken, but Bison should not
1151 choke on a bad muscle 'syntax'.
1152 * src/bison.simple: Add a section directive. Put braces around muscle
1155 * src/files.h (strsuffix, stringappend): Add declarations.
1156 (tab_extension): Add declaration.
1157 (short_base_name): Add declaration.
1159 * src/files.c (strsuffix, stringappend): No longer static. These
1160 functions are used in the skeleton parser.
1161 (tab_extension): New.
1162 (compute_base_names): Use the computations done in this function
1163 to guess if the generated parsers should have '.tab' in their
1165 (short_base_name): No longer static.
1167 * src/output.c (output_skeleton): New.
1168 (output): Disable call to output_master_parser, and give a try to
1169 a new skeleton handling system.
1170 (guards_output, actions_output): No longer static.
1171 (token_definitions_output, get_lines_number): No longer static.
1173 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
1175 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
1178 * src/parse-skel.y: New file.
1179 * src/scan-skel.l: New file.
1181 2001-12-29 Akim Demaille <akim@epita.fr>
1183 %name-prefix is broken.
1185 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
1186 Adjust all dependencies.
1187 * tests/headers.at (export YYLTYPE): Strengthen this test: use
1190 Renaming yylval but not yylloc is not consistent. Now we do.
1192 * src/bison.simple: Prefix yylloc if used.
1193 * doc/bison.texinfo (Decl Summary): Document that.
1195 2001-12-29 Akim Demaille <akim@epita.fr>
1197 * doc/bison.texinfo: Promote `%long-directive' over
1199 Remove all references to fixed-output-files, yacc is enough.
1201 2001-12-29 Akim Demaille <akim@epita.fr>
1203 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
1204 user prologue. These are defaults.
1205 * tests/actions.at (Mid-rule actions): Make sure the user can
1206 define YYDEBUG and YYERROR_VERBOSE.
1208 2001-12-29 Akim Demaille <akim@epita.fr>
1210 * src/output.c (header_output): Don't forget to export YYLTYPE and
1212 * tests/headers.at (export YYLTYPE): New, make sure it does.
1213 * tests/regression.at (%union and --defines, Invalid CPP headers):
1215 * tests/headers.at: here.
1217 2001-12-29 Akim Demaille <akim@epita.fr>
1219 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
1221 2001-12-29 Akim Demaille <akim@epita.fr>
1223 * tests/actions.at (Mid-rule actions): Output on a single line
1226 2001-12-29 Akim Demaille <akim@epita.fr>
1228 * doc/bison.texinfo: Formatting changes.
1230 2001-12-29 Akim Demaille <akim@epita.fr>
1232 Don't store the token defs in a muscle, just be ready to output it
1233 on command. Now possible via `symbols'. Fixes a memory leak.
1235 * src/output.c (token_definitions_output): New.
1236 (output_parser, header_output): Use it.
1237 * src/reader.c (symbols_save): Remove.
1239 2001-12-29 Akim Demaille <akim@epita.fr>
1241 * src/bison.simple: Do not provide a default for YYSTYPE and
1242 YYLTYPE before the user's prologue. Otherwise it's hardly... a
1245 2001-12-29 Akim Demaille <akim@epita.fr>
1247 Mid-rule actions are simply... ignored!
1249 * src/reader.c (readgram): Be sure to attach mid-rule actions to
1250 the empty-rule associated to the dummy symbol, not to the host
1252 * tests/actions.at (Mid-rule actions): New.
1254 2001-12-29 Akim Demaille <akim@epita.fr>
1258 * src/reader.c (reader): Free grammar.
1260 2001-12-29 Akim Demaille <akim@epita.fr>
1264 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
1265 since it allocates it for each state, although only one is needed.
1266 (allocate_storage): Do it here.
1268 2001-12-29 Akim Demaille <akim@epita.fr>
1270 * src/options.h, src/options.c (create_long_option_table): Rename
1272 (long_option_table_new): this, with a clearer prototype.
1273 (percent_table): Remove, unused,
1274 * src/getargs.c (getargs): Adjust.
1276 2001-12-29 Akim Demaille <akim@epita.fr>
1278 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
1279 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
1282 2001-12-29 Akim Demaille <akim@epita.fr>
1284 * src/lalr.c (build_relations): Rename `states' as `states1'.
1285 Sorry, I don't understand exactly what it is, no better name...
1287 2001-12-29 Akim Demaille <akim@epita.fr>
1289 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
1290 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
1291 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
1294 2001-12-29 Akim Demaille <akim@epita.fr>
1296 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
1299 2001-12-29 Akim Demaille <akim@epita.fr>
1301 * src/reader.c, src/reader.h (user_toknums): Remove.
1302 Adjust all users to use symbols[i]->user_token_number.
1304 2001-12-29 Akim Demaille <akim@epita.fr>
1306 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
1307 Adjust all users to use symbols[i]->prec or ->assoc.
1309 2001-12-29 Akim Demaille <akim@epita.fr>
1311 * src/reader.c, src/reader.h (tags): Remove.
1312 Adjust all users to use symbols[i]->tag.
1314 2001-12-29 Akim Demaille <akim@epita.fr>
1316 * src/gram.h, src/gram.c (symbols): New, similar to state_table
1318 * src/reader.c (packsymbols): Fill this table.
1320 * src/conflicts.c (resolve_sr_conflict): Adjust.
1321 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
1323 Use symbols[i]->tag instead of tags[i].
1325 2001-12-29 Akim Demaille <akim@epita.fr>
1327 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
1328 In addition, put a comment in there, to replace...
1329 * tests/regression.at (%union and C comments): Remove.
1331 2001-12-29 Akim Demaille <akim@epita.fr>
1333 * tests/regression.at (Web2c Actions): Blindly move the actual
1334 output as expected output. The contents *seem* right to me, but I
1335 can't pretend reading perfectly parser tables... Nonetheless, all
1336 the other tests pass correctly, the table look OK, even though the
1337 presence of `$axiom' is to be noted: AFAICS it is useless (but
1340 2001-12-29 Akim Demaille <akim@epita.fr>
1342 * src/reader.c (readgram): Don't add the rule 0 if there were no
1343 rules read. In other words, add it _after_ having performed
1344 grammar sanity checks.
1345 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
1347 2001-12-29 Akim Demaille <akim@epita.fr>
1349 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
1350 visible, and some states have now a different number.
1352 2001-12-29 Akim Demaille <akim@epita.fr>
1354 * src/reader.c (readgram): Bind the initial rule's lineno to that
1356 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
1357 (Solved SR Conflicts): Adjust rule 0's line number.
1359 2001-12-29 Akim Demaille <akim@epita.fr>
1361 Fix the `GAWK Grammar' failure.
1363 * src/LR0.c (final_state): Initialize to -1 so that we do compute
1364 the reductions of the first state which was mistakenly confused
1365 with the final state because precisely final_state was initialized
1367 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
1368 now noticed by Bison.
1369 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
1370 have a reduction on $default.
1372 2001-12-29 Akim Demaille <akim@epita.fr>
1374 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
1376 * src/closure.c (print_closure): Likewise.
1377 * src/derives.c (print_derives): Likewise.
1378 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
1381 2001-12-29 Akim Demaille <akim@epita.fr>
1383 * src/lalr.c (lookaheads_print): New.
1384 (lalr): Call it when --trace-flag.
1385 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
1388 2001-12-29 Akim Demaille <akim@epita.fr>
1390 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
1391 when walking through ritem, even via rule->rhs.
1392 * src/reduce.c (dump_grammar, useful_production, reduce_output)
1393 (useful_production, useless_nonterminals): Likewise.
1394 (reduce_grammar_tables): Likewise, plus update nritems.
1395 * src/nullable.c (set_nullable): Likewise.
1396 * src/lalr.c (build_relations): Likewise.
1397 * tests/sets.at (Nullable): Adjust.
1398 Fortunately, now, the $axiom is no longer nullable.
1400 2001-12-29 Akim Demaille <akim@epita.fr>
1402 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
1404 * src/gram.c (ritem_longest_rhs): Likewise.
1405 * src/reduce.c (nonterminals_reduce): Likewise.
1406 * src/print_graph.c (print_graph): Likewise.
1407 * src/output.c (output_rule_data): Likewise.
1408 * src/nullable.c (set_nullable): Likewise.
1410 2001-12-29 Akim Demaille <akim@epita.fr>
1412 * src/output.c: Comment changes.
1414 2001-12-27 Paul Eggert <eggert@twinsun.com>
1416 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
1417 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
1418 Sparc, as they were causing more porting problems than the
1419 (minor) performance improvement was worth.
1421 Also, catch up with 1.31's YYSTD.
1423 2001-12-27 Akim Demaille <akim@epita.fr>
1425 * src/output.c (output_gram): Rely on nritems, not the
1426 0-sentinel. See below.
1427 Use -1 as separator, not 0.
1428 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
1429 Rely on -1 as separator in yyrhs, instead of 0.
1430 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
1431 twice `Now at end of input', therefore there are two lines less to
1434 2001-12-27 Akim Demaille <akim@epita.fr>
1436 * tests/regression.at (Unresolved SR Conflicts):
1437 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
1440 2001-12-27 Akim Demaille <akim@epita.fr>
1442 * src/LR0.c (new_state): Recognize the final state by the fact it
1443 is reached by eoftoken.
1444 (insert_start_shifting_state, insert_eof_shifting_state)
1445 (insert_accepting_state, augment_automaton): Remove, since now
1446 these states are automatically computed from the initial state.
1447 (generate_states): Adjust.
1448 * src/print.c: When reporting a rule number to the user, substract
1449 1, so that the axiom rule is rule 0, and the first user rule is 1.
1450 * src/reduce.c: Likewise.
1451 * src/print_graph.c (print_core): For the time being, just as for
1452 the report, depend upon --trace-flags to dump the full set of
1454 * src/reader.c (readgram): Once the grammar read, insert the rule
1455 0: `$axiom: START-SYMBOL $'.
1456 * tests/set.at: Adjust: rule 0 is now displayed, and since the
1457 number of the states has changed (the final state is no longer
1458 necessarily the last), catch up.
1460 2001-12-27 Akim Demaille <akim@epita.fr>
1462 Try to make the use of the eoftoken valid. Given that its value
1463 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
1464 is used instead of > 0 where appropriate, (ii), depend upon nritems
1465 instead of the 0-sentinel.
1467 * src/gram.h, src/gram.c (nritems): New.
1468 Expected to be duplication of nitems, but for the time being...
1469 * src/reader.c (packgram): Assert nritems and nitems are equal.
1470 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
1471 * src/closure.c (print_closure, print_fderives): Likewise.
1472 * src/gram.c (ritem_print): Likewise.
1473 * src/print.c (print_core, print_grammar): Likewise.
1474 * src/print_graph.c: Likewise.
1476 2001-12-27 Akim Demaille <akim@epita.fr>
1478 * src/main.c (main): If there are complains after grammar
1479 reductions, then output the report anyway if requested, then die.
1480 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
1481 * src/reader.c (eoftoken): New.
1482 (parse_token_decl): If the token being defined has value `0', it
1484 (packsymbols): No longer hack `tags' to insert `$' by hand.
1485 Be sure to preserve the value of the eoftoken.
1486 (reader): Make sure eoftoken is defined.
1487 Initialize nsyms to 0: now eoftoken is created just like the others.
1488 * src/print.c (print_grammar): Don't special case the eof token.
1489 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
1490 lie anyway, albeit pleasant.
1491 * tests/calc.at: Exercise error messages with eoftoken.
1492 Change the grammar so that empty input is invalid.
1493 Adjust expectations.
1494 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
1496 2001-12-27 Akim Demaille <akim@epita.fr>
1498 * configure.in: Check the protos of strchr ans strspn.
1499 Replace strchr if needed.
1500 * src/system.h: Provide the protos of strchr, strspn and memchr if
1502 * lib/strchr.c: New.
1503 * src/reader.c (symbols_save): Use strchr.
1505 2001-12-27 Akim Demaille <akim@epita.fr>
1507 * src/print.c, src/print_graph.c (escape): New.
1508 Use it to quote the TAGS outputs.
1509 * src/print_graph.c (print_state): Now errors are in red, and
1510 reductions in green.
1511 Prefer high to wide: output the state number on a line of its own.
1513 2001-12-27 Akim Demaille <akim@epita.fr>
1515 * src/state.h, src/state.c (reductions_new): New.
1516 * src/LR0.c (set_state_table): Let all the states have a
1517 `reductions', even if reduced to 0.
1518 (save_reductions): Adjust.
1519 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
1520 * src/print.c (print_reductions, print_actions): Adjust.
1521 * src/output.c (action_row): Adjust.
1523 2001-12-27 Akim Demaille <akim@epita.fr>
1525 * src/state.h, src/state.c (errs_new, errs_dup): New.
1526 * src/LR0.c (set_state_table): Let all the states have an errs,
1527 even if reduced to 0.
1528 * src/print.c (print_errs, print_reductions): Adjust.
1529 * src/output.c (output_actions, action_row): Adjust.
1530 * src/conflicts.c (resolve_sr_conflict): Adjust.
1532 2001-12-27 Akim Demaille <akim@epita.fr>
1534 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
1536 2001-12-27 Akim Demaille <akim@epita.fr>
1538 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
1539 * src/print.c: here.
1540 (lookaheadset, shiftset): New, used as additional storage by
1542 (print_results): Adjust.
1543 (print_shifts, print_gotos, print_errs): New, extracted from...
1544 (print_actions): here.
1545 * src/print_graph.c (print_actions): Remove dead code.
1547 2001-12-27 Akim Demaille <akim@epita.fr>
1549 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
1552 2001-12-27 Akim Demaille <akim@epita.fr>
1554 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
1555 (build_relations): Adjust.
1557 2001-12-27 Akim Demaille <akim@epita.fr>
1559 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
1562 2001-12-27 Akim Demaille <akim@epita.fr>
1564 * src/reader.c (packgram): Catch nitems overflows.
1566 2001-12-27 Akim Demaille <akim@epita.fr>
1568 * src/files.c, src/files.h (guard_obstack): Remove.
1569 * src/output.c (output): Adjust.
1570 * src/reader.c (parse_braces): New, factoring...
1571 (copy_action, copy_guard): these two which are renamed as...
1572 (parse_action, parse_guard): these.
1573 As a voluntary consequence, using braces around guards is now
1576 2001-12-27 Akim Demaille <akim@epita.fr>
1578 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
1579 * src/reader.c (symbol_list): `guard' and `guard_line' are new
1581 (symbol_list_new): Adjust.
1582 (copy_action): action_line is the first line, not the last.
1583 (copy_guard): Just as for actions, store the `action' only, not
1584 the switch/case/break flesh.
1585 Don't parse the user action that might follow the guard, let...
1586 (readgram): do it, i.e., now, there can be an action after a
1588 In other words the guard is just explicitly optional.
1590 * src/output.c (guards_output): New.
1591 (output_parser): Call it when needed.
1592 (output): Also free the guard and attrs obstacks.
1593 * src/files.c, src/files.h (obstack_save): Remove.
1594 (output_files): Remove.
1595 As a result, if one needs the former `.act' file, using an
1596 appropriate skeleton which requires actions and guards is now
1598 * src/main.c (main): Adjust.
1599 * tests/semantic.at: New.
1600 * tests/regression.at: Use `input.y' as input file name.
1601 Avoid 8+3 problems by requiring input.c when the test needs the
1604 2001-12-27 Akim Demaille <akim@epita.fr>
1606 * src/reader.c (symbol_list_new): Be sure to initialize all the
1609 2001-12-27 Akim Demaille <akim@epita.fr>
1611 All the hacks using a final pseudo state are now useless.
1613 * src/LR0.c (set_state_table): state_table holds exactly nstates.
1614 * src/lalr.c (nLA): New.
1615 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
1616 instead of lookaheadsp from the pseudo state (nstate + 1).
1618 2001-12-27 Akim Demaille <akim@epita.fr>
1620 * src/output.c (action_row, token_actions): Use a state_t instead
1621 of a integer, and nlookaheads instead of the following state's
1624 2001-12-27 Akim Demaille <akim@epita.fr>
1626 * src/conflicts.c (log_resolution, flush_shift)
1627 (resolve_sr_conflict, set_conflicts, solve_conflicts)
1628 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
1629 (conflicts_print, print_reductions): Use a state_t instead of an
1630 integer when referring to a state.
1631 As much as possible, depend upon nlookaheads, instead of the
1632 `lookaheadsp' member of the following state (since lookaheads of
1633 successive states are successive, the difference between state n + 1
1634 and n served as the number of lookaheads for state n).
1635 * src/lalr.c (add_lookback_edge): Likewise.
1636 * src/print.c (print_core, print_actions, print_state)
1637 (print_results): Likewise.
1638 * src/print_graph.c (print_core, print_actions, print_state)
1639 (print_graph): Likewise.
1640 * src/conflicts.h: Adjust.
1642 2001-12-27 Akim Demaille <akim@epita.fr>
1644 * src/bison.hairy: Formatting/comment changes.
1646 Remove `register' indications.
1647 Add plenty of `static'.
1649 2001-12-27 Akim Demaille <akim@epita.fr>
1651 * src/output.c (prepare): Drop the muscle `ntbase' which
1653 * src/bison.simple: Formatting/comment changes.
1654 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
1655 is an undocumented synonym.
1657 2001-12-22 Akim Demaille <akim@epita.fr>
1659 * src/output.c (output_table_data): Change the prototype to use
1660 `int' for array ranges: some invocations do pass an int, not a
1662 Reported by Wayne Green.
1664 2001-12-22 Akim Demaille <akim@epita.fr>
1666 Some actions of web2c.y are improperly triggered.
1667 Reported by Mike Castle.
1669 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
1670 * tests/regression.at (Web2c): Rename as...
1671 (Web2c Report): this.
1672 (Web2c Actions): New.
1674 2001-12-22 Akim Demaille <akim@epita.fr>
1676 Reductions in web2c.y are improperly reported.
1677 Reported by Mike Castle.
1679 * src/conflicts.c (print_reductions): Fix.
1680 * tests/regression.at (Web2c): New.
1682 2001-12-18 Akim Demaille <akim@epita.fr>
1684 Some host fail on `assert (!"foo")', which expands to
1685 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
1686 Reported by Nelson Beebee.
1688 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
1689 `#define it_succeeded 0' and `assert (it_succeeded)'.
1691 2001-12-17 Marc Autret <autret_m@epita.fr>
1693 * src/bison.simple: Don't hard code the skeleton line and filename.
1694 * src/output.c (output_parser): Rename 'line' as 'output_line'.
1695 New line counter 'skeleton_line' (skeleton-line muscle).
1697 2001-12-17 Paul Eggert <eggert@twinsun.com>
1699 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
1700 YYDEBUG must be defined to a nonzero value.
1702 * src/bison.simple (yytname): Do not assume that the user defines
1703 YYDEBUG to a properly parenthesized expression.
1705 2001-12-17 Akim Demaille <akim@epita.fr>
1707 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
1708 nlookaheads is a new member.
1710 * src/lalr.h (nlookaheads): Remove this orphan declaration.
1711 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
1714 2001-12-17 Akim Demaille <akim@epita.fr>
1716 * src/files.h, src/files.c (open_files, close_files): Remove.
1717 * src/main.c (main): Don't open/close files, nor invoke lex_free,
1719 * src/reader.c (reader): Do it.
1721 2001-12-17 Akim Demaille <akim@epita.fr>
1723 * src/conflicts.c (print_reductions): Formatting changes.
1725 2001-12-17 Akim Demaille <akim@epita.fr>
1727 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
1728 (flush_reduce): New.
1729 (resolve_sr_conflict): Adjust.
1731 2001-12-17 Akim Demaille <akim@epita.fr>
1733 * src/output.c (output_obstack): Be static and rename as...
1734 (format_obstack): this, to avoid any confusion with files.c's
1736 * src/reader.h (muscle_obstack): Move to...
1737 * src/output.h: here, since it's defined in output.c.
1739 2001-12-17 Akim Demaille <akim@epita.fr>
1741 * src/output.c (action_row, save_column, default_goto)
1742 (sort_actions, matching_state, pack_vector): Better variable
1745 2001-12-17 Akim Demaille <akim@epita.fr>
1747 * src/output.c: Various formatting changes.
1749 2001-12-17 Akim Demaille <akim@epita.fr>
1751 * src/files.c (output_files): Free the output_obstack.
1752 * src/main.c (main): Call print and print_graph conditionally.
1753 * src/print.c (print): Work unconditionally.
1754 * src/print_graph.c (print_graph): Work unconditionally.
1755 * src/conflicts.c (log_resolution): Output only if verbose_flag.
1757 2001-12-16 Marc Autret <autret_m@epita.fr>
1759 * src/output.c (actions_output): Fix. When we use %no-lines,
1760 there is one less line per action.
1762 2001-12-16 Marc Autret <autret_m@epita.fr>
1764 * src/bison.simple: Remove a useless #line directive.
1765 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
1766 * src/output.c (get_lines_number): New.
1767 (output_parser): Adjust, now takes care about the lines of a
1770 (actions_output): Computes the number of lines taken by actions.
1771 (output_master_parser): Insert new skeleton which is the name of
1772 the output parser file name.
1774 2001-12-15 Marc Autret <autret_m@epita.fr>
1776 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
1778 2001-12-15 Marc Autret <autret_m@epita.fr>
1780 * src/output.c (output_gram): Keep track of the hairy one.
1782 2001-12-15 Akim Demaille <akim@epita.fr>
1784 Make `make distcheck' work.
1786 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
1787 system.h which uses libgettext.h.
1789 2001-12-15 Akim Demaille <akim@epita.fr>
1791 * src/nullable.c (set_nullable): Useless rules must be skipped,
1792 otherwise, since we range over their symbols, we might look at a
1793 nonterminal which no longer ``exists'', i.e., it is not counted in
1794 `nvars', hence we overflow our arrays.
1796 2001-12-15 Akim Demaille <akim@epita.fr>
1798 The header can also be produced directly, without any obstack!
1801 * src/files.c, src/files.h (defines_obstack): Remove.
1802 (compute_header_macro): Global.
1803 (defines_obstack_save): Remove.
1804 * src/reader.c (parse_union_decl): No longer output to
1805 defines_obstack: its content can be found in the `stype' muscle
1807 (output_token_translations): Merge into...
1808 (symbols_output): this.
1810 (symbols_save): this.
1812 * src/output.c (header_output): New.
1815 2001-12-15 Akim Demaille <akim@epita.fr>
1817 * src/reader.c (parse_union_decl): Instead of handling two obstack
1818 simultaneously, use one to define the `stype' muscle, and use the
1819 value of the latter to fill defines_obstack.
1820 (copy_comment): Remove.
1821 (copy_comment2): Work for a single obstack.
1823 (copy_comment): this.
1825 2001-12-15 Akim Demaille <akim@epita.fr>
1827 * src/lex.c, src/lex.h (xgetc): No longer static.
1828 * src/reader.c (parse_union_decl): Revamp.
1830 2001-12-15 Akim Demaille <akim@epita.fr>
1832 Still making progress in separating Bison into (i) input, (ii)
1833 process, (iii) output: now we can directly output the parser file
1834 without using table_obstack at all.
1836 * src/files.c, src/files.h (table_obstack): Bye bye.
1837 (parser_file_name): New.
1838 * src/files.c (compute_output_file_names): Compute it.
1839 * src/output.c (actions_output, output_parser)
1840 (output_master_parser): To a file instead of an obstack.
1842 2001-12-15 Akim Demaille <akim@epita.fr>
1844 Attach actions to rules, instead of pre-outputting them to
1847 * src/gram.h (rule_t): action and action_line are new members.
1848 * src/reader.c (symbol_list): Likewise.
1849 (copy_action): Save the actions within the rule.
1850 (packgram): Save them in rule_table.
1851 * src/output.c (actions_output): New.
1852 (output_parser): Use it on `%%actions'.
1853 (output_rule_data): Don't free rule_table.
1855 (prepare): Don't save the `action' muscle.
1856 * src/bison.simple: s/%%action/%%actions/.
1858 2001-12-15 Akim Demaille <akim@epita.fr>
1860 * src/reader.c (copy_action): When --yacc, don't append a `;'
1861 to the user action: let it fail if lacking.
1862 Suggested by Arnold Robbins and Tom Tromey.
1864 2001-12-14 Akim Demaille <akim@epita.fr>
1866 * src/lex.c (literalchar): Simply return the char you decoded, non
1867 longer mess around with obstacks and int pointers.
1870 2001-12-14 Akim Demaille <akim@epita.fr>
1872 * src/lex.c (literalchar): Don't escape the special characters,
1873 just decode them, and keep them as char (before, eol was output as
1874 the 2 char string `\n' etc.).
1875 * src/output.c (output_rule_data): Use quotearg to output the
1878 2001-12-13 Paul Eggert <eggert@twinsun.com>
1880 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
1881 Do not infringe on the global user namespace when using C++.
1882 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
1883 All uses of `fprintf' and `stderr' changed.
1885 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
1887 2001-12-13 Akim Demaille <akim@epita.fr>
1889 The computation of nullable is broken: it doesn't handle empty
1892 * tests/torture.at (GNU AWK Grammar): New.
1893 * tests/sets.at (Nullable): New.
1894 * src/nullable.c (set_nullable): Instead of blindly looping over
1895 `ritems', loop over the rules, and then over their rhs's.
1897 Work around Autotest bugs.
1899 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
1900 frame, because Autotest understand lines starting with a `+' as
1901 traces from the shell. Then, they are not processed properly.
1902 Admittedly an Autotest bug, but we don't have time to wait for
1903 Autotest to catch up.
1904 * tests/regression.at (Broken Closure): Adjust to the new table
1907 * tests/sets.at: here.
1909 2001-12-13 Akim Demaille <akim@epita.fr>
1911 * src/closure.c (closure): Use nrules instead of playing tricks
1914 2001-12-13 Akim Demaille <akim@epita.fr>
1916 * src/print.c (print_actions): Output the handling of `$' as the
1917 traces do: shifting the token EOF. Before EOF was treated as a
1919 * tests/regression.at: Adjust some tests.
1920 * src/print_graph.c (print_core): Complete the set of items via
1921 closure. The next-to-final and final states are still unsatisfying,
1922 but that's to be addressed elsewhere.
1923 No longer output the rule numbers, but do output the state number.
1924 A single loop for the shifts + gotos is enough, but picked a
1925 distinct color for each.
1926 (print_graph): Initialize and finalize closure.
1928 2001-12-13 Akim Demaille <akim@epita.fr>
1930 * src/reader.c (readgram): Remove dead code, an strip useless
1932 (get_type): Remove, unused.
1934 2001-12-12 Akim Demaille <akim@epita.fr>
1936 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
1937 on that of lib/error.c.
1939 2001-12-12 Akim Demaille <akim@epita.fr>
1941 Some hosts don't like `/' in includes.
1943 * src/system.h: Include libgettext.h without qualifying the path.
1944 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
1947 2001-12-11 Marc Autret <autret_m@epita.fr>
1949 * src/output.c (output_parser): Remove useless muscle.
1951 2001-12-11 Marc Autret <autret_m@epita.fr>
1953 * src/bison.simple: Remove #line just before %%epilogue. It
1954 is now handled in ...
1955 * src/reader.c (read_additionnal_code): Add the output of a
1956 #line for the epilogue.
1958 2001-12-10 Marc Autret <autret_m@epita.fr>
1960 * src/reader.c (copy_definition): Re-use CPP-outed code which
1961 replace precedent remove.
1962 * src/bison.simple: Remove #line before %%prologue because
1963 %%input-line is wrong at this time.
1965 2001-12-10 Marc Autret <autret_m@epita.fr>
1967 * src/reader.c (symbols_output): Clean up.
1968 * src/output.c (output_gram, output): Clean up.
1970 2001-12-10 Akim Demaille <akim@epita.fr>
1972 * src/lalr.c (initialize_lookaheads): New. Extracted from...
1973 * src/LR0.c (set_state_table): here.
1974 * src/lalr.c (lalr): Call it.
1976 2001-12-10 Akim Demaille <akim@epita.fr>
1978 * src/state.h (shifts): Remove the `number' member: shifts are
1979 attached to state, hence no longer need to be labelled with a
1982 2001-12-10 Akim Demaille <akim@epita.fr>
1984 Now that states have a complete set of members, the linked list of
1985 shifts is useless: just fill directly the state's shifts member.
1987 * src/state.h (shifts): Remove the `next' member.
1988 * src/LR0.c (first_state, last_state): Remove.
1990 (augment_automaton): Don't look for the shifts that must be added
1991 a shift on EOF: it is those of the state we looked for! But now,
1992 since shifts are attached, it is no longer needed to looking
1993 merely by its id: its number.
1995 2001-12-10 Akim Demaille <akim@epita.fr>
1997 * src/LR0.c (augment_automaton): Better variable locality.
1998 Remove an impossible branch: if there is a state corresponding to
1999 the start symbol being shifted, then there is shift for the start
2000 symbol from the initial state.
2002 2001-12-10 Akim Demaille <akim@epita.fr>
2004 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
2005 only when appropriate: when insert_start_shifting_state' is not
2007 * tests/regression.at (Rule Line Numbers): Adjust.
2009 2001-12-10 Akim Demaille <akim@epita.fr>
2011 * src/LR0.c (augment_automaton): Now that all states have shifts,
2012 merge the two cases addition shifts to the initial state.
2014 2001-12-10 Akim Demaille <akim@epita.fr>
2016 * src/lalr.c (set_state_table): Move to...
2018 * src/lalr.c (lalr): Don't call it...
2019 * src/LR0.c (generate_states): do it.
2020 * src/LR0.h (first_state): Remove, only the table is used.
2022 2001-12-10 Akim Demaille <akim@epita.fr>
2024 * src/LR0.h (first_shift, first_reduction): Remove.
2025 * src/lalr.c: Don't use first_shift: find shifts through the
2028 2001-12-10 Akim Demaille <akim@epita.fr>
2030 * src/LR0.c: Attach shifts to states as soon as they are
2032 * src/lalr.c (set_state_table): Instead of assigning shifts to
2033 state, just assert that the mapping was properly done.
2035 2001-12-10 Akim Demaille <akim@epita.fr>
2037 * src/LR0.c (insert_start_shift): Rename as...
2038 (insert_start_shifting_state): this.
2039 (insert_eof_shifting_state, insert_accepting_state): New.
2040 (augment_automaton): Adjust.
2041 Better locality of the variables.
2042 When looking if the start_symbol is shifted from the initial
2043 state, using `while (... symbol != start_symbol ...)' sounds
2044 better than `while (... symbol < start_symbol ...)': If fail
2045 to see how the order between symbols could be relevant!
2047 2001-12-10 Akim Demaille <akim@epita.fr>
2049 * src/getargs.h: Don't declare `spec_name_prefix' and
2050 `spec_file_prefix', declared by src/files.h.
2051 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
2052 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
2053 * src/output.c (prepare): Adjust.
2054 * src/reader.c (symbols_output): Likewise.
2055 * src/vmsgetargs.c: Vaguely adjust, but who cares?
2057 2001-12-10 Akim Demaille <akim@epita.fr>
2059 * src/muscle_tab.c (muscle_init): NULL is a better default than
2062 2001-12-10 Akim Demaille <akim@epita.fr>
2064 * src/reader.c (reader): Calling symbols_output once is enough.
2066 2001-12-10 Akim Demaille <akim@epita.fr>
2068 Now that states have a complete set of members, the linked list of
2069 reductions is useless: just fill directly the state's reductions
2072 * src/state.h (struct reductions): Remove member `number' and
2074 * src/LR0.c (first_reduction, last_reduction): Remove.
2075 (save_reductions): Don't link the new reductions, store them in
2077 * src/lalr.c (set_state_table): No need to attach reductions to
2078 states, it's already done.
2079 * src/output.c (output_actions): No longer free the shifts, then
2080 the reductions, then the states: free all the states and their
2083 2001-12-10 Akim Demaille <akim@epita.fr>
2085 * src/options.c (OPTN, DRTV, BOTH): New.
2086 (option_table): Use them.
2088 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
2089 the job of system.h.
2090 * src/options.c: Don't include stdio.h and xalloc.h for the same
2093 2001-12-10 Akim Demaille <akim@epita.fr>
2095 * src/output.c (output, prepare): Make sure the values of the
2096 muscles `action' and `prologue' are 0-terminated.
2098 2001-12-10 Akim Demaille <akim@epita.fr>
2100 Clean up GCC warnings.
2102 * src/reader.c (copy_action): `buf' is not used.
2103 (parse_skel_decl): Be static.
2104 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
2105 * src/options.h (create_long_option_table): Have a real prototype.
2106 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
2107 (hash_delete_at): Return const void *.
2108 Adjust casts to preserve the const.
2110 2001-12-10 Akim Demaille <akim@epita.fr>
2112 * configure.in: Require 2.52g.
2113 M4 is not needed, but AUTOM4TE is.
2115 * tests/Makefile.am: Adjust.
2117 2001-12-10 Akim Demaille <akim@epita.fr>
2119 One structure for states is enough, even though theoretically
2120 there are LR(0) states and LALR(1) states.
2122 * src/lalr.h (state_t): Remove.
2123 (state_table): Be state_t **, not state_t *.
2124 * src/state.h (core, CORE_ALLOC): Rename as...
2125 (state_t, STATE_ALLOC): this.
2126 Add the LALR(1) members: shifts, reductions, errs.
2127 * src/LR0.c (state_table): Rename as...
2128 (state_hash): this, to avoid name clashes with the global
2130 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
2131 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
2133 2001-12-10 Akim Demaille <akim@epita.fr>
2135 Bison dumps core on bash.y.
2136 Reported by Pascal Bart.
2138 * src/warshall.c (bitmatrix_print): New.
2140 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
2141 j must be the outer loop.
2142 * tests/regression.at (Broken Closure): New.
2144 2001-12-05 Akim Demaille <akim@epita.fr>
2146 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
2148 Reported by Peter Hámorský.
2150 2001-12-05 Akim Demaille <akim@epita.fr>
2152 * src/conflicts.c (err_table): Remove.
2153 (resolve_sr_conflict): Adjust.
2154 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
2156 (state_t.reductions, state_t.shifts): this.
2158 2001-12-05 Akim Demaille <akim@epita.fr>
2160 * src/reduce.c (reduce_grammar_tables): No longer disable the
2161 removal of useless rules via CPP but via `if (0)', so that the
2162 compiler still check the code is valid.
2163 For instance, it should have noticed `rline' no longer exists: use
2164 the `line' member of rule_t.
2165 * src/gram.c (dummy, rline): Remove, unused.
2167 2001-12-05 Akim Demaille <akim@epita.fr>
2169 * src/output.c (pack_vector): Use assert, not berror.
2170 * src/main.c (berror): Remove, unused.
2172 2001-12-05 Akim Demaille <akim@epita.fr>
2174 New experimental feature: if --verbose --trace output all the
2175 items of a state, not only its kernel.
2177 * src/print.c (print_core): If `trace_flag', then invoke closure
2178 before outputting the items of the state (print_core is no longer
2179 a correct name them).
2180 (print_results): Invoke new_closure/free_closure if needed.
2182 2001-12-05 Akim Demaille <akim@epita.fr>
2184 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
2185 * src/closure.c, src/closure.h (itemsetsize): Rename as...
2186 (nitemset): for consistency with the rest of the project.
2188 2001-12-05 Akim Demaille <akim@epita.fr>
2190 * src/closure.c (print_closure): Improve.
2191 (closure): Use it for printing input and output.
2193 2001-12-05 Akim Demaille <akim@epita.fr>
2195 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
2196 indexed by nonterminals.
2198 2001-12-05 Akim Demaille <akim@epita.fr>
2200 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
2202 * src/warshall.h: Remove accidental duplication of the content.
2204 2001-12-05 Akim Demaille <akim@epita.fr>
2206 * src/closure.c (set_fderives): De-obfuscate.
2208 2001-12-05 Akim Demaille <akim@epita.fr>
2210 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
2212 2001-12-05 Akim Demaille <akim@epita.fr>
2214 * src/closure.c (set_firsts): De-obfuscate.
2216 2001-12-05 Akim Demaille <akim@epita.fr>
2218 * src/output.c (action_row): De-obfuscate
2219 using the good o' techniques: arrays not pointers, variable
2220 locality, BITISSET, RESETBIT etc.
2222 2001-12-05 Akim Demaille <akim@epita.fr>
2224 Pessimize the code to simplify it: from now on, all the states
2225 have a valid SHIFTS, which NSHIFTS is possibly 0.
2227 * src/LR0.c (shifts_new): Be global and move to..
2228 * src/state.c, src/state.h: here.
2229 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
2230 * src/print_graph: Adjust.
2232 2001-12-05 Akim Demaille <akim@epita.fr>
2234 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
2235 * src/conflicts.c: Use it.
2236 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
2237 incorrectly ``simplified''.
2239 2001-12-05 Akim Demaille <akim@epita.fr>
2241 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
2242 using the good o' techniques: arrays not pointers, variable
2243 locality, BITISSET, RESETBIT etc.
2245 2001-12-05 Akim Demaille <akim@epita.fr>
2247 * src/state.h (SHIFT_SYMBOL): New.
2248 * src/conflicts.c: Use it to deobfuscate.
2250 2001-12-05 Akim Demaille <akim@epita.fr>
2252 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
2253 (print_reductions): De-obfuscate using the good o' techniques:
2254 arrays not pointers, variable locality, BITISSET.
2256 2001-12-05 Akim Demaille <akim@epita.fr>
2258 * src/conflicts.c (print_reductions): Arrays, not pointers.
2261 2001-12-05 Akim Demaille <akim@epita.fr>
2263 * src/conflicts.c (print_reductions): Pessimize, but clarify.
2265 2001-12-05 Akim Demaille <akim@epita.fr>
2267 * src/conflicts.c (print_reductions): Improve variable locality.
2269 2001-12-05 Akim Demaille <akim@epita.fr>
2271 * src/conflicts.c (print_reductions): Pessimize, but clarify.
2273 2001-12-05 Akim Demaille <akim@epita.fr>
2275 * src/conflicts.c (print_reductions): Improve variable locality.
2277 2001-12-05 Akim Demaille <akim@epita.fr>
2279 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
2280 * src/lalr.c: Use them.
2282 2001-12-05 Akim Demaille <akim@epita.fr>
2284 * src/LR0.c (augment_automaton): Formatting changes.
2285 Better variable locality.
2287 2001-12-05 Akim Demaille <akim@epita.fr>
2289 * src/lalr.c (matrix_print): New.
2290 (transpose): Use it.
2291 Use arrays instead of pointers.
2293 2001-12-05 Akim Demaille <akim@epita.fr>
2295 * src/lalr.c (maxrhs): Move to...
2296 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
2297 * src/lalr.c (build_relations): Adjust.
2299 2001-12-05 Akim Demaille <akim@epita.fr>
2301 * src/lalr.c (transpose): Free the memory allocated to the
2302 argument, as it is replaced by the results by the unique caller.
2303 (build_relations): Merely invoke transpose: it handles the memory
2305 Improve variable locality.
2306 Avoid variables used as mere abbreviations.
2307 (compute_lookaheads): Use arrays instead of pointers.
2309 2001-12-05 Akim Demaille <akim@epita.fr>
2311 * src/lalr.c (initialize_F): Improve variable locality.
2312 Avoid variables used as mere abbreviations.
2314 2001-12-05 Akim Demaille <akim@epita.fr>
2316 * src/derives.c (print_derives): Display the ruleno.
2317 * src/lalr.c (initialize_F, transpose): Better variable locality
2318 to improve readability.
2319 Avoid variables used as mere abbreviations.
2321 2001-12-05 Akim Demaille <akim@epita.fr>
2323 * src/lalr.c (traverse): Use arrays instead of pointers.
2325 2001-12-05 Akim Demaille <akim@epita.fr>
2327 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
2328 the handling of squeue.
2329 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
2331 2001-12-05 Akim Demaille <akim@epita.fr>
2333 Because useless nonterminals are now kept alive (instead of being
2334 `destroyed'), we now sometimes examine them, and store information
2335 related to them. Hence we need to know their number, and adjust
2338 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
2340 * src/LR0.c (allocate_itemsets): The memory allocated to
2341 `symbol_count' was used for two different purpose: once to count
2342 the number of occurrences of each symbol, and later reassigned to
2343 `shift_symbol', containing the symbol that can be shifted from a
2345 Deobfuscate, i.e., allocate, use and free `symbol_count' here
2347 (new_itemsets): Allocate `shift_symbol' here.
2348 (allocate_itemsets): symbol_count includes useless nonterminals.
2350 (free_storage): Use `free', not `XFREE', for pointers that cannot
2353 2001-12-05 Akim Demaille <akim@epita.fr>
2355 * src/nullable.c (set_nullable): Deobfuscate the handling of
2357 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
2359 2001-12-05 Akim Demaille <akim@epita.fr>
2361 * src/gram.c, src/gram.h (ritem_print): New.
2362 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
2363 (This useless function was defined only to work around VMS linkers
2364 that can't handle compilation units with variables only).
2365 * src/reduce.c (dump_grammar): Use it to trace the construction of
2368 2001-12-04 Paul Eggert <eggert@twinsun.com>
2370 * src/bison.simple (union yyalloc): Change member names
2371 to be the same as the stack names.
2372 (yyparse): yyptr is now union yyalloc *, not char *.
2373 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
2374 and may generate better code on some machines.
2375 (yystpcpy): Use prototype if __STDC__ is defined, not just
2376 if __cplusplus is defined.
2378 2001-11-30 Akim Demaille <akim@epita.fr>
2380 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
2381 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
2382 Gettext doesn't compile cleanly, and dies with -Werror.
2383 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
2384 Include WARNING_CFLAGS here.
2385 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
2386 before being defined.
2388 2001-11-27 Paul Eggert <eggert@twinsun.com>
2390 * lib/quotearg.h (quotearg_n, quotearg_n_style):
2391 First arg is int, not unsigned.
2392 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
2393 (SIZE_MAX, UINT_MAX): New macros.
2394 (quotearg_n_options): Abort if N is negative.
2395 Avoid overflow check on hosts where size_t is 64 bits and int
2396 is 32 bits, as overflow is impossible there.
2397 Fix off-by-one typo that caused unnecessary reallocation.
2399 2001-11-29 Paul Eggert <eggert@twinsun.com>
2401 Name space cleanup in generated parser.
2403 * doc/bison.texinfo (Bison Parser): Discuss system headers
2404 and their effect on the user name space.
2407 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
2408 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
2409 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
2411 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
2412 on user names when possible.
2414 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
2415 Simplify test for whather <alloca.h> exists.
2417 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
2419 (<stdio.h>): Include if YYDEBUG.
2421 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
2422 ! defined (yyoverflow) && ! defined (yymemcpy).
2424 (yymemcpy, yyparse): Rename local variables as needed so that
2425 they all begin with 'yy'.
2427 (yystrlen, yystpcpy): New functions.
2429 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
2432 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
2433 instead of relying on string.h functions. Use YYSTACK_ALLOC
2434 and YYSTACK_FREE instead of malloc and free.
2436 2001-11-30 Akim Demaille <akim@epita.fr>
2438 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
2439 before their first uses.
2440 (YYBISON, YYPURE): Move to the top of the output.
2442 2001-11-30 Akim Demaille <akim@epita.fr>
2444 * tests/reduce.at (Useless Nonterminals): Fix.
2446 2001-11-30 Akim Demaille <akim@epita.fr>
2448 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
2449 if body instead of `;' to pacify GCC's warnings.
2451 2001-11-30 Akim Demaille <akim@epita.fr>
2453 Instead of mapping the LHS of unused rules to -1, keep the LHS
2454 valid, but flag the rules as invalid.
2456 * src/gram.h (rule_t): `useful' is a new member.
2457 * src/print.c (print_grammar): Adjust.
2458 * src/derives.c (set_derives): Likewise.
2459 * src/reader.c (packgram, reduce_output): Likewise.
2460 * src/reduce.c (reduce_grammar_tables): Likewise.
2461 * tests/reduce.at (Underivable Rules, Useless Rules): New.
2463 2001-11-30 Akim Demaille <akim@epita.fr>
2465 * src/reduce.c (reduce_output): Formatting changes.
2466 * src/print.c (print_results, print_grammar): Likewise.
2467 * tests/regression.at (Rule Line Numbers)
2468 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
2470 2001-11-30 Akim Demaille <akim@epita.fr>
2472 * src/reduce.c (nonterminals_reduce): Instead of throwing away
2473 useless nonterminals, move them at the end of the symbol arrays.
2474 (reduce_output): Adjust.
2475 * tests/reduce.at (Useless Nonterminals): Adjust.
2477 2001-11-30 Akim Demaille <akim@epita.fr>
2479 * src/reduce.c: Various comment/formatting changes.
2480 (nonterminals_reduce): New, extracted from...
2481 (reduce_grammar_tables): here.
2482 (reduce_grammar): Call nonterminals_reduce.
2484 2001-11-29 Paul Eggert <eggert@twinsun.com>
2486 * src/bison.simple (YYSTACK_REALLOC): Remove.
2487 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
2488 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
2490 (union yyalloc): New type.
2491 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
2492 an arbitrary restriction on hosts where size_t is wider than int.
2494 (yyparse): Don't dump core if alloca or malloc fails; instead, report
2495 a parser stack overflow. Allocate just one block of memory for all
2496 three stacks, instead of allocating three blocks; this typically is
2497 faster and reduces fragmentation.
2499 Do not limit the number of items in the stack to a value that fits
2500 in 'int', as this is an arbitrary limit on hosts with 64-bit
2501 size_t and 32-bit int.
2503 2001-11-29 Marc Autret <autret_m@epita.fr>
2505 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
2506 of defining YYERROR_VERBOSE.
2507 [AT_DATA]: $4 is now out of C declarations in the prologue.
2509 2001-11-28 Marc Autret <autret_m@epita.fr>
2511 * src/reader.c (parse_dquoted_param): New.
2512 (parse_skel_decl): Use it.
2513 * src/lex.h: Add its prototype.
2514 * src/lex.c (literalchar): Become not static.
2516 2001-11-28 Marc Autret <autret_m@epita.fr>
2518 * src/output.h: And put its extern declaration here.
2519 * src/output.c (error_verbose): Define here.
2520 (prepare): Echo name modification.
2521 * src/getargs.h: Clean its extern declaration.
2522 * src/getargs.c (error_verbose_flag): Remove.
2523 (getargs): Remove case 'e'.
2524 * src/options.c (option_table): 'error-verbose' is now seen as simple
2528 * src/reader.c (read_declarations): Remove case tok_include.
2529 (parse_include_decl): Remove.
2530 * src/lex.h (token_t): Remove tok_include.
2531 * src/options.c (option_table): 'include' is now a simple command line
2534 2001-11-28 Marc Autret <autret_m@epita.fr>
2536 * src/bison.simple: Adjust muscle names.
2537 * src/muscle_tab.c (muscle_init): Also rename the muscles.
2538 * src/output.c (prepare): s/_/-/ for the muscles names.
2539 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
2541 2001-11-28 Marc Autret <autret_m@epita.fr>
2543 * src/bison.simple: Fix debug.
2544 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
2546 2001-11-28 Akim Demaille <akim@epita.fr>
2548 * src/LR0.c (shifts_new): New.
2549 (save_shifts, insert_start_shift, augment_automaton): Use it.
2551 2001-11-28 Akim Demaille <akim@epita.fr>
2553 * src/closure.c (closure): `b' and `ruleno' denote the same value:
2556 2001-11-28 Akim Demaille <akim@epita.fr>
2558 * src/closure.c (closure): Instead of looping over word in array
2559 then bits in words, loop over bits in array.
2561 2001-11-28 Akim Demaille <akim@epita.fr>
2563 * src/closure.c (closure): No longer optimize the special case
2564 where all the bits of `ruleset[r]' are set to 0, to make the code
2567 2001-11-28 Akim Demaille <akim@epita.fr>
2569 * src/closure.c (closure): `r' and `c' are new variables, used to
2570 de-obfuscate accesses to RULESET and CORE.
2572 2001-11-28 Akim Demaille <akim@epita.fr>
2574 * src/reduce.c (reduce_print): Use ngettext.
2575 (dump_grammar): Improve the trace accuracy.
2577 2001-11-28 Akim Demaille <akim@epita.fr>
2579 * src/reduce.c (dump_grammar): Don't translate trace messages.
2581 2001-11-28 Akim Demaille <akim@epita.fr>
2583 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
2584 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
2585 as all tags are free'ed afterwards.
2588 2001-11-27 Paul Eggert <eggert@twinsun.com>
2590 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
2591 use alloca when we didn't want to, and vice versa.
2593 2001-11-27 Marc Autret <autret_m@epita.fr>
2595 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
2597 * src/output.c (prepare): Remove its update.
2599 2001-11-27 Marc Autret <autret_m@epita.fr>
2601 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
2604 2001-11-27 Marc Autret <autret_m@epita.fr>
2606 * src/bison.simple: Remove YYERROR_VERBOSE using.
2607 Use %%error_verbose.
2608 (yyparse): Likewise.
2609 * src/output.c (prepare): Give its final value.
2610 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
2611 * src/getargs.h: Add its extern declaration.
2612 * src/getargs.c (error_verbose_flag): New int.
2613 (getargs): Update to catch new case.
2614 * src/options.c (option_table): 'error-verbose' is a new option.
2615 (shortopts): Update.
2617 2001-11-27 Akim Demaille <akim@epita.fr>
2619 * src/system.h: Use intl/libgettext.h.
2620 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
2622 2001-11-27 Akim Demaille <akim@epita.fr>
2624 * tests/torture.at (Exploding the Stack Size with Malloc):
2625 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
2627 2001-11-27 Akim Demaille <akim@epita.fr>
2629 * src/files.c: Include error.h.
2630 Reported by Hans Aberg.
2632 2001-11-26 Marc Autret <autret_m@epita.fr>
2634 * src/reader.c (parse_include_decl): New, not yet implemented.
2635 (read_declarations): Add case tok_include.
2636 * src/getargs.h (include): Add its extern definition.
2637 * src/getargs.c (include): New const char *.
2638 (getargs): Add case '-I'.
2639 * src/options.c (option_table): Add include as command line and
2641 * src/lex.h (token_t): Add tok_include.
2643 2001-11-26 Akim Demaille <akim@epita.fr>
2645 * src/reader.c (readgram): Make sure rules for mid-rule actions
2646 have a lineno equal to that of their host rule.
2647 Reported by Hans Aberg.
2648 * tests/regression.at (Rule Line Numbers): New.
2650 2001-11-26 Akim Demaille <akim@epita.fr>
2652 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
2655 2001-11-26 Akim Demaille <akim@epita.fr>
2657 * src/complain.c, src/complain.h (error): Remove, provided by
2660 2001-11-26 Akim Demaille <akim@epita.fr>
2662 * src/reader.c (read_declarations): Don't abort on tok_illegal,
2663 issue an error message.
2664 * tests/regression.at (Invalid %directive): New.
2665 Reported by Hans Aberg.
2667 2001-11-26 Akim Demaille <akim@epita.fr>
2669 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
2670 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
2672 2001-11-26 Akim Demaille <akim@epita.fr>
2674 * src/conflicts.c (conflicts_print): Don't complain at all when
2675 there are no reduce/reduce conflicts, and as many shift/reduce
2676 conflicts as expected.
2677 * tests/regression.at (%expect right): Adjust.
2679 2001-11-23 Akim Demaille <akim@epita.fr>
2681 * lib/alloca.c: Update, from fileutils.
2683 2001-11-23 Akim Demaille <akim@epita.fr>
2685 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
2687 2001-11-23 Akim Demaille <akim@epita.fr>
2689 * src/system.h: Include alloca.h.
2690 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
2692 2001-11-23 Akim Demaille <akim@epita.fr>
2694 * src/print_graph.c (print_actions): Remove `rule', unused.
2695 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
2696 pacify GCC's signed < unsigned warnings.
2697 * src/closure.c (itemsetsize): Likewise.
2698 * src/reader.c (symbol_list_new): Static.
2700 2001-11-23 Akim Demaille <akim@epita.fr>
2702 Attaching lineno to buckets is stupid, since only one copy of each
2703 symbol is kept, only the line of the first occurrence is kept too.
2705 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
2706 * src/reader.c (rline_allocated): Remove, unused.
2707 (symbol_list): Have a `line' member.
2708 (symbol_list_new): New.
2710 * src/print.c (print_grammar): Output the rule line numbers.
2711 * tests/regression.at (Solved SR Conflicts)
2712 (Unresolved SR Conflicts): Adjust.
2713 Reported by Hans Aberg.
2715 2001-11-22 Marc Autret <autret_m@epita.fr>
2717 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
2719 2001-11-22 Marc Autret <autret_m@epita.fr>
2721 * src/muscle_tab.c (muscle_init): Remove initialization of
2723 * src/output.c (output_master_parser): Do it here.
2725 2001-11-20 Akim Demaille <akim@epita.fr>
2728 * configure.in (ALL_LINGUAS): Adjust.
2729 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
2730 longer contains strings to translate.
2732 2001-11-19 Akim Demaille <akim@epita.fr>
2734 * src/conflicts.c (conflicts_print): Add a missing \n.
2736 2001-11-19 Akim Demaille <akim@epita.fr>
2738 * src/nullable.c (nullable_print): New.
2739 (set_nullable): Call it when tracing.
2740 Better locality of variables.
2742 2001-11-19 Akim Demaille <akim@epita.fr>
2744 * src/print.c (print_actions): Better locality of variables.
2746 2001-11-19 Akim Demaille <akim@epita.fr>
2748 * src/derives.c (print_derives): Fix and enrich.
2749 * src/closure.c (print_fderives): Likewise.
2751 2001-11-19 Akim Demaille <akim@epita.fr>
2753 * src/closure.c (itemsetend): Remove, replaced with...
2756 2001-11-19 Akim Demaille <akim@epita.fr>
2758 * src/LR0.c (kernel_end): Remove, replaced with...
2761 2001-11-19 Akim Demaille <akim@epita.fr>
2763 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
2766 2001-11-19 Akim Demaille <akim@epita.fr>
2768 * src/closure.c (closure): Use arrays instead of pointers to clarify.
2770 2001-11-19 Akim Demaille <akim@epita.fr>
2772 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
2774 * src/LR0.c: Likewise.
2775 (allocate_itemsets): Use arrays instead of pointers to clarify.
2777 2001-11-19 Akim Demaille <akim@epita.fr>
2779 * src/getargs.c (statistics_flag): Replace with...
2781 (longopts): Accept --trace instead of --statistics.
2782 * src/getargs.h, src/options.c: Adjust.
2783 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
2784 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
2786 2001-11-19 Akim Demaille <akim@epita.fr>
2788 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
2789 pointers to clarify the code.
2790 (save_reductions, save_shifts): Factor common parts of alternatives.
2792 2001-11-19 Akim Demaille <akim@epita.fr>
2794 * src/LR0.c (new_state, get_state): Complete TRACE code.
2795 * src/closure.c: Include `reader.h' to get `tags', needed by the
2797 Rename the conditional DEBUG as TRACE.
2798 Output consistently TRACEs to stderr, not stdout.
2799 * src/derives.c: Likewise.
2800 * src/reduce.c: (inaccessable_symbols): Using if is better style
2802 Use `#if TRACE' instead of `#if 0' for tracing code.
2804 2001-11-19 Akim Demaille <akim@epita.fr>
2806 * src/system.h (LIST_FREE, shortcpy): New.
2807 * src/LR0.c: Use them.
2808 * src/output.c (free_itemsets, free_reductions, free_shifts):
2809 Remove, replaced by LIST_FREE.
2811 2001-11-19 Akim Demaille <akim@epita.fr>
2813 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
2814 (REDUCTIONS_ALLOC): New.
2815 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
2818 2001-11-19 Akim Demaille <akim@epita.fr>
2820 * src/LR0.c (new_state): Complete trace code.
2821 * src/nullable.c (set_nullable): Don't translate traces.
2823 2001-11-19 Akim Demaille <akim@epita.fr>
2825 * src/print_graph.c (print_core): Better locality of variables.
2826 * src/print.c (print_core): Likewise.
2828 2001-11-19 Akim Demaille <akim@epita.fr>
2830 * src/vcg.c: You do the output, so you are responsible of the
2831 handling of VCG syntax, in particular: use quotearg.
2832 * src/print_graph.c: Don't.
2833 (print_actions): Don't output the actions as part of the nodes,
2834 since that's the job of the edges.
2835 (print_state): Don't output by hand: fill the node description,
2836 and ask for its output.
2838 2001-11-19 Akim Demaille <akim@epita.fr>
2840 * src/bison.simple (yyparse): When verbosely reporting an error,
2841 no longer put additional quotes around token names.
2842 * tests/calc.at: Adjust.
2844 2001-11-19 Akim Demaille <akim@epita.fr>
2846 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
2847 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
2848 * src/output.c: Adjust.
2850 2001-11-19 Akim Demaille <akim@epita.fr>
2852 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
2854 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
2856 2001-11-19 Akim Demaille <akim@epita.fr>
2858 * src/gram.h (rule_t): New.
2860 (rrhs, rlhs): Remove, part of state_t.
2861 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
2862 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
2863 * src/reader.c, src/reduce.c: Adjust.
2865 2001-11-19 Akim Demaille <akim@epita.fr>
2867 * src/reader.c (symbols_output): New, extracted from...
2868 (packsymbols): Here.
2871 2001-11-19 Akim Demaille <akim@epita.fr>
2873 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
2874 (maxrhs): this new function.
2876 2001-11-19 Akim Demaille <akim@epita.fr>
2878 * src/lalr.c (F): New macro to access the variable F.
2881 2001-11-19 Akim Demaille <akim@epita.fr>
2883 * src/lalr.h (LA): New macro to access the variable LA.
2884 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
2885 * src/lalr.c: Adjust.
2887 2001-11-19 Akim Demaille <akim@epita.fr>
2889 * src/lalr.c (initialize_LA): Only initialize LA. Let...
2890 (set_state_table): handle the `lookaheads' members.
2892 2001-11-19 Akim Demaille <akim@epita.fr>
2894 * src/lalr.h (lookaheads): Removed array, whose contents is now
2896 (state_t): this structure.
2897 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
2900 2001-11-19 Akim Demaille <akim@epita.fr>
2902 * src/lalr.h (consistent): Removed array, whose contents is now
2904 (state_t): this structure.
2905 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
2908 2001-11-19 Akim Demaille <akim@epita.fr>
2910 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
2911 contents are now members of...
2912 (state_t): this structure.
2913 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
2916 2001-11-19 Akim Demaille <akim@epita.fr>
2918 * src/lalr.h (state_t): New.
2919 (state_table): Be a state_t * instead of a core **.
2920 (accessing_symbol): Remove, part of state_t.
2921 * src/lalr.c: Adjust.
2922 (set_accessing_symbol): Merge into...
2923 (set_state_table): this.
2924 * src/print_graph.c, src/conflicts.c: Adjust.
2926 2001-11-14 Akim Demaille <akim@epita.fr>
2928 * tests/calc.at, tests/output.at, tests/regression.at,
2929 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
2930 now the tests are run in private dirs, therefore AC_CLEANUP and
2931 family can be simplified to 0-ary.
2932 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
2933 use abs. path to find config.h.
2934 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
2935 stderr, there can be way too much random noise.
2936 Instead pass -Werror to GCC and rely on the exit status.
2937 Reported by Wolfram Wagner.
2939 2001-11-14 Akim Demaille <akim@epita.fr>
2941 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
2942 defined only if yyoverflow is defined, to avoid `warning: unused
2944 Reported by The Test Suite.
2946 2001-11-14 Akim Demaille <akim@epita.fr>
2948 * src/print.c: Include reduce.h.
2949 Reported by Hans Aberg.
2951 2001-11-14 Akim Demaille <akim@epita.fr>
2953 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
2954 Revert a previous patch: these are really const.
2955 * src/conflicts.c (conflict_report): Additional useless pair of
2956 braces to pacify GCC's warnings for `if () if () {} else {}'.
2957 * src/lex.c (parse_percent_token): Replace equal_offset with
2960 Be sure to strdup `arg' when used, since there is no reason for
2961 token_buffer not to change.
2963 2001-11-14 Akim Demaille <akim@epita.fr>
2965 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
2967 * src/main.c (main): Use them.
2968 Suggested by Hans Aberg.
2970 2001-11-12 Akim Demaille <akim@epita.fr>
2972 * src/system.h (ngettext): Now that we use ngettext, be sure to
2973 provide a default definition when NLS are not used.
2975 2001-11-12 Akim Demaille <akim@epita.fr>
2977 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
2978 Use @kbd to denote user input.
2979 (Language and Grammar): ANSIfy the example.
2980 Adjust its layout for info/notinfo.
2981 (Location Tracking Calc): Output error messages to stderr.
2982 Output locations in a more GNUtically correct way.
2983 Fix a couple of Englishos.
2984 Adjust @group/@end group pairs.
2986 2001-11-12 Akim Demaille <akim@epita.fr>
2988 %expext was not functioning at all.
2990 * src/conflicts.c (expected_conflicts): Set to -1.
2991 (conflict_report): Use ngettext.
2992 (conflicts_print): Check %expect and make its violation an error.
2993 * doc/bison.texinfo (Expect Decl): Adjust.
2994 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
2995 * tests/regression.at (%expect not enough, %expect right)
2996 (%expect too much): New.
2998 2001-11-12 Akim Demaille <akim@epita.fr>
3000 * tests/regression.at (Conflicts): Rename as...
3001 (Unresolved SR Conflicts): this.
3002 (Solved SR Conflicts): New.
3004 2001-11-12 Akim Demaille <akim@epita.fr>
3006 * src/reduce.c (print_results): Rename as...
3007 (reduce_output): This.
3008 Output to OUT, passed as argument, instead of output_obstack.
3009 (dump_grammar): Likewise.
3012 (reduce_grammar): No longer call reduce_output, since...
3013 * src/print.c (print_results): do it.
3014 * src/main.c (main): Call reduce_free;
3016 2001-11-12 Akim Demaille <akim@epita.fr>
3018 * src/conflicts.c (print_reductions): Accept OUT as argument.
3019 Output to it, not to output_obstack.
3020 * src/print.c (print_actions): Adjust.
3022 2001-11-12 Akim Demaille <akim@epita.fr>
3024 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
3025 the result instead of using...
3026 (src_total, rrc_total, src_count, rrc_count): Remove.
3027 (any_conflicts): Remove.
3028 (print_conflicts): Split into...
3029 (conflicts_print, conflicts_output): New.
3030 * src/conflicts.h: Adjust.
3031 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
3032 * src/print.c (print_grammar): Issue `\n' between two rules.
3033 * tests/regression.at (Conflicts): New.
3034 Reported by Tom Lane.
3036 2001-11-12 Akim Demaille <akim@epita.fr>
3038 * tests/regression.at (Invalid input): Remove, duplicate with
3039 ``Invalid input: 1''.
3041 2001-11-12 Akim Demaille <akim@epita.fr>
3043 * tests/torture.at (AT_DATA_STACK_TORTURE)
3044 (Exploding the Stack Size with Alloca)
3045 (Exploding the Stack Size with Malloc): New.
3047 2001-11-12 Akim Demaille <akim@epita.fr>
3049 * src/bison.simple (YYSTACK_REALLOC): New.
3050 (yyparse) [!yyoverflow]: Use it and free the old stack.
3051 Reported by Per Allansson.
3053 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
3055 * src/bison.simple: Define type yystype instead of YYSTYPE, and
3056 define CPP macro, which substitute YYSTYPE by yystype.
3057 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
3058 with yyltype/YYLTYPE. This allows inclusion of the generated
3059 header within the parser if the compiler, such as GGC, accepts
3060 multiple equivalent #defines.
3063 2001-11-05 Akim Demaille <akim@epita.fr>
3065 * src/reader.c (symbols_output): New, extracted from...
3066 (packsymbols): here.
3069 2001-11-05 Akim Demaille <akim@epita.fr>
3071 * src/lex.c (parse_percent_token): s/quotearg/quote/.
3073 2001-11-05 Akim Demaille <akim@epita.fr>
3075 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
3078 2001-11-05 Akim Demaille <akim@epita.fr>
3080 * src/options.h (struct option_table_struct): set_flags is void*.
3081 * src/options.c (longopts): Support `--output' and `%output'.
3083 * src/lex.h (tok_setopt): Remove, replaced with...
3084 (tok_intopt, tok_stropt): these new guys.
3085 * src/lex.c (getopt.h): Not needed.
3086 (token_buffer, unlexed_token_buffer): Not const.
3087 (percent_table): Promote `-' over `_' in directive names.
3088 Active `%name-prefix', `file-prefix', and `output'.
3089 (parse_percent_token): Accept possible arguments to directives.
3090 Promote `-' over `_' in directive names.
3092 2001-11-04 Akim Demaille <akim@epita.fr>
3094 * doc/bison.texinfo (Decl Summary): Split the list into
3095 `directives for grammars' and `directives for bison'.
3097 Add description of `%name-prefix', `file-prefix', and `output'.
3098 Promote `-' over `_' in directive names.
3099 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
3100 Simplify the description of `--name-prefix'.
3101 Promote `-' over `_' in directive names.
3102 Promote `--output' over `--output-file'.
3103 Fix the description of `--defines'.
3104 * tests/output.at: Exercise %file-prefix and %output.
3106 2001-11-02 Akim Demaille <akim@epita.fr>
3108 * doc/refcard.tex: Update.
3110 2001-11-02 Akim Demaille <akim@epita.fr>
3112 * src/symtab.h (SUNDEF): New.
3113 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
3114 stand for `uninitialized', instead of 0.
3115 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
3116 * src/lex.c (lex): Adjust.
3118 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
3120 Let yylex return it instead of a plain 0.
3121 Reported by Dick Streefland.
3123 2001-11-02 Akim Demaille <akim@epita.fr>
3125 * tests/regression.at (Mixing %token styles): New test.
3127 2001-11-02 Akim Demaille <akim@epita.fr>
3129 * src/reader.c (parse_thong_decl): Formatting changes.
3130 (token_translations_init): New, extracted from...
3131 (packsymbols): Here.
3134 2001-11-01 Akim Demaille <akim@epita.fr>
3136 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
3137 Check that `9foo.y' produces correct cpp guards.
3138 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
3142 2001-11-01 Akim Demaille <akim@epita.fr>
3144 * tests/regression.at (Invalid input: 2): New.
3145 * src/lex.c (unlexed_token_buffer): New.
3146 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
3150 2001-11-01 Akim Demaille <akim@epita.fr>
3152 * tests/calc.at: Catch up with 1.30.
3153 * configure.in: Bump to 1.49a.
3154 Adjust to newer Autotest.
3156 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
3158 * src/conflicts.c: Move global variables rrc_total and src_total ...
3159 (print_conflicts): here.
3160 * src/output.c (output): Free global variable user_toknums.
3161 * src/lex.c (token_obstack): Become static.
3163 2001-10-18 Akim Demaille <akim@epita.fr>
3165 * tests/atlocal.in (GCC): Add.
3166 * tests/calc.at: s/m4_match/m4_bmatch/.
3167 s/m4_patsubst/m4_bpatsubst/.
3168 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
3169 * configure.in: AC_SUBST(GCC).
3171 2001-10-14 Marc Autret <autret_m@epita.fr>
3173 * src/options.c (create_long_option_table): Fix.
3175 2001-10-10 Akim Demaille <akim@epita.fr>
3177 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
3179 2001-10-04 Akim Demaille <akim@epita.fr>
3181 * src/reader.c (parse_union_decl): Push the caracters in
3182 union_obstack, not attrs_obstack.
3184 2001-10-04 Akim Demaille <akim@epita.fr>
3186 Merge in the branch 1.29.
3188 * src/reader.c (packsymbols): Use a temporary obstack for
3189 `%%tokendef', since output_stack is already used elsewhere.
3191 2001-10-02 Akim Demaille <akim@epita.fr>
3195 2001-10-02 Akim Demaille <akim@epita.fr>
3199 2001-10-02 Akim Demaille <akim@epita.fr>
3201 * tests/regression.at (Invalid CPP headers): New.
3202 From Alexander Belopolsky.
3203 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
3205 2001-10-02 Akim Demaille <akim@epita.fr>
3207 * tests/regression.at (Invalid input): New.
3208 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
3211 2001-10-02 Akim Demaille <akim@epita.fr>
3213 * tests/calc.at: Now that --debug works, the tests must be adjusted.
3215 2001-10-02 Akim Demaille <akim@epita.fr>
3217 * src/output.c (output_parser): Assert `skeleton'.
3218 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
3222 2001-10-01 Marc Autret <autret_m@epita.fr>
3224 * src/lex.h: Echo modifications.
3225 * src/lex.c (unlex): Parameter is now token_t.
3228 2001-10-01 Marc Autret <autret_m@epita.fr>
3230 * src/main.c: Include lex.h.
3233 2001-09-29 Akim Demaille <akim@epita.fr>
3235 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
3237 2001-09-28 Akim Demaille <akim@epita.fr>
3239 * tests/testsuite.at: Update to newer Autotest.
3240 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
3242 2001-09-27 Akim Demaille <akim@epita.fr>
3244 Position independent wrapper.
3246 * tests/bison: Remove.
3247 * tests/bison.in: New.
3248 * configure.in: Adjust.
3250 2001-09-27 Paul Eggert <eggert@twinsun.com>
3252 Port quotearg fixes from tar 1.13.24.
3254 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
3256 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
3257 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
3259 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
3260 * m4/mbrtowc.m4: New file.
3261 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
3262 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
3264 2001-09-27 Akim Demaille <akim@epita.fr>
3268 2001-09-27 Akim Demaille <akim@epita.fr>
3272 2001-09-25 Akim Demaille <akim@epita.fr>
3274 * src/system.h: Include `xalloc.h'.
3275 Remove it from the C files.
3276 * src/files.c (output_files): Free the obstacks.
3277 * src/lex.c (init_lex): Rename as...
3280 * src/main.c (main): Use it.
3282 2001-09-24 Marc Autret <autret_m@epita.fr>
3284 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
3285 to output informations in fout (FILE*).
3286 (open_graph, close_graph): Likewise.
3287 (output_graph, output_edge, output_node): Likewise.
3288 * src/vcg.h: Update function prototypes.
3289 * src/print_graph.c (print_graph): Open output graph file.
3290 (print_actions): Adjust.
3291 * src/files.h: Remove extern declaration.
3292 * src/files.c: Remove graph_obstack declaration.
3293 (open_files): Remove graph_obstack initialization.
3294 (output_files): Remove graph_obstack saving.
3296 2001-09-24 Marc Autret <autret_m@epita.fr>
3298 * src/files.c (compute_output_file_names): Fix.
3300 2001-09-24 Marc Autret <autret_m@epita.fr>,
3301 Akim Demaille <akim@epita.fr>
3303 * src/reader.c (reader): Remove call to free_symtab ().
3304 * src/main.c (main): Call it here.
3306 * src/conflicts.c (initialize_conflicts): Rename as...
3307 (solve_conflicts): this.
3308 * src/print.c (print_core, print_actions, print_state)
3309 (print_grammar): Dump to a file instead a `output_obstack'.
3310 (print_results): Dump `output_obstack', and then proceed with the
3312 * src/files.c (compute_output_file_names, close_files): New.
3313 (output_files): Adjust.
3314 * src/main.c (main): Adjust.
3316 2001-09-23 Marc Autret <autret_m@epita.fr>
3318 * src/files.c (compute_header_macro): Computes header macro name
3319 from spec_defines_file when given.
3321 2001-09-23 Marc Autret <autret_m@epita.fr>
3323 * src/files.c (output_files): Add default extensions.
3325 2001-09-22 Akim Demaille <akim@epita.fr>
3327 * src/conflicts.c (finalize_conflicts): Rename as...
3328 (free_conflicts): this.
3330 2001-09-22 Akim Demaille <akim@epita.fr>
3332 * src/gram.c (gram_free): Rename back as...
3334 (output_token_translations): Free `token_translations'.
3335 * src/symtab.c (free_symtab): Free the tag field.
3337 2001-09-22 Akim Demaille <akim@epita.fr>
3339 Remove `translations' as it is always set to true.
3341 * src/gram.h: Adjust.
3342 * src/reader.c (packsymbols, parse_token_decl): Adjust
3343 * src/print.c (print_grammar): Adjust.
3344 * src/output.c (output_token_translations): Adjust.
3345 * src/lex.c (lex): Adjust.
3346 * src/gram.c: Be sure the set pointers to NULL.
3347 (dummy): Rename as...
3350 2001-09-22 Akim Demaille <akim@epita.fr>
3352 * configure.in: Invoke AM_LIB_DMALLOC.
3353 * src/system.h: Use dmalloc.
3354 * src/LR0.c: Be sure to have pointers initialized to NULL.
3355 (allocate_itemsets): Allocate kernel_items only if needed.
3357 2001-09-22 Akim Demaille <akim@epita.fr>
3359 * configure.in: Bump to 1.29b.
3360 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
3361 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
3362 need xmalloc.c in calc.y.
3365 2001-09-21 Akim Demaille <akim@epita.fr>
3368 * Makefile.maint, config/config.guess, config/config.sub,
3369 * config/missing: Update from masters.
3370 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
3372 * configure.in (ALL_LINGUAS): Add `tr'.
3374 2001-09-21 Akim Demaille <akim@epita.fr>
3376 * tests/Makefile.am (package.m4): Move to...
3377 ($(srcdir)/$(TESTSUITE)): here.
3379 2001-09-20 Akim Demaille <akim@epita.fr>
3381 * src/complain.c: No longer try to be standalone: use system.h.
3382 Don't assume __STDC__ is defined to 1. Just test if it is defined.
3383 * src/complain.h: Likewise.
3384 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
3385 Remove the unused variable `n'.
3386 From Albert Chin-A-Young.
3388 2001-09-18 Marc Autret <autret_m@epita.fr>
3390 * doc/bison.1: Update.
3391 * doc/bison.texinfo (Bison Options): Update --defines and --graph
3393 (Option Cross Key): Update.
3396 2001-09-18 Marc Autret <autret_m@epita.fr>
3398 * tests/regression.at: New test (comment in %union).
3400 2001-09-18 Marc Autret <autret_m@epita.fr>
3402 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
3404 Reported by Keith Browne.
3406 2001-09-18 Marc Autret <autret_m@epita.fr>
3408 * tests/output.at: Add tests for --defines and --graph.
3410 2001-09-18 Marc Autret <autret_m@epita.fr>
3412 * tests/output.at: Removes tests of %{header,src}_extension features.
3414 2001-09-18 Akim Demaille <akim@epita.fr>
3416 * tests/Makefile.am (package.m4): New.
3417 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
3418 (_AT_CHECK_CALC_ERROR): Likewise.
3419 Factor the `, ' part of verbose error messages.
3421 2001-09-18 Marc Autret <autret_m@epita.fr>
3423 * src/getargs.c (longopts): Declare --defines and --graph as options
3424 with optional arguments.
3425 * src/files.h: Add extern declarations.
3426 * src/files.c (spec_graph_file, spec_defines_file): New.
3427 (output_files): Update.
3428 Remove CPP-outed code.
3430 2001-09-18 Marc Autret <autret_m@epita.fr>
3432 Turn off %{source,header}_extension feature.
3434 * src/files.c (compute_exts_from_gf): Update.
3435 (compute_exts_from_src): Update.
3436 (output_files): CPP-out useless code.
3437 * src/files.h: Remove {header,source}_extension extern declarations.
3438 * src/reader.c (parse_dquoted_param): CPP-out.
3439 (parse_header_extension_decl): Remove.
3440 (parse_source_extension_decl): Remove.
3441 (read_declarations): Remove cases tok_{hdrext,srcext}.
3442 * src/lex.c (percent_table): Remove {header,source}_extension entries.
3443 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
3445 2001-09-10 Akim Demaille <akim@epita.fr>
3447 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
3448 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
3449 (AT_CHECK_OUTPUT): this.
3450 Merely check ls' exit status, its output is useless.
3452 2001-09-10 Akim Demaille <akim@epita.fr>
3454 * tests/calc.at: Use m4_match.
3455 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
3457 2001-09-10 Marc Autret <autret_m@epita.fr>,
3458 Akim Demaille <akim@epita.fr>
3460 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
3462 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
3464 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
3465 * src/lex.h: Adjust prototype.
3466 (token_t): Add `tok_undef'.
3467 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
3468 (parse_percent_token): Now returns token_t.
3469 Add default statement in switch.
3470 (lex): Separate `c' as an input variable, from the token_t result
3472 (unlexed): Is a token_t.
3474 2001-09-10 Akim Demaille <akim@epita.fr>
3476 * configure.in: Bump to 1.29a.
3478 2001-09-07 Akim Demaille <akim@epita.fr>
3482 2001-08-30 Akim Demaille <akim@epita.fr>
3484 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
3485 * m4/atconfig.m4: Remove.
3486 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
3488 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
3489 m4_if, m4_patsubst, and m4_regexp.
3490 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
3491 `input' file instead of echo.
3493 2001-08-29 Akim Demaille <akim@epita.fr>
3497 2001-08-29 Akim Demaille <akim@epita.fr>
3501 2001-08-29 Paul Eggert <eggert@twinsun.com>
3503 * src/bison.simple (yyparse): Don't take the address of an
3504 item before the start of an array, as that doesn't conform to
3507 2001-08-29 Robert Anisko <anisko_r@epita.fr>
3509 * doc/bison.texinfo (Location Tracking Calc): New node.
3511 2001-08-29 Paul Eggert <eggert@twinsun.com>
3513 * src/output.c (output): Do not define const, as this now
3514 causes more problems than it cures.
3516 2001-08-29 Akim Demaille <akim@epita.fr>
3518 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
3520 Be sure to tag the `detailmenu'.
3522 2001-08-29 Akim Demaille <akim@epita.fr>
3524 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
3525 download in a tmp dir.
3527 2001-08-28 Marc Autret <autret_m@epita.fr>
3529 * config/depcomp: New file.
3531 2001-08-28 Marc Autret <autret_m@epita.fr>
3533 * doc/bison.1 (mandoc): Adjust.
3534 From Juan Manuel Guerrero.
3536 2001-08-28 Marc Autret <autret_m@epita.fr>
3538 * src/print_graph.c (print_state): Fix.
3540 2001-08-27 Marc Autret <autret_m@epita.fr>
3542 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
3544 Echo modifications to the functions prototypes.
3545 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
3547 2001-08-27 Marc Autret <autret_m@epita.fr>
3549 * src/vcg.c: Include `xalloc.h'.
3550 (add_colorentry): New.
3551 (add_classname): New.
3552 (add_infoname): New.
3553 * src/vcg.h: Add new prototypes.
3555 2001-08-27 Akim Demaille <akim@epita.fr>
3557 * Makefile.maint: Sync. again with CVS Autoconf.
3559 2001-08-27 Akim Demaille <akim@epita.fr>
3561 * Makefile.maint: Formatting changes.
3562 (po-update, cvs-update, update): New targets.
3565 2001-08-27 Akim Demaille <akim@epita.fr>
3567 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
3568 * Makefile.maint: Sync. with CVS Autoconf.
3570 2001-08-27 Marc Autret <autret_m@epita.fr>
3572 * src/vcg.h (struct infoname_s): New.
3573 (struct colorentry_s): New.
3574 (graph_s): New fields {vertical,horizontal}_order in structure.
3575 Add `infoname' field.
3576 Add `colorentry' field;
3577 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
3578 (G_HORIZONTAL_ORDER): New.
3580 (G_COLORENTRY): New.
3581 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
3582 Add output of `infoname'.
3583 Add output of `colorentry'.
3585 2001-08-27 Marc Autret <autret_m@epita.fr>
3587 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
3588 This one shadowed a global parameter.
3590 2001-08-24 Marc Autret <autret_m@epita.fr>
3592 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
3593 instead of `unsigned'.
3594 (print_state): Do not call obstack_object_size () in obstack_grow ()
3595 to avoid macro variables shadowing.
3597 2001-08-23 Marc Autret <autret_m@epita.fr>
3599 * src/lex.c (percent_table): Typo: s/naem/name/.
3601 Normalize new options declarations.
3603 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
3605 * tests/suite.at: Exercise %header_extension and %source_extension.
3607 2001-08-16 Marc Autret <autret_m@epita.fr>
3609 * src/reader.c (parse_dquoted_param): New.
3610 (parse_header_extension_decl): Use it.
3611 (parse_source_extension_decl): Likewise.
3613 2001-08-16 Marc Autret <autret_m@epita.fr>
3615 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
3616 (get_xxxx_str): Use assert () instead of complain ().
3617 Remove return invokations in default cases.
3618 (get_decision_str): Modify default behaviour. Remove second argument.
3619 Echo modifications on calls.
3620 (output_graph): Fix.
3622 2001-08-16 Marc Autret <autret_m@epita.fr>
3624 * src/getargs.c (usage): Update with ``-g, --graph''.
3626 2001-08-16 Marc Autret <autret_m@epita.fr>
3628 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
3629 (Option Cross Key): Likewise.
3630 * doc/bison.1: Update.
3632 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
3634 * src/output.c (output_master_parser): Don't finish action_obstack.
3635 (output_parser): Don't care about the muscle action, here.
3636 (prepare): Copy the action_obstack in the action muscle.
3637 (output): Free action_obstack.
3639 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
3641 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
3642 will contain `%union' declaration.
3643 (parse_union_decl): Delete #line directive output.
3644 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
3645 informations about %union.
3646 (parse_union_decl): Copy the union_obstack in the muscle stype.
3647 * src/bison.simple: Add new #line directive.
3648 Add typdef %%stype YYSTYPE.
3650 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
3652 * src/bison.simple: Add new `#line' directive.
3654 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
3656 * src/bison.simple: New `#line' directive.
3657 * src/output.c (output_parser): Support new dynamic muscle input_line.
3659 2001-09-22 Marc Autret <autret_m@epita.fr>
3661 * src/output.c (output_master_parser): New.
3662 (output_parser): Be more re-entrant.
3664 2001-09-21 Marc Autret <autret_m@epita.fr>
3666 * src/reader.c (copy_definition, parse_union_decl): Update and use
3668 (copy_action): Likewise.
3669 Use obstack_1grow ().
3670 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
3672 2001-09-21 Marc Autret <autret_m@epita.fr>
3674 * src/options.c (option_table): Adjust.
3675 * src/lex.c (parse_percent_token): Fix.
3677 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
3679 * src/options.c (symtab.h): Include it, need by lex.h.
3681 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
3683 * src/lex.c (parse_percent_token): Change type of variable `tx', which
3684 is now an option_table_struct*.
3685 (option_strcmp): New function option_strcmp.
3686 (parse_percent_token): Call option_strcmp.
3687 * src/getargs.c (xalloc.h, options.h): Include it.
3688 (getargs): Call create_long_option_table.
3689 (getargs): Free longopts at the end of the function.
3690 (shortopts): Move in options.c.
3691 * src/options.c (create_long_option_table): New function. Convert
3692 information from option_table to option structure.
3693 * src/reader.c (options.h): Include it.
3695 * src/Makefile.am: Adjust.
3696 * src/options.c (option_table): Create from longopts and percent_table.
3697 * src/getargs.c (longopts): Delete.
3698 * src/lex.c (struct percent_table_struct): Delete.
3699 (percent_table): Delete.
3700 (options.h): Include it.
3701 * src/options.c: Create.
3702 * src/options.h: Create.
3703 Declare enum opt_access_e.
3704 Define struct option_table_struct.
3706 2001-09-20 Marc Autret <autret_m@epita.fr>
3708 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
3711 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
3713 * src/bison.simple: s/%%filename/%%skeleton.
3714 * src/muscle_tab.c (getargs.h): Include it.
3715 (muscle_init): Insert new muscle skeleton.
3717 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
3719 * src/output.c (output_parser): Delete unused variable actions_dumped.
3721 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
3723 * src/output.c (output): Delete call to reader_output_yylsp.
3724 * src/reader.c (reader): Likewise.
3725 * src/reader.h: Delete declaration of reader_output_yylsp.
3727 2001-09-02 Marc Autret <autret_m@epita.fr>
3729 * src/reader.c: Include muscle_tab.h.
3730 (parse_union_decl): Update.
3731 (parse_macro_decl): Rename parse_muscle_decl.
3732 Update to use renamed functions and variable.
3733 (read_declarations, copy_action, read_additionnal_code, : Updated
3734 with correct variables and functions names.
3735 (packsymbols, reader): Likewise.
3737 * src/reader.h (muscle_obstack): Extern declaration update.
3739 * src/output.c: Include muscle_tab.h
3740 In all functions using macro_insert, change by using muscle_insert ().
3741 (macro_obstack): Rename muscle_obstack.
3742 Echo modifications in the whole file.
3743 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
3744 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
3745 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
3747 * src/muscle_tab.h: Update double inclusion macros.
3748 (macro_entry_s): Rename muscle_entry_s.
3751 * src/muscle_tab.c: Include muscle_tab.h.
3752 Rename macro_tabble to muscle_table.
3753 (mhash1, mhash2, mcmp): Use muscle_entry.
3754 (macro_init): Rename muscle_init. Update.
3755 (macro_insert): Rename muscle_insert. Update.
3756 (macro_find): Rename muscle_find. Update.
3758 * src/main.c: Include muscle_tab.h.
3759 (main): Call muscle_init ().
3760 * src/Makefile.am (bison_SOURCES): Echo modifications.
3762 2001-09-02 Marc Autret <autret_m@epita.fr>
3764 Now the files macro_tab.[ch] are named muscle_tab.[ch].
3766 * src/muscle_tab.c, src/muscle_tab.h: Add files.
3768 2001-09-02 Marc Autret <autret_m@epita.fr>
3770 * src/macrotab.c, src/macrotab.h: Remove.
3772 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
3774 * src/reader.c (copy_guard): Use muscle to specify the `#line'
3777 2001-09-01 Marc Autret <autret_m@epita.fr>
3779 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
3780 to an explicit value to activate the feature. We do it here.
3782 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
3784 * src/output.c (prepare): Delete the `filename' muscule insertion.
3785 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
3786 (parse_union_decl): Likewise.
3787 * src/macrotab.c (macro_init): Initialize filename by infile.
3789 2001-08-31 Marc Autret <autret_m@epita.fr>
3791 * src/bison.simple (YYLSP_NEEDED): New definition.
3792 * src/output.c (prepare): Add macro insertion of `locations_flag'
3794 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
3796 * src/output.c (prepare): Delete insertion of previous muscles,
3797 and insert the `prefix' muscles.
3798 * src/macrotab.c (macro_init): Likewise.
3799 (macro_init): Initialization prefix directive by `yy'.
3800 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
3801 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
3802 yylval, yydebug, yyerror, yynerrs and yyparse.
3803 New directive `#define' to substitute yydebug, ... with option
3806 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
3808 * src/main.c (main): Standardize.
3809 * src/output.c (output_table_data, output_parser): Likewise.
3810 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
3812 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
3814 * src/reader.c (read_additionnal_code): Rename %%user_code to
3816 * src/output.c (output): Rename %%declarations to %%prologue.
3817 * src/bison.simple: Echo modifications.
3819 2001-08-31 Marc Autret <autret_m@epita.fr>
3821 * src/reader.c (readgram): CleanUp.
3822 (output_token_defines): Likewise.
3823 (packsymbols): Likewise.
3825 * src/output.c (output): CPP-out useless code.
3827 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
3829 * src/reader.c (reader): Delete obsolete call to function
3830 output_trailers and output_headers.
3831 * src/output.h: Remove obsolete functions prototypes of output_headers
3832 and output_trailers.
3834 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
3836 * src/main.c: Include macrotab.h.
3837 * src/macrotab.h (macro_entry_s): Constify fields.
3838 Adjust functions prototypes.
3839 * src/macrotab.c (macro_insert): Constify key and value.
3840 (macro_find): Constify key.
3841 (macro_insert): Include 'xalloc.h'
3842 (macro_insert): Use XMALLOC.
3843 (macro_find): Constify return value.
3844 * src/output.c (output_table_data): Rename table to table_data.
3845 (output_parser): Constify macro_key, macro_value.
3847 2001-08-30 Marc Autret <autret_m@epita.fr>
3849 * src/reader.c (parse_skel_decl): New.
3850 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
3851 * src/lex.h (token_t): New token `tok_skel'.
3852 * src/lex.c (percent_table): Add skeleton option entry.
3855 2001-08-29 Marc Autret <autret_m@epita.fr>
3857 * src/bison.simple: Add %%user_code directive at the end.
3858 * src/reader.c (read_additionnal_code): New.
3860 * src/output.c (output_program): Remove.
3863 2001-08-28 Marc Autret <autret_m@epita.fr>
3865 * src/output.c (output_actions): Clean up.
3866 (output_gram): CPP-out useless code.
3867 * src/reader.c (reader): Clean up, CPP-out useless code.
3869 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
3871 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
3873 * src/bison.simple: Add `%%definitions'.
3875 2001-08-28 Marc Autret <autret_m@epita.fr>
3877 * config/depcomp: New file.
3879 2001-08-27 Paul Eggert <eggert@twinsun.com>
3881 * src/bison.simple (yyparse): Don't take the address of an
3882 item before the start of an array, as that doesn't conform to
3885 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
3887 * src/output.c (output): Remove the initialization of the macro
3888 obstack. It was done too late here.
3890 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
3892 (reader): Initialize the macro obstack here, since we need it to grow
3893 '%define' directives.
3895 * src/reader.h: Declare the macro obstack as extern.
3897 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
3899 * src/output.c (output_parser): Fix. Store single '%' characters in
3900 the output obstack instead of throwing them away.
3902 2001-08-27 Akim Demaille <akim@epita.fr>
3904 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
3906 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
3908 * lib/Makefile.am: Adjust.
3910 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
3912 * src/bison.simple: Update and add '%%' directives.
3914 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
3916 * src/reader.c (reader): Remove calls to 'output_headers' and
3917 'output_trailers'. Remove some C output.
3918 (readgram): Disable a piece of code that was writing a default
3919 definition for 'YYSTYPE'.
3920 (reader_output_yylsp): Remove.
3921 (packsymbols): Output token defintions to a macro.
3922 (copy_definition): Disable C output.
3924 * src/reader.c (parse_macro_decl): New function used to parse macro
3926 (copy_string2): Put the body of copy_string into this new function.
3927 Add a parameter to let the caller choose whether he wants to copy the
3928 string delimiters or not.
3929 (copy_string): Be a simple call to copy_string2 with the last argument
3931 (read_declarations): Add case for macro definition.
3932 (copy_identifier): New.
3933 (parse_macro_decl): Read macro identifiers using copy_identifier
3936 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
3938 * src/output.c (prepare): Add prefixed names.
3939 (output_parser): Output semantic actions.
3940 (output_parser): Fix bug on '%%line' directives.
3942 * src/output.c (output_headers): Remove. The C code printed by this
3943 function should now be in the skeletons.
3944 (output_trailers): Remove.
3945 (output): Disable call to 'reader_output_yylsp'.
3946 (output_rule_data): Do not output tables to the table obstack.
3948 * src/output.c: Remove some C dedicated output.
3949 Improve the use of macro and output obstacks.
3950 (output_defines): Remove.
3952 * src/output.c (output_token_translations): Associate 'translate'
3953 table with a macro. No output to the table obstack.
3954 (output_gram): Same for 'rhs' and 'prhs'.
3955 (output_stos): Same for 'stos'.
3956 (output_rule_data): Same for 'r1' and 'r2'.
3957 (token_actions): Same for 'defact'.
3958 (goto_actions): Same for 'defgoto'.
3959 (output_base): Same for 'pact' and 'pgoto'.
3960 (output_table): Same for 'table'.
3961 (output_check): Same for 'check'.
3963 * src/output.c (output_table_data): New function.
3964 (output_short_table): Remove.
3965 (output_short_or_char_table): Remove.
3967 * src/output.c (output_parser): Replace most of the skeleton copy code
3968 with something new. Skeletons are now processed character by character
3969 rather than line by line, and Bison looks for '%%' macros. This is the
3970 first step in making Bison's output process (a lot) more flexible.
3971 (output_parser): Use the macro table.
3973 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
3975 * src/main.c (main): Initialize the macro table.
3977 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
3979 * src/lex.c (percent_table): Add tok_define.
3980 * src/lex.h: Add tok_define.
3982 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
3984 * src/macrotab.c: New file.
3985 * src/macrotab.h: New file.
3986 * src/Makefile.am: Update.
3988 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
3990 * lib/hash.c: New file.
3991 * lib/hash.h: New file.
3992 * lib/Makefile.am: Update.
3994 2001-08-15 Akim Demaille <akim@epita.fr>
3998 2001-08-15 Marc Autret <autret_m@epita.fr>
4000 * src/reader.c (readgram): Indent output macro YYSTYPE.
4001 (packsymbols): Likewise.
4002 (output_token_defines): Likewise.
4003 * src/files.c: Standardize.
4004 (compute_header_macro): New.
4005 (defines_obstack_save): New. Use compute_header_macro.
4006 (output_files): Update. Use defines_obstack_save.
4008 2001-08-15 Akim Demaille <akim@epita.fr>
4010 * doc/bison.texinfo (Table of Symbols): Document
4013 2001-08-15 Akim Demaille <akim@epita.fr>
4015 * missing: Update from CVS Automake.
4016 * config/config.guess, config/config.sub, config/texinfo.tex:
4017 Update from gnu.org.
4019 2001-08-15 Akim Demaille <akim@epita.fr>
4021 * Makefile.maint: Sync with CVS Autoconf.
4023 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
4025 * doc/bison.texinfo: Include GNU Free Documentation License from
4027 * doc/fdl.texi: Add to package.
4029 2001-08-14 Marc Autret <autret_m@epita.fr>
4031 Turn on %{source,header}_extension features.
4033 * src/lex.c (percent_table): Un-CPP out header_extension and
4035 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
4036 (compute_exts_from_src): Remove conditions. It restores priorities
4039 2001-08-14 Marc Autret <autret_m@epita.fr>
4041 * src/files.c (compute_base_names): Add extensions computing when
4042 `--file-prefix' used.
4043 Standardize function calls.
4045 2001-08-13 Marc Autret <autret_m@epita.fr>
4047 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
4048 defining it (defined but null disables alloca).
4050 2001-08-13 Marc Autret <autret_m@epita.fr>
4052 * src/bison.simple (_yy_memcpy): CPP reformat.
4054 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
4056 * tests/atconfig.in (CPPFLAGS): Fix.
4058 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
4060 * doc/bison.texinfo: Include GNU General Public License from
4062 * doc/gpl.texi: Add to package.
4064 2001-08-10 Marc Autret <autret_m@epita.fr>
4066 * src/print_graph.h: Fix.
4067 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
4069 2001-08-10 Akim Demaille <akim@epita.fr>
4071 * src/system.h: Provide default declarations for stpcpy, strndup,
4074 2001-08-10 Robert Anisko <anisko_r@epita.fr>
4076 * doc/bison.texinfo (Locations): Update @$ stuff.
4078 2001-08-09 Robert Anisko <anisko_r@epita.fr>
4080 * src/bison.simple (YYLLOC_DEFAULT): Update.
4083 2001-08-08 Marc Autret <autret_m@epita.fr>
4085 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
4086 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
4087 Reported by Fabrice Bauzac.
4089 2001-08-08 Marc Autret <autret_m@epita.fr>
4091 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
4092 * src/vcg.c (output_node): Fix.
4093 * src/vcg.h: Cleanup.
4094 * src/print_graph.c: Add comments.
4095 (node_output_size): New global variable. Simplify the formatting of
4096 the VCG graph output.
4097 (print_actions): Unused code is now used. It notifies the final state
4098 and no action states in the VCG graph. It also give the reduce actions.
4099 The `shift and goto' edges are red and the `go to state' edges are
4101 Get the current node name and node_obstack by argument.
4102 (node_obstack): New variable.
4103 (print_state): Manage node_obstack.
4104 (print_core): Use node_obstack given by argument.
4105 A node is not only computed here but in print_actions also.
4106 (print_graph): CPP out useless code instead of commenting it.
4108 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
4110 * tests/atconfig.in (CPPFLAGS): Fix.
4112 2001-08-07 Akim Demaille <akim@epita.fr>
4114 * src/print_graph.c (quote): New.
4115 (print_core): Use it.
4117 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
4119 * src/vcg.c (complain.h): Include it.
4120 Unepitaize `return' invocations.
4121 [NDEBUG] (main): Remove.
4122 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
4123 * src/files.c (open_files): Initialize graph_obstack.
4124 * src/print_graph.c (print_actions): CPP out useless code.
4125 (print_core): Don't output the last `\n' in labels.
4127 * src/files.c (output_files): Output the VCG file.
4128 * src/main.c (main): Invoke print_graph ();
4130 2001-08-06 Marc Autret <autret_m@epita.fr>
4132 Automaton VCG graph output.
4133 Using option ``-g'' or long option ``--graph'', you can generate
4134 a gram_filename.vcg file containing a VCG description of the LALR (1)
4135 automaton of your grammar.
4137 * src/main.c: Call to print_graph() function.
4138 * src/getargs.h: Update.
4139 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
4140 (graph_flag): New flag.
4142 (getargs): Add case `g'.
4143 * src/files.c (graph_obstack): New obstack struct.
4144 (open_files): Initialize new obstack.
4145 (output_files): Saves graph_obstack if required.
4146 * src/files.h (graph_obstack): New extern declaration.
4147 * src/Makefile.am: Add new source files.
4149 2001-08-06 Marc Autret <autret_m@epita.fr>
4151 * src/print_graph.c, src/print_graph.h (graph): New.
4152 * src/vcg.h: New file.
4153 * src/vcg.c: New file, VCG graph handling.
4155 2001-08-06 Marc Autret <autret_m@epita.fr>
4157 Add of %source_extension and %header_extension which specify
4158 the source or/and the header output file extension.
4160 * src/files.c (compute_base_names): Remove initialisation of
4161 src_extension and header_extension.
4162 (compute_exts_from_gf): Update.
4163 (compute_exts_from_src): Update.
4164 (output_files): Update.
4165 * src/reader.c (parse_header_extension_decl): New.
4166 (parse_source_extension_decl): New.
4167 (read_declarations): New case statements for the new tokens.
4168 * src/lex.c (percent_table): Add entries for %source_extension
4169 and %header_extension.
4170 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
4172 2001-08-06 Marc Autret <autret_m@epita.fr>
4174 * configure.in: Bump to 1.28c.
4175 * doc/bison.texinfo: Texinfo thingies.
4177 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
4179 * tests/atconfig.in (CPPFLAGS): Add.
4180 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
4182 2001-08-03 Akim Demaille <akim@epita.fr>
4186 2001-08-03 Akim Demaille <akim@epita.fr>
4188 * tests/Makefile.am (check-local): Ship testsuite.
4189 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
4192 2001-08-03 Akim Demaille <akim@epita.fr>
4194 * configure.in: Try using -Wformat when compiling.
4196 2001-08-03 Akim Demaille <akim@epita.fr>
4198 * configure.in: Bump to 1.28b.
4200 2001-08-03 Akim Demaille <akim@epita.fr>
4202 * src/complain.c: Adjust strerror_r portability issues.
4204 2001-08-03 Akim Demaille <akim@epita.fr>
4208 2001-08-03 Akim Demaille <akim@epita.fr>
4210 * src/getargs.c, src/getarg.h (skeleton)): Constify.
4211 * src/lex.c (literalchar): Avoid name clashes on `buf'.
4212 * src/getargs.c: Include complain.h.
4213 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
4214 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
4216 2001-08-03 Akim Demaille <akim@epita.fr>
4218 * src/reader.c (readgram): Display hidden chars in error messages.
4220 2001-08-03 Akim Demaille <akim@epita.fr>
4222 Update to gettext 0.10.39.
4224 2001-08-03 Akim Demaille <akim@epita.fr>
4226 * lib/strspn.c: New.
4228 2001-08-01 Marc Autret <autret_m@epita.fr>
4230 * doc/bison.texinfo: Update.
4231 * doc/bison.1 (mandoc): Update.
4232 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
4233 * src/files.c: Support output files extensions computing.
4234 (src_extension): New static variable.
4235 (header_extension): New static variable.
4237 (get_extension_index): New function, gets the index of an extension
4238 filename in a string.
4239 (compute_exts_from_gf): New function, computes extensions from the
4240 grammar file extension.
4241 (compute_exts_from_src): New functions, computes extensions from the
4242 C source file extension, file given by ``-o'' option.
4243 (compute_base_names): Update.
4244 (output_files): Update.
4246 2001-08-01 Robert Anisko <anisko_r@epita.fr>
4248 * doc/bison.texi: Document @$.
4249 (Locations): New section.
4251 2001-07-18 Akim Demaille <akim@epita.fr>
4253 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
4254 * config/prev-version.txt, config/move-if-change: New.
4255 * Makefile.am: Adjust.
4257 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
4259 * src/bison.simple (yyparse): Suppress warning `comparaison
4260 between signed and unsigned'.
4262 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
4264 * src/getargs.h (raw_flag): Remove.
4265 * src/getargs.c: Die on `-r'/`--raw'.
4266 * src/lex.c (parse_percent_token): Die on `%raw'.
4267 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
4268 * tests/calc.at: Suppress test with option `--raw'.
4270 2001-07-14 Akim Demaille <akim@epita.fr>
4273 * configure.in: Require Autoconf 2.50.
4274 Update to gettext 0.10.38.
4276 2001-03-16 Akim Demaille <akim@epita.fr>
4278 * doc/bison.texinfo: ANSIfy the examples.
4280 2001-03-16 Akim Demaille <akim@epita.fr>
4282 * getargs.c (skeleton): New variable.
4283 (longopts): --skeleton is a new option.
4284 (shortopts, getargs): -S is a new option.
4285 * getargs.h: Declare skeleton.
4286 * output.c (output_parser): Use it.
4288 2001-03-16 Akim Demaille <akim@epita.fr>
4290 * m4/strerror_r.m4: New.
4291 * m4/error.m4: Run AC_FUNC_STRERROR_R.
4292 * lib/error.h, lib/error.c: Update.
4294 2001-03-16 Akim Demaille <akim@epita.fr>
4296 * src/getargs.c (longopts): Clean up.
4298 2001-02-21 Akim Demaille <akim@epita.fr>
4300 * src/reader.c (gensym): `gensym_count' is your own.
4301 Use a static buf to create the symbol name, as token_buffer is no
4304 2001-02-08 Akim Demaille <akim@epita.fr>
4306 * src/conflicts.c (conflict_report): Be sure not to append to res
4307 between two calls, which could happen if both first sprintf were
4308 skipped, but not the first cp += strlen.
4310 2001-02-08 Akim Demaille <akim@epita.fr>
4312 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
4313 New, from fileutils 4.0.37.
4314 * configure.in: Require Autoconf 2.49c. I took some time before
4315 making this decision. This is the only way out for portability
4316 issues in Bison, it would mean way too much duplicate effort to
4317 import in Bison features implemented in 2.49c since 2.13.
4318 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
4320 2001-02-02 Akim Demaille <akim@epita.fr>
4322 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
4323 * lib/xalloc.h, lib/xmalloc.c: Update.
4325 2001-01-19 Akim Demaille <akim@epita.fr>
4327 Get rid of the ad hoc handling of token_buffer in the scanner: use
4330 * src/lex.c (token_obstack): New.
4331 (init_lex): Initialize it. No longer call...
4332 (grow_token_buffer): this. Remove it.
4333 Adjust all the places which used it to use the obstack.
4335 2001-01-19 Akim Demaille <akim@epita.fr>
4337 * src/lex.h: Rename all the tokens:
4338 s/\bENDFILE\b/tok_eof/g;
4339 s/\bIDENTIFIER\b/tok_identifier/g;
4341 Let them be enums, not #define, to ease debugging.
4342 Adjust all the code.
4344 2001-01-18 Akim Demaille <akim@epita.fr>
4346 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
4347 * src/lex.c (maxtoken, grow_token_buffer): Static.
4349 2001-01-18 Akim Demaille <akim@epita.fr>
4351 Since we now use obstacks, more % directives can be enabled.
4353 * src/lex.c (percent_table): Also accept `%yacc',
4354 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
4356 Handle the actions for `%semantic_parser' and `%pure_parser' here,
4357 instead of returning a token.
4358 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
4359 * src/reader.c (read_declarations): Adjust.
4360 * src/files.c (open_files): Don't call `compute_base_names', don't
4361 compute `attrsfile' since they depend upon data which might be
4362 *in* the input file now.
4363 (output_files): Do it here.
4364 * src/output.c (output_headers): Document the fact that this patch
4365 introduces a guaranteed SEGV for semantic parsers.
4366 * doc/bison.texinfo: Document them.
4367 * tests/suite.at: Exercise these %options.
4369 2000-12-20 Akim Demaille <akim@epita.fr>
4371 Also handle the output file (--verbose) with obstacks.
4373 * files.c (foutput): Remove.
4374 (output_obstack): New.
4375 Adjust all dependencies.
4376 * src/conflicts.c: Return a string.
4377 * src/system.h (obstack_grow_string): Rename as...
4378 (obstack_sgrow): this. Be ready to work with non literals.
4379 (obstack_fgrow4): New.
4381 2000-12-20 Akim Demaille <akim@epita.fr>
4383 * src/files.c (open_files): Fix the computation of short_base_name
4384 in the case of `-o foo.tab.c'.
4386 2000-12-20 Akim Demaille <akim@epita.fr>
4388 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
4389 (copy_dollar): Now that everything uses obstacks, get rid of the
4392 2000-12-20 Akim Demaille <akim@epita.fr>
4394 * src/files.c (open_files): Actually the `.output' file is based
4395 on the short_base_name, not base_name.
4396 * tests/suite.at (Checking output file names): Adjust.
4398 2000-12-20 Akim Demaille <akim@epita.fr>
4400 * src/bison.s1: Remove, we now use directly...
4401 * src/bison.simple: this.
4402 * src/Makefile.am: Use pkgdata instead of data.
4404 2000-12-20 Akim Demaille <akim@epita.fr>
4406 * src/files.c (guard_obstack): New.
4407 (open_files): Initialize it.
4408 (output_files): Dump it...
4409 * src/files.h: Export it.
4410 * src/reader.c (copy_guard): Use it.
4412 2000-12-19 Akim Demaille <akim@epita.fr>
4414 * src/files.c (outfile, defsfile, actfile): Removed as global
4416 (open_files): Don't compute them.
4417 (output_files): Adjust.
4418 (base_name, short_base_name): Be global.
4419 Adjust dependencies.
4421 2000-12-19 Akim Demaille <akim@epita.fr>
4423 * src/files.c (strsuffix): New.
4424 (stringappend): Be just like strcat but allocate.
4425 (base_names): Eve out from open_files.
4426 Try to simplify the rather hairy computation of base_name and
4428 (open_files): Use it.
4429 * tests/suite.at (Checking output file names): New test.
4431 2000-12-19 Akim Demaille <akim@epita.fr>
4433 * src/system.h (obstack_grow_literal_string): Rename as...
4434 (obstack_grow_string): this.
4435 * src/output.c (output_parser): Recognize `%% actions' instead of
4437 * src/bison.s1: s/$/%% actions/.
4438 * src/bison.hairy: Likewise.
4440 2000-12-19 Akim Demaille <akim@epita.fr>
4442 * src/output.c (output_parser): Compute the `#line' lines when
4444 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
4445 Suggested by Hans Aberg.
4447 2000-12-19 Akim Demaille <akim@epita.fr>
4449 Let the handling of the skeleton files be local to the procedures
4452 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
4454 (fparser, open_extra_files): Remove.
4455 (open_files, output_files): Don't take care of fparser.
4456 * src/files.h: Adjust.
4457 * src/output.c (output_parser): Open and close the file to the
4459 * src/reader.c (read_declarations): When %semantic_parser, open
4462 2000-12-19 Akim Demaille <akim@epita.fr>
4464 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
4465 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
4467 2000-12-19 Akim Demaille <akim@epita.fr>
4469 * src/files.c (open_files): Yipee! We no longer need all the code
4470 looking for `/tmp' since we have no tmp file.
4472 2000-12-19 Akim Demaille <akim@epita.fr>
4474 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
4476 * src/files.c (open_files): Less dependency on MSDOS etc.
4478 2000-12-14 Akim Demaille <akim@epita.fr>
4480 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
4481 Provide a default definition.
4482 Use it when executing the default @ action.
4483 * src/reader.c (reader_output_yylsp): No longer include
4484 `timestamp' and `text' in the default YYLTYPE.
4486 2000-12-12 Akim Demaille <akim@epita.fr>
4488 * src/reader.c (copy_definition, parse_union_decl, copy_action)
4489 (copy_guard): Quote the file names.
4490 Reported by Laurent Mascherpa.
4492 2000-12-12 Akim Demaille <akim@epita.fr>
4494 * src/output.c (output_headers, output_program, output): Be sure
4495 to escape special characters when outputting filenames.
4496 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
4497 (output_headers): Don't depend on them, Use ACTSTR.
4499 2000-11-17 Akim Demaille <akim@epita.fr>
4501 * lib/obstack.h: Formatting changes.
4502 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
4503 prevents type checking.
4504 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
4505 cast the value to (void *): assigning a `foo *' to a `void *'
4507 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
4508 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
4511 2000-11-17 Akim Demaille <akim@epita.fr>
4513 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
4515 (suite.m4, regression.m4, calc.m4): these.
4516 * tests/atgeneral.m4: Update from CVS Autoconf.
4518 2000-11-17 Akim Demaille <akim@epita.fr>
4520 * tests/regression.m4 (%union and --defines): New test,
4521 demonstrating a current bug in the obstack implementation.
4523 2000-11-17 Akim Demaille <akim@epita.fr>
4525 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
4527 Use them to declare the variables which are global or local to
4530 2000-11-17 Akim Demaille <akim@epita.fr>
4532 * acconfig.h: Remove, no longer used.
4534 2000-11-07 Akim Demaille <akim@epita.fr>
4536 * src: s/Copyright (C)/Copyright/g.
4538 2000-11-07 Akim Demaille <akim@epita.fr>
4540 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
4542 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
4544 2000-11-07 Akim Demaille <akim@epita.fr>
4546 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
4547 Merge in a single CPP if/else.
4549 2000-11-07 Akim Demaille <akim@epita.fr>
4551 * src/output.c (output): Remove useless variables.
4552 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
4553 argument `data' for consistency with the prototypes.
4555 (obstack_copy, obstack_copy0): Rename the second argument as
4556 `address' for consistency. Qualify it `const'.
4557 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
4558 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
4559 `const' their input argument (`data' or `address').
4560 Adjust the corresponding macros to include `const' in casts.
4562 2000-11-03 Akim Demaille <akim@epita.fr>
4564 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
4565 s/PFILE1/BISON_HAIRY/.
4566 Adjust dependencies.
4568 2000-11-03 Akim Demaille <akim@epita.fr>
4570 For some reason, this was not applied.
4572 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
4573 `unlink': it's no longer used.
4575 2000-11-03 Akim Demaille <akim@epita.fr>
4577 * src/files.c (skeleton_find): New function, eved out of...
4578 (open_files, open_extra_files): here.
4580 2000-11-03 Akim Demaille <akim@epita.fr>
4584 * src/files.c (obstack_save): New function.
4585 (done): Rename as...
4586 (output_files): this.
4588 * src/main.c (main): Don't use `atexit' to register `done', since
4589 it no longer has to remove tmp files, just call `output_files'
4590 when there are no errors.
4592 2000-11-02 Akim Demaille <akim@epita.fr>
4594 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
4595 `unlink': it's no longer used.
4596 * src/files.h: Formatting changes.
4598 2000-11-02 Akim Demaille <akim@epita.fr>
4600 Remove the last uses of mktemp and unlink/delete.
4602 * src/files.c (fdefines, ftable): Removed.
4603 (defines_ostack, table_obstack): New.
4604 Adjust dependencies of the former into uses of the latter.
4605 * src/output.c (output_short_or_char_table, output_short_table):
4606 Convert to using obstacks.
4607 * src/reader.c (copy_comment2): Accept one FILE * and two
4609 (output_token_defines, reader_output_yylsp): Use obstacks.
4610 * src/system.h (obstack_fgrow3): New.
4612 2000-11-01 Akim Demaille <akim@epita.fr>
4614 Change each use of `fattrs' into a use of `attrs_obstack'.
4616 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
4617 * src/files.c (fattrs): Remove.
4618 (attrs_obstack): New.
4619 Adjust all dependencies.
4620 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
4622 2000-11-01 Akim Demaille <akim@epita.fr>
4625 Change each use of `faction' into a use of `action_obstack'.
4627 * lib/obstack.h, lib/obstack.c: New files.
4628 * src/files.c (faction): Remove.
4629 (action_obstack): New.
4630 Adjust all dependencies.
4632 2000-10-20 Akim Demaille <akim@epita.fr>
4634 * lib/quote.h (PARAMS): New macro. Use it.
4636 2000-10-16 Akim Demaille <akim@epita.fr>
4638 * src/output.c (output_short_or_char_table): New function.
4639 (output_short_table, output_token_translations): Use it.
4640 (goto_actions): Use output_short_table.
4642 2000-10-16 Akim Demaille <akim@epita.fr>
4644 * src/symtab.c (bucket_new): New function.
4647 * src/output.c (output_short_table): New argument to display the
4648 comment associated with the table.
4649 Adjust dependencies.
4650 (output_gram): Use it.
4651 (output_rule_data): Nicer output layout for YYTNAME.
4653 2000-10-16 Akim Demaille <akim@epita.fr>
4655 * src/lex.c (read_typename): New function.
4657 * src/reader.c (copy_dollar): Likewise.
4659 2000-10-16 Akim Demaille <akim@epita.fr>
4661 * src/reader.c (copy_comment2): Expect the input stream to be on
4662 the `/' which is suspected to open a comment, instead of being
4663 called after `//' or `/*' was read.
4664 (copy_comment, copy_definition, parse_union_decl, copy_action)
4665 (copy_guard): Adjust.
4667 2000-10-16 Akim Demaille <akim@epita.fr>
4669 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
4670 `read_signed_integer'.
4672 2000-10-16 Akim Demaille <akim@epita.fr>
4674 * src/reader.c (copy_dollar): New function.
4675 (copy_guard, copy_action): Use it.
4677 2000-10-16 Akim Demaille <akim@epita.fr>
4679 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
4680 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
4681 New files, from Fileutils 4.0.27.
4682 * src/main.c (printable_version): Remove.
4683 * src/lex.c, src/reader.c: Use `quote'.
4685 2000-10-04 Akim Demaille <akim@epita.fr>
4687 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
4689 2000-10-04 Akim Demaille <akim@epita.fr>
4691 * doc/bison.texinfo: Various typos spotted by Neil Booth.
4693 2000-10-04 Akim Demaille <akim@epita.fr>
4695 When a literal string is used to define two different tokens,
4696 `bison -v' segfaults.
4697 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
4699 * tests/regression.m4: New file.
4700 Include the core of the sample provided by Piotr Gackiewicz.
4701 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
4704 2000-10-04 Akim Demaille <akim@epita.fr>
4706 * src/reader.c (parse_expect_decl): Keep `count' within the size
4710 2000-10-02 Paul Eggert <eggert@twinsun.com>
4712 * bison.s1 (yyparse): Assign the default value
4713 unconditionally, to avoid a GCC warning and make the parser a
4716 2000-10-02 Akim Demaille <akim@epita.fr>
4718 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
4721 2000-10-02 Akim Demaille <akim@epita.fr>
4723 * src/derives.c, src/print.c, src/reduce.c: To ease the
4724 translation, move some `\n' out of the translated strings.
4726 2000-10-02 Akim Demaille <akim@epita.fr>
4728 The location tracking mechanism is precious for parse error
4729 messages. Nevertheless, it is enabled only when `@n' is used in
4730 the grammar, which is a different issue (you can use it in error
4731 message, but not in the grammar per se). Therefore, there should
4732 be another means to enable it.
4734 * src/getargs.c (getargs): Support `--locations'.
4736 * src/getargs.h (locationsflag): Export it.
4737 * src/lex.c (percent_table): Support `%locations'.
4738 * src/reader.c (yylsp_needed): Remove this variable, now replaced
4739 with `locationsflag'.
4740 * doc/bison.texinfo: Document `--locations' and `%locations'.
4742 * tests/calc.m4: Test it.
4744 For regularity of the names, replace each
4745 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
4746 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
4747 In addition replace each `flag' with `_flag'.
4749 2000-10-02 Akim Demaille <akim@epita.fr>
4751 Also test parse error messages, including with YYERROR_VERBOSE.
4753 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
4755 Use it to check the computations.
4756 Use it to check `nonassoc' is honored.
4757 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
4758 `--yyerror-verbose'.
4759 (_AT_CHECK_CALC): Adjust to this option.
4760 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
4762 2000-10-02 Akim Demaille <akim@epita.fr>
4764 Test also `--verbose', `--defines' and `--name-prefix'. Testing
4765 the latter demonstrates a flaw in the handling of non debugging
4766 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
4767 was used in order to simplify:
4783 unfortunately this leads to a CPP conflict when
4784 `--name-prefix=foo' is used since it produces `#define yydebug
4787 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
4788 (YYDPRINTF): New macro.
4790 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
4792 Also test `--verbose', `--defines' and `--name-prefix'.
4794 2000-10-02 Akim Demaille <akim@epita.fr>
4796 Improve the readability of the produced parsers.
4798 * src/bison.s1: Formatting changes.
4799 Improve the comment related to the `$' mark.
4800 (yydefault): Don't fall through to `yyresume': `goto' there.
4801 * src/output.c (output_parser): When the `$' is met, skip the end
4803 New variable, `number_of_dollar_signs', to check there's exactly
4804 one `$' in the parser skeleton.
4806 2000-10-02 Akim Demaille <akim@epita.fr>
4808 * lib/xstrdup.c: New file, from the fileutils.
4809 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
4810 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
4811 instead of strlen + xmalloc + strcpy.
4812 * src/symtab.c (copys): Remove, use xstrdup instead.
4814 2000-10-02 Akim Demaille <akim@epita.fr>
4816 * src/gram.h (associativity): New enum type which replaces the
4817 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
4818 `right_assoc', `left_assoc' and `non_assoc'.
4819 Adjust all dependencies.
4820 * src/reader.c: Formatting changes.
4821 (LTYPESTR): Don't define it, use it as a literal in
4822 `reader_output_yylsp'.
4823 * src/symtab.h (symbol_class): New enum type which replaces the
4824 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
4825 `sunknown', `stoken and `snterm'.
4827 2000-10-02 Akim Demaille <akim@epita.fr>
4829 * src/getargs.c (fixed_outfiles): Rename as...
4830 (yaccflag): for consistency and accuracy.
4831 Adjust dependencies.
4833 2000-10-02 Akim Demaille <akim@epita.fr>
4835 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
4836 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
4837 difficult and introduced a lot of core dump. It turns out that
4838 Bison used an implementation of `xmalloc' based on `calloc', and
4839 at various places it does depend upon the initialization to 0. I
4840 have not tried to isolate the pertinent places, and all the former
4841 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
4842 someone should address this issue.
4844 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
4845 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
4847 Adjust dependencies.
4848 * src/warshall.h: New file.
4851 2000-10-02 Akim Demaille <akim@epita.fr>
4853 Various anti-`extern in *.c' changes.
4855 * src/system.h: Include `assert.h'.
4857 2000-10-02 Akim Demaille <akim@epita.fr>
4859 * src/state.h (nstates, final_state, first_state, first_shift)
4860 (first_reduction): Move their exportation from here...
4861 * src/LR0.h: to here.
4862 Adjust dependencies.
4863 * src/getargs.c (statisticsflag): New variable.
4864 Add support for `--statistics'.
4865 Adjust dependencies.
4867 Remove a lot of now useless `extern' statements in most files.
4869 2000-10-02 Akim Demaille <akim@epita.fr>
4871 * src/LR0.h: New file.
4874 2000-10-02 Akim Demaille <akim@epita.fr>
4876 * src/print.h: New file.
4878 * src/print.c: Formatting and ordering changes.
4879 (verbose, terse): Replace with...
4880 (print_results): this new function.
4881 Adjust dependencies.
4883 2000-10-02 Akim Demaille <akim@epita.fr>
4885 * src/conflicts.c (conflict_report): New function.
4886 (conflict_log, verbose_conflict_log): Replace with...
4887 (print_conflicts): this function.
4888 Adjust dependencies.
4889 * src/conflicts.h: New file.
4890 Propagate its inclusion.
4892 2000-10-02 Akim Demaille <akim@epita.fr>
4894 * src/nullable.h: New file.
4895 Propagate its inclusion.
4896 * src/nullable.c: Formatting changes.
4898 2000-10-02 Akim Demaille <akim@epita.fr>
4900 * src/reduce.h: New file.
4901 Propagate its inclusion.
4902 * src/reduce.c: Topological sort and other formatting changes.
4903 (bool, TRUE, FALSE): Move their definition to...
4904 * src/system.h: here.
4906 2000-10-02 Akim Demaille <akim@epita.fr>
4908 * src/files.c: Formatting changes.
4909 (tryopen, tryclose, openfiles): Rename as...
4910 (xfopen, xfclose, open_files): this.
4911 (stringappend): static.
4912 * src/files.h: Complete the list of exported symbols.
4915 2000-10-02 Akim Demaille <akim@epita.fr>
4917 * src/reader.h: New file.
4918 Propagate its use instead of tedious list of `extern' and
4920 * src/reader.c: Formatting changes, topological sort,
4923 2000-10-02 Akim Demaille <akim@epita.fr>
4925 * src/lex.h: Prototype `lex.c' exported functions.
4926 * src/reader.c: Adjust.
4927 * src/lex.c: Formatting changes.
4928 (safegetc): Rename as...
4931 2000-10-02 Akim Demaille <akim@epita.fr>
4933 * src/lalr.h: New file.
4934 Propagate its inclusion instead of prototypes and `extern'.
4935 * src/lalr.c: Formatting changes, topological sorting etc.
4937 2000-10-02 Akim Demaille <akim@epita.fr>
4939 * src/output.c (token_actions): Introduce a temporary array,
4940 YYDEFACT, that makes it possible for this function to use
4943 2000-10-02 Akim Demaille <akim@epita.fr>
4945 `user_toknums' is output as a `short[]' in `output.c', while it is
4946 defined as a `int[]' in `reader.c'. For consistency with the
4947 other output tables, `user_toknums' is now defined as a table of
4950 * src/reader.c (user_toknums): Be a short table instead of an int
4952 Adjust dependencies.
4954 Factor the short table outputs.
4956 * src/output.c (output_short_table): New function.
4957 * src/output.c (output_gram, output_stos, output_rule_data)
4958 (output_base, output_table, output_check): Use it.
4960 2000-10-02 Akim Demaille <akim@epita.fr>
4962 * src/output.c (output): Topological sort of the functions, in
4963 order to get rid of the `static' prototypes.
4964 No longer use `register'.
4965 * src/output.h: New file.
4966 Propagate its inclusion in files explicitly prototyping functions
4969 2000-09-21 Akim Demaille <akim@epita.fr>
4971 * src/atgeneral.m4: Update from Autoconf.
4973 2000-09-21 Akim Demaille <akim@epita.fr>
4975 * src/closure.h: New file.
4976 * src/closure.c: Formatting changes, topological sort over the
4977 functions, use of closure.h.
4978 (initialize_closure, finalize_closure): Rename as...
4979 (new_closure, free_closure): these. Adjust dependencies.
4980 * src/LR0.c: Formatting changes, topological sort, use of
4982 (initialize_states): Rename as...
4984 * src/Makefile.am (noinst_HEADERS): Adjust.
4986 2000-09-20 Akim Demaille <akim@epita.fr>
4988 * src/acconfig.h: Don't protect config.h against multiple
4990 Don't define PARAMS.
4991 * src/system.h: Define PARAMS.
4992 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
4993 purpose of config.h. system.h must not try to fix wrong
4994 definitions in config.h.
4996 2000-09-20 Akim Demaille <akim@epita.fr>
4998 * src/derives.h: New file.
4999 * src/main.c, src/derives.h: Use it.
5001 * src/Makefile.am (noinst_HEADERS): Adjust.
5003 2000-09-20 Akim Demaille <akim@epita.fr>
5005 * tests/atgeneral.m4: Update from Autoconf.
5006 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
5007 (AT_CHECK_CALC): New macros.
5008 Use these macros to test bison with options `', `--raw',
5009 `--debug', `--yacc', `--yacc --debug'.
5011 2000-09-19 Akim Demaille <akim@epita.fr>
5013 * src/output.c: Formatting changes.
5014 * src/machine.h: Remove, leaving its contents in...
5015 * src/system.h: here.
5017 Adjust all dependencies on stdio.h and machine.h.
5018 * src/getargs.h: New file.
5019 Let all `extern' declarations about getargs.c be replaced with
5020 inclusion of `getargs.h'.
5021 * src/Makefile.am (noinst_HEADERS): Adjust.
5023 * tests/calc.m4 (yyin): Be initialized in main, not on the global
5025 (yyerror): Returns void, not int.
5026 * doc/bison.texinfo: Formatting changes.
5028 2000-09-19 Akim Demaille <akim@epita.fr>
5030 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
5033 2000-09-18 Akim Demaille <akim@epita.fr>
5035 * configure.in: Append WARNING_CFLAGS to CFLAGS.
5036 * src/Makefile.am (INCLUDES): Don't.
5037 Be ready to fetch headers in lib/.
5039 2000-09-18 Akim Demaille <akim@epita.fr>
5041 * doc/bison.texinfo: Update the copyright.
5042 ANSIfy and GNUify the examples.
5043 Remove the old menu.
5045 2000-09-18 Akim Demaille <akim@epita.fr>
5047 First set of tests: use the `calc' example from the documentation.
5049 * src/bison.s1 (yyparse): Condition the code using `yytname' which
5050 is defined only when YYDEBUG is.
5051 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
5052 * src/files.c (tryopen, tryclose): Formatting changes.
5053 Move to the top and be static.
5054 * src/reader.c (read_signed_integer): Likewise.
5055 * tests/calc.m4: New file.
5056 * Makefile.am, suite.m4: Adjust.
5057 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
5059 2000-09-18 Akim Demaille <akim@epita.fr>
5061 Add support for an Autotest test suite for Bison.
5063 * m4/m4.m4, m4/atconfig.m4: New files.
5064 * m4/Makefile.am (EXTRA_DIST): Adjust.
5065 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
5067 * src/getargs.c: Display a more standard --version message.
5068 * src/reader.c (reader): Formatting changes.
5069 No longer depend upon VERSION_STRING.
5070 * configure.in: No longer use `dnl'.
5071 Set up the test suite and the new directory `tests/.
5072 (VERSION_STRING): Remove.
5074 2000-04-14 Akim Demaille <akim@epita.fr>
5076 * src/reader.c (copy_comment2): New function, same as former
5077 `copy_comment', but outputs into two FILE *.
5078 (copy_comment): Use it.
5079 (parse_union_decl): Use it.
5080 (get_type, parse_start_decl): Use the same `invalid' message.
5081 (parse_start_decl, parse_union_decl): Use the same `multiple'
5083 (parse_union_decl, copy_guard, copy_action): Use the same
5084 `unmatched' message.
5085 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
5087 2000-03-31 Akim Demaille <akim@epita.fr>
5089 * src/files.c (tryopen, tryclose): Move to the top.
5092 2000-03-31 Akim Demaille <akim@epita.fr>
5094 * src/main.c (main): Don't call `done', exit does it.
5096 2000-03-31 Akim Demaille <akim@epita.fr>
5098 * allocate.c: s/return (foo)/return foo/.
5101 * output.c: Likewise.
5102 * reader.c: Likewise.
5103 * symtab.c: Likewise.
5104 * vmsgetargs.c: Likewise.
5106 2000-03-31 Akim Demaille <akim@epita.fr>
5108 Clean up the error reporting functions.
5110 * src/report.c: New file.
5111 * src/report.h: Likewise.
5112 * src/Makefile.am: Adjust.
5113 * m4/error.m4: New file.
5114 * m4/Makefile.am: Adjust.
5115 * configure.in (jm_PREREQ_ERROR): Call it.
5116 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
5118 (fatal, fatals): Remove. All callers use complain.c::fatal.
5119 (warn, warni, warns, warnss, warnss): Remove. All callers use
5120 complain.c::complain.
5121 (toomany): Remove, use fatal instead.
5122 * src/files.c (done): No argument, use complain_message_count.
5123 * src/main.c (main): Register `done' to `atexit'.
5125 * src/getargs.c (usage): More `fputs', less `fprintf'.
5127 2000-03-28 Akim Demaille <akim@epita.fr>
5129 * lib/: New directory.
5130 * Makefile.am (SUBDIRS): Adjust.
5131 * configure.in: Adjust.
5132 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
5134 * src/alloca.c: Moved to lib/.
5135 * src/getopt.c: Likewise.
5136 * src/getopt1.c: Likewise.
5137 * src/getopt.h: Likewise.
5138 * src/ansi2knr.c: Likewise.
5139 * src/ansi2knr.1: Likewise.
5140 * src/Makefile.am: Adjust.
5141 * lib/Makefile.am: New file.
5143 2000-03-28 Akim Demaille <akim@epita.fr>
5145 * src/getargs.c (usage): Refresh the help message.
5147 2000-03-17 Akim Demaille <akim@epita.fr>
5149 * src/getopt1.c: Updated from textutils 2.0e
5150 * src/getopt.c: Likewise.
5151 * src/getopt.h: Likewise.
5153 2000-03-17 Akim Demaille <akim@epita.fr>
5155 * src/Makefile.am (bison.simple): Fix the awk program: quote only
5156 the file name, not the whole `#line LINE FILE'.
5158 2000-03-17 Akim Demaille <akim@epita.fr>
5160 On syntax errors, report the token on which we choked.
5162 * src/bison.s1 (yyparse): In the label yyerrlab, when
5163 YYERROR_VERBOSE, add yychar in msg.
5165 2000-03-17 Akim Demaille <akim@epita.fr>
5167 * src/reader.c (copy_at): New function.
5168 (copy_guard): Use it.
5169 (copy_action): Use it.
5171 2000-03-17 Akim Demaille <akim@epita.fr>
5173 Be kind to translators, save some useless translations.
5175 * src/main.c (banner): New function.
5176 (fatal_banner): Use it.
5177 (warn_banner): Use it.
5179 2000-03-17 Akim Demaille <akim@epita.fr>
5181 * src/reader.c (copy_definition): Use copy_string and
5182 copy_comment. Removed now unused `match', `ended',
5184 (copy_comment, copy_string): Moved, to be visible from
5187 2000-03-17 Akim Demaille <akim@epita.fr>
5189 * src/reader.c (copy_string): Declare `static inline'. No
5190 problems with inline, since it is checked by configure.
5191 (copy_comment): Likewise.
5193 2000-03-17 Akim Demaille <akim@epita.fr>
5195 * src/reader.c (packsymbols): Formatting changes.
5197 2000-03-17 Akim Demaille <akim@epita.fr>
5199 * src/reader.c (copy_comment): New function, factored out from:
5200 (copy_action): Use it. Removed now unused `match', `ended',
5202 (copy_guard): Likewise.
5204 2000-03-17 Akim Demaille <akim@epita.fr>
5206 * src/reader.c (copy_string): New function, factored out from:
5207 (copy_action): Use it.
5208 (copy_guard): Likewise.
5210 2000-03-17 Akim Demaille <akim@epita.fr>
5212 Change the handling of @s so that they behave exactly like $s.
5213 There is now a pseudo variable @$ (readble and writable), location
5214 of the lhs of the rule (by default ranging from the location of
5215 the first symbol of the rhs, to the location of the last symbol,
5216 or, if the rhs is empty, YYLLOC).
5218 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
5220 (yyparse): When providing a default semantic action, provide a
5221 default location action.
5222 (after the $): No longer change `*YYLSP', just stack YYLOC the
5223 same way you stack YYVAL.
5224 * src/reader.c (read_declarations): Use warns.
5225 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
5226 (copy_action, case '@'): Likewise.
5227 Use a standard error message, to save useless work from
5230 2000-03-17 Akim Demaille <akim@epita.fr>
5232 * src/bison.s1: Formatting and cosmetics changes.
5233 * src/reader.c: Likewise.
5234 Update the Copyright notice.
5236 2000-03-17 Akim Demaille <akim@epita.fr>
5238 * src/bison.s1 (#line): All set to `#line' only, since the
5239 Makefile now handles them.
5241 2000-03-16 Akim Demaille <akim@epita.fr>
5243 * src/output.c (output_rule_data): Output the documentation of
5245 (Copyright notice): Update.
5248 2000-03-16 Akim Demaille <akim@epita.fr>
5250 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
5251 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
5252 One `#if YYDEBUG' remains, since it uses variables which are
5253 defined only if `YYDEBUG != 0'.
5255 2000-03-16 Akim Demaille <akim@epita.fr>
5257 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
5258 and related variables so that the similarities are highlighted.
5260 2000-03-16 Akim Demaille <akim@epita.fr>
5262 * src/bison.s1: Properly indent CPP directives.
5264 2000-03-16 Akim Demaille <akim@epita.fr>
5266 * src/bison.s1: Properly indent the `alloca' CPP section.
5268 2000-03-16 Akim Demaille <akim@epita.fr>
5270 Do not hard code values of directories in `configure.in'.
5271 Update the `configure' tool chain.
5273 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
5275 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
5276 (AC_OUTPUT): Add m4/Makefile.
5277 Bump to bison 1.28a, 1.29 has never been released.
5278 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
5279 handled via src/Makefile.am.
5280 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
5281 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
5283 * Makefile.am (SUBDIRS): Add m4.
5284 (ACLOCAL_AM_FLAGS): New variable.
5285 (AUTOMAKE_OPTIONS): Add check-news.
5286 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
5287 the proper line number and file name.
5288 (DEFS): Propagate the location of bison library files and of the
5290 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
5292 * acinclude.m4: Remove, replaced by the directory m4.
5293 * m4/Makefile.am (EXTRA_DIST): New variable.
5294 * m4/gettext.m4: New file, from the fileutils.
5295 * m4/lcmessage.m4: Likewise
5296 * m4/progtest.m4: Likewise.
5297 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
5299 2000-03-10 Akim Demaille <akim@epita.fr>
5302 Formatting changes of various comments.
5303 Respect the GNU coding standards at various places.
5304 Don't use `_()' when no translation is needed.
5306 1999-12-13 Jesse Thilo <jthilo@gnu.org>
5309 OS/2 honors TMPDIR environment variable.
5311 1999-12-13 Jesse Thilo <jthilo@gnu.org>
5313 * doc/bison.texinfo: Tweaked spelling and grammar.
5315 Removed reference to price of printed copy.
5316 Mention BISON_SIMPLE and BISON_HAIRY.
5318 1999-12-13 Jesse Thilo <jthilo@gnu.org>
5320 * configure.in, NEWS:
5321 Bison 1.29 released.
5323 1999-10-27 Jesse Thilo <jthilo@gnu.org>
5325 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
5326 Added reference card.
5328 1999-07-26 Jesse Thilo <jthilo@gnu.org>
5330 * po/ru.po: Added Russian translation.
5332 1999-07-26 Jesse Thilo <jthilo@gnu.org>
5334 * configure.in: Added Russian translation.
5336 1999-07-06 Jesse Thilo <jthilo@gnu.org>
5338 * configure.in, NEWS, README:
5339 Released version 1.28.
5341 1999-06-14 Jesse Thilo <jthilo@gnu.org>
5344 Squashed redefinition warning on some systems.
5346 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
5347 Have configure build version string instead of relying on ANSI string
5350 1999-06-14 Jesse Thilo <jthilo@gnu.org>
5352 * po/POTFILES.in: Got rid of version.c.
5354 1999-06-14 Jesse Thilo <jthilo@gnu.org>
5356 * acconfig.h, configure.in:
5357 Have configure build version string instead of relying on ANSI string
5360 1999-06-08 Jesse Thilo <jthilo@gnu.org>
5363 Dropped mention of `+' for long-named options.
5365 1999-05-30 Jesse Thilo <jthilo@gnu.org>
5367 * src/files.c: Added <unistd.h> for unlink().
5369 * src/Makefile.am, src/system.h:
5372 1999-05-30 Jesse Thilo <jthilo@gnu.org>
5374 * README: Added a FAQ list.
5376 * configure.in, acconfig.h:
5379 1999-05-30 Jesse Thilo <jthilo@gnu.org>
5381 * doc/FAQ, doc/Makefile.am:
5384 1999-05-19 Jesse Thilo <jthilo@gnu.org>
5386 * src/alloc.h, src/symtab.h, src/version.c:
5387 Protected inclusion of "config.h" with HAVE_CONFIG_H.
5389 1999-04-18 Jesse Thilo <jthilo@gnu.org>
5391 * src/.cvsignore, src/Makefile.am:
5392 Reorganized: sources in `src', documentation in `doc'.
5394 * src/lex.c (literalchar):
5395 fixed the code for escaping double quotes (thanks
5398 1999-04-18 Jesse Thilo <jthilo@gnu.org>
5400 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
5401 Adjusted paths to reflect directory reorganization.
5403 1999-04-18 Jesse Thilo <jthilo@gnu.org>
5405 * doc/.cvsignore, doc/Makefile.am:
5406 Reorganized: sources in `src', documentation in `doc'.
5408 1999-04-18 Jesse Thilo <jthilo@gnu.org>
5411 Updated AC_INIT file to reflect directory reorganization.
5413 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
5414 Reorganized: sources in `src', documentation in `doc'.
5416 1999-04-13 Jesse Thilo <jthilo@gnu.org>
5419 Don't declare calloc() and realloc() if not necessary.
5421 1999-04-13 Jesse Thilo <jthilo@gnu.org>
5423 * configure.in, acconfig.h, acinclude.m4:
5424 Don't declare calloc() and realloc() if not necessary.
5426 1999-03-23 Jesse Thilo <jthilo@gnu.org>
5428 * po/.cvsignore: Added i18n support.
5430 1999-03-23 Jesse Thilo <jthilo@gnu.org>
5432 * acconfig.h, configure.in, Makefile.am:
5435 1999-03-22 Jesse Thilo <jthilo@gnu.org>
5437 * src/bison.s1: Fixed #line numbers.
5439 1999-03-15 Jesse Thilo <jthilo@gnu.org>
5441 * po/es.po, po/fr.po, po/nl.po, po/de.po:
5442 Added PO files from Translation Project.
5444 1999-03-03 Jesse Thilo <jthilo@gnu.org>
5447 Added support for non-ANSI compilers (ansi2knr).
5449 1999-02-16 Jesse Thilo <jthilo@gnu.org>
5451 * configure.in: Bumped version number to 1.27.
5454 Added `bison.simple' to list of files removed by `make distclean'.
5456 1999-02-12 Jesse Thilo <jthilo@gnu.org>
5458 * src/files.c, src/files.h:
5459 Defined locations of parser files in config.h instead of Makefile.
5461 1999-02-12 Jesse Thilo <jthilo@gnu.org>
5463 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
5464 Defined locations of parser files in config.h instead of Makefile.
5466 1999-02-09 Jesse Thilo <jthilo@gnu.org>
5469 Removed inappropriate use of $< macro.
5471 1999-02-05 Jesse Thilo <jthilo@gnu.org>
5473 * po/Makefile.in.in, po/POTFILES.in:
5474 Add `po' directory skeleton.
5476 1999-01-27 Jesse Thilo <jthilo@gnu.org>
5478 * README: Document help-bison list.
5480 * configure.in: Add check for mkstemp().
5482 1999-01-20 Jesse Thilo <jthilo@gnu.org>
5484 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
5485 Hush a few compiler warnings.
5488 Add tryclose(), which verifies that fclose was successful.
5489 Hush a couple of compiler warnings.
5491 1999-01-20 Jesse Thilo <jthilo@gnu.org>
5493 * Makefile.am, OChangeLog:
5494 ChangeLog is now automatically generated. Include the old version as
5497 1999-01-14 Jesse Thilo <jthilo@gnu.org>
5499 * src/gram.h, src/lalr.c, src/lex.c, src/lex.h, src/machine.h, src/main.c, src/nullable.c, src/output.c, src/print.c, src/reader.c, src/reduce.c, src/state.h, src/symtab.c, src/symtab.h, src/types.h, src/vmsgetargs.c, src/warshall.c, src/allocate.c, src/alloc.h, src/bison.s1, src/closure.c, src/conflicts.c, src/derives.c, src/files.c, src/files.h, src/getargs.c, src/gram.c, src/LR0.c:
5502 1999-01-14 Jesse Thilo <jthilo@gnu.org>
5504 * doc/bison.texinfo: Fix formatting glitch.
5506 * doc/bison.texinfo: Update FSF address.
5508 1999-01-14 Jesse Thilo <jthilo@gnu.org>
5510 * acconfig.h: Update FSF address.
5512 1999-01-08 Jesse Thilo <jthilo@gnu.org>
5515 Don't define PACKAGE here, since config.h defines it.
5517 1998-12-30 Jesse Thilo <jthilo@gnu.org>
5519 * src/reader.c: Update copyright date.
5522 Ditch sprintf to statically-sized buffers in fatal/warn functions in
5523 favor of output directly to stderr (avoids buffer overruns).
5525 * src/reader.c: Some checks for premature EOF.
5527 * src/allocate.c, src/alloc.h, src/closure.c, src/conflicts.c, src/derives.c, src/getargs.c, src/gram.c, src/lalr.c, src/lex.c, src/LR0.c, src/main.c, src/nullable.c, src/output.c, src/print.c, src/reduce.c, src/symtab.c, src/symtab.h, src/warshall.c:
5528 Use prototypes if the compiler understands them.
5530 * src/files.c: Honor TMPDIR on Unix hosts.
5531 Use prototypes if the compiler understands them.
5534 Fix a couple of buffer overrun bugs.
5535 Use prototypes if the compiler understands them.
5537 * src/system.h: Include unistd.h and ctype.h.
5538 Use #ifdef instead of #if for NLS symbols.
5540 1998-12-30 Jesse Thilo <jthilo@gnu.org>
5542 * doc/bison.texinfo:
5543 Delete comment "consider using @set for edition number, etc..." since
5544 we now are doing so.
5546 1998-12-30 Jesse Thilo <jthilo@gnu.org>
5549 Use prototypes if the compiler understands them.
5551 * NEWS: Document 1.26 highlights.
5553 * Makefile.am: Require Automake 1.3 or later.
5556 Use prototypes if the compiler understands them.
5558 1998-12-29 Jesse Thilo <jthilo@gnu.org>
5561 Use VERSION symbol from automake for version number.
5563 1998-12-29 Jesse Thilo <jthilo@gnu.org>
5565 * acconfig.h, configure.in, version.cin:
5566 Use VERSION symbol from automake for version number.
5568 1998-11-28 Jesse Thilo <jthilo@gnu.org>
5571 Distribute original version of simple parser (bison.s1), not built
5572 version (bison.simple).
5574 1998-11-28 Jesse Thilo <jthilo@gnu.org>
5576 * doc/bison.texinfo: Add info dir entry.
5578 * doc/bison.texinfo:
5579 Let automake put version number into documentation.
5581 1998-11-26 Jesse Thilo <jthilo@gnu.org>
5583 * src/bison.cld, src/build.com, src/vmshlp.mar:
5584 Add non-RCS files from /gd/gnu/bison.
5586 1998-11-26 Jesse Thilo <jthilo@gnu.org>
5589 Document the BISON_HAIRY and BISON_SIMPLE variables.
5591 1998-11-25 Jesse Thilo <jthilo@gnu.org>
5593 * src/version.c: Build version.c automatically.
5596 Fix token numbering (used to start at 258, not 257).
5598 * src/system.h: Include config.h.
5600 * src/getargs.c: Update bug report address.
5602 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
5603 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
5605 1998-11-25 Jesse Thilo <jthilo@gnu.org>
5608 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
5610 * configure.in, version.cin:
5611 Build version.c automatically.
5613 * AUTHORS: Add AUTHORS file.
5615 * README: Update bug report address.
5618 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
5620 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
5623 1998-11-25 Jesse Thilo <jthilo@gnu.org>
5625 * doc/bison.texinfo: Clean up some formatting.
5627 1998-05-05 Richard Stallman <rms@gnu.org>
5629 * doc/bison.texinfo:
5630 Explain better why to make a pure parser.
5632 1998-01-05 Richard Stallman <rms@gnu.org>
5634 * src/files.c (openfiles):
5635 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
5636 find a temporary directory, if possible. Do not unlink files while
5639 1997-08-25 Richard Stallman <rms@gnu.org>
5641 * src/reader.c (stack_offset;):
5642 Change some warni to warns.
5644 * src/lex.c (literalchar): Use warns, not warni.
5646 1997-06-28 Richard Stallman <rms@gnu.org>
5648 * src/bison.s1: Add a Bison version comment.
5650 * src/main.c (fatal, warn, berror):
5653 1997-06-28 Richard Stallman <rms@gnu.org>
5655 * Makefile.in (bison_version): New variable.
5656 (dist): Use that variable.
5657 (bison.s1): Substitute the Bison version into bison.simple.
5659 * bison.simple: Add a Bison version comment.
5661 1997-06-18 Richard Stallman <rms@gnu.org>
5663 * src/main.c (fatal, warn, berror):
5664 Make error messages standard.
5665 (toomany): Improve error message text.
5667 * src/LR0.c, src/closure.c, src/conflicts.c, src/derives.c, src/files.c, src/lalr.c, src/lex.c, src/nullable.c, src/output.c, src/print.c, src/reader.c, src/reduce.c, src/symtab.c:
5668 new.h renamed to alloc.h.
5670 1997-06-18 Richard Stallman <rms@gnu.org>
5672 * Makefile.in: new.h renamed to alloc.h.
5674 1997-05-24 Richard Stallman <rms@gnu.org>
5676 * src/lex.c (literalchar):
5677 Fix the code for escaping \, " and '.
5679 (lex): Avoid trouble when there are many chars
5680 to discard in a char literal with just several chars in it.
5682 1997-05-17 Richard Stallman <rms@gnu.org>
5685 Use malloc, if using alloca is troublesome.
5686 (YYSTACK_USE_ALLOCA): New flag macro.
5687 Define it for some systems and compilers.
5688 (YYSTACK_ALLOC): New macro.
5689 (yyparse): Use YYSTACK_ALLOC to allocate stack.
5690 If it was malloc'd, free it.
5692 1997-05-17 Richard Stallman <rms@gnu.org>
5695 Use malloc, if using alloca is troublesome.
5696 (YYSTACK_USE_ALLOCA): New flag macro.
5697 Define it for some systems and compilers.
5698 (YYSTACK_ALLOC): New macro.
5699 (yyparse): Use YYSTACK_ALLOC to allocate stack.
5700 If it was malloc'd, free it.
5702 1997-04-23 Richard Stallman <rms@gnu.org>
5705 (alloca) [__hpux]: Always define as __builtin_alloca.
5707 1997-04-23 Richard Stallman <rms@gnu.org>
5710 (alloca) [__hpux]: Always define as __builtin_alloca.
5712 1997-04-22 Richard Stallman <rms@gnu.org>
5715 [__hpux]: Include alloca.h (right for HPUX 10)
5716 instead of declaring alloca (right for HPUX 9).
5718 * src/bison.s1 (__yy_memcpy):
5719 Declare arg `count' as unsigned int.
5720 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
5722 1997-04-22 Richard Stallman <rms@gnu.org>
5725 [__hpux]: Include alloca.h (right for HPUX 10)
5726 instead of declaring alloca (right for HPUX 9).
5728 * bison.simple (__yy_memcpy):
5729 Declare arg `count' as unsigned int.
5730 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
5732 1997-01-03 Richard Stallman <rms@gnu.org>
5734 * src/allocate.c: [__STDC__ or _MSC_VER]:
5735 Declare calloc and realloc to return void *.
5737 1997-01-02 Richard Stallman <rms@gnu.org>
5740 [_MSC_VER]: Include stdlib.h and process.h.
5741 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
5743 * src/main.c (main): Return FAILURE as a value.
5744 (printable_version): Declare arg as int, not char.
5746 1997-01-02 Richard Stallman <rms@gnu.org>
5748 * Makefile.in (dist):
5749 Explicitly check for symlinks, and copy them.
5751 1996-12-19 Richard Stallman <rms@gnu.org>
5754 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
5756 1996-12-18 Paul Eggert <eggert@gnu.org>
5758 * src/bison.s1 (yyparse):
5759 If __GNUC__ and YYPARSE_PARAM are both defined,
5760 declare yyparse to have a void * argument.
5762 1996-12-18 Paul Eggert <eggert@gnu.org>
5764 * bison.simple (yyparse):
5765 If __GNUC__ and YYPARSE_PARAM are both defined,
5766 declare yyparse to have a void * argument.
5768 1996-12-17 Richard Stallman <rms@gnu.org>
5770 * src/reduce.c (nbits): Add some casts.
5772 1996-08-12 Richard Stallman <rms@gnu.org>
5774 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
5776 1996-08-12 Richard Stallman <rms@gnu.org>
5778 * bison.simple: Test _MSDOS as well as _MSDOS_.
5780 1996-07-31 Richard Stallman <rms@gnu.org>
5783 [__sun && __i386]: Include alloca.h.
5785 1996-07-31 Richard Stallman <rms@gnu.org>
5788 [__sun && __i386]: Include alloca.h.
5790 1996-07-30 Richard Stallman <rms@gnu.org>
5792 * src/bison.s1: Comment change.
5794 * src/bison.s1: Test _MSDOS_, not MSDOS.
5796 1996-07-30 Richard Stallman <rms@gnu.org>
5798 * bison.simple: Comment change.
5800 * bison.simple: Test _MSDOS_, not MSDOS.
5802 1996-06-01 Richard Stallman <rms@gnu.org>
5804 * src/reduce.c, src/reader.c, src/print.c, src/output.c, src/nullable.c, src/lex.c, src/lalr.c, src/getargs.c, src/derives.c, src/conflicts.c, src/closure.c, src/allocate.c:
5805 Insert `_' macro around many string constants.
5808 Insert `_' macro around many string constants.
5810 (main): Call setlocale, bindtextdomain and textdomain.
5812 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
5813 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
5814 [ENABLE_NLS]: Include libintl.h.
5815 [ENABLE_NLS] (gettext): Define.
5816 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
5817 (N_, PACKAGE, LOCALEDIR): New macros.
5819 1996-06-01 Richard Stallman <rms@gnu.org>
5821 * POTFILES.in: New file.
5823 * Makefile.in (allocate.o):
5824 Define target explicitly.
5826 * Makefile.in (CFLAGS): Set to @CFLAGS@.
5827 (LDFLAGS): Set to @LDFLAGS@.
5828 (configure): Run autoconf only if preceding `cd' succeeds.
5829 (bison.s1): Redirect output to temporary file then move the
5830 temporary to the target, rather than redirecting directly to bison.s1.
5831 (clean): Remove config.status and config.log.
5832 (distclean): Don't remove config.status here.
5834 1996-05-12 Richard Stallman <rms@gnu.org>
5837 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
5839 1996-05-12 Richard Stallman <rms@gnu.org>
5842 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
5844 1996-05-11 Richard Stallman <rms@gnu.org>
5846 * src/bison.s1 (__yy_memcpy):
5847 Really reorder the args, as was supposedly done on Feb 14 1995.
5848 (yyparse): Calls changed accordingly.
5850 1996-05-11 Richard Stallman <rms@gnu.org>
5852 * Makefile.in (dist): Don't use $(srcdir).
5854 * bison.simple (__yy_memcpy):
5855 Really reorder the args, as was supposedly done on Feb 14 1995.
5856 (yyparse): Calls changed accordingly.
5858 1996-01-27 Richard Stallman <rms@gnu.org>
5860 * src/output.c (output_rule_data):
5861 Test YYERROR_VERBOSE in the conditional
5862 around the definition of ttyname.
5864 1995-12-29 Richard Stallman <rms@gnu.org>
5867 Fix line numbers in #line commands.
5869 1995-12-29 Richard Stallman <rms@gnu.org>
5872 Fix line numbers in #line commands.
5874 1995-12-27 Richard Stallman <rms@gnu.org>
5876 * src/bison.s1 (YYPARSE_PARAM_DECL):
5877 In C++, make it always null.
5878 (YYPARSE_PARAM_ARG): New macro.
5879 (yyparse): Use YYPARSE_PARAM_ARG.
5881 1995-12-27 Richard Stallman <rms@gnu.org>
5883 * bison.simple (YYPARSE_PARAM_DECL):
5884 In C++, make it always null.
5885 (YYPARSE_PARAM_ARG): New macro.
5886 (yyparse): Use YYPARSE_PARAM_ARG.
5888 1995-11-29 Richard Stallman <rms@gnu.org>
5890 * doc/bison.texinfo:
5891 Describe literal string tokens, %raw, %no_lines, %token_table.
5893 1995-11-29 Daniel Hagerty <hag@gnu.org>
5895 * doc/bison.texinfo: Fixed update date
5897 1995-10-16 Richard Stallman <rms@gnu.org>
5899 * src/version.c: Version 1.25.
5901 1995-10-16 Richard Stallman <rms@gnu.org>
5903 * NEWS: *** empty log message ***
5905 1995-10-16 Richard Stallman <rms@gnu.org>
5907 * doc/bison.1, doc/bison.rnh:
5910 1995-10-15 Richard Stallman <rms@gnu.org>
5912 * src/vmsgetargs.c, src/getargs.c:
5913 Added -n, -k, and -raw switches.
5914 (noparserflag, toknumflag, rawtoknumflag): New variables.
5916 * src/symtab.h (SALIAS):
5917 New #define for adding aliases to %token.
5918 (struct bucket): Added `alias' field.
5920 * src/reduce.c (reduce_grammar):
5921 Revise error message.
5922 (print_notices): Remove final `.' from error message.
5924 * src/reader.c (reader_output_yylsp):
5926 (readgram): Use `#if 0' around code that accepted %command
5927 inside grammar rules: The documentation doesn't allow it,
5928 and it will fail since the %command processors scan for the next %.
5929 (parse_token_decl): Extended the %token
5930 declaration to allow a multi-character symbol as an alias.
5931 (parse_thong_decl): New function.
5932 (read_declarations): Added %thong declarations.
5933 (read_declarations): Handle NOOP to deal with allowing
5934 % declarations as another means to specify the flags.
5935 (readgram): Allow %prec prior to semantics embedded in a rule.
5936 (skip_to_char, read_declarations, copy_definition)
5937 (parse_token_decl, parse_start_decl, parse_type_decl)
5938 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
5939 (get_type_name, copy_guard, copy_action, readgram)
5940 (get_type, packsymbols): Revised most error messages.
5941 Changed `fatal' to `warnxxx' to avoid aborting for error.
5942 Revised and use multiple warnxxx functions to avoid using VARARGS1.
5943 (read_declarations): Improve the error message for
5944 an invalid character. Do not abort.
5945 (read_declarations, copy_guard, copy_action): Use
5946 printable_version to avoid unprintable characters in printed output.
5947 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
5948 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
5949 Allow the type of a non-terminal can be given
5950 more than once, as long as all specifications give the same type.
5953 (output_headers, output_trailers, output, output_gram)
5954 (output_rule_data): Implement noparserflag variable.
5955 Implement toknumflag variable.
5956 (output): Call reader_output_yylsp to output LTYPESTR.
5958 * src/main.c (main):
5959 If reader sees an error, don't process the grammar.
5960 (fatals): Updated to not use VARARGS1.
5961 (printable_version, int_to_string, warn, warni, warns, warnss)
5962 (warnsss): New error reporting functions. Avoid abort for error.
5965 Added THONG and NOOP for alias processing.
5966 Added SETOPT for the new code that allows setting options with %flags.
5969 Include getopt.h. Add some extern decls.
5970 (safegetc): New function to deal with EOF gracefully.
5971 (literalchar); new function to deal with reading \ escapes.
5972 (lex): Use literalchar.
5973 (lex): Implemented "..." tokens.
5974 (literalchar, lex, parse_percent_token): Made tokenbuffer
5975 always contain the token. This includes growing the token
5976 buffer while reading an integer.
5977 (parse_percent_token): Replaced if-else statement with percent_table.
5978 (parse_percent_token): Added % declarations as another
5979 way to specify the flags -n, -l, and -r. Also added hooks for
5980 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
5981 major changes to files.c.
5982 (lex) Retain in the incoming stream a character following
5984 (skip_white_space, lex): Revised most error messages
5985 and changed fatal to warn to avoid aborting.
5986 (percent_table): Added %thong declarations.
5988 * src/gram.h: Comment changes.
5990 * src/files.c (openfiles, open_extra_files, done):
5992 and actfile file. Handle noparserflag. Both for -n switch.
5994 * src/conflicts.c (resolve_sr_conflict):
5995 Remove use of alloca.
5997 1995-06-01 Jim Meyering <meyering@gnu.org>
5999 * doc/bison.texinfo: *** empty log message ***
6001 1995-05-06 Richard Stallman <rms@gnu.org>
6003 * src/bison.s1: Comment change.
6005 1995-05-06 Richard Stallman <rms@gnu.org>
6007 * bison.simple: Comment change.
6009 1995-05-03 Richard Stallman <rms@gnu.org>
6011 * src/version.c: Version now 1.24.
6013 * src/bison.s1: Change distribution terms.
6015 * src/version.c: Version now 1.23.
6017 1995-05-03 Richard Stallman <rms@gnu.org>
6019 * doc/bison.texinfo:
6020 Rewrite "Conditions for Using Bison".
6021 Update version to 1.24.
6023 1995-05-03 Richard Stallman <rms@gnu.org>
6025 * bison.simple: Change distribution terms.
6027 1995-02-23 Richard Stallman <rms@gnu.org>
6029 * src/files.c: Test __VMS_POSIX as well as VMS.
6031 1995-02-14 Jim Meyering <meyering@gnu.org>
6033 * src/bison.s1 (__yy_memcpy):
6034 Renamed from __yy_bcopy to avoid
6035 confusion. Reverse FROM and TO arguments to be consistent with
6038 1995-02-14 Jim Meyering <meyering@gnu.org>
6040 * bison.simple (__yy_memcpy):
6041 Renamed from __yy_bcopy to avoid
6042 confusion. Reverse FROM and TO arguments to be consistent with
6045 1994-11-10 David J. MacKenzie <djm@gnu.org>
6051 * Makefile.in (DISTFILES): Include NEWS.
6053 * Makefile.in (DISTFILES):
6054 Include install-sh, not install.sh.
6056 * configure.in: Update to Autoconf v2 macro names.
6058 1994-10-05 David J. MacKenzie <djm@gnu.org>
6060 * Makefile.in: fix typo
6062 * Makefile.in (prefix, exec_prefix):
6063 Let configure set them.
6065 1994-09-28 David J. MacKenzie <djm@gnu.org>
6067 * Makefile.in: Set datadir to $(prefix)/share.
6069 1994-09-15 Richard Stallman <rms@gnu.org>
6072 Update copyright notice and GPL version.
6074 1994-09-15 Richard Stallman <rms@gnu.org>
6077 Update copyright notice and GPL version.
6079 1994-07-12 Richard Stallman <rms@gnu.org>
6081 * src/reduce.c, src/reader.c:
6084 1994-05-05 David J. MacKenzie <djm@gnu.org>
6086 * Makefile.in: entered into RCS
6088 1994-03-26 Richard Stallman <rms@gnu.org>
6090 * src/bison.s1: entered into RCS
6092 1994-03-26 Richard Stallman <rms@gnu.org>
6094 * bison.simple: entered into RCS
6096 1994-03-25 Richard Stallman <rms@gnu.org>
6098 * src/main.c: entered into RCS
6100 1994-03-24 Richard Stallman <rms@gnu.org>
6102 * src/conflicts.c: entered into RCS
6104 1994-01-02 Richard Stallman <rms@gnu.org>
6106 * Makefile.in: *** empty log message ***
6108 1993-11-21 Richard Stallman <rms@gnu.org>
6110 * src/bison.s1: *** empty log message ***
6112 1993-11-21 Richard Stallman <rms@gnu.org>
6114 * doc/bison.texinfo: entered into RCS
6116 * doc/bison.texinfo: *** empty log message ***
6118 1993-11-21 Richard Stallman <rms@gnu.org>
6120 * bison.simple: *** empty log message ***
6122 1993-10-25 David J. MacKenzie <djm@gnu.org>
6124 * doc/bison.texinfo: *** empty log message ***
6126 1993-10-19 Richard Stallman <rms@gnu.org>
6128 * src/bison.s1: *** empty log message ***
6130 1993-10-19 Richard Stallman <rms@gnu.org>
6132 * bison.simple: *** empty log message ***
6134 1993-10-14 Richard Stallman <rms@gnu.org>
6136 * src/bison.s1: *** empty log message ***
6138 1993-10-14 Richard Stallman <rms@gnu.org>
6140 * bison.simple: *** empty log message ***
6142 1993-09-14 David J. MacKenzie <djm@gnu.org>
6144 * doc/bison.texinfo: *** empty log message ***
6146 1993-09-13 Noah Friedman <friedman@gnu.org>
6148 * Makefile.in: *** empty log message ***
6150 1993-09-10 Richard Stallman <rms@gnu.org>
6152 * src/conflicts.c: *** empty log message ***
6154 * src/system.h: entered into RCS
6156 1993-09-10 Richard Stallman <rms@gnu.org>
6158 * doc/bison.1: entered into RCS
6160 1993-09-06 Noah Friedman <friedman@gnu.org>
6162 * src/version.c: entered into RCS
6164 1993-09-06 Noah Friedman <friedman@gnu.org>
6166 * Makefile.in: *** empty log message ***
6168 1993-07-30 David J. MacKenzie <djm@gnu.org>
6170 * Makefile.in: *** empty log message ***
6172 1993-07-24 Richard Stallman <rms@gnu.org>
6174 * src/bison.s1: *** empty log message ***
6176 1993-07-24 Richard Stallman <rms@gnu.org>
6178 * bison.simple: *** empty log message ***
6180 1993-07-08 David J. MacKenzie <djm@gnu.org>
6182 * Makefile.in: *** empty log message ***
6184 1993-07-04 Richard Stallman <rms@gnu.org>
6186 * src/bison.s1: *** empty log message ***
6188 1993-07-04 Richard Stallman <rms@gnu.org>
6190 * bison.simple: *** empty log message ***
6192 1993-06-26 David J. MacKenzie <djm@gnu.org>
6194 * src/getargs.c: entered into RCS
6196 1993-06-26 David J. MacKenzie <djm@gnu.org>
6198 * doc/bison.texinfo: *** empty log message ***
6200 * doc/bison.1: New file.
6202 1993-06-25 Richard Stallman <rms@gnu.org>
6204 * src/getargs.c: New file.
6206 1993-06-16 Richard Stallman <rms@gnu.org>
6208 * src/bison.s1: *** empty log message ***
6210 1993-06-16 Richard Stallman <rms@gnu.org>
6212 * bison.simple: *** empty log message ***
6214 1993-06-03 Richard Stallman <rms@gnu.org>
6216 * src/bison.s1: New file.
6218 1993-06-03 Richard Stallman <rms@gnu.org>
6220 * doc/bison.texinfo: *** empty log message ***
6222 1993-06-03 Richard Stallman <rms@gnu.org>
6224 * bison.simple: New file.
6226 1993-05-19 Richard Stallman <rms@gnu.org>
6228 * doc/bison.texinfo: New file.
6230 1993-05-07 Noah Friedman <friedman@gnu.org>
6232 * Makefile.in: *** empty log message ***
6234 1993-04-28 Noah Friedman <friedman@gnu.org>
6236 * src/reader.c: *** empty log message ***
6238 1993-04-23 Noah Friedman <friedman@gnu.org>
6240 * src/alloc.h: entered into RCS
6242 1993-04-20 David J. MacKenzie <djm@gnu.org>
6244 * src/version.c: *** empty log message ***
6246 * src/files.c, src/allocate.c:
6249 * src/reader.c: *** empty log message ***
6251 * src/lex.c: entered into RCS
6253 * src/conflicts.c: New file.
6255 * src/symtab.c: entered into RCS
6257 * src/alloc.h: New file.
6259 * src/LR0.c: entered into RCS
6261 1993-04-18 Noah Friedman <friedman@gnu.org>
6263 * src/reader.c: New file.
6265 * src/version.c: *** empty log message ***
6267 1993-04-18 Noah Friedman <friedman@gnu.org>
6269 * Makefile.in: *** empty log message ***
6271 1993-04-17 Noah Friedman <friedman@gnu.org>
6273 * Makefile.in: *** empty log message ***
6275 1993-04-15 Richard Stallman <rms@gnu.org>
6277 * src/main.c, src/files.c:
6280 1993-04-15 Noah Friedman <friedman@gnu.org>
6282 * configure.in: entered into RCS
6284 * configure.in: *** empty log message ***
6286 * configure.in: New file.
6288 1993-04-14 Richard Stallman <rms@gnu.org>
6290 * Makefile.in: New file.
6292 1993-04-13 Richard Stallman <rms@gnu.org>
6294 * src/version.c: New file.
6296 1993-03-25 Richard Stallman <rms@gnu.org>
6298 * src/output.c: entered into RCS
6300 1992-09-25 Richard Stallman <rms@gnu.org>
6302 * configure.bat: entered into RCS
6304 1992-06-22 Richard Stallman <rms@gnu.org>
6306 * src/vmsgetargs.c: entered into RCS
6308 1992-06-22 Richard Stallman <rms@gnu.org>
6310 * doc/bison.rnh: entered into RCS
6312 1992-04-20 David J. MacKenzie <djm@gnu.org>
6314 * README: entered into RCS
6316 1992-01-22 Richard Stallman <rms@gnu.org>
6318 * src/machine.h: entered into RCS
6320 1991-12-21 Richard Stallman <rms@gnu.org>
6322 * src/lalr.c, src/closure.c:
6325 1991-12-20 Richard Stallman <rms@gnu.org>
6327 * src/state.h: entered into RCS
6329 1991-12-18 Richard Stallman <rms@gnu.org>
6331 * src/print.c, src/nullable.c, src/derives.c:
6334 1991-11-03 David J. MacKenzie <djm@gnu.org>
6336 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
6339 1988-09-09 Richard Stallman <rms@gnu.org>
6341 * src/bison.hairy: entered into RCS
6343 1987-12-16 Richard Stallman <rms@gnu.org>
6345 * REFERENCES: entered into RCS