]> git.saurik.com Git - bison.git/blame - ChangeLog
Regenerate.
[bison.git] / ChangeLog
CommitLineData
12ffdd28
PE
12004-05-03 Paul Eggert <eggert@cs.ucla.edu>
2
3 * NEWS: Unescaped newlines are no longer allowed in char & strings.
4
5 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
6 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
7 character and string literals.
8 (unexpected_end): New function.
9 (unexpected_eof): Use it.
10 (unexpected_newline): New function.
11 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
12 actions.
13
14 * NEWS: Document %expect-rr.
15
16 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
17 Fix typo by replacing $1 with $option.
18 Remove more 'intl'-related files.
19
20 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
21 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
22 strtoul.c.
23 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
24 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
25 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
26 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
27 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
28 * src/.cvsignore: Add *.output.
29
30 * src/parse-gram.y: Put copyright notice inside %{ %} so it
31 gets copied to the output file.
32
1f65350a
PE
332004-04-28 Paul Eggert <eggert@twinsun.com>
34
35 Get files from the gnulib and po repositories, instead of relying
36 on them being in our CVS. Upgrade to latest versions of gnulib
37 and Automake.
38
39 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
40 * bootstrap: Bootstrap from gnulib and po repositories.
41 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
42 * README-cvs: Document these changes. Remove version numbers from
43 mentions of build tools, since they change so often. Mention Flex.
44
45 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
46 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
47 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
48 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 49 does this for us.
12ffdd28
PE
50 (AC_ISC_POSIX): Remove; we no longer support this
51 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
52 (AC_HEADER_STDC): Remove: we now assume C89 or better.
53 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
54 Do not check for C89 headers, except for locale.h which is used
55 by the Yacc library and must port to K&R hosts.
56 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
57 Do not check for C89 functions, except for setlocale which is
58 used by the Yacc library.
59 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
60 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
61 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
62 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
63 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
64 AM_GNU_GETTEXT): Remove; now done by:
65 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
66 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
67 for us.
68
69 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
70 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
71 Define to empty, as gnulib.mk will do the rest for us.
72 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
73 for us.
74 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
75 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
76
77 * src/files.c: Include gnulib's xstrndup.h.
78
79 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
80 (REALLOC): Use xnrealloc, for likewise.
81 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
82 (strnlen, memrchr): Remove decls; functions no longer used.
83 Include <stpcpy.h>.
84
85 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
86 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
87 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
88 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
89 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
90 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
91 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
92 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
93 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
94 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
95 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
96 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
97 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
98 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
99 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
100 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
101 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
102 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
103 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
104 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
105 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
106 Remove, as these files are now generated automatically
107 by bootstrap or automake.
108
109 * po/ChangeLog: Remove: all but one entry was a duplicate
110 of this file, and I moved that 2000-11-02 entry here.
111
112 * config/.cvsignore: Add Makefile, depcomp, install-sh.
113 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
114 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
115 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
116 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
117 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
118 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
119 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
120 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
121 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
122 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
123 xstrndup.h.
124 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
125 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
126 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
127 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
128 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
129 * src/.cvsignore: Remove *_.c.
130
131
132 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
133 support it. (The latest stable gzip doesn't.)
134
1352004-04-27 Paul Eggert <eggert@twinsun.com>
136
137 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
138 case, as stos_ is now used by destructors due to the 2004-02-09
139 change.
140
141 Remove more K&R C support.
142 * lib/libiberty.y (PARAMS): Remove. All uses removed.
143 * lib/subpipe.c (errno): Remove decl.
144 Include <stdlib.h> unconditionally.
145 (EXIT_FAILURE): Remove macro.
146 * src/complain.c (vfprintf, strerror): Remove.
147 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
148 unconditionally.
149 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
150 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
151 (strchr, strspn, memchr): Remove decls.
152 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
153 unconditionally. Do not declare perror.
154 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
155 unconditionally.
156
157 * src/complain.c (_): Remove useless defn, as system.h defines this.
158
159 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
160 with latest obstack.h.
161 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
162 to procedure types, as obstack.h now does that for us.
163 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
164
165 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
166 so that this include file can stand alone.
167 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
168 does this now. Include subpipe.h first after config.h, to
169 test whether it can stand alone.
170
171 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
172 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
173 unused declaration.
174
175 * tests/synclines.at (%union synch line): Put a dummy member in
176 the union, because empty unions aren't allowed in C. Caught
177 by GCC 3.4.0.
178
4f16766c
PE
1792004-04-13 Jim Meyering <jim@meyering.net>
180
181 * src/conflicts.c (conflicts_print): Correct format string typo:
182 use `%%' to produce literal `%'. (trivial change)
183
779e7ceb
PE
1842004-03-30 Paul Eggert <eggert@twinsun.com>
185
186 * src/getargs.c (version): Update copyright year to 2004.
187
188 * data/c.m4 (b4_int_type): Use 'short int' rather than
189 'short', and similarly for 'long', 'unsigned', etc.
190 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
191 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
192 yy_yypstack, yydumpstack): Likewise.
193 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
194 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
195 Likewise.
196 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
197 yy_stack_print, yyparse): Likewise.
198 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
199 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
200 * lib/bitset.c (bitset_print): Likewise.
201 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
202 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
203 * lib/bitsetv.c (bitsetv_dump): Likewise.
204 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
205 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
206 Likewise.
207 * src/LR0.c (allocate_itemsets): Likewise.
208 * src/gram.h (rule_number, rule): Likewise.
209 * src/lalr.h (goto_number): Likewise.
210 * src/nullable.c (nullable_compute): Likewise.
211 * src/output.c (prepare_rules): Likewise.
212 * src/relation.c (relation_print, relation_digraph): Likewise.
213 * src/relation.h (relation_node): Likewise.
214 * src/state.h (state_number, transitions, errs, reductions,
215 struct state): Likewise.
216 * src/symtab.h (symbol_number, struct symbol): Likewise.
217 * src/tables.c (vector_number, tally, action_number,
218 default_goto, goto_actions): Likewise.
219 * tests/existing.at (GNU Cim Grammar): Likewise.
220 * tests/regression.at (Web2c Actions): Likewise.
221
222 * src/output.c (muscle_insert_short_int_table): Renamed from
223 muscle_insert_short_table. All uses changed.
224
d6328241
PH
2252004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
226
227 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
228 (declaration): Replace expected_conflicts with expected_sr_conflicts.
229 Add %expect-rr rule.
4f16766c 230
d6328241
PH
231 * src/scan-gram.l: Recognize %expect-rr.
232
4f16766c 233 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 234 expected_conflicts.
4f16766c 235 (expected_rr_conflicts): Declare.
d6328241
PH
236
237 * src/conflicts.c (expected_sr_conflicts): Rename from
238 expected_conflicts.
239 (expected_rr_conflicts): Define.
240 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
241 for GLR parsers.
242 Use expected_sr_conflicts in place of expected_conflicts.
243 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 244
d6328241 245 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 246
1452af69
PE
2472004-03-08 Paul Eggert <eggert@gnu.org>
248
249 Add support for hex token numbers. Suggested by Odd Arild Olsen in
250 <http://mail.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
251
252 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
253 in lalr1.cc.
254 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
255 * src/scan-gram.l (scan_integer): New function.
256 ({int}): Use it.
257 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
258 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
259 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
260 Say "long int", not "long", for uniformity with GNU style.
261
006d217d
PE
2622004-02-25 Paul Eggert <eggert@twinsun.com>
263
264 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
265 compilers. This fixes a problem with Intel's C++ compiler being
266 chatty, reported by Guido Trentalancia in
267 <http://mail.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
268
c2729758
ADL
2692004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
270
271 Support %destructor and merge error locations in lalr1.cc.
272
273 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
274 (Parser::stos_): Define unconditionally.
275 (Parser::destruct_): New method. Generate its body with
276 b4_yydestruct_generate.
277 (Parser::error_start_): New attribute.
278 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
279 token which are discarded.
280 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
281 error_start_ when erroneous token are discarded.
282 (Parser::parse) <yyerrlab1>: Compute the location of the error
283 token so that it covers all the discarded tokens.
284 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
285 it can be called with `%skeleton "lalr1.cc"', and do that.
286
dd0e0635
PE
2872004-02-02 Paul Eggert <eggert@twinsun.com>
288
289 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
290 $(top_srcdir)/lib and ../lib. This fixes a bug reported
291 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
292 There's no need to mention top_builddir since Automake does that
293 for us.
294 (INCLUDES): Remove, as Automake says it's obsolescent.
295 Contents migrated into AM_CPPFLAGS as described above.
296 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
297
2982004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
299
300 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
301 (yyreportSyntaxError): Handle case where lookahead token is
302 YYEMPTY.
303
be16239b
PH
3042004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
305
306 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
307 resulting parsers are compilable with C++.
308
5fa90832
PE
3092003-12-23 Paul Eggert <eggert@twinsun.com>
310
311 * config/depcomp, config/install-sh: Sync with Automake 1.8.
312 * src/output.c (output_skeleton): Rename local var.
313 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
314 Bison tokens, as this runs afoul of the 2003-10-07 change that
315 disallowed NUL bytes in character constants or string literals.
316
317 * tests/local.at: Require Autoconf 2.59's Autotest.
318 * tests/testsuite.at: Don't include local.at, since we now assume
319 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
320 including it.
321 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
322 multiple inclusion warnings.
dd0e0635 323
b165c324
AD
3242003-12-02 Akim Demaille <akim@epita.fr>
325
326 * doc/bison.texinfo (How Can I Reset the Parser): More about start
327 conditions.
328 From Bruno Haible.
329
26e06a21
ADL
3302003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
331
332 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
333
92ac3705
PE
3342003-10-07 Paul Eggert <eggert@twinsun.com>
335
6a5ecb38
PE
336 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
337 if testsuite doesn't exist.
338
92ac3705
PE
339 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
340 literals, unfortunately.
341 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
342 Complain about NUL bytes in character constants or string literals.
343
91d2c560
PE
3442003-10-05 Paul Eggert <eggert@twinsun.com>
345
346 * NEWS: Don't document %no-default-prec, as it's still
347 too experimental.
348 * doc/bison.texinfo: Document %no-default-prec only if
349 the defaultprec flag is set. Normally it's not.
350
0cc3da3a
PE
3512003-10-04 Paul Eggert <eggert@twinsun.com>
352
353 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
354 non-modifiable lvalue, instead of a modifiable one.
355 * doc/bison.texinfo (Actions): Document that $$ can
356 be assigned to. Do not claim that $$ and $N are
357 array element references: user code should not rely on this.
358
22fccf95
PE
3592003-10-01 Paul Eggert <eggert@twinsun.com>
360
361 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
362 (grammar_declaration): Use it.
363 * src/scan-gram.l: New token %no-default-prec.
364 * tests/conflicts.at: Revamp tests to use %no-default-prec.
365 * NEWS, doc/bison.texinfo: Document the above.
366
fc8f2965
AD
3672003-10-01 Akim Demaille <akim@epita.fr>
368
369 VCG no longer supports long_straight_phase.
370
371 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
372 * src/print_graph.c (print_graph): Adjust.
373
39a06c25
PE
3742003-09-30 Frank Heckenbach <frank@g-n-u.de>
375 and Paul Eggert <eggert@twinsun.com>
376
377 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
378 Table of Symbols): Document %default-prec.
379 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
380 (grammar_declaration): Set default_prec on %default-prec.
381 * src/scan-gram.l (%default-prec): New token.
382 * src/reader.h (default_prec): New flag.
383 * src/reader.c: Likewise.
384 (packgram): Handle it.
385 * tests/conflicts.at (%default-prec without %prec,
386 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 387
39a06c25
PE
3882003-09-30 Paul Eggert <eggert@twinsun.com>
389
390 * tests/testsuite.at: Include local.at, not input.at, fixing
391 a typo in the 2003-08-25 patch.
392
62b6aef9
AD
3932003-08-27 Akim Demaille <akim@epita.fr>
394
395 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
396 GCC warnings.
397
89e1cc61
AD
3982003-08-26 Akim Demaille <akim@epita.fr>
399
400 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
401 "<\#" to avoid magic from Gnus when posting parts of this script.
402
a08460b0
AD
4032003-08-26 Akim Demaille <akim@epita.fr>
404
405 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
406 (Parser::parse): here.
407 Adjust: nerrs and errstatus is now replaced by...
408 (Parser::nerrs_, Parser::errstatus_): New.
409
603f1cfd
AD
4102003-08-25 Akim Demaille <akim@epita.fr>
411
412 * config/announce-gen, Makefile.cfg: New.
413 * Makefile.am: Adjust.
414 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
415 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
416
cd3684cf
AD
4172003-08-25 Akim Demaille <akim@epita.fr>
418
419 When reducing initial empty rules, Bison parser read an initial
420 location that is not defined. This results in garbage, and that
421 affects Bison's own parser. Therefore we need (i) to extend Bison
422 to support a means to initialize this location, and (ii) to use
423 this CVS Bison to fix CVS Bison's parser.
424
425 * src/reader.h, reader.c (epilogue_augment): Remove, replace
426 with...
427 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
428 * src/parse-gram.y: Adjust.
429 (%initial-action): New.
430 (%error-verbose): Since we require CVS Bison, there is no reason
431 not to use it.
432 * src/scan-gram.l: Adjust.
433 * src/Makefile.am (YACC): New, to make sure we use our own parser.
434 * data/yacc.c (yyparse): Use b4_initial_action.
435
4e03e201
AD
4362003-08-25 Akim Demaille <akim@epita.fr>
437
438 * doc/bison.texinfo: Don't promote stdout for error messages.
439
8c182d05
AD
4402003-08-25 Akim Demaille <akim@epita.fr>
441
442 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
443 From Alexandre Duret-Lutz.
444
6a60c4cf
PE
4452003-08-25 Akim Demaille <akim@epita.fr>
446
447 Version 1.875c.
448
25f66e1a
AD
4492003-08-25 Akim Demaille <akim@epita.fr>
450
451 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
452 Use them.
453
5348bfbe
AD
4542003-08-25 Akim Demaille <akim@epita.fr>
455
456 * data/lalr1.cc (Parser::reduce_print_): New.
457 Use it.
458
47301314
AD
4592003-08-25 Akim Demaille <akim@epita.fr>
460
461 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
462 error recovery loops. This patch is based on
463 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
464 Also, augment the similarity between lalr1.cc and yacc.c.
465 Note: the locations of error recovery rules are not correct yet.
466
467 * data/lalr1.cc: Comment changes to augment the similarity between
468 lalr1.cc and yacc.c.
469 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
470 (yyerrlab1): Remove, but where it used to be (now the bottom part of
471 yyerrlab), when hitting EOF, pop the whole stack here instead of
472 merely falling thru the default error handling mechanism.
473 (yyerrorlab): New label, with the old contents of YYERROR,
474 plus the following change: pop the stack of rhs corresponding
475 to the production that invoked YYERROR. That is how Yacc
476 behaves (required by POSIX).
477 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
478 fail.
479
1f7a61ff
AD
4802003-08-25 Akim Demaille <akim@epita.fr>
481
482 Tune local.at so that people can "autom4te -l autotest calc.at -o
483 calc" for instance, to extract a sub test suite.
484
485 * tests/testsuite.at: Move the initialization, Autotest version
486 requirement, and AT_TESTED invocation into...
487 * tests/local.at: here.
488 * tests/testsuite.at: Include it for compatibility with Autoconf
489 2.57.
490 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
491 be ignore.
492
327b5b56
PE
4932003-08-04 Paul Eggert <eggert@twinsun.com>
494
495 Rework code slightly to avoid gcc -Wtraditional warnings.
496 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
497 The returned value is now stored in *YY0. All callers changed.
498 * src/output.c (merge_output): Adjust to the above change.
499
0051e3ed
PE
5002003-07-26 Paul Eggert <eggert@twinsun.com>
501
502 * data/glr.c (YYASSERT): New macro.
503 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
504 yyresolveStates, yyprocessOneStack):
505 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
506 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 507
137437c6
PE
5082003-07-25 Paul Eggert <eggert@twinsun.com>
509
5b620e06
PE
510 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
511 for portability to K&R C (after ansi2knr, presumably). See
512 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
513 by Frank Heckenbach, though I have omitted the structure-initialization
514 part of his glr-knr.diff patch since I recall that the Portable
515 C Compiler didn't require that change.
516
137437c6
PE
517 Let the user specify how to allocate and free memory.
518 Derived from a suggestion by Frank Heckenbach in
519 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
520 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
521 All uses of free, malloc, realloc changed to use these macros,
522 and unnecessary casts removed.
523 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
524
ddb85ca5
PE
5252003-07-06 Matthias Mann <MatthiasMann@gmx.de>
526
527 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
528 use s.empty() rather than s == "" to test for empty string; see
529 <http://mail.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
530 (trivial change)
531
39910e09
AD
5322003-06-25 Akim Demaille <akim@epita.fr>
533
534 * config/depcomp, config/install-sh: Update from masters.
535
0ae99356
PE
5362003-06-20 Paul Eggert <eggert@twinsun.com>
537
538 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
539 and return properly parenthesized result.
540 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
541 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
542 Remove unnecessary parentheses from uses.
543 * doc/bison.texinfo (Location Default Action): Describe the
544 conventions for parentheses.
545
cd05d13c
PE
5462003-06-19 Paul Eggert <eggert@twinsun.com>
547
81fd08ca
PE
548 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
549 yyreportTree): Do not assume that size_t is the same width as int,
550 when printing sizes. Print sizes using an unsigned format.
551 Problem reported by Frank Heckenbach in
552 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 553
cd05d13c
PE
554 Port to Forte Developer 7 C compiler.
555 * data/glr.c (struct YYLTYPE): If locations are not being used,
556 declare a single dummy member, as empty structs do not conform
557 to the C standard.
558 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
559 the Forte Developer 7 C compiler complains that end-of-loop
560 code is not reached.
561
4dcf140b
PE
5622003-06-17 Paul Eggert <eggert@twinsun.com>
563
564 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
565 avoid warnings from picky compilers about redefinition of PARAMS.
566
8dd76bee
PE
5672003-06-17 Paul Eggert <eggert@twinsun.com>
568
569 Version 1.875b.
570
571 * NEWS: Document 1.875b.
572
573 * lib/bbitset.h: Do not include config.h; that's the includer's job.
574 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
575 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
576 Don't use 'index' in comments, as it's a builtin fn on some hosts.
577 * lib/bitset_stats.c: Include gettext.h unconditionally, as
578 per recent gettext manual's suggestion.
579 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
580 Use prototypes, not old-style definitions.
581 * lib/lbitset.c (lbitset_unused_clear): Likewise.
582 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
583 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
584 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
585 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
586 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
587 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
588 vbitset_or_and_cmp, vbitset_copy): Likewise.
589
590 * lib/libiberty.h: Do not include config.h; that's the includer's job.
591 Do not include <stdlib.h>.
592 (PARAMS): Define unconditionally for C89.
593 (ATTRIBUTE_NORETURN): Remove.
594 (ATTRIBUTE_UNUSED): Define unconditionally.
595
596 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
597 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
598 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
599 * lib/vbitset.c, lib/vbitset.h: New files.
600 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
601 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
602 from libbitset.
603
604 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
605 `How Can I Reset @code{yyparse}', since texinfo does not allow
606 arbitrary @ in node names.
607
608 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
609 shouldn't be needed according to the gettext 0.12.1 documentation
610 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 611 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 612 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 613 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 614
8dd76bee
PE
615 * lib/.cvsignore: Add stdbool.h.
616 * m4/.cvsignore: Add nls.m4, po.m4.
617
618 Upgrade to CVS gnulib.
619 * stdbool_.h: File renamed from stdbool.h.in.
620 * configure.ac (AM_STDBOOL_H): Invoke this instead of
621 AC_HEADER_STDBOOL.
622 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
623 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
624 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
625 (MOSTLYCLEANFILES): New var.
626 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
627 (stdbool.h): New rule.
628 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
629 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
630 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
631 m4/quote.m4: Upgrade to today's gnulib.
632
633 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
634 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
635 the tests right now.
636 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
637 yyerror are declared before use; C99 requires this.
638
25005f6a
PH
6392003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
640
641 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
642 first.
643 (yyrecoverSyntaxError): Correct the logic for setting and testing
644 yyerrState.
645 Correct comment on handling EOF.
646 Allow states with only a default reduction, rather than failing
8dd76bee 647 (I can't quite reconstruct why these were not allowed before).
25005f6a 648
137437c6 649 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 650 buffer overruns, corrupting state.
8dd76bee
PE
651
652 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
653 definition.
654 * src/reader.h (max_left_semantic_context): New variable declaration.
655 * src/scan-gram.l (max_left_semantic_context): Define.
656 (handle_action_dollar): Update max_left_semantic_context.
657 * data/glr.c (YYMAXLEFT): New definition.
658 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
659 (yyresolveAction): Ditto.
660
661 Fixes to problems with location handling in GLR parsers reported by
662 Frank Heckenbach (2003/06/05).
663
664 * data/glr.c (YYLTYPE): Make trivial if locations not used.
665 (YYRHSLOC): Add parentheses, and define only if locations used.
666 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
667 locations not used.
668 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
669 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 670
25005f6a
PH
671 * tests/cxx-type.at: Exercise location information; update tests
672 to differentiate output with and without locations.
8dd76bee 673 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
674 because default YYLTYPE not yet defined.
675 Change semantic actions to compute strings, rather than printing
676 them directly (to test proper passing of semantics values). Change
677 output to prefix notation and update test data and expected results.
678 (yylex): Track locations.
679 (stmtMerge): Return value rather than printing, and include arguments
680 in value.
8dd76bee 681
711f40b7
PE
6822003-06-03 Paul Eggert <eggert@twinsun.com>
683
684 Avoid warnings generated by GCC 2.95.4 when Bison is
685 configured with --enable-gcc-warnings.
686 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
687 yy::]b4_parser_class_name[::translate_,
688 yy::Stack::operator[] (unsigned),
689 yy::Stack::operator[] (unsigned) const,
690 yy::Slice::operator[] (unsigned),
691 yy::Slice::operator[] (unsigned) const):
692 Rename local vars to avoid warnings.
693 * tests/glr-regression.at (Improper handling of embedded actions
694 and $-N in GLR parsers): Remove unused local variable from yylex.
695 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
696 (void) as arg when not pure, since we now assume C89 when building
697 Bison. Pacify GCC by using parameter.
698
ac695f7d
PE
6992003-06-02 Paul Eggert <eggert@twinsun.com>
700
701 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
702 yy::Location::lines, yy::Location::columns): Rename arguments
703 to avoid shadowing; this removes a warning generated by GCC 3.3.
704
26ec81e0
PE
7052003-06-01 Paul Eggert <eggert@twinsun.com>
706
707 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
708 to g++, as GCC 3.3 complains if you do it.
709 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
710 everything that WARNING_CFLAGS has, except omit warnings
711 not suitable for C++.
712 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
713 * tests/atlocal.in (CXXFLAGS): New var.
714 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
715
716 Fix a GLR parser bug I reported in February; see
717 <http://mail.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
718 The problem was that GLR parsers did not conform to the C standard,
719 because actions like { $1 = $2 + $3; } expanded to expressions
720 that invoked YYFILL in separate subexpressions, and YYFILL assigned
721 to a local variable. The C standard says that expressions
722 like (var = f ()) + (var = f ()) have undefined behavior.
723 Another problem was that GCC sometimes issues warnings that
724 yyfill and its parameters are unused.
725
726 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
727 as possibly unused.
728 (yyfill): New function.
729 (YYFILL): Use it.
730 (yyuserAction): Change type of yynormal to bool, so that it matches
731 the new yyfill signature. Mark it as possibly unused.
732
733
734 Follow up on a bug I reported in February, where a Bison-generated
735 parser can loop. Provide a test case and a fix for yacc.c. I
736 don't have a fix for lalr1.cc or for glr.c, unfortunately.
737 The original bug report is in:
738 <http://mail.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
739
740 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
741 macro's size was becoming unwieldy.
742 (yyerrlab): Do not discard an empty lookahead symbol, as this
743 might destroy garbage.
744 (yyerrorlab): New label, with the old contents of YYERROR,
745 plus the following change: pop the stack of rhs corresponding
746 to the production that invoked YYERROR. That is how Yacc
747 behaves, and POSIX requires this behavior.
748 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
749 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
750 Define 'alarm' to do nothing if unistd.h is not available.
751 Add a new rule "exp: '-' error;" to test the above change to
752 data/yacc.c. Use 'alarm' to abort any test taking longer than
753 10 seconds, as it's probably looping.
754 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
755 Also, the new yacc.c generates two fewer diagnostics for an
756 existing test.
757
d0829076
PE
7582003-05-24 Paul Eggert <eggert@twinsun.com>
759
c6ae27df
PE
760 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
761 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
762 This fixes a problem reported by John Bowman when the Compaq/HP
763 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
764 -ansi -Wall -gall).
765 * data/yacc.c (union yyalloc): Likewise.
766 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 767
d0829076
PE
768 Switch from 'int' to 'bool' where that makes sense.
769
770 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
771 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
772 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
773 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
774 Return or accept bool, not int. All callers changed.
775 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
776 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
777 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
778 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
779 bitset_or_and_cmp_): Likewise.
780 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
781 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
782 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
783 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
784 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
785 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
786 bitset_stats_or_and_cmp): Likewise.
787 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
788 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
789 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
790 ebitset_xor_cmp): Likewise.
791 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
792 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
793 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
794 lbitset_xor_cmp): Likewise.
795 * lib/bbitset.h: Include <stdbool.h>.
796 (struct bitset_vtable): The following members now return bool, not
797 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
798 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
799 or_and_cmp).
800 * src/conflicts.c (count_rr_conflicts): Likewise.
801 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
802 All uses changed.
803 * lib/ebitset.c (ebitset_obstack_init): Likewise.
804 * lib/lbitset.c (lbitset_obstack_init): Likewise.
805 * src/getargs.c (debug_flag, defines_flag, locations_flag,
806 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
807 graph_flag): Likewise.
808 * src/getargs.h (debug_flag, defines_flag, locations_flag,
809 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
810 graph_flag): Likewise.
811 * src/output.c (error_verbose): Likewise.
812 * src/output.h (error_verbose): Likewise.
813 * src/reader.c (start_flag, typed): Likewise.
814 * src/reader.h (typed): Likewise.
815 * src/getargs.c (LOCATIONS_OPTION): New constant.
816 (long_options, getargs): Use it.
817 * src/lalr.c (build_relations): Use bool, not int.
818 * src/nullable.c (nullable_compute): Likewise.
819 * src/print.c (print_reductions): Likewise.
820 * src/tables.c (action_row, pack_vector): Likewise.
821 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
822 * src/output.c (prepare): Use it.
823 * src/output.c (token_definitions_output,
824 symbol_destructors_output, symbol_destructors_output): Use string,
825 not boolean integer, to keep track of whether to output separator.
826 * src/print_graph.c (print_core): Likewise.
827 * src/state.c (state_rule_lookaheads_print): Likewise.
828
829 * config/install-sh: Sync from automake 1.7.5.
830
6b2584b7
PE
8312003-05-14 Paul Eggert <eggert@twinsun.com>
832
833 * src/parse-gram.y (rules_or_grammar_declaration): Require a
834 semicolon after a grammar declaration, in the interest of possible
835 future changes to the Bison input language.
836 Do not allow a stray semicolon at the start of the grammar.
837 (rhses.1): Allow one or more semicolons after any rule, including
838 just before "|" as required by POSIX.
839 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
840 grammar.
841
caf37a36
ADL
8422003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
843
844 %parse-param support for lalr1.cc.
845
846 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
847 b4_cc_constructor_calls, b4_cc_constructor_call,
848 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
849 definitions.
850 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
851 parse-param arguments.
852 (yy::b4_parser_class_name): Declare instance variables to
853 hold parse-param arguments.
854 * tests/calc.at: s/value/semantic_value/ because value clashes
855 with a member of yy::b4_parser_class_name. Adjust C++ code
856 to handle %parse-param. Enable %parse-param test in C++.
857
3ab37077
PE
8582003-05-12 Paul Eggert <eggert@twinsun.com>
859
860 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
861 English a bit. Fix fclose typo. Change "const char" to "char
862 const", and use ANSI C rather than K&R for "main". Suggest
863 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
864 and suggest yy_switch_to_buffer.
865
8662003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
867
868 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
869 C89. This avoids a diagnostic on compilers that define __STDC__
870 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
871 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
872
e743727f
PE
8732003-05-03 Paul Eggert <eggert@twinsun.com>
874
875 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
876 Do not overrun array bounds.
877 This should fix a bug reported today by Olatunji Oluwabukunmi in
878 <http://mail.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
879
916708d5
AD
8802003-04-29 Akim Demaille <akim@epita.fr>
881
882 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
883 * src/getargs.c, src/getargs.h: here, as bool, not int.
884 (nondeterministic_parser): New.
885 * src/parse-gram.y, src/scan-gram.l: Support
886 %nondeterministic-parser.
887 * src/output.c (prepare): Use nondeterministic_parser instead
888 of glr_parser where appropriate.
889 * src/tables.c (conflict_row, action_row, save_row)
890 (token_actions, token_actions, pack_vector): Ditto.
891
a06ea4aa
AD
8922003-04-29 Akim Demaille <akim@epita.fr>
893
894 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
895
211074ca
AD
8962003-04-29 Akim Demaille <akim@epita.fr>
897
898 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
899 with %pure-parser and %locations to exercise the patch from Yakov
900 Markovitch below.
901
6175ffe3
PE
9022003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
903
904 * data/yacc.c: (b4_lex_param): Corrected for the case where
905 %lex-param is provided and %pure-parser isn't.
906
b1e95857
PE
9072003-04-27 Paul Eggert <eggert@twinsun.com>
908
909 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
910 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
911 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
912 if it is not defined.
913 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
914
acda9df6
PE
9152003-04-26 Paul Eggert <eggert@twinsun.com>
916
3470c57b
PE
917 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
918 Declare to be of type suitable for the ninf value itself, not of
919 type suitable for the corresponding table, since the latter might
920 be unsigned but the ninf value might be negative. This fixes a
921 bug reported by Alexandre Duret-Lutz in
922 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
923
acda9df6
PE
924 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
925 invokes it. We shouldn't invoke it twice because it will attempt
926 to put error.o in the archive twice. This fixes a glitch reported
927 by Martin Mokrejs in
928 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
929
b5250f26
PE
9302003-04-21 Paul Eggert <eggert@twinsun.com>
931
932 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
933 to gnulib.
934
089ac0f1
PE
9352003-04-21 Yakov Markovitch <Markovitch@iso.ru>
936
937 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
938 Fix obvious typo that results in uncompilable GLR parsers
939 when both %pure-parser and %locations are used. (trivial change)
940
5ededac6
PE
9412003-04-17 Paul Eggert <eggert@twinsun.com>
942
1b8f2fff
PE
943 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
944 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
945 Do not insert the expected token via unput, as this runs afoul
946 of a POSIX-compatibility bug in flex 2.5.31.
947 All uses changed to BEGIN the parent state,
948 since we no longer insert the expected token via unput.
949 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
950 that is no longer emitted after the above change.
951
5ededac6
PE
952 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
953 the first one. This change is from Paul Hilfinger, and it fixes
954 regression reported by Werner Lemberg in
955 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
956
957 (resolve_sr_conflict): Don't invoke state_errs_set
958 unless one or more tokens have been explicitly made errors.
959 Otherwise, the above change causes Bison to abort.
960
961 * tests/existing.at (GNU pic Grammar): New test case, taken from
962 Lemberg's email.
963
b8be9132
AD
9642003-03-31 Akim Demaille <akim@epita.fr>
965
966 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
967
d423d460
AD
9682003-03-31 Akim Demaille <akim@epita.fr>
969
970 * src/output.c (prepare_symbols): Avoid trailing spaces in the
971 output.
972
c7e441b4
AD
9732003-03-31 Akim Demaille <akim@epita.fr>
974
975 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
976 From Paul Hilfinger.
977
231897ad
AD
9782003-03-29 Akim Demaille <akim@epita.fr>
979
980 * m4/error.m4: Do not put under dynamic conditions some code which
981 expansion is under static control.
982
5b066063
AD
9832003-03-29 Akim Demaille <akim@epita.fr>
984
985 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
986
22a74fec
AD
9872003-03-29 Akim Demaille <akim@epita.fr>
988
989 * doc/bison.texinfo (Strings are Destroyed): New.
990
0eee27e7
PE
9912003-03-13 Paul Eggert <eggert@twinsun.com>
992
993 * .cvsignore: Add configure.lineno.
994 * src/.cvsignore: Add yacc.
995 * tests/.cvsignore: Add testsuite.log.
996 * doc/fdl.texi: Sync with latest FSF version.
997
f61aad93
PE
9982003-03-12 Paul Eggert <eggert@twinsun.com>
999
537636c7
PE
1000 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
1001 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
1002 cursor, instead of leaving it undefined. This fixes a bug
1003 reported by Tim Van Holder in
1004 <http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
1005 * tests/input.at (Torturing the Scanner): Test the scanner on
1006 an empty input file, which was Tim Van Holder's test case.
1007
1008 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
1009 <sys/resource.h> can be included, include sys/time.h and
1010 sys/times.h first, if available. This works around the SunOS
1011 4.1.4 porting bug reported by Bruce Becker in
1012 <http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
1013
1014 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
1015 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
1016 AC_HEADER_SYS_WAIT.
1017
f61aad93
PE
1018 Merge changes from gnulib. This was prompted because the CVS
1019 snapshot didn't build on Solaris 7 due to strnlen problems.
1020
1021 These changes need to be merged back into gnulib:
1022 * lib/hash.c: Include <stdbool.h> unconditionally.
1023 * m4/onceonly.m4 (m4_quote): New macro.
1024 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
1025 Quote AC_FOREACH variable-expansions properly.
1026 The 2003-01-03 obstack.h change also needs merging.
1027 {end of changes requiring merging}
5b066063 1028
f61aad93
PE
1029 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
1030 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
1031 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
1032 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
1033 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
1034 New files, imported from gnulib.
1035 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
1036 above.
1037
1038 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
1039 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
1040 gnulib sources.
1041
1042 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
1043 Add.
1044 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
1045 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
1046 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
1047 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
1048 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
1049 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
1050 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
1051 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
1052 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
1053 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
1054 (jm_PREREQ_ARGMATCH): Remove.
1055 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
1056 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
1057
1058 * src/system.h: Include <stdbool.h> unconditionally.
1059
1060 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
1061 assuming at least C89 in the bitset code for some time now.
1062
d2ffe116
AD
10632003-03-03 Akim Demaille <akim@epita.fr>
1064
1065 * ro.po: New.
1066
052826fd
AD
10672003-03-02 Akim Demaille <akim@epita.fr>
1068
1069 * doc/bison.texinfo (Table of Symbols): Reactivate the
1070 documentation for %lex-param, and %parse-param.
1071
c4749565
AD
10722003-03-02 Akim Demaille <akim@epita.fr>
1073
1074 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
1075 generate verbose error messages.
1076 Use the number of tokens as an upper bound in yytname, as it
1077 cannot be a non terminal.
1078
d5286af1
AD
10792003-03-02 Akim Demaille <akim@epita.fr>
1080
1081 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
1082 message.
1083
22e304a6
AD
10842003-03-02 Akim Demaille <akim@epita.fr>
1085
22e304a6
AD
1086 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
1087 Use them to exercise yycheck overrun.
1088 Based on Andrew Suffield's grammar.
1089
67a25fed
AD
10902003-03-02 Akim Demaille <akim@epita.fr>
1091
1092 Create tests/local.at for Bison generic testing macros.
1093
1094 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
1095 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
1096 This new file.
1097 * tests/calc.at (AT_CHECK_CALC): Adjust.
1098 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
1099 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
1100 * tests/local.at: here.
1101 (AT_COMPILE_CXX): Tags the tests using it as c++.
1102 Ignore the test if CXX is not functional.
1103
9c2b381f
PE
11042003-03-01 Paul Eggert <eggert@twinsun.com>
1105
1106 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
1107 not loc->end, since loc->end might contain garbage and this leads
1108 to undefined behavior on some platforms.
1109 (id_loc, token_start): Use (IF_LINTed) initial values that do not
1110 depend on *loc, so that the reader doesn't give the the false
1111 impression that *loc is initialized.
1112 (<INITIAL>"%%"): Do not bother setting code_start, since its value
1113 does not survive the return.
1114
0433ba88
AD
11152003-03-01 Akim Demaille <akim@epita.fr>
1116
1117 * src/scan-gram.l (code_start): Always initialize it when entering
1118 into yylex, as SC_EPILOGUE is activated *before* the corresponding
1119 yylex invocation. An alternative would be making it static, but
1120 then it starts with the second %%'s beginning, instead of its end.
1121
b305ea69
PE
11222003-02-28 Paul Eggert <eggert@twinsun.com>
1123
1124 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
1125 around a UnixWare 7.1.1 porting bug reported by John Hughes in
1126 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
1127
c3d25e01
PE
11282003-02-26 Paul Eggert <eggert@twinsun.com>
1129
1130 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
1131 Remove Sequent/Pyramid discussion (nobody uses them any more).
1132 Merge VMS and MS-DOS discussion; these ports may well be dead
1133 but let's keep mentioning them for now. Put <> around email
1134 addresses. Add copyright notice.
1135
c267ffbc
PE
11362003-02-24 Paul Eggert <eggert@twinsun.com>
1137
1138 * data/glr.c (yy_reduce_print): yylineno -> yylno,
1139 to avoid collision with flex use of yylineno.
1140 Problem reported by Bruce Lilly in
1141 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
1142 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
1143 * data/yacc.c (yy_reduce_print): Likewise.
1144
1145 * config/depcomp: Sync with Automake 1.7.3.
1146
f939fc12
AD
11472003-02-21 Akim Demaille <akim@epita.fr>
1148
1149 * data/lalr1.cc: Use temporary variables instead of casts to
1150 change integer types.
1151 Suggested by Paul Eggert.
1152
95923bd6
AD
11532003-02-21 Akim Demaille <akim@epita.fr>
1154
1155 * doc/bison.texinfo: Use "location" consistently to refer to @n,
1156 to avoid confusions with lalr1.cc's notion of Position.
1157 Suggested by Paul Eggert.
1158
2cdc240e
AD
11592003-02-20 Akim Demaille <akim@epita.fr>
1160
1161 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
1162 before initial_columns.
1163 (location.hh): Use consistent variable names when defining the
1164 operator<<.
1165 Use "last" so that we subtract from Positions, not from unsigned.
1166
5d003116
AD
11672003-02-20 Akim Demaille <akim@epita.fr>
1168
1169 * data/lalr1.cc (position.hh): New subfile, including the extended
1170 and Doxygen'ed documentation of class Position.
1171 (location.hh): Use it.
1172 Document a` la Doxygen.
ba1ecc07 1173 With the help of Benoit Perrot.
5d003116 1174
d02b25f9
AD
11752003-02-20 Akim Demaille <akim@epita.fr>
1176
1177 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
1178 AT_YACC_IF.
1179 Redefine AT_YYERROR_SEES_LOC_IF using it.
1180 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
1181 not defined.
1182 Don't use the location in yy::Parser::error_ and
1183 yy::Parser::print_ when not %locations.
1184 Activate more lalr1.cc tests.
1185
0d1c3a04
AD
11862003-02-19 Akim Demaille <akim@epita.fr>
1187
1188 * data/lalr1.cc: When displaying a line number, be sure to make it
1189 an int.
1190
60a777aa
AD
11912003-02-19 Akim Demaille <akim@epita.fr>
1192
1193 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
1194 Remove, useless.
1195 (YYABORT, YYACCEPT, YYERROR): New.
1196 * tests/calc.at: Renable the lalr1.cc test.
1197
0b86fc41
AD
11982003-02-19 Akim Demaille <akim@epita.fr>
1199
1200 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
1201 error recovery, mixing with/without pops and discarding of the
1202 lookahead.
1203 Exercise YYERROR.
1204 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
1205
da99a5dc
PE
12062003-02-17 Paul Eggert <eggert@twinsun.com>
1207
1208 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
1209 * tests/testsuite.at (AT_COMPILE): Use them.
1210 This fixes the testsuite problem reported by Robert Lentz in
1211 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
1212
93b8c255
PE
12132003-02-12 Paul Eggert <eggert@twinsun.com>
1214
1215 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
1216 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
1217 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
1218 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
1219 Check for malloc failure, for consistency with yacc.c.
1220 (yytname_size): Remove, for consistency with yacc.c.
1221
1222 The bug still remains in data/lalr1.cc, as I didn't have time
1223 to fix it there.
1224
7548fed2
AD
12252003-02-06 Akim Demaille <akim@epita.fr>
1226
1227 * configure.ac (GXX): Rename as...
1228 (CXX): this, to keep the original Autoconf semantics.
1229 Require 2.57.
1230 * data/lalr1.cc: Fix b4_copyright invocations.
1231 If YYDEBUG is not defined, don't depend upon name_ being defined.
1232 (location.hh): Include string and iostream.
1233 (Position::filename): New member.
1234 (Position::Position ()): New.
1235 (operator<< (Position)): New.
1236 (operator- (Position, int)): New.
1237 (Location::first, Location::last): Rename as...
1238 (Location::begin, Location::end): these, to mock the conventional
1239 iterator names.
1240 (operator<< (Location)): New.
1241 * tests/atlocal.in (CXX): New.
1242 * tests/testsuite.at (AT_COMPILE_CXX): New.
1243 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
1244 locations in a more synthetic way.
1245 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
1246 lalr1.cc is used.
1247 Adjust the C locations to match those from Emacs: first column is
1248 column 0.
1249 Change all the expected results.
1250 Conform to the GCS: simplify the locations when applicable.
1251 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
1252 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
1253 these CPP macros with the m4 macros new defined by...
1254 (AT_CHECK_PUSHDEFS): this, i.e.:
1255 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 1256 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
1257 New macros.
1258 (AT_CHECK_POPDEFS): Undefine them.
1259 (AT_CHECK_CALC_LALR1_CC): New.
1260 Use it for the first lalr1.cc test.
1261
43a176ef
AD
12622003-02-04 Akim Demaille <akim@epita.fr>
1263
1264 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
1265 Location as is defined.
1266
fc049e9c
AD
12672003-02-04 Akim Demaille <akim@epita.fr>
1268
1269 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
1270 name_ being defined.
1271
a737b216
PE
12722003-02-03 Paul Eggert <eggert@twinsun.com>
1273
1274 * src/gram.h (start_symbol): Remove unused decl.
1275
1276 Use more-consistent naming conventions for local vars.
1277
1278 * src/derives.c (derives_compute): Change type of local var from
1279 int to rule_number.
1280 * src/gram.c (grammar_rules_partial_print): Likewise.
1281 * src/print.c (print_core): Likewise.
1282 * src/reduce.c (reduce_grammar_tables): Likewise.
1283
1284 * src/gram.c (grammar_dump): Change name of item_number *
1285 local var from r to rp.
1286 * src/nullable.c (nullable_compute): Likewise.
1287
1288 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
1289
1290 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
1291 for symbol or symbol_number var.
1292 * src/reader.c (grammar_start_symbol_set): Likewise.
1293 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
1294 Likewise.
1295 * src/state.c (transitions_to): Likewise.
1296 * src/state.h: Likewise.
1297 * src/tables.c (symbol_number_to_vector_number): Likewise.
1298
1299 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
1300 char * var.
1301
1302 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
1303 var.
1304
1305 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
1306 var.
1307
1308 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
1309 Use str, not s, for char * var. Use ch, not c, for character var.
1310 Use size for size var.
1311
1312 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
1313 char * var.
1314 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
1315 uniqstr var.
1316 * src/uniqstr.h: Likewise.
1317
1318 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
1319 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
1320 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
1321 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
1322 param to have same name as that of enum, so that we don't use
1323 "s" to stand for a non-state.
1324
68e93ad5
AD
13252003-02-02 Akim Demaille <akim@epita.fr>
1326
1327 * src/scan-skel.l: Scan more than one inert character per yylex
1328 invocation.
1329
92898986
PE
13302003-02-01 Paul Eggert <eggert@twinsun.com>
1331
1332 Version 1.875a.
1333
1d9d5d71
PE
1334 * po/LINGUAS: Add ms.
1335
0435d061
AD
13362003-01-30 Akim Demaille <akim@epita.fr>
1337
1338 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
1339
6029a57f
PH
13402003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1341
1342 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
1343 of $1.
0435d061
AD
1344
1345 Changes in response to error report by S. Eken: GLR mode does not
6029a57f
PH
1346 handle negative $ indices or $ indices in embedded rules correctly.
1347 See <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 1348
6029a57f
PH
1349 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
1350 (b4_rhs_location): Ditto.
0435d061 1351 (yyfill): New function to copy from stack tree into array
6029a57f 1352 incrementally.
0435d061
AD
1353 (yyuserAction): Modify to allow incremental move of semantic values
1354 to rhs array when in GLR mode.
1355 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
1356 as needed.
1357 Remove dummy use of yystack, as there is now a guaranteed use.
1358 (yydoAction): Modify to allow incremental move of semantic values
1359 to rhs array when in GLR mode.
1360 (yyresolveAction): Ditto.
1361 (yyglrShiftDefer): Update comment.
0435d061 1362 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
1363 (yyglrReduce): Ditto.
1364 (yydoAction): Ditto
0435d061 1365
6029a57f
PH
1366 * tests/glr-regr1.at: Rename to ...
1367 * tests/glr-regression.at: Add new regression test for the problems
1368 described above (adapted from S. Eken).
1369 Update copyright notice.
1370 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
1371 * tests/Makefile.am: Ditto.
1372
6cee6297
PE
13732003-01-28 Paul Eggert <eggert@twinsun.com>
1374
1375 * data/lalr1.cc: Do not use @output_header_name@ unless
1376 b4_defines_flag is set. This fixes two bugs reported by
1377 Tim Van Holder in
1378 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
1379 and <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
1380
b2a836b5
PE
13812003-01-21 Paul Eggert <eggert@twinsun.com>
1382
1383 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
1384 we don't need to worry about yyerrlab1 being reported as an
1385 "unused label" by non-GCC C compilers. The downside is that if
1386 locations are used then a couple of statements are duplicated each
1387 time YYERROR is invoked, but the upside is that the warnings
1388 should vanish.
1389 (yyerrlab1): Move code to YERROR.
1390 (yyerrlab2): Remove. Change uses back to yyerrlab1.
1391 This reverts some of the 2002-12-27 change.
1392
4196b931
PE
13932003-01-17 Paul Eggert <eggert@twinsun.com>
1394
1395 * src/output.c (symbol_printers_output): Fix typo that led
1396 to core dump. Problem reported by Antonio Rus in
1397 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
1398
3ae831b4
AD
13992003-01-13 Akim Demaille <akim@epita.fr>,
1400 Quoc Peyrot <chojin@lrde.epita.fr>,
1401 Robert Anisko <anisko_r@lrde.epita.fr>
1402
1403 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
1404 when the stacks contain one element, as the loop would otherwise
1405 free the last state, and then use the top state (the one we just
1406 popped). This means that the initial elements will not be freed
1407 explicitly, as is the case in yacc.c; it is not a problem, as
1408 these elements have fake values.
1409
e3aa65c5
PE
14102003-01-11 Paul Eggert <eggert@twinsun.com>
1411
1412 * NEWS: %expect-violations are now just warnings, reverting
1413 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
1414 bootstrapping problem reported by Matthias Klose; see
1415 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
1416 * src/conflicts.c (conflicts_print): Likewise.
1417 * tests/conflicts.at (%expect not enough, %expect too much,
1418 %expect with reduce conflicts): Likewise.
1419 * doc/bison.texinfo (Expect Decl): Document this. Also mention
1420 that the warning is enabled if the number of conflicts changes
1421 (not necessarily increases).
1422
1423 * src/getargs.c (version): Update copyright year.
1424
f0057011
AD
14252003-01-09 Akim Demaille <akim@epita.fr>
1426
1427 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
1428
1ee6d2a0
PE
14292003-01-08 Paul Eggert <eggert@twinsun.com>
1430
1431 * Makefile.maint (WGETFLAGS):
1432 New macro, containing "-C off" to disable proxy caches.
1433 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
1434 (rel-check): Use $(WGET) instead of wget.
1435
d4fd77c4
PE
14362003-01-06 Paul Eggert <eggert@twinsun.com>
1437
1438 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
1439 the GLR paper of Scott, Johnstone and Hussain.
1440
464c6927
PE
14412003-01-04 Paul Eggert <eggert@twinsun.com>
1442
d600ee67
PE
1443 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
1444 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
1445 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
1446 (EXTRA_LIBRARIES): New var, for liby.a.
1447 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
1448 (EXTRA_SCRIPTS): New var, for yacc.
1449
464c6927
PE
1450 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
1451 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
1452 Problem reported by Nelson H. F. Beebe.
1453
14542003-01-03 Paul Eggert <eggert@twinsun.com>
1455
1456 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
1457 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
1458 when compiling Bison 1.875's `bitset bset = obstack_alloc
1459 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
1460
1461 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
1462 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
1463 grow to a huge size with typical invocation.
d600ee67 1464
464c6927
PE
1465 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
1466 Use the pattern recommended by Autoconf 2.57, except also protect
1467 against double-definition.
1468 * src/system.h: Likewise.
1469 Portability issues reported by Nelson H. F. Beebe.
d600ee67 1470
464c6927
PE
1471 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
1472 All uses changed. Provide a definition in both C and C++.
1473 (yytrue, yyfalse): Define even if defined (__cplusplus).
1474
1475 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
1476 Reported by Nelson H. F. Beebe.
d600ee67 1477
464c6927
PE
1478 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
1479
0f42c7d5
PE
14802003-01-02 Paul Eggert <eggert@twinsun.com>
1481
1482 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
1483 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
1484 Bug reported by Nelson H. F. Beebe.
1485
dc546b0f
PE
14862003-01-01 Paul Eggert <eggert@twinsun.com>
1487
1488 * Version 1.875.
1489
2c09b6a7
PE
14902002-12-30 Paul Eggert <eggert@twinsun.com>
1491
1492 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
1493 Moved here from...
1494 (<INITIAL>","): Here. This causes stray "," to be treated
1495 more uniformly.
1496
dc546b0f 1497 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
1498 last brace in braced code when not in Yacc mode, for compatibility
1499 with Bison 1.35. This resurrects the 2001-12-15 patch to
1500 src/reader.c.
1501
1502 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
1503 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
1504
535c0f63
PE
15052002-12-28 Paul Eggert <eggert@twinsun.com>
1506
1507 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
1508 that of SYM's type. This fixes Debian bug 168069, reported by
1509 Thomas Olsson.
d600ee67 1510
963fcc17
PE
15112002-12-28 Paul Eggert <eggert@twinsun.com>
1512
1513 Version 1.75f.
1514
1515 Switch back to the Yacc style of conflict reports, undoing some
1516 of the 2002-07-30 change.
1517 * doc/bison.texinfo (Understanding): Use Yacc style for
1518 conflict reports. Also, use new way of locating rules.
1519 * src/conflicts.c (conflict_report):
1520 Renamed from conflict_report_yacc, removing the old
1521 'conflict_report'. Translate the entire conflict report at once,
1522 so that we don't assume that "," has the same interpretation in
1523 all languages.
1524 (conflicts_output): Use Yacc-style conflict report for each state,
1525 instead of our more-complicated style.
1526 (conflicts_print): Use Yacc-style conflict report, except print
1527 the input file name when not emulating Yacc.
1528 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
1529 Conflicted Reduction, %expect not enough, %expect too much,
1530 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
1531 * tests/existing.at (GNU Cim Grammar): Likewise.
1532 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
1533
1534 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
1535 fatal): Don't invoke fflush; it's not needed and it might even be
1536 harmful for stdout, as stdout might not be open.
1537 * src/reduce.c (reduce_print): Likewise.
1538
b1efe548
PE
15392002-12-27 Paul Eggert <eggert@twinsun.com>
1540
1541 Fix a bug where error locations were not being recorded correctly.
1542 This problem was originally reported by Paul Hilfinger in
e3aa65c5 1543 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
1544
1545 * data/yacc.c (yyparse): New local var yylerrsp, to record the
1546 top of the location stack's error locations.
1547 (yyerrlab): Set it. When discarding a token, push its location
1548 onto yylerrsp so that we don't lose track of the error's end.
1549 (yyerrlab1): Now is only the target of YYERROR, so that we can
1550 properly record the location of the action that failed. For GCC
1551 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
1552 GCC warning about yyerrlab1 being unused if YYERROR is unused.
1553 (yyerrlab2): New label, which yyerrlab now falls through to.
1554 Compute the error's location by applying YYLLOC_DEFAULT to
1555 the locations of all the symbols that went into the error.
1556 * doc/bison.texinfo (Location Default Action): Mention that
1557 YYLLOC_DEFAULT is also invoked for syntax errors.
1558 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
1559 Error locations include the locations of all the tokens that were
1560 discarded, not just the last token.
d600ee67 1561
983c5c2c
PE
15622002-12-26 Paul Eggert <eggert@twinsun.com>
1563
b1efe548
PE
1564 * src/files.c: Include quote.h.
1565 (compute_output_file_names): Warn if we detect conflicting
1566 outputs to the same file. This should catch the misunderstanding
1567 exemplified by Debian Bug 165349, reported by Bruce Stephens..
1568
1569 * src/conflicts.c (conflicts_print): If the user specifies
1570 "%expect N", report an error if there are any reduce/reduce
1571 conflicts. This is what the manual says should happen.
1572 This fixes Debian bug 130890, reported by Anthony DeRobertis.
1573 * tests/conflicts.at (%expect with reduce conflicts): New test.
1574
983c5c2c
PE
1575 Don't use m4_include on relative file names, as it doesn't work as
1576 desired if there happens to be a file with that name under ".".
d600ee67 1577
983c5c2c
PE
1578 * m4sugar/version.m4: Remove; it was included but it wasn't used.
1579 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
1580 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
1581 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
1582 * src/output.c (output_skeleton): Use full path names when
1583 specifying a file to include; don't rely on include path, as
1584 it's unreliable when the working file contains a file with
1585 that name.
d600ee67 1586
983c5c2c
PE
15872002-12-25 Paul Eggert <eggert@twinsun.com>
1588
1589 Remove obsolete references to bison.simple and bison.hairy.
1590 Problem mentioned by Aubin Mahe in
e3aa65c5 1591 <http://mail.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
1592 * data/glr.c: Comment fix.
1593 * doc/bison.1: Remove references. Also, mention "yacc".
1594
1595 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
1596 with -g option.
1597
1598 * src/parse-gram.y (declaration): Use enum "report_states" rather
1599 than its numeric value 1.
1600
1601 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
1602 opening a new one. This fixes Debian bug 165349, reported by
1603 Bruce Stephens.
1604
23f2d9dc
PE
16052002-12-24 Paul Eggert <eggert@twinsun.com>
1606
1607 Version 1.75e.
1608
1609 * Makefile.maint (cvs-update): Don't assume that the shell
1610 supports $(...), as Solaris sh doesn't.
1611
1612 * src/parse-gram.y (lloc_default): Remove test for empty
1613 nonterminals at the end, since it didn't change the result.
1614
16152002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
1616
1617 If the user does not define YYSTYPE as a macro, Bison now declares it
1618 using typedef instead of defining it as a macro. POSIX requires this.
1619 For consistency, YYLTYPE is also declared instead of defined.
1620
1621 %union directives can now have a tag before the `{', e.g., the
1622 directive `%union foo {...}' now generates the C code
1623 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
1624 The default union tag is `YYSTYPE', for compatibility with Solaris 9
1625 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
1626 instead of `yyltype'.
1627
1628 `yystype' and `yyltype' are now obsolescent macros instead of being
1629 typedefs or tags; they are no longer documented and will be
1630 withdrawn in a future release.
1631
1632 * data/glr.c (b4_location_type): Remove.
1633 (YYSTYPE): Renamed from yystype.
1634 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
1635 (struct YYLTYPE): Renamed from struct yyltype.
1636 (YYLTYPE): Renamed from yyltype.
1637 (yyltype, yystype): New (and obsolescent) macros,
1638 for backward compatibility.
1639 * data/yacc.c: Likewise.
1640
1641 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
1642 does not specify a union tag. This is for compatibility with
1643 Solaris 9 yacc.
1644
1645 * src/parse-gram.y (add_param): 2nd arg is now char * not char
1646 const *, since it is now modified by stripping surrounding { }.
1647 (current_braced_code): Remove.
1648 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
1649 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
1650 trailing " {...}". Now of type <chars>.
1651 (grammar_declaration): Adjust to bundled tokens.
1652 (code_content): Remove; stripping is now done by add_param.
1653 (print_token_value): Print contents of bundled tokens.
1654 (token_name): New function.
1655
1656 * src/reader.h (braced_code, current_braced_code): Remove.
1657 (token_name): New decl.
1658
1659 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
1660 token_type, not braced_code code_kind. All uses changed.
1661 (SC_PRE_CODE): New state, for scanning after a keyword that
1662 has (or usually has) an immediately-following braced code.
1663 (token_type): New local var, to keep track of which token type
1664 to return when scanning braced code.
1665 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 1666 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
1667 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
1668 instead of returning a token type immediately.
1669 (<INITIAL>"{"): Set token type.
1670 (<SC_BRACED_CODE>"}"): Use it.
1671 (handle_action_dollar, handle_action_at): Now returns bool
1672 indicating success. Fail if ! current_rule; this prevents a core dump.
1673 (handle_symbol_code_dollar, handle_symbol_code_at):
1674 Remove; merge body into caller.
1675 (handle_dollar, handle_at): Complain in invalid contexts.
1676
1677 * NEWS, doc/bison.texinfo: Document the above.
1678 * NEWS: Fix years and program names in copyright notice.
1679
879ca4f8
PE
16802002-12-17 Paul Eggert <eggert@twinsun.com>
1681
1682 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
1683 Reporting, Table of Symbols): Omit mentions of %lex-param and
1684 %parse-param from the documentation for now.
1685
1c5fe69d
PE
16862002-12-15 Paul Eggert <eggert@twinsun.com>
1687
1688 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
1689 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
1690 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
1691 disagreed with the Bison documentation. Bug
1692 reported by Andrew Walrond.
d600ee67 1693
1c5fe69d
PE
1694 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
1695 as the caller now does that.
1696 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
1697 (YYEMPTY): Parenthesize right hand side, since others use it.
1698 (yyparse): Don't assume that our generated code is the only code
1699 that sets yychar.
1700
d1de5372
PE
17012002-12-13 Paul Eggert <eggert@twinsun.com>
1702
1703 Version 1.75d.
1704
1705 POSIX requires a "yacc" command.
1706 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
1707 (MOSTLYCLEANFILES): Add yacc.
1708 (yacc): New rule.
1c5fe69d 1709 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
1710 as an alias for bison y.
1711
1712 * po/LINGUAS: Add da.
d600ee67 1713
d1de5372
PE
1714 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
1715 problem with latest <getopt.h>.
1716 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
1717
1718 * doc/fdl.texi: Upgrade to 1.2.
1719 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
1720 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
1721 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
1722 gnulib.
1723 * config/install-sh: Sync with autotools.
1724
1725 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
e3aa65c5 1726 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
1727 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
1728 locations are requested.
1729 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
1730 locations are requested.
1731
d0f3fe23
PE
17322002-12-12 Paul Eggert <eggert@twinsun.com>
1733
1734 Remove unportable casts and storage allocation tricks.
1735 While we're at it, remove almost all casts, since they
1736 usually aren't needed and are a sign of trouble.
1737
1738 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
1739
1740 * src/derives.c (derives_compute): Do not subtract NTOKENS from
1741 the pointer DSET returned by malloc; this isn't portable.
1742 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
1743 Similarly for DERIVES.
1744 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
1745 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
1746 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
1747
1748 * src/derives.c (derives_compute): Do not bother invoking
1749 int_of_rule_number, since rule numbers are integers.
1750
1751 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
1752 rather than XMALLOC (char, N).
1753
1754 * src/files.c (filename_split): Rewrite to avoid cast.
1755
1756 * src/gram.h (symbol_number_as_item_number,
1757 item_number_as_symbol_number, rule_number_as_item_number,
1758 item_number_as_rule_number):
1759 Now inline functions rather than macros, to avoid casts.
1760 * src/state.h (state_number_as_int): Likewise.
1761 * src/tables.c (state_number_to_vector_number,
1762 symbol_number_to_vector_number): Likewise.
1763
1764 * src/gram.h (int_of_rule_number): Remove; no longer used.
1765
1766 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
1767 since the resulting storage is always stored into.
1768
1769 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
1770 where it's needed.
1771
1772 * src/muscle_tab.c (muscle_m4_output):
1773 Now inline. Return bool, not int.
1774 * src/state.c (state_compare): Likewise.
1775 * src/symtab.c (symbol_check_defined,
1776 symbol_check_alias_consistency, symbol_pack, symbol_translation,
1777 hash_compare_symbol, hash_symbol):
1778 Likewise.
1779 * src/uniqstr.c (uniqstr_print): Likewise.
1780 * src/muscle_tab.c (muscle_m4_output_processor):
1781 New function, to avoid casts.
1782 * src/state.c (state_comparator, stage_hasher): Likewise.
1783 * src/symtab.c (symbol_check_defined_processor,
1784 symbol_check_alias_consistency_processor, symbol_pack_processor,
1785 symbol_translation_processor, hash_symbol_comparator,
1786 hash_symbol_hasher): Likewise.
1787 * src/uniqstr.c (uniqstr_print_processor): Likewise.
1788 * src/muscle_tab.c (muscles_m4_output):
1789 Use new functions instead of casting old functions unportably.
1790 * src/state.c (state_hash_new): Likewise.
1791 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
1792 symbols_token_translations_init):
1793 Likewise.
1794 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
1795
1796 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
1797 var instead of casting to long, to avoid casts.
1798 (prepare_states): Use MALLOC rather than alloca, so that we don't
1799 have to worry about alloca.
1800 * src/state.c (state_hash_lookup): Likewise.
1801
1802 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
1803 local var instead of casting to unsigned char, to avoid casts.
1804
1805 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
1806 STATE_ALLOC): Remove.
1807 (transitions_new, errs_new, reductions_new, state_new): Use malloc
1808 rather than calloc, and use offsetof to avoid allocating slightly
1809 too much storage.
1810 (state_new): Initialize all members.
1811
1812 * src/state.c (state_hash): Use unsigned accumulator, not signed.
1813
1814 * src/symtab.c (symbol_free): Remove; unused.
1815 (symbol_get): Remove cast in lhs of assignment.
1816 (symbols_do): Now static. Accept generic arguments, not
1817 hashing-related ones.
1818
1819 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
1820 (symbol_processor): Remove.
1821 (symbols_do): Remove decl; now static.
1822
1823 * src/system.h (alloca): Remove; decl no longer needed.
1824 (<stddef.h>): Include, for offsetof.
1825 (<inttypes.>, <stdint.h>): Include if available.
1826 (uintptr_t): New type, if system lacks it.
1827 (CALLOC, MALLOC, REALLOC): New macros.
1828 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
1829 new macros.
1830
1831 * src/tables.c (table_size): Now int, to pacify GCC.
1832 (table_grow, table_ninf_remap): Use signed table size.
1833 (save_row): Don't bother initializing locals when not needed.
1834 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
1835 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
1836
1837 * src/vcg.h: Correct misspellings.
1838
1839 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
1840
1841
1842 * src/getargs.c (getargs): Don't assume EOF == -1.
1843
26b4a969
PE
18442002-12-09 Paul Eggert <eggert@twinsun.com>
1845
1846 Change identifier spellings to avoid collisions with names
1847 that are reserved by POSIX.
1848
1849 Don't use names ending in _t, since POSIX reserves them.
1850 For consistency, remove _e and _s endings -- they're weren't
1851 needed to remove ambiguity. All uses changed.
1852 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
1853 turn was just renamed from struniq_t.
1854 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
1855 which in turn was just renamed from struniq_processor_t.
1856 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
1857 in turn was renamed from hash_compare_struniq_t.
1858 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
1859 (state_list): Renamed from state_list_t.
1860 * src/assoc.h (assoc): Renamed from assoc_t.
1861 * src/conflicts.c (enum conflict_resolution): Renamed from
1862 enum conflict_resolution_e.
1863 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
1864 (rule_list): Renamed from rule_list_t.
1865 * src/getargs.h (enum trace): Renamed from enum trace_e.
1866 (enum report): Renamed from enum report_e.
1867 * src/gram.h (item_number): Renamed from item_number_t.
1868 (rule_number): Renamed from rule_number_t.
1869 (struct rule_s): Remove the "rule_s" part; not used.
1870 (rule): Renamed from rule_t.
1871 (rule_filter): Renamed from rule_filter_t.
1872 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
1873 (goto_list): Renamed from goto_list_t.
1874 * src/lalr.h (goto_number): Renamed from goto_number_t.
1875 * src/location.h (location): Renamed from location_t.
1876 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
1877 and moved here from:
1878 * src/muscle_tab.h (muscle_entry_t): here.
1879 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
1880 (rule_list): Renamed from rule_list_t.
1881 * src/print_graph.c (static_graph): Renamed from graph.
1882 * src/reader.h (braced_code): Renamed from braced_code_t.
1883 Remove brace_code_e tag.
1884 * src/relation.h (relation_node): Renamed from relation_node_t.
1885 (relation_nodes): Renamed from relation_nodes_t.
1886 (relation): Renamed from relation_t.
1887 * src/state.h (state_number): Renamed from state_number_t.
1888 (struct state): Renamed from struct state_s.
1889 (state): Renamed from state_t.
1890 (transitions): Renamed from transitions_t. Unused (and
1891 misspelled) transtion_s tag removed.
1892 (errs): Renamed from errs_t. Unused errs_s tag removed.
1893 (reductions): Renamed from reductions_t. Unused tag
1894 reductions_s removed.
1895 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
1896 (struct symbol_list): Renamed from struct symbol_list_s.
1897 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
1898 (struct symbol): Renamed from struct symbol_s.
1899 (symbol): Renamed from symbol_t.
1900 * src/tables.c (vector_number): Renamed from vector_number_t.
1901 (action_number): Renamed from action_t.
1902 * src/tables.h (base_number): Renamed from base_t.
1903 * src/vcg.h (enum color): Renamed from enum color_e.
1904 (enum textmode): Renamed from enum textmode_e.
1905 (enum shape): Renamed from enum shape_e.
1906 (struct colorentry): Renamed from struct colorentry_s.
1907 (struct classname): Renamed from struct classname_s.
1908 (struct infoname): Renamed from struct infoname_s.
1909 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
1910 (enum decision): Renamed from enum decision_e.
1911 (enum orientation): Renamed from enum orientation_e.
1912 (enum alignment): Renamed from enum alignment_e.
1913 (enum arrow_mode): Renamed from enum arrow_mode_e.
1914 (enum crossing_type): Renamed from enum crossing_type_e.
1915 (enum view): Renamed from enum view_e.
1916 (struct node): Renamed from struct node_s.
1917 (node): Renamed from node_t.
1918 (enum linestyle): Renamed from enum linestyle_e.
1919 (enum arrowstyle): Renamed from enum arrowstyle_e.
1920 (struct edge): Renamed from struct edge.
1921 (edge): Renamed from edge_t.
1922 (struct graph): Renamed from struct graph_s.
1923 (graph): Renamed from graph_t.
1924 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
1925 Rename value_t -> value.
1926 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
1927 value_t_as_yystype -> value_as_yystype.
1928
1929 Don't include <errno.h> in the mainstream code, since it
1930 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
1931 * lib/get-errno.c, lib/get-errno.h: New files.
1932 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
1933 get-errno.c.
1934 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
1935 * src/output.c (output_skeleton): Likewise.
1936 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
1937 instead of errno.
1938 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
1939 Likewise.
1940 (handle_action_dollar, handle_action_at): Likewise.
1941 * src/system.h: Do not include <errno.h>.
1942 (TAB_EXT): Renamed from EXT_TAB.
1943 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
1944
1945 Avoid str[a-z]*, since <string.h> reserves that name space.
1946 Change all instances of "struniq" in names to "uniqstr", and
1947 likewise for "STRUNIQ" and "UNIQSTR".
1948 * src/uniqstr.c: Renamed from src/struniq.c.
1949 * src/uniqstr.h: Renamed from src/struniq.h.
1950 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
1951 * src/files.c (strsuffix): Remove; unused.
1952 (concat2): Renamed from stringappend. Now static.
1953 * src/files.h (strsuffix, stringappend): Remove; unused.
1954 * src/parse-gram.y (<chars>): Renamed from <string>.
1955 (<uniqstr>): Renamed from <struniq>.
1956 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
1957 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
1958 (struct graph_s.expand): Renamed from struct graph_s.stretch.
1959 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
1960 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
1961 (N_EXPAND): Renamed from N_STRETCH.
1962
1963 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
1964 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
1965 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
1966 Remove; unused.
1967 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
1968 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
1969 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
1970 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
1971 (BASE_MAXIMUM): Renamed from BASE_MAX.
1972 (BASE_MINIMUM): Renamed from BASE_MIN.
1973 (ACTION_MAX): Remove; unused.
1974 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
1975 Unnecessary casts removed from above defines.
1976
1977
1978 Fix misspelling in names.
1979 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
1980 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
1981 G_NODE_ALIGNEMENT.
1982
1983
1984 * lib/timevar.c (timevar_report): Renamed from time_report,
1985 for consistency with other names.
1986 * lib/timevar.h (timevar_report): New decl.
1987 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
1988
1989
1990 Sort include-file uses.
1991
1992 Reorder all include files under src to be in the order "system.h".
1993 then the ../lib include files in angle brackets (alphabetized),
1994 then the . include files in double-quotes (alphabetized). Fix
1995 dependency breakages encountered in this process, as follows:
1996 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
1997 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
1998 * src/state.h: Include "symtab.h".
1999
996b1c7e
PE
20002002-12-08 Paul Eggert <eggert@twinsun.com>
2001
2002 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
2003 since this causes problems when __file__ contains character
2004 sequences like "@" that are treated specially by src/scan-skel.l.
2005 Instead, just use the file's basename. This fixes the bug
2006 reported by Martin Mokrejs in
e3aa65c5 2007 <http://mail.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 2008
e19c4e5d
PE
20092002-12-06 Paul Eggert <eggert@twinsun.com>
2010
2011 Add support for rules that do not have trailing semicolons, as
2012 POSIX requires. Improve the quality of locations in Bison
2013 diagnostics.
26b4a969 2014
e19c4e5d
PE
2015 * src/location.c: Include <quotearg.h>.
2016 (empty_location): Now const.
2017 (location_print): New function. Follow the recommendation of the
2018 GNU Coding Standards for locations that span file boundaries.
2019 * src/location.h: Do not include <quotearg.h>; no longer needed.
2020 (boundary): New type.
2021 (location_t): Use it. This allows locations to span file boundaries.
2022 All member uses changed: file -> start.file or end.file (as needed),
2023 first_line -> start.line, first_column -> start.column,
2024 last_line -> end.line, last_column -> end.column.
2025 (equal_boundaries): New function.
2026 (LOCATION_RESET, LOCATION_STEP): Remove.
2027 (LOCATION_PRINT): Remove. All callers changed to use location_print.
2028 (empty_location): Now const.
2029 (location_print): New decl.
2030 * src/parse-gram.y (lloc_default): New function, which handles
2031 empty locations more accurately.
2032 (YYLLOC_DEFAULT): Use it.
2033 (%token COLON): Remove.
2034 (%token ID_COLON): New token.
26b4a969 2035 (rules): Use it.
e19c4e5d
PE
2036 (declarations, rules): Remove trailing semicolon.
2037 (declaration, rules_or_grammar_declaration):
2038 Allow empty (";") declaration.
2039 (symbol_def): Remove empty actions; no longer needed.
2040 (rules_or_grammar_declaration): Remove trailing semicolon.
2041 (semi_colon.opt): Remove.
2042 * src/reader.h: Include location.h.
2043 (scanner_cursor): New decl.
2044 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
2045 rolling our own.
2046 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
2047 of *loc.
2048 (STEP): Remove. No longer needed, now that adjust_location does
2049 the work. All uses removed.
2050 (scanner_cursor): New var.
2051 (adjust_location): Renamed from extend_location. It now sets
2052 *loc and adjusts the scanner cursor. All uses changed.
2053 Don't bother testing for CR.
2054 (handle_syncline): Remove location arg; now updates scanner cursor.
2055 All callers changed.
2056 (unexpected_end_of_file): Now accepts start boundary of token or
2057 comment, not location. All callers changed. Update scanner cursor,
2058 not the location.
2059 (SC_AFTER_IDENTIFIER): New state.
2060 (context_state): Renamed from c_context. All uses changed.
2061 (id_loc, code_start, token_start): New local vars.
2062 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
2063 processing of Yacc white space and equivalents here.
2064 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
2065 instead of returning ID immediately, since we need to search for
2066 a subsequent colon.
2067 (<INITIAL>"'", "\""): Save token_start.
2068 (<INITIAL>"%{", "{", "%%"): Save code_start.
2069 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
2070 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
2071 BEGIN context_state at end, not INITIAL.
2072 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
2073 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
2074 Return correct token start.
2075 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
2076 the start of a character, string or multiline comment is found.
2077 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
2078 Reduction): Adjust reported locations to match the more-precise
2079 results now expected.
2080 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
2081 * tests/reduce.at (Useless Rules, Reduced Automaton,
2082 Underivable Rules): Likewise.
2083 * tests/regression.at (Invalid inputs): No longer `expecting ";"
2084 or "|"' now that so many other tokens are allowed by the new grammar.
2085
2086 * src/complain.h (current_file): Remove duplicate decl;
2087 current_file is now owned by files.h.
2088 * src/complain.c, src/scan-gram.l: Include files.h.
2089
20902002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 2091
e19c4e5d
PE
2092 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
2093 promotes to int; it might be unsigned int.
2094 * data/yacc.c (yy_reduce_print): Likewise.
2095
2096 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
2097 be #defined in the prologue, not in the Bison declarations.
2098 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 2099
b64755e3
PE
21002002-12-02 Paul Eggert <eggert@twinsun.com>
2101
2102 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
2103 * lib/strtoul.c: New file, from gnulib.
2104 This fixes a porting bug reported by Peter Klein in
e3aa65c5 2105 <http://mail.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 2106
6e746484
PE
21072002-11-30 Paul Eggert <eggert@twinsun.com>
2108
b64755e3
PE
2109 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
2110 and put only a forward declaration in the prologue. This is for
2111 consistency with the other scanner helper functions.
2112
6ba55592
PE
2113 Type clashes now generate warnings, not errors, since it
2114 appears that POSIX may allow some grammars with type clashes.
2115 * src/reader.c (grammar_current_rule_check): Warn about
2116 type clashes instead of complaining.
2117 * tests/input.at (Type Clashes): Expect warnings, not complaints.
2118
6e746484
PE
2119 Add Yacc library, since POSIX requires it.
2120 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
2121 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
2122 * lib/main.c, lib/yyerror.c: New files.
2123
2124 gram_error can be static; it need not be extern.
2125 * src/reader.h (gram_error): Remove decl.
2126 * src/parse-gram.y (gram_error): Now static. Add static decl.
2127 (print_token_value): Omit parameter names from forward decl,
2128 for consistency.
2129
88510f9c
PE
21302002-11-29 Paul Eggert <eggert@twinsun.com>
2131
6e746484
PE
2132 * doc/bison.texinfo: Emphasize that yylex and yyerror must
2133 be declared before being used. E.g., one should typically
2134 declare them in the prologue. Use GNU coding style in examples.
2135 Put "const" consistently after the type it modifies. Mention
2136 that C99 supports "inline". Mention that yyerror traditionally
2137 returns "int".
2138
88510f9c
PE
2139 %parse-param and %lex-param now take just one argument, the
2140 declaration; the argument name is deduced from the declaration.
2141
2142 * doc/bison.texinfo (Parser Function, Pure Calling, Error
2143 Reporting, Table of Symbols): Document this.
2144 * src/parse-gram.y (add_param): New function.
2145 (COMMA): Remove.
2146 (declaration): Implement new rule for %parse-param and %lex-param.
2147 * src/scan-gram.l: "," now elicits a warning, rather than being
2148 a token; this is more compatible with byacc.
2149 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
2150
bb92250c
PE
21512002-11-27 Paul Eggert <eggert@twinsun.com>
2152
2153 Rename identifiers to avoid real and potential collisions.
2154
2155 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
2156 to avoid collision with lex macro described by Bruce Lilly in
e3aa65c5 2157 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
2158 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
2159 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
2160 * src/parse-gram.y (print_token_value): Renamed from yyprint.
2161 All uses changed.
2162 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
2163 The name "yycontrol" violates the name space rules, and this stuff
2164 wasn't being used anyway.
2165 (input): Remove action; this stuff wasn't being used.
2166 (gram_error): Rename local variable yylloc -> loc.
2167 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
2168 (YY_DECL): Don't use "yy" at start of local variables.
2169 All uses changed, e.g., yylloc -> loc.
2170 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
2171 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
2172 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
2173 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
2174
2175 * src/parse-gram.y (gram_error): loc is now const *.
2176 * src/reader.h (gram_error): Likewise.
2177
3af4feb2
PE
21782002-11-24 Paul Eggert <eggert@twinsun.com>
2179
2180 Version 1.75c.
2181
2182 * tests/actions.at (Actions after errors): Use an output format
2183 more similar to that of the Printers and Destructors test.
2184 Test the position of the ';' token too.
2185 (Printers and Destructors): Likewise.
2186 (Printers and Destructors: %glr-parser): Remove for now, to avoid
2187 unnecessarily alarming people when the test fails.
2188
2189 * data/yacc.c (yyerrlab1): Move this label down, so that the
2190 parser does not discard the lookahead token if the user code
2191 invokes YYERROR. This change is required for POSIX conformance.
2192
2193 * lib/error.c: Sync with gnulib.
2194
21952002-11-22 Paul Eggert <eggert@twinsun.com>
2196
2197 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
2198 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
2199 * lib/xmalloc.c: Likewise.
26b4a969 2200
58004308
PE
22012002-11-20 Paul Eggert <eggert@twinsun.com>
2202
2203 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
2204
22052002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 2206
58004308
PE
2207 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
2208 should use `if (! x) abort ();' rather than `assert (x);', and
2209 anyway it's one less thing to worry about configuring.
2210
2211 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
2212 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
2213 and replace all instances of assert with abort.
2214 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
2215 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
2216
2217 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
2218 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
2219 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
2220 hash_find_entry, hash_rehash, hash_insert): Likewise.
2221 * src/conflicts.c (resolve_sr_conflict): Likewise.
2222 * src/lalr.c (set_goto_map, map_goto): Likewise.
2223 * src/nullable.c (nullable_compute): Likewise.
2224 * src/output.c (prepare_rules, token_definitions_output): Likewise.
2225 * src/reader.c (packgram, reader): Likewise.
2226 * src/state.c (state_new, state_free, state_transitions_set,
2227 state_reduction_find): Likewise.
2228 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
2229 symbol_pack): Likewise.
2230 * src/tables.c (conflict_row, pack_vector): Likewise.
2231 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
2232 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
2233 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
2234 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
2235
2236 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
2237 (ARGMATCH_CONSTRAINT): New macro.
2238 (ARGMATCH_ASSERT): Use it.
2239
2240 * src/system.h (verify): New macro.
2241 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
2242 rather than assert.
2243 * src/tables.c (tables_generate): Likewise.
2244
2245 * src/struniq.c (struniq_assert): Now returns void, and aborts
2246 if the assertion is false.
2247 (struniq_assert_p): Remove.
2248 * src/struniq.h: Likewise.
2249
76ae8198
PE
22502002-11-18 Paul Eggert <eggert@twinsun.com>
2251
2252 * data/glr.c (yygetLRActions): Replace `yyindex' with
2253 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
2254 This fixes the regression with Sun ONE Studio 7 cc that I reported in
e3aa65c5 2255 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 2256
d3c4e709
AD
22572002-11-18 Akim Demaille <akim@epita.fr>
2258
2259 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
2260 space.
2261 From Tim Van Holder.
2262
8d8a7238
PE
22632002-11-17 Paul Eggert <eggert@twinsun.com>
2264
2265 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
2266 to "SyntaxError" for consistency with my 2002-11-15 change.
2267
2268 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
2269 not define to {}, since this breaks the common use of `YYDPRINTF
2270 ((...));' if a single statement is desired (e.g. before `else').
2271 Work around GCC warnings by surrounding corresponding calls with
2272 {} if needed.
2273 (yyhasResolvedValue): Remove unused function.
2274 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
2275 loop body.
2276 (yyreportSyntaxError): Renamed from yyreportParseError.
2277 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
2278 All uses changed.
2279 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
2280 extern when possible. Remove unused initializations.
2281
b0937b22
AD
22822002-11-16 Akim Demaille <akim@epita.fr>
2283
2284 Augment the similarity between GLR and LALR traces.
2285
2286 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
2287 (YY_REDUCE_PRINT): New.
2288 (yyparse): Use them.
2289 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
2290 YYDPRINT here.
2291 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
2292 state reached after the reduction/recovery, since...
2293 (yyparse, yyprocessOneStack): Report the state we are entering in.
2294
c5e3e510
AD
22952002-11-16 Akim Demaille <akim@epita.fr>
2296
2297 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
2298 Add support for --trace=skeleton.
2299 * src/scan-skel.l: %option debug.
2300 Scan strings of non-@ or \n instead of character by character.
2301 (scan_skel): Handle trace_skeleton.
2302 (QPUTS): New.
2303 (@output_parser_name@, @output_header_name@): ``Restore'' their
2304 support (used to be M4 macros).
2305 * data/yacc.c: Quote larger chunks, a la glr.c.
2306 * data/lalr1.cc: Likewise.
2307 The header guards are no longer available, so use some other
2308 string than `YYLSP_NEEDED'.
2309
4c6cc1db
AD
23102002-11-16 Akim Demaille <akim@epita.fr>
2311
2312 Make the ``Printers and Destructors'' test more verbose, taking
2313 `yacc.c''s behavior as (possibly wrong) reference.
2314
2315 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
2316 instead of fprint on stdout.
2317 Set and report the last_line of the symbols.
2318 Consistently display values and locations.
2319
6d9e8019
PE
23202002-11-16 Paul Eggert <eggert@twinsun.com>
2321
2322 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
2323
6e649e65
PE
23242002-11-15 Paul Eggert <eggert@twinsun.com>
2325
b25d88f6
PE
2326 * tests/actions.at (Actions after errors): New test case.
2327
6e649e65
PE
2328 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
2329 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
2330 tests/action.at, tests/calc.at, tests/conflicts.at,
2331 tests/cxx-type.at, tests/regression.at:
2332 "parse error" -> "syntax error" for POSIX compatibility.
2333 "parsing stack overflow..." -> "parser stack overflow" so
2334 that code matches Bison documentation.
2335
0f39aab9
AD
23362002-11-15 Akim Demaille <akim@epita.fr>
2337
2338 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
2339 take two BRACED_CODE, not two string_content.
2340 Free the scanner's obstack when we are done.
2341 (code_content): New.
2342 * tests/calc.at: Adjust.
2343 * doc/bison.texinfo: Adjust.
2344 Also, make sure to include the `,' for these declarations.
2345
761c1926
AD
23462002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
2347
2348 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
2349 definition; avoids potential autoreconf problems.
2350
b0f98b10
AD
23512002-11-15 Akim Demaille <akim@epita.fr>
2352
2353 Always check the value returned by yyparse.
2354
2355 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
2356 returned by yyparse.
2357 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
2358 Adjust calls.
2359 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
2360 returned by yyparse.
2361
970785f1
PH
23622002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2363
2364 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
2365 on input.at test.
2366
8fcc7db1
PE
23672002-11-14 Paul Eggert <eggert@twinsun.com>
2368
7ec1b48e
PE
2369 * src/output.c (output_skeleton): Call xfopen instead of
2370 duplicating xfopen's body.
2371
cfff7583 2372 Fix bugs reported by Nelson H. F. Beebe in
e3aa65c5 2373 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 2374
8fcc7db1
PE
2375 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
2376 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
2377 Group compiler. Instead, use "$CC -E bar.c". Include the .h
2378 file twice in the grammar, as an extra check.
2379
2380 * tests/input.at (Torturing the Scanner): Surround the
2381 backslash-newline tests with "#if 0", to make it less likely that
2382 we'll run into compiler bugs. Bring back solitary \ inside
2383 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 2384 test backslash-newline in C character constant.
8fcc7db1 2385
4e8d992c
AD
23862002-11-14 Akim Demaille <akim@epita.fr>
2387
2388 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
2389 status of the compiler.
f32b346d 2390 Calling `exit 1' is no longer needed.
4e8d992c
AD
2391 Reported by Nelson H. F. Beebe.
2392
9501dc6e
AD
23932002-11-14 Akim Demaille <akim@epita.fr>
2394
2395 * tests/atlocal.in (CPPFLAGS): We have config.h.
2396 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
2397 New.
2398 * tests/actions.at, tests/calc.at, tests/conflicts.at,
2399 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
2400 * tests/regression.at, tests/torture.at: Use them for all the
2401 grammars that are to be compiled.
2402 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
2403 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
2404 * doc/bison.texinfo (GLR Parsers): Document `inline'.
2405
18b519c0
AD
24062002-11-14 Akim Demaille <akim@epita.fr>
2407
2408 * doc/bison.texinfo: Various formatting changes (alignments in
2409 samples, additional @group/@end group, GCS in samples.
2410 Use @deffn instead of simple @table to define the directives,
2411 macros, variables etc.
2412
9a86cdb9
PE
24132002-11-13 Paul Eggert <eggert@twinsun.com>
2414
daa33def 2415 Fix some bugs reported by Albert Chin-A-Young in
e3aa65c5 2416 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 2417
daa33def 2418 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 2419 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
2420 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
2421 * tests/headers.at (export YYLTYPE): Likewise.
2422
2423 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 2424 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 2425
9a86cdb9
PE
2426 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
2427 comments, since they're not portable. Use GNU coding style.
2428
9c1e26bd
AD
24292002-11-13 Akim Demaille <akim@epita.fr>
2430
2431 * data/yacc.c: Leave bigger chunks of quoted text.
2432 (YYDSYMPRINTF): New.
2433 Use it to report symbol activities.
2434 * data/glr.c (YYDSYMPRINTF): New.
2435 Use it.
2436
87f721cc
PE
24372002-11-12 Paul Eggert <eggert@twinsun.com>
2438
2439 Version 1.75b.
2440
2441 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
2442 (yyglrReduce): Return yyok, not 0.
2443 This should avoid the enumerated-type warnings reported
464c6927 2444 by Nelson H. F. Beebe in
e3aa65c5 2445 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
2446
2447 * lib/bbitset.h (BITSET_INLINE): Remove.
2448 * lib/bitset.h [! BITSET_INLINE]: Remove.
2449 (bitset_set, bitset_reset, bitset_test): Rename local vars
2450 to avoid shadowing warnings by GCC.
2451
2452 * data/glr.c (inline): Remove #define. It's the user's
2453 responsibility to #define it away, just like 'const'.
464c6927 2454 This fixes one of the bugs reported by Nelson H. F. Beebe in
e3aa65c5 2455 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 2456
87f721cc
PE
2457 * Makefile.maint (po-check): Scan .l and .y files instead of the
2458 .c and the .h files that they generate. This fixes the bug
2459 reported by Tim Van Holder in:
e3aa65c5 2460 <http://mail.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
2461 Look for N_ as well as for _. Try to avoid matching #define for
2462 N_ and _.
2463 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
2464 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
2465 * src/scan-gram.l: Revamp regular expressions so that " and '
2466 do not confuse xgettext.
2467
2468 * src/struniq.h (struniq_new): Do not declare the return type
2469 to be 'const'; this violates the C standard.
2470 * src/struniq.c (struniq_new): Likewise.
2471
be14ade5
AD
24722002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
2473
2474 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
2475 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
2476 linker.
2477
05291fbc
AD
24782002-11-12 Akim Demaille <akim@epita.fr>
2479
2480 * Makefile.maint: Sync with Autoconf:
2481 (local_updates): New.
2482
1f5fd52e
AD
24832002-11-12 Akim Demaille <akim@epita.fr>
2484
2485 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
2486
283f1e64
AD
24872002-11-12 Akim Demaille <akim@epita.fr>
2488
2489 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
2490 locations.
2491
886b69d1
AD
24922002-11-12 Akim Demaille <akim@epita.fr>
2493
2494 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
2495 not yyvalue.
2496
3df37415
AD
24972002-11-12 Akim Demaille <akim@epita.fr>
2498
2499 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
2500 Use it to test the GLR parser.
2501
7bd6c77e
AD
25022002-11-12 Akim Demaille <akim@epita.fr>
2503
2504 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
2505 defines it.
2506 * data/glr.c (yystos): New.
2507 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
2508 (YYDSYMPRINT): New.
2509 (yyval): Don't define it, it is handled via M4.
2510 (yyrecoverParseError): Free verbosely the discarded symbols.
2511 * data/yacc.c (yysymprint): Remove, rather...
2512 (b4_yysymprint_generate): invoke.
2513 * data/c.m4 (b4_yysymprint_generate): New.
2514 Accept pointers as arguments, as opposed to the version from
2515 yacc.c.
2516 (b4_yydestruct_generate): Likewise.
2517 * tests/cations.at (Printers and Destructors): Use Bison directives
2518 instead of CPP macros.
2519 Don't rely on internal details.
2520
b0400cc6
AD
25212002-11-12 Akim Demaille <akim@epita.fr>
2522
2523 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
2524 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
2525 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
2526 it against YYEMPTY and so forth), work on yytoken (i.e., set
2527 it to YYEMPTY etc.).
2528 (yydestruct): Replace with a b4_yydestruct_generate invocation.
2529 (b4_symbol_actions): Remove.
2530 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
2531 for 0, end-of-input.
2532
72f889cc
AD
25332002-11-12 Akim Demaille <akim@epita.fr>
2534
2535 * doc/bison.texinfo (Destructor Decl): New.
2536
b1ae9233
AD
25372002-11-12 Akim Demaille <akim@epita.fr>
2538
2539 * src/tables.c (tables_generate): Use free for pointers that
2540 cannot be NULL, not XFREE.
2541 (pack_vector): Use assert, not fatal, for bound violations.
2542 * src/state.c (state_new): Likewise.
2543 * src/reader.c (reader): Likewise.
2544 * src/lalr.c (set_goto_map): Likewise.
72f889cc 2545 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
2546 the file name.
2547
7ec2d4cd
AD
25482002-11-12 Akim Demaille <akim@epita.fr>
2549
2550 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
2551 Restore.
2552 * src/scan-gram.l (last_string): Is global to the file, not to
2553 yylex.
2554 * src/parse-gram.y (input): Don't append the epilogue here,
2555 (epilogue.opt): do it here, and free the scanner's obstack.
2556 * src/reader.c (epilogue_set): Rename as...
2557 (epilogue_augment): this.
2558 * data/c.m4 (b4_epilogue): Defaults to empty.
2559
573a6cd3
AD
25602002-11-12 Akim Demaille <akim@epita.fr>
2561
2562 * src/getargs.c (long_options): Remove duplicates.
2563 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
2564 Remove.
2565 * doc/bison.rnh: Remove.
2566 * doc/bison.texinfo (VMS Invocation): Remove.
2567
95612cfa
AD
25682002-11-12 Akim Demaille <akim@epita.fr>
2569
2570 * src/struniq.h, src/struniq.c (struniq_t): Is const.
2571 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
2572
2573 Use struniq for symbols.
2574
2575 * src/symtab.h (symbol_t): The tag member is a struniq.
2576 (symbol_type_set): Adjust.
2577 * src/symtab.c (symbol_new): Takes a struniq.
2578 (symbol_free): Don't free the tag member.
2579 (hash_compare_symbol_t, hash_symbol_t): Rename as...
2580 (hash_compare_symbol, hash_symbol): these.
2581 Use the fact that tags as struniqs.
2582 (symbol_get): Use struniq_new.
2583 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
2584 Returns a strniq.
2585 * src/reader.h (merger_list, grammar_currentmerge_set): The name
2586 and type members are struniqs.
2587 * src/reader.c (get_merge_function)
2588 (grammar_current_rule_merge_set): Adjust.
2589 (TYPE, current_type): Are struniq.
2590
2591 Use struniq for file names.
2592
2593 * src/files.h, src/files.c (infile): Split into...
2594 (grammar_file, current_file): these.
2595 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
2596 * src/reduce.c (reduce_print): Likewise.
2597 * src/getargs.c (getargs): Likewise.
2598 * src/complain.h, src/complain.c: Likewise.
2599 * src/main.c (main): Call struniqs_new early enough to use it for
2600 file names.
2601 Don't free the input file name.
2602
3e6656f9
AD
26032002-11-12 Akim Demaille <akim@epita.fr>
2604
2605 * src/symtab.c (symbol_free): Remove dead deactivated code:
2606 type_name are properly removed.
2607 Don't use XFREE to free items that cannot be NULL.
2608 * src/struniq.h, src/struniq.c: New.
2609 * src/main.c (main): Initialize/free struniqs.
2610 * src/parse-gram.y (%union): Add astruniq member.
2611 (yyprint): Adjust.
2612 * src/scan-gram.l (<{tag}>): Return a struniq.
2613 Free the obstack bit that used to store it.
2614 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
2615
7672019c
PE
26162002-11-11 Paul Eggert <eggert@twinsun.com>
2617
2618 Revamp to fix many (but not all) of the C- and M4-related quoting
2619 problems. Among other things, this fixes the Bison bug reported
2620 by Jan Hubicka when processing the Bash grammar; see:
e3aa65c5 2621 <http://mail.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
2622
2623 Use new @ escapes consistently. Represent brackets with @{ and @}
2624 rather than @<:@ and @:>@, since this works a bit better with dumb
2625 editors like vi. Represent @ with @@, since @ is now consistently
2626 an escape. Use @oline@ and @ofile@ rather than __oline__ and
2627 __ofile__, to avoid unexpected expansions. Similarly, use @output
2628 rather than #output.
2629
2630 * data/c.m4 (b4_copyright): Omit file name from comment, since
2631 the file name could contain "*/".
2632 (b4_synclines_flag): Don't quote the 2nd argument; it should already
2633 be quoted. All uses changed.
2634
2635 * data/glr.c: Use new @ escapes consistently.
2636 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
2637 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
2638 Remove, since they couldn't handle arbitrary characters in file
2639 names.
2640 * data/lalr1.cc: Likewise.
2641 * data/yacc.c: Likewise.
2642
2643 * src/files.c (output_infix): Remove; all uses removed.
2644 * src/files.h: Likewise.
2645
2646 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
2647 mishandled funny characters in file names, and anyway it isn't
2648 needed any more.
2649 * data/yacc.c: Likewise.
2650 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
2651
2652 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
2653 * data/yacc.c: Likewise.
2654
2655 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
2656 strings now.
2657 (muscle_init): Quote filename as a C string.
2658 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
2659 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
2660 * src/output.c (escaped_file_name_output): New function.
2661 (prepare_symbols): Quote tokens for M4.
2662 (prepare): Don't insert output_infix, output_prefix,
2663 output_parser_name, output_header_name; this is now down by scan-skel.
2664 Insert skeleton as a C string.
2665
2666 * src/output.c (user_actions_output, symbol_destructors_output,
2667 symbol_printers_output): Quote filenames for C and M4.
2668 * src/reader.c (prologue_augment, epilogue_set): Likewise.
2669
2670 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
2671 escapes other than \\ and \'; this simplifies the code.
2672 (<SC_STRING>): Likewise, for \\ and \".
2673 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
2674 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
2675 Use new escapes @{ and @} for [ and ].
2676
2677 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
2678 them with auto vars.
2679 Switch to new escape scheme, where @ is the escape character uniformly.
2680 Abort if a stray escape character is found. Avoid unbounded input
2681 buffer when parsing non-escaped text.
2682
2683 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
2684 __oline__, #output, $@, and @{ do not have unintended meanings.
2685
acea4f3b
PE
26862002-11-09 Paul Eggert <eggert@twinsun.com>
2687
2688 Fix the test failure due to GCC warnings described in
e3aa65c5 2689 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
2690 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
2691 evaluate to 0 if it's impossible for NINF to be in the respective
2692 table.
2693 (yygetLRActions, yyrecoverParseError): Use them.
2694
2695 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
2696 counted in the token inserted at end of file. Now takes
2697 location_t *, not location_t, so that the location can be
2698 adjusted. All uses changed.
2699
2700 * tests/regression.at (Invalid inputs): Adjust wording in
2701 diagnostic to match the new behavior.
2702
2703 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
2704 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
2705 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
2706 abort ();'. This reduces the runtime of the "Many lookaheads"
2707 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
2708 GCC 3.2.
2709
20ef1ad5
PE
27102002-11-07 Paul Eggert <eggert@twinsun.com>
2711
2712 * src/parse-gram.y (CHARACTER): Remove unused token.
2713 All uses removed.
2714
2715 * src/scan-gram.l: Remove stack option. We no longer use the
2716 stack, since the stack was never deeper than 1; instead, use the
2717 new auto var c_context to record the stacked value.
2718
2719 Remove nounput option. At an unexpected end of file, we now unput
2720 the minimal input necessary to end cleanly; this simplifies the
2721 code.
2722
2723 Avoid unbounded token sizes where this is easy.
2724
2725 (unexpected_end_of_file): New function.
2726 Use it to systematize the error message on unexpected EOF.
2727 (last-string): Now auto, not static.
2728 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
2729 (scanner_last_string_free): Remove; not used.
2730 (percent_percent_count): Move decl to just before use.
2731 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
2732 not the (never otherwised-used) CHARACTER.
2733
93724f13
AD
27342002-11-07 Akim Demaille <akim@epita.fr>
2735
2736 Let yyerror always receive the msg as last argument, so that
2737 yyerror can be variadic.
2738
2739 * data/yacc.c (b4_yyerror_args): New.
2740 Use it when calling yyerror.
2741 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
2742 Use it when calling yyerror.
2743 * doc/bison.texinfo (Error Reporting): Adjust.
2744 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
2745 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
2746
6e40b4eb
AD
27472002-11-06 Akim Demaille <akim@epita.fr>
2748
2749 #line should have quoted strings.
2750 Ideally, this should be done by m4_quotearg.
2751
2752 * src/scan-skel.l: Include quotearg.h.
2753 Quote __ofile__.
2754 * src/output.c (symbol_printers_output)
2755 (symbol_destructors_output): Quote the file name.
2756
2dfbfc12
AD
27572002-11-06 Akim Demaille <akim@epita.fr>
2758
2759 * tests/regression.at (Invalid inputs): Adjust to the recent
2760 messages.
2761
437c2d80
AD
27622002-11-06 Akim Demaille <akim@epita.fr>
2763
2764 Restore --no-lines.
2765 Reported by Jim Kent.
2766
2767 * data/c.m4 (b4_syncline): New.
2768 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
2769 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
2770 * src/output.c (user_actions_output): Likewise.
2771 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 2772 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 2773
900c5db5
AD
27742002-11-06 Akim Demaille <akim@epita.fr>
2775
2776 * src/main.c (main): Free `infile'.
2777 * src/scan-gram.l (handle_syncline): New.
2778 Recognize `#line'.
2779 * src/output.c (user_actions_output, symbol_destructors_output)
2780 (symbol_printers_output): Use the location's file name, not
2781 infile.
2782 * src/reader.c (prologue_augment, epilogue_set): Likewise.
2783
e183b123 27842002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 2785
e183b123 2786 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 2787 either has GLR conflict entries.
e183b123 2788
193eb6b7
PE
27892002-11-05 Paul Eggert <eggert@twinsun.com>
2790
e183b123
PE
2791 * src/scan-gram.l: Use more accurate diagnostics, e.g.
2792 "integer out of range" rather than "invalid value".
2793 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
2794 accordingly.
2795
193eb6b7
PE
2796 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
2797 Also, remove one static variable in the scanner.
2798
2799 * src/scan-gram.l (braces_level): Now auto, not static.
2800 Initialize to zero if the compiler is being picky.
2801 (INITIAL): Clear braces_level instead of incrementing it.
2802 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
2803 as POSIX 1003.1-2001 requires.
2804 * src/system.h (IF_LINT): New macro, taken from coreutils.
2805 * configure.ac: Define "lint" if --enable-gcc-warnings.
2806
29c01725
AD
28072002-11-05 Akim Demaille <akim@epita.fr>
2808
2809 * src/scan-gram.l: When it starts with `%', complain about the
2810 whole directive, not just that `invalid character: %'.
2811
8aeac3ca
AD
28122002-11-04 Akim Demaille <akim@epita.fr>
2813
2814 * Makefile.maint: Update from Autoconf.
2815 (update, cvs-update, po-update, do-po-update): New.
2816
793a58bb
AD
28172002-11-04 Akim Demaille <akim@epita.fr>
2818
2819 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
2820 and yyerror.
2821 Have yyerror `use' its arguments.
2822 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
2823 returns true when location & yacc & pure & parse-param.
2824 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
2825
c4d720cd
AD
28262002-11-04 Akim Demaille <akim@epita.fr>
2827
2828 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
2829 clashes.
2830 * src/scan-gram.l: Use [\'] instead of ['] to pacify
2831 font-lock-mode.
2832 Use complain_at.
2833 Use quote, not quote_n since LOCATION_PRINT no longer uses the
2834 slot 0.
2835
613a0dc5
PE
28362002-11-03 Paul Eggert <eggert@twinsun.com>
2837
2838 * src/reader.c (get_merge_function, grammar_current_rule_check):
2839 Use consistent diagnostics for reporting type name clashes.
2840 Quote the types with <>, for consistency with Yacc.
2841 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
2842
2a8d363a
AD
28432002-11-03 Akim Demaille <akim@epita.fr>
2844
2845 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
2846 New.
2847 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
2848 (b4_parse_param): Remove.
2849 Use b4_identification.
2850 Propagate b4_pure_args where needed to pass them to yyerror.
2851 * data/glr.m4 (b4_parse_param): Remove.
2852 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
2853 (b4_lpure_formals): New.
2854 Use b4_identification.
2855 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
2856 b4_user_formals and b4_user_args.
2857 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
2858 (yyreportAmbiguity): When using a pure parser, also need
2859 the location, and the parse-params.
2860 Adjust callers.
2861 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
2862 When using a pure parser, also need the parse-params.
2863 Adjust callers.
2864 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
2865 (%pure-parser + %parse-param) LALR and GLR parsers.
2866 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
2867 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
2868 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
2869 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
2870 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
2871 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
2872 * doc/bison.texinfo: Untabify the whole file.
2873 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
2874 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
2875 (Error Reporting): Adjust to these new directives.
2876 Document %error-verbose, deprecate YYERROR_VERBOSE.
2877
9e32add8
AD
28782002-11-03 Akim Demaille <akim@epita.fr>
2879
2880 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
2881 AT_CHECK_CALC_GLR invocations to use % directives, instead of
2882 command line options.
2883 * tests/cxx-type.at: Formatting changes.
2884
b02d90a5
PE
28852002-11-03 Paul Eggert <eggert@twinsun.com>
2886
2887 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
2888 to count columns correctly, and to check for invalid inputs.
9e32add8 2889
b02d90a5
PE
2890 Use mbsnwidth to count columns correctly. Account for tabs, too.
2891 Include mbswidth.h.
2892 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
2893 (extend_location): New function.
2894 (YY_LINES): Remove.
2895
2896 Handle CRLF in C code rather than in Lex code.
2897 (YY_INPUT): New macro.
2898 (no_cr_read): New function.
2899
2900 Scan UCNs, even though we don't fully handle them yet.
2901 (convert_ucn_to_byte): New function.
2902
2903 Handle backslash-newline correctly in C code.
2904 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
2905 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
2906 all uses changed.
2907 (tag, splice): New EREs. Do not allow NUL or newline in tags.
2908 Use {splice} wherever C allows backslash-newline.
2909 YY_STEP after space, newline, vertical-tab.
2910 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 2911
b02d90a5
PE
2912 (letter, id): Don't assume ASCII; e.g., spell out a-z.
2913
2914 ({int}, handle_action_dollar, handle_action_at): Check for integer
2915 overflow.
9e32add8 2916
b02d90a5
PE
2917 (YY_STEP): Omit trailing semicolon, so that it's more like C.
2918
2919 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
2920 as well as \000. Check for UCHAR_MAX, not 255.
2921 Allow \x with an arbitrary positive number of digits, as in C.
2922 Check for overflow here.
2923 Allow \? and UCNs, for compatibility with C.
2924
2925 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
2926 with quote slot used by complain_at.
2927
2928 * tests/input.at: Add tests for backslash-newline, m4 quotes
2929 in symbols, long literals, and funny escapes in strings.
2930
2931 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
2932 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
2933 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
2934 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
2935 * m4/mbswidth.m4: New file, from GNU coreutils.
2936
2937 * doc/bison.texinfo (Grammar Outline): Document // comments.
2938 (Symbols): Document that trigraphs have no special meaning in Bison,
2939 nor is backslash-newline allowed.
2940 (Actions): Document that trigraphs have no special meaning.
2941
2942 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
2943 no longer used.
2944
29452002-11-02 Paul Eggert <eggert@twinsun.com>
2946
2947 * src/reader.c: Don't include quote.h; not needed.
2948 (get_merge_function): Reword warning to be consistent with
2949 type clash diagnostic in grammar_current_rule_check.
2950
2951 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
2952 bug in trigraph handling.
2953
2954 * src/output.c (prepare_symbols): When printing token names,
2955 escape "[" as "@<:@" and likewise for "]".
2956
2957 * src/system.h (errno): Remove declaration, as we are now
2958 assuming C89 or better, and C89 guarantees errno.
2959
762b212b
PE
29602002-10-30 Paul Eggert <eggert@twinsun.com>
2961
2962 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
2963 Check for close failures.
2964 * src/files.h (xfclose): Return void, not int, since it always
2965 returned zero.
2966 * src/files.c (xfclose): Likewise. Report I/O error if ferror
2967 indicates one.
2968 * src/output.c (output_skeleton): Use xfclose rather than fclose
2969 and ferror. xfclose now checks ferror.
2970
2971 * data/glr.c (YYLEFTMOST_STATE): Remove.
2972 (yyreportTree): Use a stack-based leftmost state. This avoids
2973 our continuing battles with bogus warnings about initializers.
2974
56100c60
AD
29752002-10-30 Akim Demaille <akim@epita.fr>
2976
2977 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
2978 #if.
2979
51b4a04c
PH
29802002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2981
2982 * tests/glr-regr1.at: New test for reported regressions.
2983 * tests/testsuite.at: Add glr-regr1.at test.
2984 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 2985
bf1ebda2
PE
29862002-10-24 Paul Eggert <eggert@twinsun.com>
2987
5c16c6b1
PE
2988 Version 1.75a.
2989
bf1ebda2
PE
2990 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
2991 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
2992 we use malloc. Don't assume 'A' through 'Z' are contiguous.
2993 Don't assume strdup exists; POSIX says its an XSI extension.
2994 Check for buffer overflow on input.
2995
b526ee61
AD
29962002-10-24 Akim Demaille <akim@epita.fr>
2997
2998 * src/output.c (output_skeleton): Don't disable M4sugar comments
2999 too soon: it results in comments being expanded.
3000 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
3001 first output.
3002
f1886bb2
AD
30032002-10-24 Akim Demaille <akim@epita.fr>
3004
3005 * data/yacc.c (m4_int_type): New.
3006 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
3007 char' as only yacc.c wants K&R portability.
3008 * data/glr.c (yysigned_char): Remove.
3009 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
3010 Reported by Quoc Peyrot.
3011
c5576256
PE
30122002-10-23 Paul Eggert <eggert@twinsun.com>
3013
3014 * src/main.c (main): With --trace=time, report times even if a
3015 non-fatal error occurs. Formerly, the times were reported in some
3016 such cases but not in others.
3017 * src/reader.c (reader): Just return if a complaint has been issued,
3018 instead of exiting, so that 'main' can report times.
3019
27b0ffea
AD
30202002-10-22 Akim Demaille <akim@epita.fr>
3021
3022 * src/system.h: Include sys/types.
3023 Reported by Bert Deknuydt.
3024
223a7883
PE
30252002-10-23 Paul Eggert <eggert@twinsun.com>
3026
3027 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
3028 Suggested by Art Haas.
3029
30302002-10-22 Paul Eggert <eggert@twinsun.com>
3031
3032 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
3033 decl; not needed any more.
3034 * src/main.c (main): Use return to exit, undoing yesterday's change.
3035 The last OS that we could find where this wouldn't work is
3036 SunOS 3.5, and that's too old to worry about now.
3037
3038 * data/glr.c (struct yyltype): Define members even when not
3039 doing locations. This is more consistent with yacc.c, and it
3040 works around the following bug reports:
e3aa65c5
PE
3041 http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
3042 http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 3043
223a7883
PE
3044 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
3045 @acronym consistently. Standardize on "Yacc" instead of "YACC",
3046 "Algol" instead of "ALGOL". Give a bit more history about BNF.
3047
8b76775a
AD
30482002-10-22 Akim Demaille <akim@epita.fr>
3049
3050 * data/README: New.
3051
6db10d14
PE
30522002-10-21 Paul Eggert <eggert@twinsun.com>
3053
3054 Be consistent about 'bool'; the old code used an enum in one
3055 module and an int in another, and this violates the C standard.
3056 * m4/stdbool.m4: New file, from coreutils 4.5.3.
3057 * configure.ac (AC_HEADER_STDBOOL): Add.
3058 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
3059 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
3060 * src/symtab.c (hash_compare_symbol_t): Likewise.
3061 * src/system.h (bool, false, true): Use a definition consistent
3062 with ../lib/hash.c. All uses changed.
3063
3064 * src/complain.c (warning_issued): Renamed from warn_message_count,
3065 so that we needn't worry about integer overflow (!).
3066 Now of type bool. All uses changed.
3067 (complaint_issued): Renamed from complain_message_count; likewise.
3068
3069 * src/main.c (main): Use exit to exit with failure.
27b0ffea 3070
6db10d14
PE
3071 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
3072 rather than 1 and 0.
3073 * src/main.c (main): Likewise.
3074 * src/getargs.c (getargs): Likewise.
3075 * src/reader.c (reader): Likewise.
3076
3077 * src/getarg.c (getargs): Remove duplicate code for
3078 "Try `bison --help'".
3079
3080 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
3081 What was that "2" for?
3082
3083 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
3084 * src/getargs.c (usage): Likewise.
3085
3086 * src/getargs.c (getargs): When there are too few operands, report
3087 the last one. When there are too many, report the first extra
3088 one. This is how diffutils does it.
3089
92a060fd
PE
30902002-10-20 Paul Eggert <eggert@twinsun.com>
3091
3092 Remove K&R vestiges.
3093 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
3094 * src/complain.c (VA_START): Remove. Assume prototypes.
3095 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
3096 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
3097 fatal): Assume prototypes.
3098 * src/complain.h: Assume prototypes.
3099 * src/system.h (PARAMS): Remove.
3100 Include <limits.h> unconditionally, since it's guaranteeed even
3101 for a freestanding C89 compiler.
3102 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
3103 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 3104
e7cb57c0
AD
31052002-10-20 Akim Demaille <akim@epita.fr>
3106
3107 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
3108 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
3109 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
3110 (yyresolveStates, yyresolveAction, yyresolveStack)
3111 (yyprocessOneStack): Use them.
3112 (yy_reduce_print): New.
3113 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
3114
0245f82d
AD
31152002-10-20 Akim Demaille <akim@epita.fr>
3116
3117 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
3118 arguments and output `void'.
3119 (b4_c_function): Rename as...
3120 (b4_c_function_def): this.
3121 (b4_c_function_decl, b4_c_ansi_function_def)
3122 (b4_c_ansi_function_decl): New.
3123 Change the interpretation of the arguments: before `int, foo', now
3124 `int foo, foo'.
3125 * data/yacc.c (yyparse): Prototype and define thanks to these.
3126 Adjust b4_c_function_def uses.
3127 * data/glr.c (yyparse): Likewise, but ANSI only.
3128
39912f52
AD
31292002-10-20 Akim Demaille <akim@epita.fr>
3130
3131 * src/output.c (prepare): Move the definition of `tokens_number',
3132 `nterms_number', `undef_token_number', `user_token_number_max'
3133 to...
3134 (prepare_tokens): Here.
3135 (prepare_tokens): Rename as...
3136 (prepare_symbols): this.
3137 (prepare): Move the definition of `rules_number' to...
3138 (prepare_rules): here.
3139 (prepare): Move the definition of `last', `final_state_number',
3140 `states_number' to...
3141 (prepare_states): here.
3142 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
3143
20c1e2ad
AD
31442002-10-20 Akim Demaille <akim@epita.fr>
3145
3146 * src/tables.h, src/tables.c, src/output.c: Comment changes.
3147
21964f43
AD
31482002-10-20 Akim Demaille <akim@epita.fr>
3149
3150 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
3151 * data/c.m4: here.
3152
66d30cd4
AD
31532002-10-20 Akim Demaille <akim@epita.fr>
3154
3155 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
3156 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
3157 `pair'.
3158 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
3159 `name' to...
3160 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
3161 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
3162 These.
3163
95f2c9fe
PE
31642002-10-19 Paul Eggert <eggert@twinsun.com>
3165
3166 Do not create a temporary file, as that involves security and
3167 cleanup headaches. Instead, use a pair of pipes.
3168 Derived from a suggestion by Florian Krohm.
3169 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
3170 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
3171 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
3172 (BISON_PREREQ_SUBPIPE): Add.
3173 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
3174 Add subpipe.h, subpipe.c.
3175 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
3176 * po/POTFILES.in: Add lib/subpipe.c.
3177 * src/output.c: Include "subpipe.h".
3178 (m4_invoke): Remove decl.
3179 (scan_skel): New decl.
3180 (output_skeleton): Use pipe rather than temporary file for m4 input.
3181 Check that m4sugar.m4 is readable, to avoid deadlock.
3182 Check for pipe I/O error.
3183 * src/scan-skel.l (readpipe): Remove decl.
3184 (scan_skel): New function, to be used in place of m4_invoke.
3185 Read from stream rather than file.
66d30cd4 3186
95f2c9fe
PE
3187 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
3188 float, as this generates a warning on Solaris 8 + GCC 3.2 with
3189 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
3190 this generates a more-accurate value anyway.
3191
3192 * lib/timevar.c (timervar_accumulate): Rename locals to
3193 avoid confusion with similarly-named more-global.
3194 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
3195
3196 * src/output.c (prepare): Use xstrdup to convert char const *
3197 to char *, to avoid GCC warning.
3198
c19988b7
AD
31992002-10-19 Akim Demaille <akim@epita.fr>
3200
3201 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
3202 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
3203 Use them to have `calc.y' ready for %pure-parser.
3204 * data/yacc.c (YYLEX): Pass a yylex return type to
3205 b4_c_function_call.
3206
ae7453f2
AD
32072002-10-19 Akim Demaille <akim@epita.fr>
3208
3209 Prototype support of %lex-param and %parse-param.
3210
3211 * src/parse-gram.y: Add the definition of the %lex-param and
3212 %parse-param tokens, plus their rules.
3213 Drop the `_' version of %glr-parser.
3214 Add the "," token.
3215 * src/scan-gram.l (INITIAL): Scan them.
3216 * src/muscle_tab.c: Comment changes.
3217 (muscle_insert, muscle_find): Rename `pair' as `probe'.
3218 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
3219 (muscle_entry_s): The `value' member is no longer const.
3220 Adjust all dependencies.
3221 * src/muscle_tab.c (muscle_init): Adjust: use
3222 MUSCLE_INSERT_STRING.
3223 Initialize the obstack earlier.
3224 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
3225 (muscle_pair_list_grow): New.
3226 * data/c.m4 (b4_c_function_call, b4_c_args): New.
3227 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
3228 * tests/calc.at: Use %locations, not --locations.
3229 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
3230
0e575721
AD
32312002-10-19 Akim Demaille <akim@epita.fr>
3232
3233 * src/getargs.c (usage): Take status as argument and exit
3234 accordingly.
3235 Report the traditional `Try ... --help' message when status != 0.
3236 (usage, version): Don't take a FILE * as arg, it is pointless.
3237 (getargs): When there is an incorrect number of arguments, make it
3238 an error, and report it GNUlically thanks to `usage ()'.
3239
724ce7f5
PE
32402002-10-18 Paul Eggert <eggert@twinsun.com>
3241
3a781eb2
PE
3242 * data/glr.c (yyreportParseError): Don't assume that sprintf
3243 yields the length of the printed string, as this is not true
3244 on SunOS 4.1.4. Reported by Peter Klein.
3245
724ce7f5
PE
3246 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
3247 * tests/conflicts.at (%nonassoc and eof): Likewise.
3248 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
3249
473d0a75
AD
32502002-10-17 Akim Demaille <akim@epita.fr>
3251
3252 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
3253 * src/getargs.c (trace_types, trace_args): Adjust.
3254 * src/reader.c (grammar_current_rule_prec_set)
3255 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
3256 Standardize error messages.
3257 And s/@prec/%prec/!
3258 (reader): Use trace_flag to enable scanner/parser debugging,
3259 instead of an adhoc scheme.
3260 * src/scan-gram.l: Remove trailing debugging code.
3261
e76d2469
PE
32622002-10-16 Paul Eggert <eggert@twinsun.com>
3263
93e2236a
PE
3264 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
3265 MUSCLE_TAB_H.
3266
e76d2469
PE
3267 * NEWS: Officially drop support for building Bison with K&R C,
3268 since it didn't work anyway and it's not worth worrying about.
3269 * Makefile.maint (wget_files): Remove ansi2knr.c.
3270 (ansi2knr.c-url_prefix): Remove.
3271 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
3272 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
3273 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
3274
5bd1c419
PE
32752002-10-15 Paul Eggert <eggert@twinsun.com>
3276
3277 Stop using the "enum_" trick for K&R-style function definitions;
3278 it confused me, and I was the author! Instead, assume that people
3279 who want to use K&R C compilers (when using these modules in GCC,
3280 perhaps?) will run ansi2knr.
3281
3282 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
3283 All uses of "enum_" changed to "enum ".
3284 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
3285 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 3286
5bd1c419
PE
3287 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
3288 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
3289 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
3290 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
3291 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
3292 abitset_not, abitset_ones, abitset_or, abitset_or_and,
3293 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
3294 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
3295 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
3296 Use function prototypes; this removes the need for declaring
3297 static functions simply to provide their prototypes.
3298 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
3299 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
3300 bitset_count_, bitset_create, bitset_dump, bitset_first,
3301 bitset_free, bitset_init, bitset_last, bitset_next,
3302 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
3303 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
3304 bitset_print, bitset_release_memory, bitset_toggle_,
3305 bitset_type_choose, bitset_type_get, bitset_type_name_get,
3306 debug_bitset): Likewise.
3307 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
3308 * lib/bitset_stats.c (bitset_log_histogram_print,
3309 bitset_percent_histogram_print, bitset_stats_and,
3310 bitset_stats_and_cmp, bitset_stats_and_or,
3311 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
3312 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
3313 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
3314 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
3315 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
3316 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
3317 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
3318 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
3319 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
3320 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
3321 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
3322 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
3323 bitset_stats_zero): Likewise.
3324 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
3325 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
3326 bitsetv_dump, debug_bitsetv): Likewise.
3327 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
3328 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
3329 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
3330 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
3331 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
3332 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
3333 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
3334 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
3335 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
3336 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
3337 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
3338 Likewise.
3339 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
3340 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
3341 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
3342 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
3343 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
3344 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
3345 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
3346 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
3347 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
3348 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
3349 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 3350
ae26e1f0
AD
33512002-10-14 Akim Demaille <akim@epita.fr>
3352
3353 Version 1.75.
3354
d43baf71
AD
33552002-10-14 Akim Demaille <akim@epita.fr>
3356
3357 * tests/Makefile.am (maintainer-check-posix): New.
3358
7ebc83e3
AD
33592002-10-14 Akim Demaille <akim@epita.fr>
3360
3361 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
3362 member.
3363
05846dae
AD
33642002-10-14 Akim Demaille <akim@epita.fr>
3365
3366 * src/tables.c (table_ninf_remap): base -> tab.
3367 Reported by Matt Rosing.
3368
1318e37d
PE
33692002-10-14 Paul Eggert <eggert@twinsun.com>
3370
447fbb17
PE
3371 * tests/action.at, tests/calc.at, tests/conflicts.at,
3372 tests/cxx-type.at, tests/headers.at, tests/input.at,
3373 tests/regression.at, tests/synclines.at, tests/torture.at:
3374 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
3375 so that the tests still work even if POSIXLY_CORRECT is set.
3376 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 3377
1318e37d
PE
3378 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
3379 for portability to K&R hosts. Fix typo: signed char is guaranteed
3380 only to 127, not to 128.
3381 * data/glr.c (yysigned_char): New type.
3382 * data/yacc.c (yysigned_char): Likewise.
3383 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
3384
cc0f0794
PE
33852002-10-13 Paul Eggert <eggert@twinsun.com>
3386
5038f418
PE
3387 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
3388 true due to limited range of data type" warning from GCC.
3389
cc0f0794
PE
3390 * data/c.m4 (b4_token_defines): Protect against double-inclusion
3391 by wrapping enum yytokentype's definition inside #ifndef
3392 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
3393
6fed0802
AD
33942002-10-13 Akim Demaille <akim@epita.fr>
3395
3396 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
3397 Un yy- yyrhs to avoid the name clash with the global YYRHS.
3398
32f0598d
AD
33992002-10-13 Akim Demaille <akim@epita.fr>
3400
3401 * Makefile.maint: Update from Autoconf 2.54.
3402 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
3403
7ea9a33f
AD
34042002-10-13 Akim Demaille <akim@epita.fr>
3405
3406 * src/print.c (print_state): Separate the list of solved conflicts
3407 from the other items.
3408 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
3409
ea99527d
AD
34102002-10-13 Akim Demaille <akim@epita.fr>
3411
3412 Let nondeterministic skeletons be usable with deterministic
3413 tables.
3414
3415 With the patch, GAWK compiled by GCC without -O2 passes its test
3416 suite using a GLR parser driven by LALR tables. It fails with -O2
3417 because `struct stat' gives two different answers on my machine:
3418 88 (definition of an auto var) and later 96 (memset on this var).
3419 Hence the stack is badly corrumpted. The headers inclusion is to
3420 blame: if I move the awk.h inclusion before GLR's system header
3421 inclusion, the two struct stat have the same size.
3422
3423 * src/tables.c (pack_table): Always create conflict_table.
3424 (token_actions): Always create conflict_list.
3425 * data/glr.c (YYFLAG): Remove, unused.
3426
f377f69f
AD
34272002-10-13 Akim Demaille <akim@epita.fr>
3428
3429 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
3430 (O0FLAGS): New.
3431 (VALGRIND, GXX): New.
3432 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
3433 * tests/bison.in: Run $PREBISON a pre-command.
3434 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
3435 (maintainer-check-g++): New.
3436 * Makefile.am (maintainer-check): New.
3437
2a1fe6ed
AD
34382002-10-13 Akim Demaille <akim@epita.fr>
3439
3440 * data/glr.c: Formatting changes.
3441 Tweak some trace messages to match yacc.c's.
3442
f50adbbd
AD
34432002-10-13 Akim Demaille <akim@epita.fr>
3444
3445 GLR parsers sometimes raise parse errors instead of performing the
3446 default reduction.
3447 Reported by Charles-Henry de Boysson.
3448
3449 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
3450 check the length of the traces when %glr.
3451 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
3452 GLR's traces.
3453 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
3454 Test GLR parsers.
3455 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
3456 (yyltype): Remove the yy prefix from the member names.
3457 (yytable): Complete its comment.
3458 (yygetLRActions): Map error action number from YYTABLE from
3459 YYTABLE_NINF to 0.
3460 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
3461 (which was a bug: it should have been YYTABEL_NINF, and yet it was
3462 not satisfying as we could compare an YYACTION computed from
3463 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
3464 only value for error actions.
3465 (yyreportParseError): In verbose parse error messages, don't issue
3466 `error' in the list of expected tokens.
3467 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
3468 next action to perform to match glr.c's decoding.
3469 (yytable): Complete its comment.
3470
bcbad5b9
PE
34712002-10-13 Paul Eggert <eggert@twinsun.com>
3472
3473 Fix problem reported by Henrik Grubbstroem in
e3aa65c5 3474 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
3475 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
3476 because the Bison parser reads the second action before reducing
3477 the first one.
3478 * src/scan-gram.l (rule_length): New static var.
3479 Use it to keep track of the rule length in the scanner, since
3480 we can't expect the parser to be in lock-step sync with the scanner.
3481 (handle_action_dollar, handle_action_at): Use this var.
3482 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 3483
14904b89
PE
34842002-10-12 Paul Eggert <eggert@twinsun.com>
3485
1fe611e5
PE
3486 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
3487 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
3488 Include <sys/time.h> when checking for clock_t and struct tms.
3489 Use same include order as source.
3490 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
e3aa65c5 3491 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 3492
1fe611e5
PE
3493 * lib/timevar.c: Update copyright date and clarify comments.
3494 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 3495
1fe611e5
PE
3496 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
3497 GCC version as of today, then merge Bison's changes.
3498 Change "GCC" to "Bison" in copyright notice. timevar.def's
3499 author is Akim, so change that too.
3500
98194095
PE
3501 * src/reader.c (grammar_current_rule_check):
3502 Don't worry about the default action if $$ is untyped.
3503 Prevents bogus warnings reported by Jim Gifford in
e3aa65c5 3504 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 3505
14904b89
PE
3506 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
3507 * data/glr.c, data/lalr1.cc, data/yacc.c:
3508 Output token definitions before the first part of user declarations.
3509 Fixes compatibility problem reported by Jim Gifford for kbd in
e3aa65c5 3510 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 3511
ff6dca18
PE
35122002-10-11 Paul Eggert <eggert@twinsun.com>
3513
3514 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
3515 (yyparse): here. This undoes some of the 2002-07-25 change.
3516 Compatibility problem reported by Ralf S. Engelschall with
3517 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
3518
eb714592
AD
35192002-10-11 Akim Demaille <akim@epita.fr>
3520
3521 * tests/regression.at Characters Escapes): New.
3522 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
3523 characters.
3524 Reported by Jan Nieuwenhuizen.
3525
b7195100
AD
35262002-10-11 Akim Demaille <akim@epita.fr>
3527
3528 * po/id.po: New.
3529
f28a0f2d
PE
35302002-10-10 Paul Eggert <eggert@twinsun.com>
3531
3532 Portability fixes for bitsets; this also avoids several GCC
3533 warnings.
3534
3535 * lib/abitset.c: Include <stddef.h>, for offsetof.
3536 * lib/lbitset.c: Likewise.
3537
3538 * lib/abitset.c (abitset_bytes): Return a size that is aligned
3539 properly for vectors of objects. Do not assume that adding a
3540 header size to a multiple of a word size yields a value that is
3541 properly aligned for the whole union.
3542 * lib/bitsetv.c (bitsetv_alloc): Likewise.
3543
3544 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
3545 unique names for structures.
3546 * lib/ebitset.c (ebitset_bytes): Likewise.
3547 * lib/lbitset.c (lbitset_bytes): Likewise.
3548
3549 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
3550 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
3551 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
3552 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
3553 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
3554 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
3555 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
3556 to improve the type-checking that GCC can do.
3557 * lib/bitset.c (bitset_op4_cmp): Likewise.
3558 * lib/bitset_stats.c (bitset_stats_count,
3559 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
3560 bitset_stats_copy, bitset_stats_disjoint_p,
3561 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
3562 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
3563 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
3564 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
3565 bitset_stats_and_or_cmp, bitset_stats_andn_or,
3566 bitset_stats_andn_or_cmp, bitset_stats_or_and,
3567 bitset_stats_or_and_cmp): Likewise.
3568 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
3569 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
3570 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
3571 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
3572
3573 * lib/abitset.h: Include bitset.h, not bbitset.h.
3574 * lib/ebitset.h: Likewise.
3575 * lib/lbitset.h: Likewise.
3576
3577 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
3578 All instances of parameters of type enum bitset_opts are now of
3579 type enum_bitset_opts, to conform to the C Standard, and similarly
3580 for enum_bitset_type.
3581 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
3582 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
3583
3584 Do not use "struct bitset_struct" to mean different things in
3585 different modules. Not only is this confusing, it violates
3586 the C Standard, which requires that structure types in different
3587 modules must be compatible if one is to be passed to the other.
3588 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
3589 All instances of "struct bitset_struct *" replaced with "bitset".
3590 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
3591 (union bitset_union, struct abitset_struct, struct ebitset_struct,
3592 struct lbitset_struct, struct bitset_stats_struct): New types.
3593 All uses of struct bitset_struct changed to union bitset_union,
3594 etc.
3595 * lib/abitset.c (struct abitset_struct, abitset,
3596 struct bitset_struct): Remove.
3597 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
3598 struct bitset_struct): Remove.
3599 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
3600 bitset_struct): Remove.
3601 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
3602 Likewise.
3603
3604 Do not call a function of type T using a call that assumes the
3605 function is of a different type U. Standard C requires that a
3606 function must be called with a type that is compatible with its
3607 definition.
3608 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
3609 New decls.
3610 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
3611 New functions.
3612 * lib/ebitset.c (PFV): Remove.
3613 * lib/lbitset.c (PFV): Likewise.
3614 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
3615 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
3616 decls.
3617 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
3618 (ebitset_vtable): Use them.
3619 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
3620 lbitset_xor): New functions.
3621 (lbitset_vtable): Use them.
3622
3623 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
3624 Declare.
3625
3626 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
3627 GCC warning.
3628 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
3629 Use offsetof, for simplicity.
3630
6fbe4984
PE
36312002-10-06 Paul Eggert <eggert@twinsun.com>
3632
3633 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
3634 the same width as int. This reapplies a hunk of the 2002-08-12 patch
e3aa65c5 3635 <http://mail.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
3636 which was inadvertently undone by the 2002-09-30 patch.
3637 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
3638 the same width as int.
3639
420f93c8
PE
36402002-10-04 Paul Eggert <eggert@twinsun.com>
3641
3642 Version 1.50.
3643
3644 * configure.ac (AC_INIT), NEWS: Increment version number.
3645
3646 * doc/bison.texinfo: Minor spelling, grammar, and white space
3647 fixes.
3648 (Symbols): Mention that any negative value returned from yylex
3649 signifies end-of-input. Warn about negative chars. Mention
3650 the portable Standard C character set.
3651
3652 The GNU coding standard says CFLAGS and YFLAGS are reserved
3653 for the installer to set.
3654 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
3655 * src/Makefile.am (AM_CFLAGS): Likewise.
3656 (AM_YFLAGS): Renamed from YFLAGS.
3657
3658 Fix some MAX and MIN problems.
3659 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
3660 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
3661 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
3662 * src/reader.c (reader): Use it.
3663
3664 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
3665 POSIX 1003.1-2001 has removed fgrep.
3666
36672002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
3668
3669 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
3670 interpreted as signed.
3671 * lib/ebitset.c (ebitset_list): Fix bug.
3672
ff68026d
PE
36732002-10-01 Paul Eggert <eggert@twinsun.com>
3674
3675 More fixes for 64-bit hosts and large bitsets.
3676
3677 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
3678 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
3679 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
3680 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
3681 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
3682 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
3683 bitset_count_): Likewise.
3684 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
3685 bitset_first, bitset_last): Likewise.
3686 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
3687 bitset_stats_list_reverse, bitset_stats_size,
3688 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
3689 Likewise.
3690 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
3691 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
3692 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
3693 bitsetv_reflexive_transitive_closure): Likewise.
3694 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
3695 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
3696 Likewise.
3697 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
3698 Likewise.
420f93c8 3699
ff68026d
PE
3700 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
3701 Use size_t, not unsigned int, to count bytes.
3702 * lib/abitset.h (abitset_bytes): Likewise.
3703 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
3704 Likewise.
3705 * lib/bitset.h (bitset_bytes): Likewise.
3706 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
3707 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
3708 * lib/bitsetv.c (bitsetv_alloc): Likewise.
3709 * lib/ebitset.c (ebitset_bytes): Likewise.
3710 * lib/ebitset.h (ebitset_bytes): Likewise.
3711 * lib/lbitset.c (lbitset_bytes): Likewise.
3712 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 3713
ff68026d
PE
3714 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
3715 abitset_subset_p, abitset_disjoint_p, abitset_and,
3716 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
3717 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
3718 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
3719 abitset_or_and, abitset_or_and_cmp):
3720 Use bitset_windex instead of unsigned int.
3721 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
3722 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
3723 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
3724 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
3725 Likewise.
3726 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 3727
ff68026d
PE
3728 * lib/bitset.c (bitset_print):
3729 Use proper printf formats for widths of integer types.
3730 * lib/bitset_stats.c (bitset_percent_histogram_print,
3731 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
3732 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
3733 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
3734 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 3735
ff68026d
PE
3736 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
3737 BITSET_SIZE_MAX): New macros.
3738 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
3739 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
3740 to BITSET_WINDEX_MAX.
3741
3742 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
3743 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
3744 since we now return the bitset_bindex type (not int).
3745
3746 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
3747 when computing sizes.
3748 * lib/ebitset.c (ebitset_elts_grow): Likewise.
3749
3750 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
3751 and avoid cast to unsigned.
3752
6aa452a6
AD
37532002-09-30 Akim Demaille <akim@epita.fr>
3754
3755 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
3756 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
3757 Updates from Michael Hayes.
3758
927f7817
AD
37592002-09-30 Art Haas <ahaas@neosoft.com>
3760
3761 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
3762 invocations.
3763 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
3764 defined.
3765
9738f41e
AD
37662002-09-27 Akim Demaille <akim@epita.fr>
3767
3768 Version 1.49c.
3769
a5c75d7f
AD
37702002-09-27 Akim Demaille <akim@epita.fr>
3771
3772 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
3773 (Because of AC_LIBSOURCE).
3774
8280e179
AD
37752002-09-27 Akim Demaille <akim@epita.fr>
3776
3777 Playing with Autoscan.
3778
3779 * configure.ac: Remove the old LIBOBJ tweaks.
3780 (AC_REPLACE_FUNCS): Add strrchr and strtol.
3781 * lib/strrchr.c: New.
3782 * lib/strtol.c: New, from the Coreutils 4.5.1.
3783
ae64af35
AD
37842002-09-27 Akim Demaille <akim@epita.fr>
3785
3786 Playing with Autoscan.
3787
3788 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
3789 * lib/Makefile.am (libbison_a_SOURCES): No longer include
3790 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
3791 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
3792 Coreutils 4.5.1.
3793
d1a1114f
AD
37942002-09-24 Akim Demaille <akim@epita.fr>
3795
3796 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
3797 (Frequently Asked Questions, Parser Stack Overflow): New.
3798
b906441c
AD
37992002-09-13 Akim Demaille <akim@epita.fr>
3800
3801 Playing with autoscan.
3802
3803 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
3804 * src/files.c (skeleton_find): Remove, unused.
3805 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
3806 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
3807
bd701811
AD
38082002-09-13 Akim Demaille <akim@epita.fr>
3809
3810 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
3811 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
3812
e0a13e7b
AD
38132002-09-13 Akim Demaille <akim@epita.fr>
3814
3815 * configure.ac: Require 2.54.
3816 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
3817 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
3818 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
3819 Remove, provided by Autoconf macros.
3820
c97011bf
AD
38212002-09-12 Akim Demaille <akim@epita.fr>
3822
3823 * m4/prereq.m4: Update, from Coreutils 4.5.1.
3824
d862b1be
AD
38252002-09-12 Akim Demaille <akim@epita.fr>
3826
3827 * m4/prereq.m4: Update, from Fileutils 4.1.5.
3828 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
3829 Reported by Martin Mokrejs.
3830
3d38c03a
AD
38312002-09-10 Akim Demaille <akim@epita.fr>
3832
3833 * src/parse-gram.y: Associate a human readable string to each
3834 token type.
3835 * tests/regression.at (Invalid inputs): Adjust.
3836
b6347355
AD
38372002-09-10 Gary V. Vaughan <gary@gnu.org>
3838
3839 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
3840 with an Autoconf-2.5x style configure.ac.
3841
09ba4ab2
PE
38422002-09-06 Paul Eggert <eggert@twinsun.com>
3843
3844 * doc/bison.texinfo (Conditions): Make explicit that the GPL
3845 exception applies only to yacc.c. This is a modification of a
3846 patch originally suggested by Akim Demaille.
3847
21846f69
AD
38482002-09-06 Akim Demaille <akim@epita.fr>
3849
09ba4ab2
PE
3850 * data/c.m4 (b4_copyright): Move the GPL exception comment from
3851 here to...
3852 * data/yacc.c: here.
3853
21846f69
AD
3854 * data/lalr1.cc (struct yyltype): Don't define it, since we use
3855 LocationType.
3856 (b4_ltype): Default to yy::Location from location.hh.
3857
c0ad8bf3
AD
38582002-09-04 Jim Meyering <jim@meyering.net>
3859
3860 * data/yacc.c: Guard the declaration of yytoknum also with
3861 `#ifdef YYPRINT', so it is declared only when used.
3862
3a93251e
AD
38632002-09-04 Akim Demaille <akim@epita.fr>
3864
3865 * configure.in: Rename as...
3866 * configure.ac: this.
3867 Bump to 1.49c.
3868
427c0dda
AD
38692002-09-04 Akim Demaille <akim@epita.fr>
3870
3871 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
3872 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
3873 translate maintainer only messages.
3874
6a254321
PE
38752002-08-12 Paul Eggert <eggert@twinsun.com>
3876
645e30d1
PE
3877 Version 1.49b.
3878
6a254321
PE
3879 * Makefile.am (SUBDIRS): Remove intl.
3880 (DISTCLEANFILES): Remove.
3881 * NEWS: Mention that GNU M4 is now required. Clarify what is
3882 meant by "larger grammars". Mention the pt_BR translation.
3883 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
3884 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
3885 Bump version from 0.11.2 to 0.11.5.
3886 (BISON_PREREQ_STAGE): Remove.
3887 (AM_GNU_GETTEXT): Use external gettext.
3888 (AC_OUTPUT): Remove intl/Makefile.
3889
3890 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
3891
3892 * data/glr.c: Include string.h, for strlen.
3893 (yyreportParseError): Use size_t for yysize.
3894 (yy_yypstack): No longer nested inside yypstates, as nested
3895 functions are not portable. Do not assume size_t is the
3896 same width as int.
3897 (yypstates): Do not assume that ptrdiff_t is the same width
3898 as int, and similarly for yyposn and YYINDEX.
3899
3900 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
3901
3902 * lib/Makefile.am (INCLUDES): Do not include from the intl
3903 directory, which has been removed.
3904 * src/Makefile.am (INCLUDES): Likewise.
3905
3906 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
3907 (bitsets_sources, additional_bitsets_sources, timevars_sources):
3908 New vars.
3909
3910 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
3911 * tests/Makefile.am (EXTRA_DIST): Likewise.
3912
3913 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
3914 Do not assume that bitset_windex is the same width as unsigned.
3915
3916 * lib/abitset.c (abitset_unused_clear): Do not assume that
3917 bitset_word is the same width as int.
3918 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
3919 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
3920 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
3921 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
3922 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
3923
3924 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
3925 portability to one's complement hosts!).
3926 * lib/ebitset.c (ebitset_op1): Likewise.
3927 * lib/lbitset.c (lbitset_op1): Likewise.
3928
3929 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
3930 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
3931 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
3932 Sync with fileutils.
3933 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
3934 lib/gettext.h: Sync with diffutils.
3935
3936 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
3937 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
3938
3939 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
3940 PROTOTYPES to check for prototypes, and "defined __STDC__" to
3941 check for void *.
3942
3943 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
3944 size_t; the old version tried to do this but casted improperly.
3945 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
3946 (bitset_test): Now returns int, not unsigned long.
3947
3948 * lib/bitset_stats.c: Include "gettext.h".
3949 (_): New macro.
3950 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
3951 name locals "index", as it generates unnecessary warnings on some
3952 hosts that have an "index" function.
3953
3954 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
3955 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
3956 they need translation.
3957 * src/LR0.c (state_list_append, new_itemsets, get_state,
3958 append_states, generate_states): Likewise.
3959 * src/assoc.c (assoc_to_string): Likewise.
3960 * src/closure.c (print_closure, set_firsts, closure): Likewise.
3961 * src/gram.c (grammar_dump): Likewise.
3962 * src/injections.c (injections_compute): Likewise.
3963 * src/lalr.c (lookaheads_print): Likewise.
3964 * src/relation.c (relation_transpose): Likewise.
3965 * src/scan-gram.l: Likewise.
3966 * src/tables.c (table_grow, pack_vector): Likewise.
3967
3968 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
3969 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
3970 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
3971 * m4/mbstate_t.m4: Sync with fileutils.
3972 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
3973
3974 * po/LINGUAS: Add pt_BR.
3975 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
3976 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
3977 lib/timevar.c.
3978 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
3979 manual recommends.
3980 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
3981
3982 * src/complain.c (strerror_r): Remove decl; not needed.
3983 (strerror): Use same pattern as ../lib/error.c.
3984
3985 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
3986
3987 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
3988
3989 * src/main.c (main): Cast result of bindtextdomain and textdomain
3990 to void, to avoid a GCC warning when --disable-nls is in effect.
3991
3992 * src/scan-gram.l: Use strings rather than escapes when possible,
3993 to minimize the number of warnings from xgettext.
3994 (handle_action_dollar, handle_action_at): Don't use isdigit,
3995 as it mishandles negative chars and it may not work as expected
3996 outside the C locale.
3997
3998 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
3999 this is a GCC extension and is not portable to other compilers.
4000
4001 * src/system.h (alloca): Use same pattern as ../lib/error.c.
4002 Do not include <ctype.h>; no longer needed.
4003 Do not include <malloc.h>; no longer needed (and generates
4004 warnings on OpenBSD 3.0).
4005
4006 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
4007 it's not portable.
4008
4009 * tests/regression.at: Do not use 'cc -c input.c -o input';
4010 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
4011
4012 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
4013 exit status as failure, not just exit status 1. Sun C exits
4014 with status 2 sometimes.
4015
4016 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
4017 Use it for the two large tests.
4018
c8f002c7
AD
40192002-08-02 Akim Demaille <akim@epita.fr>
4020
4021 * src/conflicts.c (conflicts_output): Don't output rules never
4022 reduced here, since anyway that computation doesn't work.
4023 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
4024 (rule_useless_p, rule_never_reduced_p): New.
4025 (grammar_rules_partial_print): Use a filter instead of a range.
4026 Display the title only if needed.
4027 (grammar_rules_print): Adjust.
4028 (grammar_rules_never_reduced_report): New.
4029 * src/tables.c (action_row): Move the computation of rules never
4030 reduced to...
4031 (token_actions): here.
4032 * src/main.c (main): Make the parser before making the report, so
4033 that rules never reduced are computed.
4034 Call grammar_rules_never_reduced_report.
4035 * src/print.c (print_results): Report rules never reduced.
4036 * tests/conflicts.at, tests/reduce.at: Adjust.
4037
cd08e51e
AD
40382002-08-01 Akim Demaille <akim@epita.fr>
4039
4040 Instead of attaching lookaheads and duplicating the rules being
4041 reduced by a state, attach the lookaheads to the reductions.
4042
4043 * src/state.h (state_t): Remove the `lookaheads',
4044 `lookaheads_rule' member.
4045 (reductions_t): Add a `lookaheads' member.
4046 Use a regular array for the `rules'.
4047 * src/state.c (reductions_new): Initialize the lookaheads member
4048 to 0.
4049 (state_rule_lookaheads_print): Adjust.
4050 * src/state.h, src/state.c (state_reductions_find): New.
4051 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
4052 (count_rr_conflicts): Adjust.
4053 * src/lalr.c (LArule): Remove.
4054 (add_lookback_edge): Adjust.
4055 (state_lookaheads_count): New.
4056 (states_lookaheads_initialize): Merge into...
4057 (initialize_LA): this.
4058 (lalr_free): Adjust.
4059 * src/main.c (main): Don't free nullable and derives too early: it
4060 is used by --verbose.
4061 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
4062
bb0027a9
AD
40632002-08-01 Akim Demaille <akim@epita.fr>
4064
4065 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
4066 `rule_number_t**'.
4067 (set_derives, free_derives): Rename as...
4068 (derives_compute, derives_free): this.
4069 Adjust all dependencies.
4070 * src/nullable.c (set_nullable, free_nullable): Rename as...
4071 (nullable_compute, nullable_free): these.
4072 (rule_list_t): Store rule_t *, not rule_number_t.
4073 * src/state.c (state_rule_lookaheads_print): Directly compare rule
4074 pointers, instead of their numbers.
4075 * src/main.c (main): Call nullable_free, and derives_free earlier,
4076 as they were lo longer used.
4077
3325ddc4
AD
40782002-08-01 Akim Demaille <akim@epita.fr>
4079
4080 * lib/timevar.c (get_time): Include children time.
4081 * src/lalr.h (LA, LArule): Don't export them: used with the
4082 state_t.
4083 * src/lalr.c (LA, LArule): Static.
4084 * src/lalr.h, src/lalr.c (lalr_free): New.
4085 * src/main.c (main): Call it.
4086 * src/tables.c (pack_vector): Check whether loc is >= to the
4087 table_size, not >.
4088 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
4089 (tables_generate): do it, since that's also it which allocates
4090 them.
4091 Don't free LA and LArule, main does.
4092
c6f1a33c
AD
40932002-07-31 Akim Demaille <akim@epita.fr>
4094
4095 Separate parser tables computation and output.
4096
4097 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
4098 (conflict_list, conflict_list_cnt, table, check, table_ninf)
4099 (yydefgoto, yydefact, high): Move to...
4100 * src/tables.h, src/tables.c: here.
4101 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
4102 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
4103 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
4104 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
4105 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
4106 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
4107 (action_row, save_row, token_actions, save_column, default_goto)
4108 (goto_actions, sort_actions, matching_state, pack_vector)
4109 (table_ninf_remap, pack_table, prepare_actions): Move to...
4110 * src/tables.c: here.
4111 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
4112 * src/output.c (token_actions, output_base, output_conflicts)
4113 (output_check): Merge into...
4114 (prepare_actions): this.
4115 (actions_output): Rename as...
4116 (user_actions_output): this.
4117 * src/main.c (main): Call tables_generate and tables_free.
4118
1509d42f
AD
41192002-07-31 Akim Demaille <akim@epita.fr>
4120
4121 Steal GCC's --time-report support.
4122
4123 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
4124 stolen/adjusted from GCC.
4125 * m4/stage.m4: Remove time related checks.
4126 * m4/timevar.m4: New.
4127 * configure.in: Adjust.
4128 * src/system.h: Adjust to using timevar.h.
4129 * src/getargs.h, src/getargs.c: Support trace_time for
4130 --trace=time.
4131 * src/main.c (stage): Remove.
4132 (main): Replace `stage' invocations with timevar calls.
4133 * src/output.c: Insert pertinent timevar calls.
4134
273a74fa
AD
41352002-07-31 Akim Demaille <akim@epita.fr>
4136
4137 Let --trace have arguments.
4138
4139 * src/getargs.h (enum trace_e): New.
4140 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
4141 (long_options, short_options): --trace/-T takes an optional
4142 argument.
4143 Change all the uses of trace_flag to reflect the new flags.
4144 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
4145
4146 Strengthen `stage' portability.
4147
4148 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
4149 * configure.in: Use it.
4150 Don't check for malloc.h and sys/times.h.
4151 * src/system.h: Include them when appropriate.
4152 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
4153 times and struct tms are available.
4154
217598da
AD
41552002-07-30 Akim Demaille <akim@epita.fr>
4156
4157 In verbose parse error message, don't report `error' as an
4158 expected token.
4159 * tests/actions.at (Printers and Destructors): Adjust.
4160 * tests/calc.at (Calculator $1): Adjust.
4161 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
4162 error message, do not report the parser accepts the error token in
4163 that state.
4164
52489d44
AD
41652002-07-30 Akim Demaille <akim@epita.fr>
4166
4167 Normalize conflict related messages.
4168
4169 * src/complain.h, src/complain.c (warn, complain): New.
4170 * src/conflicts.c (conflicts_print): Use them.
4171 (conflict_report_yacc): New, extracted from...
4172 (conflicts_print): here.
4173 * tests/conflicts.at, tests/existing.at: Adjust.
4174
e8832397
AD
41752002-07-30 Akim Demaille <akim@epita.fr>
4176
4177 Report rules which are never reduced by the parser: those hidden
4178 by conflicts.
4179
4180 * src/LR0.c (save_reductions): Don't make the final state too
4181 different: save its reduction (accept) instead of having a state
4182 without any action (no shift or goto, no reduce).
4183 Note: the final state is now a ``regular'' state, i.e., the
4184 parsers now contain `reduce 0' as default reduction.
4185 Nevertheless, since they decide to `accept' when yystate =
4186 final_state, they still will not reduce rule 0.
4187 * src/print.c (print_actions, print_reduction): Adjust.
4188 * src/output.c (action_row): Track reduced rules.
4189 (token_actions): Report rules never reduced.
4190 * tests/conflicts.at, tests/regression.at: Adjust.
4191
caf23d24
AD
41922002-07-30 Akim Demaille <akim@epita.fr>
4193
4194 `stage' was accidently included in a previous patch.
4195 Initiate its autoconfiscation.
4196
4197 * configure.in: Look for malloc.h and sys/times.h.
4198 * src/main.c (stage): Adjust.
4199 Report only when trace_flag.
4200
640748ee
AD
42012002-07-29 Akim Demaille <akim@epita.fr>
4202
4203 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
4204 state_number_t.
4205 (errs_t): symbol_t*, not symbol_number_t.
4206 (reductions_t): rule_t*, not rule_number_t.
4207 (FOR_EACH_SHIFT): New.
4208 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
4209 * src/print.c, src/print_graph.c: Adjust.
4210
88bce5a2
AD
42112002-07-29 Akim Demaille <akim@epita.fr>
4212
4213 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
4214
4215 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
4216 (endtoken, accept): these.
4217 * src/reader.c (reader): Set endtoken's default tag to "$end".
4218 Set undeftoken's tag to "$undefined" instead of "$undefined.".
4219 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
4220 Adjust.
4221
1bfb97db
AD
42222002-07-29 Akim Demaille <akim@epita.fr>
4223
4224 * src/reduce.c (reduce_grammar): When the language is empty,
4225 complain about the start symbol, not the axiom.
4226 Use its location.
4227 * tests/reduce.at (Empty Language): New.
4228
fc5734fe
AD
42292002-07-26 Akim Demaille <akim@epita.fr>
4230
4231 * src/reader.h, src/reader.c (gram_error): ... can't get
4232 yycontrol without making too strong assumptions on the parser
4233 itself.
4234 * src/output.c (prepare_tokens): Use the real 0th value of
4235 token_translations instead of `0'.
4236 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
4237 visible here.
4238 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
4239 for the time being: %locations ought to provide it to yyerror.
4240
3650b4b8
AD
42412002-07-25 Akim Demaille <akim@epita.fr>
4242
4243 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
4244 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
4245 * tests/regression.at (Web2c Actions): Adjust.
4246
4b3d3a8e
AD
42472002-07-25 Akim Demaille <akim@epita.fr>
4248
4249 Stop storing rules from 1 to nrules + 1.
4250
4251 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
4252 * src/nullable.c, src/output.c, src/print.c, src/reader.c
4253 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
4254 Iterate from 0 to nrules.
4255 Use rule_number_as_item_number and item_number_as_rule_number.
4256 Adjust to `derive' now containing possibly 0.
4257 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
4258 Handle the `- 1' part in rule numbers from/to item numbers.
4259 * src/conflicts.c (log_resolution): Fix the message which reversed
4260 shift and reduce.
4261 * src/output.c (action_row): Initialize default_rule to -1.
4262 (token_actions): Adjust.
4263 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
4264 expected output.
4265 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
4266
4a2a22f4
AD
42672002-07-25 Akim Demaille <akim@epita.fr>
4268
4269 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
4270 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
4271 (b4_c_knr_arg_decl): New.
4272 * data/yacc.c: Use it to define yysymprint, yydestruct, and
4273 yyreport_parse_error.
4274
b8df3223
AD
42752002-07-25 Akim Demaille <akim@epita.fr>
4276
4277 * data/yacc.c (yyreport_parse_error): New, extracted from...
4278 (yyparse): here.
4279 (yydestruct, yysymprint): Move above yyparse.
4280 Be K&R compliant.
4281
a762e609
AD
42822002-07-25 Akim Demaille <akim@epita.fr>
4283
4284 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
4285 replace...
4286 (b4_sint_type, b4_uint_type): these.
4287 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
4288 * tests/regression.at (Web2c Actions): Adjust.
4289
12b0043a
AD
42902002-07-25 Akim Demaille <akim@epita.fr>
4291
4292 * src/gram.h (TIEM_NUMBER_MAX): New.
4293 (item_number_of_rule_number, rule_number_of_item_number): Rename
4294 as...
4295 (rule_number_as_item_number, item_number_as_rule_number): these.
4296 Adjust dependencies.
4297 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
4298 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
4299 (symbol_number_to_vector_number): New.
4300 (order): Of vector_number_t* type.
4301 (base_t, BASE_MAX, BASE_MIN): New.
4302 (froms, tos, width, pos, check): Of base_t type.
4303 (action_number_t, ACTION_MIN, ACTION_MAX): New.
4304 (actrow): Of action_number_t type.
4305 (conflrow): Of unsigned int type.
4306 (table_ninf, base_ninf): New.
4307 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
4308 (muscle_insert_int_table, muscle_insert_base_table)
4309 (muscle_insert_rule_number_table): New.
4310 (prepare_tokens): Output `toknum' as int_table.
4311 (action_row): Returns a rule_number_t.
4312 Use ACTION_MIN, not SHRT_MIN.
4313 (token_actions): yydefact is rule_number_t*.
4314 (table_ninf_remap): New.
4315 (pack_table): Use it for `base' and `table'.
4316 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
4317 replaced with...
4318 (YYPACT_NINF, YYTABLE_NINF): these.
4319 (yypact, yytable): Compute their types instead of hard-coded
4320 `short'.
4321 * tests/regression.at (Web2c Actions): Adjust.
4322
5dde258a
AD
43232002-07-19 Akim Demaille <akim@epita.fr>
4324
4325 * src/scan-gram.l (id): Can start with an underscore.
4326
a945ec39
AD
43272002-07-16 Akim Demaille <akim@epita.fr>
4328
4329 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
4330 Adjust all former `associativity' dependencies.
4331 * src/symtab.c (symbol_new): Default associativity is `undef', not
4332 `right'.
4333 (symbol_check_alias_consistence): Adjust.
4334
fae437e8
AD
43352002-07-09 Akim Demaille <akim@epita.fr>
4336
4337 * doc/bison.texinfo: Properly set the ``header'' part.
4338 Use @dircategory ``GNU programming tools'' as per Texinfo's
4339 documentation.
4340 Use @copying.
4341
1a715ef2
AD
43422002-07-09 Akim Demaille <akim@epita.fr>
4343
4344 * lib/quotearg.h: Protect against multiple inclusions.
4345 * src/location.h (location_t): Add a `file' member.
4346 (LOCATION_RESET, LOCATION_PRINT): Adjust.
4347 * src/complain.c (warn_at, complain_at, fatal_at): Drop
4348 `error_one_per_line' support.
4349
a5d50994
AD
43502002-07-09 Akim Demaille <akim@epita.fr>
4351
4352 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
4353 * src/reader.c (lineno): Remove.
4354 Adjust all dependencies.
4355 (get_merge_function): Take a location and use complain_at.
4356 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
4357 * tests/regression.at (Invalid inputs, Mixing %token styles):
4358 Adjust.
4359
b275314e
AD
43602002-07-09 Akim Demaille <akim@epita.fr>
4361
4362 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
4363 recovery rule, and forbid extensions when --yacc.
4364 (gram_error): Use complain_at.
4365 * src/reader.c (reader): Exit if there were parse errors.
4366
865b9df1
AD
43672002-07-09 Akim Demaille <akim@epita.fr>
4368
4369 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
4370 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
4371 Reported by R Blake <blakers@mac.com>.
4372
c76e14da
AD
43732002-07-09 Akim Demaille <akim@epita.fr>
4374
4375 * data/yacc.c: Output the copyright notive in the header.
4376
7db2ed2d
AD
43772002-07-03 Akim Demaille <akim@epita.fr>
4378
4379 * src/output.c (froms, tos): Are state_number_t.
4380 (save_column): sp, sp1, and sp2 are state_number_t.
4381 (prepare): Rename `final' as `final_state_number', `nnts' as
4382 `nterms_number', `nrules' as `rules_number', `nstates' as
4383 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
4384 unused.
4385 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
4386 * data/lalr1.cc (nsym_): Remove, unused.
4387
e68e0410
AD
43882002-07-03 Akim Demaille <akim@epita.fr>
4389
4390 * src/lalr.h, src/lalr.c (goto_number_t): New.
4391 * src/lalr.c (goto_list_t): New.
4392 Propagate them.
4393 * src/nullable.c (rule_list_t): New.
4394 Propagate.
4395 * src/types.h: Remove.
4396
e1a4f3a4
AD
43972002-07-03 Akim Demaille <akim@epita.fr>
4398
4399 * src/closure.c (print_fderives): Use rule_rhs_print.
4400 * src/derives.c (print_derives): Use rule_rhs_print.
4401 (rule_list_t): New, replaces `shorts'.
4402 (set_derives): Add comments.
4403 * tests/sets.at (Nullable, Firsts): Adjust.
4404
536545f3
AD
44052002-07-03 Akim Demaille <akim@epita.fr>
4406
4407 * src/output.c (prepare_actions): Free `tally' and `width'.
4408 (prepare_actions): Allocate and free `order'.
4409 * src/symtab.c (symbols_free): Free `symbols'.
4410 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
4411 * src/output.c (m4_invoke): Move to...
4412 * src/scan-skel.l: here.
4413 (<<EOF>>): Close yyout, and free its name.
4414
8b752b00
AD
44152002-07-03 Akim Demaille <akim@epita.fr>
4416
4417 Fix some memory leaks, and fix a bug: state 0 was examined twice.
4418
4419 * src/LR0.c (new_state): Merge into...
4420 (state_list_append): this.
4421 (new_states): Merge into...
4422 (generate_states): here.
4423 (set_states): Don't ensure a proper `errs' state member here, do it...
4424 * src/conflicts.c (conflicts_solve): here.
4425 * src/state.h, src/state.c: Comment changes.
4426 (state_t): Rename member `shifts' as `transitions'.
4427 Adjust all dependencies.
4428 (errs_new): For consistency, also take the values as argument.
4429 (errs_dup): Remove.
4430 (state_errs_set): New.
4431 (state_reductions_set, state_transitions_set): Assert that no
4432 previous value was assigned.
4433 (state_free): New.
4434 (states_free): Use it.
4435 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
4436 temporary storage: use `errs' and `nerrs' as elsewhere.
4437 (set_conflicts): Allocate and free this `errs'.
4438
613f5e1a
AD
44392002-07-02 Akim Demaille <akim@epita.fr>
4440
4441 * lib/libiberty.h: New.
4442 * lib: Update the bitset implementation from upstream.
4443 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
4444 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
4445 * src/main.c: Adjust bitset stats calls.
4446
26e0cadc
PE
44472002-07-01 Paul Eggert <eggert@twinsun.com>
4448
4449 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
4450 char, so that negative chars don't collide with $.
4451
1154cced
AD
44522002-06-30 Akim Demaille <akim@epita.fr>
4453
4454 Have the GLR tests be `warning' checked, and fix the warnings.
4455
4456 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
4457 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
4458 (yyremoveDeletes): `yyi' and `yyj' are size_t.
4459 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
4460 (yyaddDeferredAction): static.
4461 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
4462 (yyreportParseError): yyprefix is const.
4463 yytokenp is used only when verbose.
4464 (yy__GNUC__): Replace with __GNUC__.
4465 (yypdumpstack): yyi is size_t.
4466 (yypreference): Un-yy local variables and arguments, to avoid
4467 clashes with `yyr1'. Anyway, we are not in the user name space.
4468 (yytname_size): be an int, as is compared with ints.
4469 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
4470 Use them.
4471 * tests/cxx-gram.at: Use quotation to protect $1.
4472 Use AT_COMPILE to enable warnings hunts.
4473 Prototype yylex and yyerror.
4474 `Use' argc.
4475 Include `string.h', not `strings.h'.
4476 Produce and prototype stmtMerge only when used.
4477 yylex takes a location.
4478
97650f4e
AD
44792002-06-30 Akim Demaille <akim@epita.fr>
4480
4481 We spend a lot of time in quotearg, in particular when --verbose.
4482
4483 * src/symtab.c (symbol_get): Store a quoted version of the key.
4484 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
4485 Adjust all callers.
4486
d2576365
AD
44872002-06-30 Akim Demaille <akim@epita.fr>
4488
4489 * src/state.h (reductions_t): Rename member `nreds' as num.
4490 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
4491 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
4492
ccaf65bc
AD
44932002-06-30 Akim Demaille <akim@epita.fr>
4494
4495 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
4496 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
4497 (shifts_to): Rename as...
4498 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
4499 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
4500 (TRANSITION_IS_DISABLED, transitions_to): these.
4501
87675353
AD
45022002-06-30 Akim Demaille <akim@epita.fr>
4503
4504 * src/print.c (print_shifts, print_gotos): Merge into...
4505 (print_transitions): this.
4506 (print_transitions, print_errs, print_reductions): Align the
4507 lookaheads columns.
4508 (print_core, print_transitions, print_errs, print_state,
4509 print_grammar): Output empty lines separator before, not after.
4510 (state_default_rule_compute): Rename as...
4511 (state_default_rule): this.
4512 * tests/conflicts.at (Defaulted Conflicted Reduction),
4513 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
4514 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
4515
ce4ccb4b
AD
45162002-06-30 Akim Demaille <akim@epita.fr>
4517
4518 Display items as we display rules.
4519
4520 * src/gram.h, src/gram.c (rule_lhs_print): New.
4521 * src/gram.c (grammar_rules_partial_print): Use it.
4522 * src/print.c (print_core): Likewise.
4523 * tests/conflicts.at (Defaulted Conflicted Reduction),
4524 (Unresolved SR Conflicts): Adjust.
4525 (Unresolved SR Conflicts): Adjust and rename as...
4526 (Resolved SR Conflicts): this, as was meant.
4527 * tests/regression.at (Web2c Report): Adjust.
4528
bc933ef1
AD
45292002-06-30 Akim Demaille <akim@epita.fr>
4530
4531 * src/print.c (state_default_rule_compute): New, extracted from...
4532 (print_reductions): here.
4533 Pessimize, but clarify the code.
4534 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
4535
53d4308d
AD
45362002-06-30 Akim Demaille <akim@epita.fr>
4537
4538 * src/output.c (action_row): Let default_rule be always a rule
4539 number.
4540
574fb2d5
AD
45412002-06-30 Akim Demaille <akim@epita.fr>
4542
4543 * src/closure.c (print_firsts, print_fderives, closure):
4544 Use BITSET_EXECUTE.
4545 * src/lalr.c (lookaheads_print): Likewise.
4546 * src/state.c (state_rule_lookaheads_print): Likewise.
4547 * src/print_graph.c (print_core): Likewise.
4548 * src/print.c (print_reductions): Likewise.
4549 * src/output.c (action_row): Likewise.
4550 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
4551
05811fd7
AD
45522002-06-30 Akim Demaille <akim@epita.fr>
4553
4554 * src/print_graph.c: Use report_flag.
4555
0e4d5753
AD
45562002-06-30 Akim Demaille <akim@epita.fr>
4557
4558 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
4559 to...
4560 * src/relation.h, src/relation.c (traverse, relation_digraph)
4561 (relation_print, relation_transpose): New.
4562
24c7d800
AD
45632002-06-30 Akim Demaille <akim@epita.fr>
4564
4565 * src/state.h, src/state.c (shifts_to): New.
4566 * src/lalr.c (build_relations): Use it.
4567
9222837b
AD
45682002-06-30 Akim Demaille <akim@epita.fr>
4569
4570 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
4571 (item_number_of_rule_number, rule_number_of_item_number): New.
4572 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
4573 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
4574 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
4575 Propagate their use.
4576 Much remains to be done, in particular wrt `shorts' from types.h.
4577
260008e5
AD
45782002-06-30 Akim Demaille <akim@epita.fr>
4579
4580 * src/symtab.c (symbol_new): Initialize the `printer' member.
4581
8a731ca8
AD
45822002-06-30 Akim Demaille <akim@epita.fr>
4583
4584 * src/LR0.c (save_reductions): Remove, replaced by...
4585 * src/state.h, src/state.c (state_reductions_set): New.
4586 (reductions, errs): Rename as...
4587 (reductions_t, errs_t): these.
4588 Adjust all dependencies.
4589
32e1e0a4
AD
45902002-06-30 Akim Demaille <akim@epita.fr>
4591
4592 * src/LR0.c (state_list_t, state_list_append): New.
4593 (first_state, last_state): Now symbol_list_t.
4594 (this_state): Remove.
4595 (new_itemsets, append_states, save_reductions): Take a state_t as
4596 argument.
4597 (set_states, generate_states): Adjust.
4598 (save_shifts): Remove, replaced by...
4599 * src/state.h, src/state.c (state_shifts_set): New.
4600 (shifts): Rename as...
4601 (shifts_t): this.
4602 Adjust all dependencies.
4603 * src/state.h (state_t): Remove the `next' member.
4604
e5fb6710
AD
46052002-06-30 Akim Demaille <akim@epita.fr>
4606
4607 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
4608 escaped in slot 0.
4609
c7ca99d4
AD
46102002-06-30 Akim Demaille <akim@epita.fr>
4611
4612 Use hash.h for the state hash table.
4613
4614 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
4615 (allocate_storage): Use state_hash_new.
4616 (free_storage): Use state_hash_free.
4617 (new_state, get_state): Adjust.
4618 * src/lalr.h, src/lalr.c (states): Move to...
4619 * src/states.h (state_t): Remove the `link' member, no longer
4620 used.
4621 * src/states.h, src/states.c: here.
4622 (state_hash_new, state_hash_free, state_hash_lookup)
4623 (state_hash_insert, states_free): New.
4624 * src/states.c (state_table, state_compare, state_hash): New.
4625 * src/output.c (output_actions): Do not free states now, since we
4626 still need to know the final_state number in `prepare', called
4627 afterwards. Do it...
4628 * src/main.c (main): here: call states_free after `output'.
4629
df0e7316
AD
46302002-06-30 Akim Demaille <akim@epita.fr>
4631
4632 * src/state.h, src/state.c (state_new): New, extracted from...
4633 * src/LR0.c (new_state): here.
4634 * src/state.h (STATE_ALLOC): Move to...
4635 * src/state.c: here.
4636 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
4637 * src/state.h, src/state.c: here.
4638
39f41916
AD
46392002-06-30 Akim Demaille <akim@epita.fr>
4640
4641 * src/reader.c (gensym): Rename as...
4642 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
4643 (getsym): Rename as...
4644 (symbol_get): this.
4645
d57650a5
AD
46462002-06-30 Akim Demaille <akim@epita.fr>
4647
4648 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
4649 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
4650 * src/output.c, src/print.c, src/print_graph.c: Propagate.
4651 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
4652
5a08f1ce
AD
46532002-06-30 Akim Demaille <akim@epita.fr>
4654
4655 Make the test suite pass with warnings checked.
4656
4657 * tests/actions.at (Printers and Destructors): Improve.
4658 Avoid unsigned vs. signed issues.
4659 * tests/calc.at: Don't exercise the scanner here, do it...
4660 * tests/input.at (Torturing the Scanner): here.
4661
720623af
PH
46622002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4663
88e7e941 4664 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
4665 reorganize first lines parallel to yacc.c.
4666
fb8135fa
AD
46672002-06-28 Akim Demaille <akim@epita.fr>
4668
4669 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
4670 (b4_token_enum, b4_token_defines): New, factored from...
4671 * data/lalr1.cc, data/yacc.c, glr.c: here.
4672
41442480
AD
46732002-06-28 Akim Demaille <akim@epita.fr>
4674
4675 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
4676 unused variables.
4677 * src/output.c (merger_output): static.
4678
e0e5bf84
AD
46792002-06-28 Akim Demaille <akim@epita.fr>
4680
4681 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
4682 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
4683 pacify GCC.
4684 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 4685
676385e2
PH
46862002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4687
4688 Accumulated changelog for new GLR parsing features.
4689
6a254321 4690 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
4691 conflicts_total_count.
4692 * src/conflicts.h: Ditto.
4693 * src/output.c (token_actions): Use the new name.
4694 (output_conflicts): Change conflp => conflict_list_heads, and
4695 confl => conflict_list for better readability.
4696 * data/glr.c: Use the new names.
4697 * NEWS: Add self to GLR announcement.
e0e5bf84 4698
676385e2
PH
4699 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
4700
4701 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
4702 Akim Demaille.
4703
4704 * data/bison.glr: Change name to glr.c
4705 * data/glr.c: Renamed from bison.glr.
4706 * data/Makefile.am: Add glr.c
e0e5bf84
AD
4707
4708 * src/getargs.c:
4709
676385e2
PH
4710 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
4711 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 4712
676385e2
PH
4713 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4714
4715 * data/bison.glr: Be sure to restore the
4716 current #line when returning to the skeleton contents after having
4717 exposed the input file's #line.
4718
4719 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4720
4721 * data/bison.glr: Bring up to date with changes to bison.simple.
4722
4723 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4724
4725 * data/bison.glr: Correct definitions that use b4_prefix.
4726 Various reformatting.
4727 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
4728 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
4729 yytokenp argument; now part of stack.
4730 (yychar): Define to behave as documented.
4731 (yyclearin): Ditto.
e0e5bf84 4732
676385e2
PH
4733 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4734
4735 * src/reader.h: Add declaration for free_merger_functions.
4736
4737 * src/reader.c (merge_functions): New variable.
4738 (get_merge_function): New function.
4739 (free_merger_functions): New function.
4740 (readgram): Check for %prec that is not followed by a symbol.
4741 Handle %dprec and %merge declarations.
4742 (packgram): Initialize dprec and merger fields in rules array.
4743
4744 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
4745 conflict_list_cnt, conflict_list_free): New variables.
4746 (table_grow): Also grow conflict_table.
e0e5bf84 4747 (prepare_rules): Output dprec and merger tables.
676385e2 4748 (conflict_row): New function.
e0e5bf84 4749 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
4750 default reduction in conflicted states for GLR parser so that there
4751 are spaces for the conflict lists.
4752 (save_row): Also save conflict information.
4753 (token_actions): Allocate conflict list.
4754 (merger_output): New function.
4755 (pack_vector): Pack conflict table, too.
4756 (output_conflicts): New function to output yyconflp and yyconfl.
4757 (output_check): Allocate conflict_tos.
4758 (output_actions): Output conflict tables, also.
4759 (output_skeleton): Output b4_mergers definition.
4760 (prepare): Output b4_max_rhs_length definition.
4761 Use 'bison.glr' as default skeleton for GLR parsers.
4762
4763 * src/gram.c (glr_parser): New flag.
4764 (grammar_free): Call free_merger_functions.
4765
4766 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
4767 all pairs of conflicting reductions, rather than just all tokens
4768 causing conflicts. Needed to size conflict tables.
e0e5bf84 4769 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
4770 interface.
4771 (conflicts_print): Ditto.
4772 (count_total_conflicts): New function.
4773
4774 * src/reader.h (merger_list): New type.
4775 (merge_functions): New variable.
4776
4777 * src/lex.h (tok_dprec, tok_merge): New token types.
4778
4779 * src/gram.h (rule_s): Add dprec and merger fields.
4780 (glr_parser): New flag.
4781
4782 * src/conflicts.h (count_total_conflicts): New function.
4783
4784 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
4785
4786 * doc/bison.texinfo (Generalized LR Parsing): New section.
4787 (GLR Parsers): New section.
4788 (Language and Grammar): Mention GLR parsing.
4789 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
4790 Correct typo ("tge" -> "the").
4791
4792 * data/bison.glr: New skeleton for GLR parsing.
4793
4794 * tests/cxx-gram.at: New tests for GLR parsing.
4795
4796 * tests/testsuite.at: Include cxx-gram.at.
4797
4798 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 4799
676385e2
PH
4800 * src/parse-gram.y:
4801
4802 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
4803
4804 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 4805
b5480d74 48062002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
4807
4808 * src/options.h, src/options.c: Remove.
4809 * src/getargs.c (short_options, long_options): New.
4810
60491a94
AD
48112002-06-27 Akim Demaille <akim@epita.fr>
4812
4813 * data/bison.simple, data/bison.c++: Rename as...
4814 * data/yacc.c, data/lalr1.cc: these.
4815 * doc/bison.texinfo (Environment Variables): Remove.
4816
9be0c25b
AD
48172002-06-25 Raja R Harinath <harinath@cs.umn.edu>
4818
4819 * src/getargs.c (report_argmatch): Initialize strtok().
4820
1ae72863
AD
48212002-06-20 Akim Demaille <akim@epita.fr>
4822
4823 * data/bison.simple (b4_symbol_actions): New, replaces...
4824 (b4_symbol_destructor, b4_symbol_printer): these.
4825 (yysymprint): Be sure to call YYPRINT only for tokens, and using
4826 user token numbers.
4827
87542d29
AD
48282002-06-20 Akim Demaille <akim@epita.fr>
4829
4830 * data/bison.simple (yydestructor): Rename as...
4831 (yydestruct): this.
4832
1a31ed21
AD
48332002-06-20 Akim Demaille <akim@epita.fr>
4834
4835 * src/symtab.h, src/symtab.c (symbol_type_set)
4836 (symbol_destructor_set, symbol_precedence_set): The location is
4837 the last argument.
4838 Adjust all callers.
4839
e776192e
AD
48402002-06-20 Akim Demaille <akim@epita.fr>
4841
4842 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
4843 internals.
4844 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
4845 Takes a location.
4846 * src/symtab.h, src/symtab.c (symbol_class_set)
4847 (symbol_user_token_number_set): Likewise.
4848 Adjust all callers.
4849 Promote complain_at.
4850 * tests/input.at (Type Clashes): Adjust.
4851
5c1180b3
AD
48522002-06-20 Akim Demaille <akim@epita.fr>
4853
4854 * data/bison.simple (YYLEX): Fix the declaration when
4855 %pure-parser.
4856
e3170060
AD
48572002-06-20 Akim Demaille <akim@epita.fr>
4858
4859 * data/bison.simple (yysymprint): Don't print the token number,
4860 just its name.
4861 * tests/actions.at (Destructors): Rename as...
4862 (Printers and Destructors): this.
4863 Also exercise %printer.
4864
253862fd
AD
48652002-06-20 Akim Demaille <akim@epita.fr>
4866
4867 * data/bison.simple (YYDSYMPRINT): New.
4868 Use it to remove many of the #if YYDEBUG/if (yydebug).
4869
366eea36
AD
48702002-06-20 Akim Demaille <akim@epita.fr>
4871
4872 * src/symtab.h, src/symtab.c (symbol_t): printer and
4873 printer_location are new members.
4874 (symbol_printer_set): New.
4875 * src/parse-gram.y (PERCENT_PRINTER): New token.
4876 Handle its associated rule.
4877 * src/scan-gram.l: Adjust.
4878 (handle_destructor_at, handle_destructor_dollar): Rename as...
4879 (handle_symbol_code_at, handle_symbol_code_dollar): these.
4880 * src/output.c (symbol_printers_output): New.
4881 (output_skeleton): Call it.
4882 * data/bison.simple (yysymprint): New. Cannot be named yyprint
4883 since there are already many grammar files with a user `yyprint'.
4884 Replace the calls to YYPRINT to calls to yysymprint.
4885 * tests/calc.at: Adjust.
4886 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
4887 taking advantage of parser very internal details (stack size!).
4888
4f25ebb0
AD
48892002-06-20 Akim Demaille <akim@epita.fr>
4890
4891 * src/scan-gram.l: Complete the scanner with the missing patterns
4892 to pacify Flex.
4893 Use `quote' and `symbol_tag_get' where appropriate.
4894
93b68a0e
AD
48952002-06-19 Akim Demaille <akim@epita.fr>
4896
4897 * tests/actions.at (Destructors): Augment to test locations.
4898 * data/bison.simple (yydestructor): Pass it the current location
4899 if locations are enabled.
4900 Prototype only when __STDC__ or C++.
4901 Change the argument names to move into the yy name space: there is
4902 user code here.
4903
58612f1d
AD
49042002-06-19 Akim Demaille <akim@epita.fr>
4905
74310291
AD
4906 * data/bison.simple (b4_pure_if): New.
4907 Use it instead of #ifdef YYPURE.
4908
49092002-06-19 Akim Demaille <akim@epita.fr>
4910
4911 * data/bison.simple (b4_location_if): New.
58612f1d
AD
4912 Use it instead of #ifdef YYLSP_NEEDED.
4913
f25bfb75
AD
49142002-06-19 Akim Demaille <akim@epita.fr>
4915
4916 Prepare @$ in %destructor, but currently don't bind it in the
4917 skeleton, as %location use is not cleaned up yet.
4918
4919 * src/scan-gram.l (handle_dollar, handle_destructor_at)
4920 (handle_action_at): New.
4921 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
4922 a braced_code_t and a location as additional arguments.
4923 (handle_destructor_dollar): Instead of requiring `b4_eval', just
4924 unquote one when outputting `b4_dollar_dollar'.
4925 Adjust callers.
4926 * data/bison.simple (b4_eval): Remove.
4927 (b4_symbol_destructor): Adjust.
4928 * tests/input.at (Invalid @n): Adjust.
4929
c732d2c6
AD
49302002-06-19 Zack Weinberg <zack@codesourcery.com>
4931
4932 * doc/bison.texinfo: Document ability to have multiple
4933 prologue sections.
4934
8c165d89
AD
49352002-06-18 Akim Demaille <akim@epita.fr>
4936
4937 * src/files.c (compute_base_names): When computing the output file
4938 names from the input file name, strip the directory part.
4939
ca98bf57
AD
49402002-06-18 Akim Demaille <akim@epita.fr>
4941
4942 * data/bison.simple.new: Comment changes.
4943 Reported by Andreas Schwab.
4944
0bfb02ff
AD
49452002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
4946
4947 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
4948 there are no `label `yyoverflowlab' defined but not used' warnings
4949 when yyoverflow is defined.
4950
24c0aad7
AD
49512002-06-18 Akim Demaille <akim@epita.fr>
4952
4953 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
4954 new member.
4955 (symbol_destructor_set): Adjust.
4956 * src/output.c (symbol_destructors_output): Output the destructor
4957 locations.
4958 Output the symbol name.
4959 * data/bison.simple (b4_symbol_destructor): Adjust.
4960
5719c109
AD
49612002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
4962 and Akim Demaille <akim@epita.fr>
4963
4964 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
4965 what's left on the stack when the error recovery hits EOF.
4966 * tests/actions.at (Destructors): Complete to exercise this case.
4967
9280d3ef
AD
49682002-06-17 Akim Demaille <akim@epita.fr>
4969
4970 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
4971 arguments is really empty, not only equal to `[]'.
4972 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
4973 member.
4974 (symbol_destructor_set): New.
4975 * src/output.c (symbol_destructors_output): New.
4976 * src/reader.h (brace_code_t, current_braced_code): New.
4977 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
4978 (handle_dollar): Rename as...
4979 (handle_action_dollar): this.
4980 (handle_destructor_dollar): New.
4981 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
4982 (grammar_declaration): Use it.
4983 * data/bison.simple (yystos): Is always defined.
4984 (yydestructor): New.
4985 * tests/actions.at (Destructors): New.
4986 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
4987
dafdc66f
AD
49882002-06-17 Akim Demaille <akim@epita.fr>
4989
4990 * src/symlist.h, src/symlist.c (symbol_list_length): New.
4991 * src/scan-gram.l (handle_dollar, handle_at): Compute the
4992 rule_length only when needed.
4993 * src/output.c (actions_output, token_definitions_output): Output
4994 the full M4 block.
4995 * src/symtab.c: Don't access directly to the symbol tag, use
4996 symbol_tag_get.
4997 * src/parse-gram.y: Use symbol_list_free.
4998
56c47203
AD
49992002-06-17 Akim Demaille <akim@epita.fr>
5000
5001 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
5002 (symbol_list_prepend, get_type_name): Move to...
5003 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
5004 (symbol_list_prepend, symbol_list_n_type_name_get): here.
5005 Adjust all callers.
5006 (symbol_list_free): New.
5007 * src/scan-gram.l (handle_dollar): Takes a location.
5008 * tests/input.at (Invalid $n): Adjust.
5009
1e0bab92
AD
50102002-06-17 Akim Demaille <akim@epita.fr>
5011
5012 * src/reader.h, src/reader.c (symbol_list_new): Export it.
5013 (symbol_list_prepend): New.
5014 * src/parse-gram.y (%union): `list' is a new member.
5015 (symbols.1): New, replaces...
5016 (terms_to_prec.1, nterms_to_type.1): these.
5017 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
5018 Take a location as additional argument.
5019 Adjust all callers.
5020
04e60654
AD
50212002-06-15 Akim Demaille <akim@epita.fr>
5022
5023 * src/parse-gram.y: Move %token in the declaration section so that
5024 we don't depend upon CVS Bison.
5025
10e5b8bd
AD
50262002-06-15 Akim Demaille <akim@epita.fr>
5027
5028 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
5029 * src/print.c (print_core): Use it.
5030
9801d40c
AD
50312002-06-15 Akim Demaille <akim@epita.fr>
5032
5033 * src/conflicts.c (log_resolution): Accept the rule involved in
5034 the sr conflicts instead of the lookahead number that points to
5035 that rule.
5036 (flush_reduce): Accept the current lookahead vector as argument,
5037 instead of the index in LA.
5038 (resolve_sr_conflict): Accept the current number of lookahead
5039 bitset to consider for the STATE, instead of the index in LA.
5040 (set_conflicts): Adjust.
5041 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
5042
c0263492
AD
50432002-06-15 Akim Demaille <akim@epita.fr>
5044
5045 * src/state.h (state_t): Replace the `lookaheadsp' member, a
5046 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
5047 Adjust all dependencies.
5048 * src/lalr.c (initialize_lookaheads): Split into...
5049 (states_lookaheads_count, states_lookaheads_initialize): these.
5050 (lalr): Adjust.
5051
9757c359
AD
50522002-06-15 Akim Demaille <akim@epita.fr>
5053
5054 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
5055 out of...
5056 (grammar_rules_print): here.
5057 * src/reduce.c (reduce_output): Use it.
5058 * tests/reduce.at (Useless Rules, Reduced Automaton)
5059 (Underivable Rules): Adjust.
5060
6b98e4b5
AD
50612002-06-15 Akim Demaille <akim@epita.fr>
5062
5063 Copy BYacc's nice way to report the grammar.
5064
5065 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
5066 New.
5067 Don't print the rules' location, it is confusing and useless.
5068 (rule_print): Use grammar_rhs_print.
5069 * src/print.c (print_grammar): Use grammar_rules_print.
5070
6b98e4b5
AD
50712002-06-15 Akim Demaille <akim@epita.fr>
5072
5073 Complete and rationalize `useless thing' warnings.
5074
5075 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
5076 (symbol_tag_print): New.
5077 Use them everywhere in place of accessing directly the tag member.
5078 * src/gram.h, src/gram.c (rule_print): New.
5079 Use it where a rule used to be printed `by hand'.
5080 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
5081 (reduce_grammar_tables): Report the useless rules.
5082 (reduce_print): Useless things are a warning, not an error.
5083 Report it as such.
5084 * tests/reduce.at (Useless Nonterminals, Useless Rules):
5085 (Reduced Automaton, Underivable Rules): Adjust.
5086 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
5087 * tests/conflicts.at (Unresolved SR Conflicts)
5088 (Solved SR Conflicts): Adjust.
5089
ee000ba4
AD
50902002-06-15 Akim Demaille <akim@epita.fr>
5091
5092 Let symbols have a location.
5093
5094 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
5095 (getsym): Adjust.
5096 Adjust all callers.
5097 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
5098 Use location_t, not int.
5099 * src/symtab.c (symbol_check_defined): Take advantage of the
5100 location.
5101 * tests/regression.at (Invalid inputs): Adjust.
5102
8efe435c
AD
51032002-06-15 Akim Demaille <akim@epita.fr>
5104
5105 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
5106 (input): Don't try to initialize yylloc here, do it in the
5107 scanner.
5108 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
5109 * src/gram.h (rule_t): Change line and action_line into location
5110 and action_location, of location_t type.
5111 Adjust all dependencies.
5112 * src/location.h, src/location.c (empty_location): New.
5113 * src/reader.h, src/reader.c (grammar_start_symbol_set)
5114 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
5115 (grammar_current_rule_symbol_append)
5116 (grammar_current_rule_action_append): Expect a location as argument.
5117 * src/reader.c (grammar_midrule_action): Adjust to attach an
5118 action's location as dummy symbol location.
5119 * src/symtab.h, src/symtab.c (startsymbol_location): New.
5120 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
5121 the line numbers.
5122
1921f1d7
AD
51232002-06-14 Akim Demaille <akim@epita.fr>
5124
5125 Grammar declarations may be found in the grammar section.
5126
5127 * src/parse-gram.y (rules_or_grammar_declaration): New.
5128 (declarations): Each declaration may end with a semicolon, not
5129 just...
5130 (grammar_declaration): `"%union"'.
5131 (grammar): Branch to rules_or_grammar_declaration.
5132
4515534c
AD
51332002-06-14 Akim Demaille <akim@epita.fr>
5134
5135 * src/main.c (main): Invoke scanner_free.
5136
f958596b
AD
51372002-06-14 Akim Demaille <akim@epita.fr>
5138
5139 * src/output.c (m4_invoke): Extracted from...
5140 (output_skeleton): here.
5141 Free tempfile.
5142
2c569025
AD
51432002-06-14 Akim Demaille <akim@epita.fr>
5144
5145 * src/parse-gram.y (directives, directive, gram)
5146 (grammar_directives, precedence_directives, precedence_directive):
5147 Rename as...
5148 (declarations, declaration, grammar, grammar_declaration)
5149 (precedence_declaration, precedence_declarator): these.
5150 (symbol_declaration): New.
5151
592e8d4d
AD
51522002-06-14 Akim Demaille <akim@epita.fr>
5153
5154 * src/files.c (action_obstack): Remove, unused.
5155 (output_obstack): Remove it, and all its dependencies, as it is no
5156 longer needed.
5157 * src/reader.c (epilogue_set): Build the epilogue in the
5158 muscle_obstack.
5159 * src/output.h, src/output.c (muscle_obstack): Move to...
5160 * src/muscle_tab.h, src/muscle_tab.h: here.
5161 (muscle_init): Initialize muscle_obstack.
5162 (muscle_free): New.
5163 * src/main.c (main): Call it.
5164
0c15323d
AD
51652002-06-14 Akim Demaille <akim@epita.fr>
5166
5167 * src/location.h: New, extracted from...
5168 * src/reader.h: here.
5169 * src/Makefile.am (noinst_HEADERS): Merge into
5170 (bison_SOURCES): this.
5171 Add location.h.
5172 * src/parse-gram.y: Use location_t instead of Bison's.
5173 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
5174 Use location_t instead of ints.
5175
e96c9728
AD
51762002-06-14 Akim Demaille <akim@epita.fr>
5177
5178 * data/bison.simple, data/bison.c++: Be sure to restore the
5179 current #line when returning to the skeleton contents after having
5180 exposed the input file's #line.
5181
75d1fe16
AD
51822002-06-12 Akim Demaille <akim@epita.fr>
5183
5184 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
5185 eager.
5186 * tests/actions.at (Exotic Dollars): New.
5187
6c35d22c
AD
51882002-06-12 Akim Demaille <akim@epita.fr>
5189
5190 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
5191 ['"/] too eagerly.
5192 * tests/input.at (Torturing the Scanner): New.
5193
1d6412ad
AD
51942002-06-11 Akim Demaille <akim@epita.fr>
5195
5196 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
5197 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
5198 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
5199 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
5200 * src/reader.c (reader): Use it.
5201
4cdb01db
AD
52022002-06-11 Akim Demaille <akim@epita.fr>
5203
5204 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
5205 Adjust all callers.
5206 (scanner_last_string_free): New.
5207
44995b2e
AD
52082002-06-11 Akim Demaille <akim@epita.fr>
5209
5210 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
5211 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
5212 (last_string, YY_OBS_FREE): New.
5213 Use them when returning an ID.
5214
e9955c83
AD
52152002-06-11 Akim Demaille <akim@epita.fr>
5216
5217 Have Bison grammars parsed by a Bison grammar.
5218
5219 * src/reader.c, src/reader.h (prologue_augment): New.
5220 * src/reader.c (copy_definition): Remove.
5221
5222 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
5223 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
5224 (grammar_current_rule_prec_set, grammar_current_rule_check)
5225 (grammar_current_rule_symbol_append)
5226 (grammar_current_rule_action_append): Export.
5227 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
5228 (symbol_list_action_append): Remove.
5229 Hook the routines from reader.
5230 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
5231 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
5232
5233 * src/reader.c (read_declarations): Remove, unused.
5234
5235 * src/parse-gram.y: Handle the epilogue.
5236 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
5237 (grammar_start_symbol_set): this.
5238 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
5239 * src/reader.c (readgram): Remove, unused.
5240 (reader): Adjust to insert eoftoken and axiom where appropriate.
5241
5242 * src/reader.c (copy_dollar): Replace with...
5243 * src/scan-gram.h (handle_dollar): this.
5244 * src/parse-gram.y: Remove `%thong'.
5245
5246 * src/reader.c (copy_at): Replace with...
5247 * src/scan-gram.h (handle_at): this.
5248
5249 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
5250 New.
5251
5252 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
5253 time being.
5254
5255 * src/reader.h, src/reader.c (grammar_rule_end): New.
5256
5257 * src/parse.y (current_type, current_class): New.
5258 Implement `%nterm', `%token' support.
5259 Merge `%term' into `%token'.
5260 (string_as_id): New.
5261 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
5262 type name.
5263
5264 * src/parse-gram.y: Be sure to handle properly the beginning of
5265 rules.
5266
5267 * src/parse-gram.y: Handle %type.
5268 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
5269
5270 * src/parse-gram.y: More directives support.
5271 * src/options.c: No longer handle source directives.
5272
5273 * src/parse-gram.y: Fix %output.
5274
5275 * src/parse-gram.y: Handle %union.
5276 Use the prologue locations.
5277 * src/reader.c (parse_union_decl): Remove.
5278
5279 * src/reader.h, src/reader.c (epilogue_set): New.
5280 * src/parse-gram.y: Use it.
5281
5282 * data/bison.simple, data/bison.c++: b4_stype is now either not
5283 defined, then default to int, or to the contents of %union,
5284 without `union' itself.
5285 Adjust.
5286 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
5287
5288 * src/output.c (actions_output): Don't output braces, as they are
5289 already handled by the scanner.
5290
5291 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
5292 characters to themselves.
5293
5294 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
5295 that the epilogue has a proper #line.
5296
5297 * src/parse-gram.y: Handle precedence/associativity.
5298
5299 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
5300 a terminal.
5301 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
5302 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
5303 at all to define terminals that cannot be emitted.
5304
5305 * src/scan-gram.l: Escape M4 characters.
5306
5307 * src/scan-gram.l: Working properly with escapes in user
5308 strings/characters.
5309
5310 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
5311 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
5312 grammar.
5313 Use more modest sizes, as for the time being the parser does not
5314 release memory, and therefore the process swallows a huge amount
5315 of memory.
5316
5317 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
5318 stricter %token grammar.
5319
5320 * src/symtab.h (associativity): Add `undef_assoc'.
5321 (symbol_precedence_set): Do nothing when passed an undef_assoc.
5322 * src/symtab.c (symbol_check_alias_consistence): Adjust.
5323
5324 * tests/regression.at (Invalid %directive): Remove, as it is now
5325 meaningless.
5326 (Invalid inputs): Adjust to the new error messages.
5327 (Token definitions): The new grammar doesn't allow too many
5328 eccentricities.
5329
5330 * src/lex.h, src/lex.c: Remove.
5331 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
5332 (copy_character, copy_string2, copy_string, copy_identifier)
5333 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
5334 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
5335 (parse_action): Remove.
5336 * po/POTFILES.in: Adjust.
5337
2e047461
AD
53382002-06-11 Akim Demaille <akim@epita.fr>
5339
cd05d13c 5340 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
5341 rule's action member: return the action as a string.
5342 Don't require `rule_length' as an argument: compute it.
5343 (grammar_current_rule_symbol_append)
5344 (grammar_current_rule_action_append): New, eved out from
5345 (readgram): here.
5346 Remove `action_flag', `rulelength', unused now.
5347
9af3fbce
AD
53482002-06-11 Akim Demaille <akim@epita.fr>
5349
5350 * src/reader.c (grammar_current_rule_prec_set).
5351 (grammar_current_rule_check): New, eved out from...
5352 (readgram): here.
5353 Remove `xaction', `first_rhs': useless.
5354 * tests/input.at (Type clashes): New.
5355 * tests/existing.at (GNU Cim Grammar): Adjust.
5356
1485e106
AD
53572002-06-11 Akim Demaille <akim@epita.fr>
5358
5359 * src/reader.c (grammar_midrule_action): New, Eved out from
5360 (readgram): here.
5361
da4160c3
AD
53622002-06-11 Akim Demaille <akim@epita.fr>
5363
5364 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
5365 New.
5366 (readgram): Use them as replacement of inlined code, crule and
5367 crule1.
5368
f6d0f937
AD
53692002-06-11 Akim Demaille <akim@epita.fr>
5370
5371 * src/reader.c (grammar_end, grammar_symbol_append): New.
5372 (readgram): Use them.
5373 Make the use of `p' as local as possible.
5374
69078d4b
AD
53752002-06-10 Akim Demaille <akim@epita.fr>
5376
5377 GCJ's parser requires the tokens to be defined before the prologue.
5378
5379 * data/bison.simple: Output the token definition before the user's
5380 prologue.
5381 * tests/regression.at (Braces parsing, Duplicate string)
5382 (Mixing %token styles): Check the output from bison.
5383 (Early token definitions): New.
5384
5e424082
AD
53852002-06-10 Akim Demaille <akim@epita.fr>
5386
5387 * src/symtab.c (symbol_user_token_number_set): Don't complain when
5388 assigning twice the same user number to a token, so that we can
5389 use it in...
5390 * src/lex.c (lex): here.
5391 Also use `symbol_class_set' instead of hand written code.
5392 * src/reader.c (parse_assoc_decl): Likewise.
5393
44536b35
AD
53942002-06-10 Akim Demaille <akim@epita.fr>
5395
5396 * src/symtab.c, src/symtab.c (symbol_class_set)
5397 (symbol_user_token_number_set): New.
5398 * src/reader.c (parse_token_decl): Use them.
5399 Use a switch instead of ifs.
5400 Use a single argument.
5401
8b9f2372
AD
54022002-06-10 Akim Demaille <akim@epita.fr>
5403
5404 Remove `%thong' support as it is undocumented, unused, duplicates
5405 `%token's job, and creates useless e-mail traffic with people who
5406 want to know what it is, why it is undocumented, unused, and
5407 duplicates `%token's job.
5408
5409 * src/reader.c (parse_thong_decl): Remove.
5410 * src/options.c (option_table): Remove "thong".
5411 * src/lex.h (tok_thong): Remove.
5412
3ae2b51f
AD
54132002-06-10 Akim Demaille <akim@epita.fr>
5414
5415 * src/symtab.c, src/symtab.c (symbol_type_set)
5416 (symbol_precedence_set): New.
5417 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
5418 (value_components_used): Remove, unused.
5419
2f1afb73
AD
54202002-06-09 Akim Demaille <akim@epita.fr>
5421
5422 Move symbols handling code out of the reader.
5423
5424 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
5425 (axiom): Move to...
5426 * src/symtab.h, src/symtab.c: here.
5427
5428 * src/gram.c (start_symbol): Remove: use startsymbol->number.
5429 * src/reader.c (startval): Rename as...
5430 * src/symtab.h, src/symtab.c (startsymbol): this.
5431 * src/reader.c: Adjust.
5432
5433 * src/reader.c (symbol_check_defined, symbol_make_alias)
5434 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
5435 (token_translations_init)
5436 Move to...
5437 * src/symtab.c: here.
5438 * src/reader.c (packsymbols): Move to...
5439 * src/symtab.h, src/symtab.c (symbols_pack): here.
5440 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
5441 argument.
5442
e9bca3ad
AD
54432002-06-03 Akim Demaille <akim@epita.fr>
5444
5445 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
5446 then statements.
5447
86eff183
AD
54482002-06-03 Akim Demaille <akim@epita.fr>
5449
5450 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
5451 structs with non literals.
5452 * src/scan-skel.l: never-interactive.
5453 * src/conflicts.c (enum conflict_resolution_e): No trailing
5454 comma.
5455 * src/getargs.c (usage): Split long literal strings.
5456 Reported by Hans Aberg.
5457
717be197
AD
54582002-05-28 Akim Demaille <akim@epita.fr>
5459
5460 * data/bison.c++: Use C++ ostreams.
5461 (cdebug_): New member.
5462
670ddffd
AD
54632002-05-28 Akim Demaille <akim@epita.fr>
5464
5465 * src/output.c (output_skeleton): Be sure to allocate enough room
5466 for `/' _and_ for `\0' in full_skeleton.
5467
769b430f
AD
54682002-05-28 Akim Demaille <akim@epita.fr>
5469
5470 * data/bison.c++: Catch up with bison.simple:
5471 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5472 and Paul Eggert <eggert@twinsun.com>: `error' handing.
5473 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
5474 and popping traces.
5475
7067cb36
PH
54762002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5477
5478 * src/output.c (output_skeleton): Put an explicit path in front of
5479 the skeleton file name, rather than relying on the -I directory,
5480 to partially alleviate effects of having a skeleton file lying around
5481 in the current directory.
769b430f 5482
4a713ec2
PH
54832002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5484
769b430f 5485 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
5486 obstack_printf should be obstack_fgrow1.
5487
b408954b
AD
54882002-05-26 Akim Demaille <akim@epita.fr>
5489
5490 * src/state.h (state_t): `solved_conflicts' is a new member.
5491 * src/LR0.c (new_state): Set it to 0.
5492 * src/conflicts.h, src/conflicts.c (print_conflicts)
5493 (free_conflicts, solve_conflicts): Rename as...
5494 (conflicts_print, conflicts_free, conflicts_solve): these.
5495 Adjust callers.
5496 * src/conflicts.c (enum conflict_resolution_e)
5497 (solved_conflicts_obstack): New, used by...
5498 (log_resolution): this.
5499 Adjust to attach the conflict resolution to each state.
5500 Complete the description with the precedence/associativity
5501 information.
5502 (resolve_sr_conflict): Adjust.
5503 * src/print.c (print_state): Output its solved_conflicts.
5504 * tests/conflicts.at (Unresolved SR Conflicts)
5505 (Solved SR Conflicts): Exercise --report=all.
5506
a49aecd5
AD
55072002-05-26 Akim Demaille <akim@epita.fr>
5508
5509 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
5510 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
5511 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
5512 (token_number_t, item_number_as_token_number)
5513 (token_number_as_item_number, muscle_insert_token_number_table):
5514 Rename as...
5515 (symbol_number_t, item_number_as_symbol_number)
5516 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
5517 these, since it is more appropriate.
5518
5504898e
AD
55192002-05-26 Akim Demaille <akim@epita.fr>
5520
5521 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
5522 `Error:' lines.
5523 * data/bison.simple (yystos) [YYDEBUG]: New.
5524 (yyparse) [YYDEBUG]: Display the symbols which are popped during
5525 error recovery.
5526 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
5527
ec3bc396
AD
55282002-05-25 Akim Demaille <akim@epita.fr>
5529
5530 * doc/bison.texinfo (Debugging): Split into...
5531 (Tracing): this new section, its former contents, and...
5532 (Understanding): this new section.
5533 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
5534 by...
5535 (report_flag): this.
5536 Adjust all dependencies.
5537 (report_args, report_types, report_argmatch): New.
5538 (usage, getargs): Report/support -r, --report.
5539 * src/options.h
5540 (struct option_table_struct): Rename as..,
5541 (struct option_table_s): this.
5542 Rename the `set_flag' member to `flag' to match with getopt_long's
5543 struct.
5544 * src/options.c (option_table): Split verbose into an entry for
5545 %verbose, and another for --verbose.
5546 Support --report/-r, so remove -r from the obsolete --raw.
5547 * src/print.c: Attach full item sets and lookaheads reports to
5548 report_flag instead of trace_flag.
5549 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
5550
78df8250
PE
55512002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5552 and Paul Eggert <eggert@twinsun.com>
769b430f 5553
78df8250
PE
5554 * data/bison.simple (yyparse): Correct error handling to conform to
5555 POSIX and yacc. Specifically, after syntax error is discovered,
5556 do not reduce further before shifting the error token.
5557 Clean up the code a bit by removing the labels yyerrdefault,
5558 yyerrhandle, yyerrpop.
5559 * NEWS: Document the above.
5560
c0c9ea05
PH
55612002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5562
5563 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
5564 type; it isn't always big enough, since it doesn't necessarily
5565 include non-terminals.
769b430f 5566 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
5567 the latter can be removed.
5568 (yy_token_number_type): Remove, only one use.
5569 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
5570 don't use TokenNumberType as element type.
769b430f 5571
c0c9ea05
PH
5572 * tests/regression.at: Modify expected output to agree with change
5573 to yyr1 and yytranslate.
769b430f 5574
6390a83f
FK
55752002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
5576
5577 * src/reader.c (parse_action): Use copy_character instead of
5578 obstack_1grow.
5579
db7c8e9a
AD
55802002-05-13 Akim Demaille <akim@epita.fr>
5581
5582 * tests/regression.at (Token definitions): Prototype yylex and
5583 yyerror.
5584
fcc61800
PH
55852002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5586
158c687b 5587 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
5588 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
5589 32-bit arithmetic.
5590 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
5591
5683e9b2
AD
55922002-05-07 Akim Demaille <akim@epita.fr>
5593
5594 * tests/synclines.at: Be sure to prototype yylex and yyerror to
5595 avoid GCC warnings.
5596
0c2d3f4c
AD
55972002-05-07 Akim Demaille <akim@epita.fr>
5598
5599 Kill GCC warnings.
5600
5601 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
5602 over the RHS of each rule.
5603 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
5604 * src/state.h (state_t): Member `nitems' is unsigned short.
5605 * src/LR0.c (get_state): Adjust.
5606 * src/reader.c (packgram): Likewise.
5607 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
5608 `Type'.
5609 (muscle_insert_int_table): Remove, unused.
5610 (prepare_rules): Remove `max'.
5611
1565b720
AD
56122002-05-06 Akim Demaille <akim@epita.fr>
5613
5614 * src/closure.c (print_firsts): Display of the symbol tags.
5615 (bitmatrix_print): Move to...
5616 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
5617 here.
5618 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
5619
cfaee611
AD
56202002-05-06 Akim Demaille <akim@epita.fr>
5621
5622 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
5623 hash_do_for_each.
5624
458be8e0
AD
56252002-05-06 Akim Demaille <akim@epita.fr>
5626
5627 * src/LR0.c (new_state, get_state): Instead of using the global
5628 `kernel_size' and `kernel_base', have two new arguments:
5629 `core_size' and `core'.
5630 Adjust callers.
5631
a900a624
AD
56322002-05-06 Akim Demaille <akim@epita.fr>
5633
5634 * src/reader.c (packgram): No longer end `ritem' with a 0
5635 sentinel: it is not used.
5636
d4e7d3a1
AD
56372002-05-05 Akim Demaille <akim@epita.fr>
5638
5639 New experimental feature: display the lookaheads in the report and
5640 graph.
5641
5642 * src/print (print_core): When --trace-flag, display the rules
5643 lookaheads.
5644 * src/print_graph.c (print_core): Likewise.
5645 Swap the arguments.
5646 Adjust caller.
5647
39ceb25b
AD
56482002-05-05 Akim Demaille <akim@epita.fr>
5649
5650 * tests/torture.at (Many lookaheads): New test.
5651
5372019f
AD
56522002-05-05 Akim Demaille <akim@epita.fr>
5653
5654 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
5655 (GENERATE_MUSCLE_INSERT_TABLE): this.
5656 (output_int_table, output_unsigned_int_table, output_short_table)
5657 (output_token_number_table, output_item_number_table): Replace with...
5658 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
5659 (muscle_insert_short_table, muscle_insert_token_number_table)
5660 (muscle_insert_item_number_table): these.
5661 Adjust all callers.
5662 (prepare_tokens): Don't free `translations', since...
5663 * src/reader.h, src/reader.c (grammar_free): do it.
5664 Move to...
5665 * src/gram.h, src/gram.c (grammar_free): here.
5666 * data/bison.simple, data/bison.c++: b4_token_number_max is now
5667 b4_translate_max.
5668
5df5f6d5
AD
56692002-05-05 Akim Demaille <akim@epita.fr>
5670
5671 * src/output.c (output_unsigned_int_table): New.
5672 (prepare_rules): `i' is unsigned.
5673 `prhs', `rline', `r2' are unsigned int.
5674 Rename muscle `rhs_number_max' as `rhs_max'.
5675 Output muscles `prhs_max', `rline_max', and `r2_max'.
5676 Free rline and r1.
5677 * data/bison.simple, data/bison.c++: Adjust to use these muscles
5678 to compute types instead of constant types.
5679 * tests/regression.at (Web2c Actions): Adjust.
5680
b87f8b21
AD
56812002-05-04 Akim Demaille <akim@epita.fr>
5682
5683 * src/symtab.h (SALIAS, SUNDEF): Rename as...
5684 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
5685 Adjust dependencies.
5686 * src/output.c (token_definitions_output): Be sure not to output a
5687 `#define 'a'' when fed with `%token 'a' "a"'.
5688 * tests/regression.at (Token definitions): New.
5689
8bb936e4
PE
56902002-05-03 Paul Eggert <eggert@twinsun.com>
5691
5692 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
5693 for K&R C.
5694
56952002-05-03 gettextize <bug-gnu-gettext@gnu.org>
5696
5697 * Makefile.am (SUBDIRS): Remove intl.
5698 (EXTRA_DIST): Add config/config.rpath.
5699
53c71a12
AD
57002002-05-03 Akim Demaille <akim@epita.fr>
5701
5702 * data/bison.simple (m4_if): Don't output empty enums.
5703 And actually, output valid enum definitions :(.
5704
289dd0cf
AD
57052002-05-03 Akim Demaille <akim@epita.fr>
5706
5707 * configure.bat: Remove, completely obsolete.
5708 * Makefile.am (EXTRA_DIST): Adjust.
5709 Don't distribute config.rpath...
5710 * config/Makefile.am (EXTRA_DIST): Do it.
5711
db85e524
AD
57122002-05-03 Akim Demaille <akim@epita.fr>
5713
5714 * configure.in (GETTEXT_VERSION): New.
5715 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
5716
83ccf991
AD
57172002-05-03 Akim Demaille <akim@epita.fr>
5718
5719 * data/bison.simple (b4_token_enum): New.
5720 (b4_token_defines): Use it to output tokens both as #define and
5721 enums.
5722 Suggested by Paul Eggert.
5723 * src/output.c (token_definitions_output): Don't output spurious
5724 white spaces.
5725
1f418995
AD
57262002-05-03 Akim Demaille <akim@epita.fr>
5727
5728 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
5729
45119f04
RA
57302002-05-02 Robert Anisko <robert@lrde.epita.fr>
5731
5732 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
5733 Update the stack class, give a try to deque as the default container.
5734
b2d52318
AD
57352002-05-02 Akim Demaille <akim@epita.fr>
5736
5737 * data/bison.simple (yyparse): Do not implement @$ = @1.
5738 (YYLLOC_DEFAULT): Adjust to do it.
5739 * doc/bison.texinfo (Location Default Action): Fix.
5740
3a8b4109
AD
57412002-05-02 Akim Demaille <akim@epita.fr>
5742
5743 * src/reader.c (parse_braces): Merge into...
5744 (parse_action): this.
5745
84614e13
AD
57462002-05-02 Akim Demaille <akim@epita.fr>
5747
5748 * configure.in (ALL_LINGUAS): Remove.
5749 * po/LINGUAS, hr.po: New.
5750
fdbcd8e2
AD
57512002-05-02 Akim Demaille <akim@epita.fr>
5752
5753 Remove the so called hairy (semantic) parsers.
5754
5755 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
5756 * src/gram.h, src/gram.c (semantic_parser): Remove.
5757 (rule_t): Remove the guard and guard_line members.
5758 * src/lex.h (token_t): remove tok_guard.
5759 * src/options.c (option_table): Remove %guard and %semantic_parser
5760 support.
5761 * src/output.c, src/output.h (guards_output): Remove.
5762 (prepare): Adjust.
5763 (token_definitions_output): Don't output the `T'
5764 tokens (???).
5765 (output_skeleton): Don't output the guards.
5766 * src/files.c, src/files.c (attrsfile): Remove.
5767 * src/reader.c (symbol_list): Remove the guard and guard_line
5768 members.
5769 Adjust dependencies.
5770 (parse_guard): Remove.
5771 * data/bison.hairy: Remove.
5772 * doc/bison.texinfo (Environment Variables): Remove occurrences of
5773 BISON_HAIRY.
5774
82b6cb3f
AD
57752002-05-02 Akim Demaille <akim@epita.fr>
5776
5777 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
5778 (parse_guard): Rename the formal argument `stack_offset' as
5779 `rule_length', which is more readable.
5780 Adjust callers.
5781 (copy_at, copy_dollar): Instead of outputting the hard coded
5782 values of $$, $n and so forth, output invocation to b4_lhs_value,
5783 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
5784 Note: this patch partially drops `semantic-parser' support: it
5785 always does `rule_length - n', where semantic parsers ought to
5786 always use `-n'.
82b6cb3f
AD
5787 * data/bison.simple, data/bison.c++ (b4_lhs_value)
5788 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
5789
6cbfbcc5
AD
57902002-05-02 Akim Demaille <akim@epita.fr>
5791
5792 * configure.in (AC_INIT): Bump to 1.49b.
5793 (AM_INIT_AUTOMAKE): Short invocation.
5794
b8548114
AD
57952002-05-02 Akim Demaille <akim@epita.fr>
5796
5797 Version 1.49a.
5798
c20cd1fa
AD
57992002-05-01 Akim Demaille <akim@epita.fr>
5800
5801 * src/skeleton.h: Remove.
5802
8a9566d4
AD
58032002-05-01 Akim Demaille <akim@epita.fr>
5804
5805 * src/skeleton.h: Fix the #endif.
5806 Reported by Magnus Fromreide.
5807
8c6d399a
PE
58082002-04-26 Paul Eggert <eggert@twinsun.com>
5809
5810 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
5811 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 5812 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 5813
2b7ed18a
RA
58142002-04-25 Robert Anisko <robert@lrde.epita.fr>
5815
5816 * src/scan-skel.l: Postprocess quadrigraphs.
5817
5818 * src/reader.c (copy_character): New function, used to output
5819 single characters while replacing `[' and `]' with quadrigraphs, to
5820 avoid troubles with M4 quotes.
5821 (copy_comment): Output characters with copy_character.
5822 (read_additionnal_code): Likewise.
5823 (copy_string2): Likewise.
5824 (copy_definition): Likewise.
5825
5826 * tests/calc.at: Exercise M4 quoting.
5827
34a89c50
AD
58282002-04-25 Akim Demaille <akim@epita.fr>
5829
5830 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
5831 between `!' and the command.
5832 Reported by Paul Eggert.
5833
0dd1580a
RA
58342002-04-24 Robert Anisko <robert@lrde.epita.fr>
5835
5836 * tests/calc.at: Exercise prologue splitting.
5837
5838 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
5839 `b4_post_prologue' instead of `b4_prologue'.
5840
5841 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
5842 muscles.
5843 (output): Free pre_prologue_obstack and post_prologue_obstack.
5844 * src/files.h, src/files.c (attrs_obstack): Remove.
5845 (pre_prologue_obstack, post_prologue_obstack): New.
5846 * src/reader.c (copy_definition): Add a parameter to specify the
5847 obstack to fill, instead of using attrs_obstack unconditionally.
5848 (read_declarations): Pass pre_prologue_obstack to copy_definition if
5849 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
5850
83c1796f
PE
58512002-04-23 Paul Eggert <eggert@twinsun.com>
5852
5853 * data/bison.simple: Remove unnecessary commentary and white
5854 space differences from 1_29-branch.
5855 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
5856
5857 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
5858 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
5859 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
5860 constructors or destructors.
5861
5862 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
5863
1207eeac
AD
58642002-04-23 Akim Demaille <akim@epita.fr>
5865
5866 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
5867 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
5868 location with columns.
5869 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
5870 All reported by Paul Eggert.
5871
78ab8f67
AD
58722002-04-22 Akim Demaille <akim@epita.fr>
5873
5874 * src/reduce.c (dump_grammar): Move to...
5875 * src/gram.h, src/gram.c (grammar_dump): here.
5876 Be sure to separate long item numbers.
5877 Don't read the members of a rule's prec if its nil.
5878
133c20e2
AD
58792002-04-22 Akim Demaille <akim@epita.fr>
5880
5881 * src/output.c (table_size, table_grow): New.
5882 (MAXTABLE): Remove, replace uses with table_size.
5883 (pack_vector): Instead of dying when the table is too big, grow it.
5884
9515e8a7
AD
58852002-04-22 Akim Demaille <akim@epita.fr>
5886
5887 * data/bison.simple (yyr1): Its type is that of a token number.
5888 * data/bison.c++ (r1_): Likewise.
5889 * tests/regression.at (Web2c Actions): Adjust.
5890
23c5a174
AD
58912002-04-22 Akim Demaille <akim@epita.fr>
5892
5893 * src/reader.c (token_translations_init): 256 is now the default
5894 value for the error token, i.e., it will be assigned another
5895 number if the user assigned 256 to one of her tokens.
5896 (reader): Don't force 256 to error.
5897 * doc/bison.texinfo (Symbols): Adjust.
5898 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
5899 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
5900 etc. instead of 10, 20, 30 (which was used to `jump' over error
5901 (256) and undefined (2)).
5902
5fbb0954
AD
59032002-04-22 Akim Demaille <akim@epita.fr>
5904
5905 Propagate more token_number_t.
5906
5907 * src/gram.h (token_number_as_item_number)
5908 (item_number_as_token_number): New.
5909 * src/output.c (GENERATE_OUTPUT_TABLE): New.
5910 Use it to create output_item_number_table and
5911 output_token_number_table.
5912 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
5913 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
5914 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
5915 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
5916
4f940944
AD
59172002-04-22 Akim Demaille <akim@epita.fr>
5918
5919 * src/output.h, src/output.c (get_lines_number): Remove.
5920
3ded9a63
AD
59212002-04-19 Akim Demaille <akim@epita.fr>
5922
5923 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
5924 as Lex/Flex'.
5925 (Debugging): More details about enabling the debugging features.
5926 (Table of Symbols): Describe $$, $n, @$, and @n.
5927 Suggested by Tim Josling.
5928
e0c471a9
AD
59292002-04-19 Akim Demaille <akim@epita.fr>
5930
5931 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
5932
fecc10cd
AD
59332002-04-10 Akim Demaille <akim@epita.fr>
5934
5935 * src/system.h: Rely on HAVE_LIMITS_H.
5936 Suggested by Paul Eggert.
5937
51dec47b
AD
59382002-04-09 Akim Demaille <akim@epita.fr>
5939
5940 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
5941 full stderr, and strip it according to the bison options, instead
5942 of composing the error message from different bits.
5943 This makes it easier to check for several error messages.
5944 Adjust all the invocations.
5945 Add an invocation exercising the error token.
5946 Add an invocation demonstrating a stupid error message.
5947 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
5948 Adjust the tests.
5949 Error message are for stderr, not stdout.
5950
007a50a4
AD
59512002-04-09 Akim Demaille <akim@epita.fr>
5952
5953 * src/gram.h, src/gram.c (error_token_number): Remove, use
5954 errtoken->number.
5955 * src/reader.c (reader): Don't specify the user token number (2)
5956 for $undefined, as it uselessly prevents using it.
5957 * src/gram.h (token_number_t): Move to...
5958 * src/symtab.h: here.
5959 (state_t.number): Is a token_number_t.
5960 * src/print.c, src/reader.c: Use undeftoken->number instead of
5961 hard coded 2.
5962 (Even though this 2 is not the same as above: the number of the
5963 undeftoken remains being 2, it is its user token number which
5964 might not be 2).
5965 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
5966 `user_token_number_max'.
5967 Output `undef_token_number'.
5968 * data/bison.simple, data/bison.c++: Use them.
5969 Be sure to map invalid yylex return values to
5970 `undef_token_number'. This saves us from gratuitous SEGV.
5971
5972 * tests/conflicts.at (Solved SR Conflicts)
5973 (Unresolved SR Conflicts): Adjust.
5974 * tests/regression.at (Web2c Actions): Adjust.
5975
06446ccf
AD
59762002-04-08 Akim Demaille <akim@epita.fr>
5977
5978 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
5979 Adding #line.
5980 Remove the duplicate `typedefs'.
5981 (RhsNumberType): Fix the declaration and various other typos.
5982 Use __ofile__.
5983 * data/bison.simple: Use __ofile__.
5984 * src/scan-skel.l: Handle __ofile__.
5985
62a3e4f0
AD
59862002-04-08 Akim Demaille <akim@epita.fr>
5987
5988 * src/gram.h (item_number_t): New, the type of item numbers in
5989 RITEM. Note that it must be able to code symbol numbers as
5990 positive number, and the negation of rule numbers as negative
5991 numbers.
5992 Adjust all dependencies (pretty many).
5993 * src/reduce.c (rule): Remove this `short *' pointer: use
5994 item_number_t.
5995 * src/system.h (MINSHORT, MAXSHORT): Remove.
5996 Include `limits.h'.
5997 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
5998 (shortcpy): Remove.
5999 (MAXTABLE): Move to...
6000 * src/output.c (MAXTABLE): here.
6001 (prepare_rules): Use output_int_table to output rhs.
6002 * data/bison.simple, data/bison.c++: Adjust.
6003 * tests/torture.at (Big triangle): Move the limit from 254 to
6004 500.
6005 * tests/regression.at (Web2c Actions): Ajust.
6006
6007 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
6008 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
6009 passes, but produces negative #line number, once fixed, GCC is
6010 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
6011 C), it passes.
6012 * src/state.h (state_h): Code input lines on ints, not shorts.
6013
bb88b0fc
AD
60142002-04-08 Akim Demaille <akim@epita.fr>
6015
6016 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
6017 and then the grammar.
6018
9a636f47
AD
60192002-04-08 Akim Demaille <akim@epita.fr>
6020
6021 * src/system.h: No longer using strndup.
6022
680e8701
AD
60232002-04-07 Akim Demaille <akim@epita.fr>
6024
6025 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
6026 * src/output.c (output_table_data): Return the longest number.
6027 (prepare_tokens): Output `token_number_max').
6028 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
6029 New.
6030 Use them to define yy_token_number_type/TokenNumberType.
6031 Use this type for yytranslate.
6032 * tests/torture.at (Big triangle): Push the limit from 124 to
6033 253.
6034 * tests/regression.at (Web2c Actions): Adjust.
6035
817e9f41
AD
60362002-04-07 Akim Demaille <akim@epita.fr>
6037
6038 * tests/torture.at (Big triangle): New.
6039 (GNU AWK Grammar, GNU Cim Grammar): Move to...
6040 * tests/existing.at: here.
6041
5123689b
AD
60422002-04-07 Akim Demaille <akim@epita.fr>
6043
6044 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
6045 nritems.
6046 Adjust dependencies.
6047
f3849179
AD
60482002-04-07 Akim Demaille <akim@epita.fr>
6049
6050 * src/reader.c: Normalize increments to prefix form.
6051
bd02036a
AD
60522002-04-07 Akim Demaille <akim@epita.fr>
6053
6054 * src/reader.c, symtab.c: Remove debugging code.
6055
db8837cb
AD
60562002-04-07 Akim Demaille <akim@epita.fr>
6057
6058 Rename all the `bucket's as `symbol_t'.
6059
6060 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
6061 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
6062 * src/symtab.c, src/symtab.h (bucket): Rename as...
6063 (symbol_t): this.
6064 (symbol_list_new, bucket_check_defined, bucket_make_alias)
6065 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
6066 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
6067 (buckets_new, buckets_free, buckets_do): Rename as...
6068 (symbol_list_new, symbol_check_defined, symbol_make_alias)
6069 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
6070 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
6071 (symbols_new, symbols_free, symbols_do): these.
6072
72a23c97
AD
60732002-04-07 Akim Demaille <akim@epita.fr>
6074
6075 Use lib/hash for the symbol table.
6076
6077 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
6078 EOF.
6079 * src/lex.c (lex): Set the `number' member of new terminals.
6080 * src/reader.c (bucket_check_defined, bucket_make_alias)
6081 (bucket_check_alias_consistence, bucket_translation): New.
6082 (reader, grammar_free, readgram, token_translations_init)
6083 (packsymbols): Adjust.
6084 (reader): Number the predefined tokens.
6085 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
6086 for predefined tokens.
6087 * src/symtab.h (bucket): Remove all the hash table related
6088 members.
6089 * src/symtab.c (symtab): Replace by...
6090 (bucket_table): this.
6091 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
6092 (buckets_new, buckets_do): New.
6093
280a38c3
AD
60942002-04-07 Akim Demaille <akim@epita.fr>
6095
6096 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
6097 (start_symbol, max_user_token_number, semantic_parser)
6098 (error_token_number): Initialize.
6099 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
6100 Initialize.
6101 (reader): Don't.
6102 (errtoken, eoftoken, undeftoken, axiom): Extern.
6103
03b31c0c
AD
61042002-04-07 Akim Demaille <akim@epita.fr>
6105
6106 * src/gram.h (rule_s): prec and precsym are now pointers
6107 to the bucket giving the priority/associativity.
6108 Member `associativity' removed: useless.
6109 * src/reduce.c, src/conflicts.c: Adjust.
6110
8b3df748
AD
61112002-04-07 Akim Demaille <akim@epita.fr>
6112
6113 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
6114 Properly escape the symbols' TAG when outputting them.
6115
e601aa1d
AD
61162002-04-07 Akim Demaille <akim@epita.fr>
6117
6118 * src/lalr.h (LA): Is a bitsetv, not bitset*.
6119
b0299a2e
AD
61202002-04-07 Akim Demaille <akim@epita.fr>
6121
6122 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
6123 (LArule): this, which is an array to rule_t*.
6124 * src/print.c, src/conflicts.c: Adjust.
6125
d7e1f00c
AD
61262002-04-07 Akim Demaille <akim@epita.fr>
6127
6128 * src/gram.h (rule_t): Rename `number' as `user_number'.
6129 `number' is a new member.
6130 Adjust dependencies.
6131 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
6132
cc9305dd
AD
61332002-04-07 Akim Demaille <akim@epita.fr>
6134
6135 As a result of the previous patch, it is no longer needed
6136 to reorder ritem itself.
6137
6138 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
6139
b0940840
AD
61402002-04-07 Akim Demaille <akim@epita.fr>
6141
6142 Be sure never to walk through RITEMS, but use only data related to
6143 the rules themselves. RITEMS should be banished.
6144
6145 * src/output.c (output_token_translations): Rename as...
6146 (prepare_tokens): this.
6147 In addition to `translate', prepare the muscles `tname' and
6148 `toknum', which were handled by...
6149 (output_rule_data): this.
6150 Remove, and move the remainder of its outputs into...
6151 (prepare_rules): this new routines, which also merges content from
6152 (output_gram): this.
6153 (prepare_rules): Be sure never to walk through RITEMS.
6154 (output_stos): Rename as...
6155 (prepare_stos): this.
6156 (output): Always invoke prepare_states, after all, just don't use it
6157 in the output if you don't need it.
6158
643a5994
AD
61592002-04-07 Akim Demaille <akim@epita.fr>
6160
6161 * src/LR0.c (new_state): Display `nstates' as the name of the
6162 newly created state.
6163 Adjust to initialize first_state and last_state if needed.
6164 Be sure to distinguish the initial from the final state.
6165 (new_states): Create the itemset of the initial state, and use
6166 new_state.
6167 * src/closure.c (closure): Now that the initial state has its
6168 items properly set, there is no need for a special case when
6169 creating `ruleset'.
6170
6171 As a result, now the rule 0, reducing to $axiom, is visible in the
6172 outputs. Adjust the test suite.
6173
6174 * tests/conflicts.at (Solved SR Conflicts)
6175 (Unresolved SR Conflicts): Adjust.
6176 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
6177 * tests/conflicts.at (S/R in initial): New.
6178
b4c4ccc2
AD
61792002-04-07 Akim Demaille <akim@epita.fr>
6180
6181 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
6182 the RHS of the rules.
6183 * src/output.c (output_gram): Likewise.
6184
bba97eb2
AD
61852002-04-07 Akim Demaille <akim@epita.fr>
6186
6187 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
6188 bucket.
6189 Adjust all dependencies.
6190 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
6191 `number' of the buckets too.
6192 * src/gram.h: Include `symtab.h'.
6193 (associativity): Move to...
6194 * src/symtab.h: here.
6195 No longer include `gram.h'.
6196
c3b407f4
AD
61972002-04-07 Akim Demaille <akim@epita.fr>
6198
6199 * src/gram.h, src/gram.c (rules_rhs_length): New.
6200 (ritem_longest_rhs): Use it.
6201 * src/gram.h (rule_t): `number' is a new member.
6202 * src/reader.c (packgram): Set it.
6203 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
6204 the end of `rules', and count them out of `nrules'.
6205 (reduce_output, dump_grammar): Adjust.
6206 * src/print.c (print_grammar): It is no longer needed to check for
6207 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
6208 * tests/reduce.at (Reduced Automaton): New test.
6209
11652ab3
AD
62102002-04-07 Akim Demaille <akim@epita.fr>
6211
6212 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
6213 lacking `+ 1' to nrules, Bison reported as useless a token if it
6214 was used solely to set the precedence of the last rule...
6215
26b23c1a
AD
62162002-04-07 Akim Demaille <akim@epita.fr>
6217
6218 * data/bison.c++, data/bison.simple: Don't output the current file
6219 name in #line, to avoid useless diffs between two identical
6220 outputs under different names.
6221
18bcecb0
AD
62222002-04-07 Akim Demaille <akim@epita.fr>
6223
6224 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
6225 Normalize loops to using `< nrules + 1', not `<= nrules'.
6226
fa770c86
AD
62272002-04-07 Akim Demaille <akim@epita.fr>
6228
6229 * TODO: Update.
6230
d9b739c3
AD
62312002-04-07 Akim Demaille <akim@epita.fr>
6232
6233 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
6234 bucket.value as bucket.number.
6235
99013900
AD
62362002-04-07 Akim Demaille <akim@epita.fr>
6237
6238 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
6239 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
6240 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
6241 RHS, instead of being an index in RITEMS.
6242
e966383b
PE
62432002-04-04 Paul Eggert <eggert@twinsun.com>
6244
6245 * doc/bison.texinfo: Update copyright date.
6246 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
6247 (Symbols): Warn about running Bison in one character set,
6248 but compiling and/or running in an incompatible one.
6249 Warn about character code 256, too.
6250
62512002-04-03 Paul Eggert <eggert@twinsun.com>
6252
6253 * src/bison.data (YYSTACK_ALLOC): Depend on whether
6254 YYERROR_VERBOSE is nonzero, not whether it is defined.
6255
6256 Merge changes from bison-1_29-branch.
c307773e 6257
8d6c48b9
PE
62582002-03-20 Paul Eggert <eggert@twinsun.com>
6259
6260 Merge fixes from Debian bison_1.34-1.diff.
6261
6262 * configure.in (AC_PREREQ): 2.53.
6263
e53c6322
AD
62642002-03-20 Akim Demaille <akim@epita.fr>
6265
6266 * src/conflicts.c (log_resolution): Argument `resolution' is const.
6267
9ffbeca7
PE
62682002-03-19 Paul Eggert <eggert@twinsun.com>
6269
21db0b2a
PE
6270 * src/bison.simple (YYCOPY): New macro.
6271 (YYSTACK_RELOCATE): Use it.
6272 Remove Type arg; no longer needed. All callers changed.
6273 (yymemcpy): Remove; no longer needed.
6274
9ffbeca7
PE
6275 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
6276 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
6277
642cb8f8
AD
62782002-03-19 Akim Demaille <akim@epita.fr>
6279
6280 Test and fix the #line outputs.
6281
6282 * tests/atlocal.at (GCC): New.
6283 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
6284 (Prologue synch line, ,%union synch line, Postprologue synch line)
6285 (Action synch line, Epilogue synch line): New tests.
6286 * src/reader.c (parse_union_decl): Define the muscle stype_line.
6287 * data/bison.simple, data/bison.c++: Use it.
6288
3c31a486
AD
62892002-03-19 Akim Demaille <akim@epita.fr>
6290
6291 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
6292 (Solved SR Conflicts, %expect not enough, %expect right)
6293 (%expect too much): Move to...
6294 * tests/conflicts.at: this new file.
6295
0d8bed56
AD
62962002-03-19 Akim Demaille <akim@epita.fr>
6297
6298 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
6299 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
6300 that we can move to enums for instance.
6301 * src/output.c (token_definitions_output): Output a list of
6302 `token-name, token-number' instead of the #define.
6303 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
6304
9208d17f
AD
63052002-03-14 Akim Demaille <akim@epita.fr>
6306
6307 Use Gettext 0.11.1.
6308
af27eacb
RA
63092002-03-09 Robert Anisko <robert@lrde.epita.fr>
6310
6311 * data/bison.c++: Make the user able to add members to the generated
6312 parser by subclassing.
6313
9101a310
RA
63142002-03-05 Robert Anisko <robert@lrde.epita.fr>
6315
6316 * src/reader.c (read_additionnal_code): `c' should be an integer, not
6317 a character.
6318 Reported by Nicolas Tisserand and Nicolas Burrus.
6319
fff9bf0b
RA
63202002-03-04 Robert Anisko <robert@lrde.epita.fr>
6321
6322 * src/reader.c: Warn about lacking semi-colons, do not complain.
6323
64dba31e
RA
63242002-03-04 Robert Anisko <robert@lrde.epita.fr>
6325
6326 * data/bison.c++: Remove a debug line.
6327
374f5a14
RA
63282002-03-04 Robert Anisko <robert@lrde.epita.fr>
6329
6330 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
6331 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
6332 provide a default implementation.
6333
bfcf1f3a
AD
63342002-03-04 Akim Demaille <akim@epita.fr>
6335
6336 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
6337 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
6338 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
6339 * tests/semantic.at (Parsing Guards): Similarly.
6340 * src/reader.at (readgram): Complain if the last rule is not ended
6341 with a semi-colon.
6342
65ccf9fc
AD
63432002-03-04 Akim Demaille <akim@epita.fr>
6344
6345 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
6346 * src/closure.c: here.
6347 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
6348 RTC.
6349 * src/warshall.h, src/warshall.c: Remove.
6350 * tests/sets.at (Broken Closure): Adjust.
6351
d0039cbc
AD
63522002-03-04 Akim Demaille <akim@epita.fr>
6353
6354 * src/output.c (output_skeleton): tempdir is const.
6355 bytes_read is unused.
6356
345cea78
AD
63572002-03-04 Akim Demaille <akim@epita.fr>
6358
6359 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
6360 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
6361 Update.
6362 From Michael Hayes.
6363
564801f7
AD
63642002-03-04 Akim Demaille <akim@epita.fr>
6365
6366 * src/closure.c (closure): `r' is unused.
6367
e5352bc7
AD
63682002-03-04 Akim Demaille <akim@epita.fr>
6369
6370 * tests/sets.at (Broken Closure): Add the ending `;'.
6371 * src/reader.at (readgram): Complain if a rule is not ended with a
6372 semi-colon.
6373
914feea9
AD
63742002-03-04 Akim Demaille <akim@epita.fr>
6375
6376 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
6377 (count_sr_conflicts): Use bitset_count.
6378 * src/reduce.c (inaccessable_symbols): Ditto.
6379 (bits_size): Remove.
6380 * src/warshall.h, src/warshall.c: Convert to bitsetv.
6381
f0250de6
AD
63822002-03-04 Akim Demaille <akim@epita.fr>
6383
6384 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
6385 * src/reduce.c: Remove the `bitset_zero's following the
6386 `bitset_create's, as now it is performed by the latter.
6387
ef017502
AD
63882002-03-04 Akim Demaille <akim@epita.fr>
6389
6390 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
6391 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
6392 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
6393 latest sources from Michael.
6394
76514394
AD
63952002-03-04 Akim Demaille <akim@epita.fr>
6396
6397 * src/output.c (output): Don't free the grammar.
6398 * src/reader.c (grammar_free): New.
6399 * src/main.c (main): Call it and don't free symtab here.
6400
55024580
AD
64012002-03-04 Akim Demaille <akim@epita.fr>
6402
6403 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
6404 before returning.
6405 Reported by Benoit Perrot.
6406
f9abaa2c
AD
64072002-03-04 Akim Demaille <akim@epita.fr>
6408
6409 Use bitset operations when possible, not loops over bits.
6410
6411 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
6412 bitset_or.
6413 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
6414 * src/reduce.c (useless_nonterminals): Formatting changes.
6415 * src/warshall.c (TC): Use bitset_or.
6416
0e721e75
AD
64172002-03-04 Akim Demaille <akim@epita.fr>
6418
6419 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
6420 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
6421 Ditto.
6422
0fb1ffb1
AD
64232002-03-04 Akim Demaille <akim@epita.fr>
6424
6425 * src/lalr.c (F): Now a bitset*.
6426 Adjust all dependencies.
6427
b86796bf
AD
64282002-03-04 Akim Demaille <akim@epita.fr>
6429
6430 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
6431 Adjust all dependencies.
6432
602bbf31
AD
64332002-03-04 Akim Demaille <akim@epita.fr>
6434
6435 * src/L0.c, src/LR0.h (nstates): Be size_t.
6436 Adjust comparisons (signed vs unsigned).
6437 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
6438 bitset*.
6439 Adjust all dependencies.
6440
d8a0245c
AD
64412002-03-04 Akim Demaille <akim@epita.fr>
6442
6443 * src/closure.c (firsts): Now, also a bitset.
6444 Adjust all dependencies.
6445 (varsetsize): Remove, now unused.
6446 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
6447
34ba9743
AD
64482002-03-04 Akim Demaille <akim@epita.fr>
6449
6450 * src/print.c: Convert to use bitset.h, not hand coded iterations
6451 over ints.
6452
ed86e78c
AD
64532002-03-04 Akim Demaille <akim@epita.fr>
6454
6455 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
6456
dfdb1797
AD
64572002-03-04 Akim Demaille <akim@epita.fr>
6458
6459 * src/closure.c (ruleset): Be a bitset.
6460 (rulesetsize): Remove.
6461
7086e707
AD
64622002-03-04 Akim Demaille <akim@epita.fr>
6463
6464 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
6465 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
6466 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
6467 * src/closure.c (fderives): Be an array of bitsets.
6468
98254360
RA
64692002-02-28 Robert Anisko <robert@lrde.epita.fr>
6470
6471 * data/bison.c++: Merge the two generated headers. Insert a copyright
6472 notice in each output file.
6473
a75c057f
AD
64742002-02-28 Akim Demaille <akim@epita.fr>
6475
6476 * data/bison.c++: Copy the prologue of bison.simple to fetch
6477 useful M4 definitions, such as b4_header_guard.
6478
06b00abc
AD
64792002-02-25 Akim Demaille <akim@epita.fr>
6480
6481 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
6482 translator friendly scheme for the bgr
6483 copyright notice.
06b00abc 6484
70e7d534
AD
64852002-02-25 Akim Demaille <akim@epita.fr>
6486
6487 * src/output.c (header_output): Remove, now handled completely via
6488 M4.
6489
abe017f6
AD
64902002-02-25 Akim Demaille <akim@epita.fr>
6491
6492 * m4/m4.m4: New, from CVS Autoconf.
6493 * configure.in: Invoke it.
6494 * src/output.c (output_skeleton): Use its result instead of the
6495 hard coded name.
6496
381fb12e
AD
64972002-02-25 Akim Demaille <akim@epita.fr>
6498
6499 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
6500 Fileutils 4.1.5.
6501 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
6502 * src/output.c (output_skeleton): Use mkstemp to create a real
6503 temporary file.
6504 Move the filling of `skeleton' and its muscle to...
6505 (prepare): here.
6506 (output): Move the definition of the prologue muscle to...
6507 (prepare): here.
6508 * src/system.h (DEFAULT_TMPDIR): New.
6509
6f38107f
PE
65102002-02-14 Paul Eggert <eggert@twinsun.com>
6511
6512 Remove the support for C++ namespace cleanliness; it was
6513 causing more problems than it was curing, since it didn't work
6514 properly on some nonstandard C++ compilers. This can wait
6515 for a proper C++ parser.
6516
6517 * NEWS: Document this.
6518 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
6519 of C++, as it's treated like C now.
6520 * src/bison.simple (YYSTD): Remove.
6521 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
6522 Treat C++ just like Standard C instead of trying to support
6523 namespace cleanliness.
6524
80cce3da
AD
65252002-02-14 Akim Demaille <akim@epita.fr>
6526
6527 * tests/regression.at (else): Adjust to Andreas' change.
6528
842e8679
AD
65292002-02-14 Akim Demaille <akim@epita.fr>
6530
6531 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
6532
4bda3f10
AD
65332002-02-13 Andreas Schwab <schwab@suse.de>
6534
6535 * src/output.c (output_rule_data): Don't output NULL, it might
6536 not be defined yet.
6537
4162fa07 65382002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 6539
4162fa07
RA
6540 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
6541 (Copyright notice): Update.
b418ecd8 6542
bd16a5dc
AD
65432002-02-11 Akim Demaille <akim@epita.fr>
6544
6545 * tests/regression.at (%nonassoc and eof): Don't include
6546 nonportable headers.
6547
8d69a1a3
RA
65482002-02-08 Robert Anisko <robert@lrde.epita.fr>
6549
6550 * data/bison.c++: Correct error recovery. Make the user able to
6551 initialize the starting location.
6552
9b2d0677
AD
65532002-02-07 Akim Demaille <akim@epita.fr>
6554
6555 * tests/input.at: New.
6556
69e2658b
RA
65572002-02-07 Robert Anisko <robert@lrde.epita.fr>
6558
6559 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 6560 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
6561 directives around tables only needed for debugging.
6562
4aacc3a7
RA
65632002-02-07 Robert Anisko <robert@lrde.epita.fr>
6564
6565 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
6566 C++ parsers.
6567 (yy::b4_name::parse): Use print_.
6568
762a801e
RA
65692002-02-07 Robert Anisko <robert@lrde.epita.fr>
6570
6571 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
6572
4bb2bc3f
RA
65732002-02-07 Robert Anisko <robert@lrde.epita.fr>
6574
6575 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
6576 C++ parsers.
6577 (yy::b4_name::parse): Build verbose error messages, and use error_.
6578
6b45a3ca
RA
65792002-02-06 Robert Anisko <robert@lrde.epita.fr>
6580
6581 * data/bison.c++: Fix m4 quoting in comments.
6582
50997c6e
RA
65832002-02-06 Robert Anisko <robert@lrde.epita.fr>
6584
6585 * data/bison.c++: Adjust the parser code. Fix some muscles that were
6586 not expanded by m4.
6587
3f3eed27
AD
65882002-02-05 Akim Demaille <akim@epita.fr>
6589
6590 * data/bison.c++: Adjust to the M4 back end.
6591 More is certainly needed.
6592
be2a1a68
AD
65932002-02-05 Akim Demaille <akim@epita.fr>
6594
6595 Give a try to M4 as a back end.
6596
6597 * lib/readpipe.c: New, from wdiff.
6598 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
6599 BISON_HAIRY.
6600 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
6601 specific values. Now it is m4 that performs the lookup.
6602 * src/parse-skel.y: Remove.
6603 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
6604 * src/output.c (actions_output, guards_output)
6605 (token_definitions_output): No longer keeps track of the output
6606 line number, hence remove the second argument.
6607 (guards_output): Check against the guard member of a rule, not the
6608 action member.
6609 Adjust callers.
6610 (output_skeleton): Don't look for the skeleton location, let m4 do
6611 that.
6612 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
6613 file will be used.
6614 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
6615 (prepare): Given that for the time being changesyntax is not
6616 usable in M4, rename the muscles using `-' to `_'.
6617 Define `defines_flag', `output_parser_name' and `output_header_name'.
6618 * src/output.h (actions_output, guards_output)
6619 (token_definitions_output): Adjust prototypes.
6620 * src/scan-skel.l: Instead of scanning the skeletons, it now
6621 processes the output of m4: `__oline__' and `#output'.
6622 * data/bison.simple: Adjust to be used by M4(sugar).
6623 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
6624 to date.
6625 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
6626 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
6627 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
6628 shamelessly stolen from CVS Autoconf.
6629
beda758b
AD
66302002-02-05 Akim Demaille <akim@epita.fr>
6631
6632 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
6633 * configure.in: Check for the declarations of free and malloc.
6634 * src/muscle_tab.c: Adjust.
6635
5ece6d43
AD
66362002-02-05 Akim Demaille <akim@epita.fr>
6637
6638 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
6639 which have no values.
6640
5bb18f9a
AD
66412002-02-05 Akim Demaille <akim@epita.fr>
6642
6643 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
6644 * data/: here.
6645
894dd62e
PE
66462002-01-29 Paul Eggert <eggert@twinsun.com>
6647
6648 * src/bison.simple (YYSIZE_T): Do not define merely because
6649 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
6650 On some platforms, <alloca.h> does not declare YYSTD (size_t).
6651
82841af7
AD
66522002-01-27 Akim Demaille <akim@epita.fr>
6653
6654 Fix `%nonassoc and eof'.
6655
6656 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
6657 which were not properly copied! Replace
6658 memcpy (res->errs, src->errs, src->nerrs);
6659 with
6660 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
6661 !!!
6662 * tests/regression.at (%nonassoc and eof): Adjust to newest
6663 Autotest: `.' is not in the PATH.
6664
318b76e9
AD
66652002-01-27 Akim Demaille <akim@epita.fr>
6666
6667 * tests/sets.at (AT_EXTRACT_SETS): New.
6668 (Nullable): Use it.
6669 (Firsts): New.
6670
30d2f3d5
AD
66712002-01-26 Akim Demaille <akim@epita.fr>
6672
6673 * tests/actions.at, tests/calc.at, tests/headers.at,
6674 * tests/torture.at: Adjust to the newest Autotest which no longer
6675 forces `.' in the PATH.
6676
30f8c395
AD
66772002-01-25 Akim Demaille <akim@epita.fr>
6678
6679 * tests/regression.at (%nonassoc and eof): New.
6680 Suggested by Robert Anisko.
6681
29ae55f1
AD
66822002-01-24 Akim Demaille <akim@epita.fr>
6683
6684 Bison dumps core when trying to complain about broken input files.
6685 Reported by Cris van Pelt.
6686
6687 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
6688 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
6689 into...
6690 (Invalid inputs): Strengthen: exercise parse_percent_token.
6691
2b548aa6
RA
66922002-01-24 Robert Anisko <robert.anisko@epita.fr>
6693
6694 * src/Makefile.am: Add bison.c++.
6695 * src/bison.c++: New skeleton.
6696
bb0146c2
AD
66972002-01-21 Paolo Bonzini <bonzini@gnu.org>
6698
6699 * po/it.po: New.
6700
bec30531
AD
67012002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
6702
6703 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
6704
fc6edc45
MA
67052002-01-20 Marc Autret <marc@gnu.org>
6706
6707 * src/files.c (compute_output_file_names): Fix
6708
5e5d5415
MA
67092002-01-20 Marc Autret <marc@gnu.org>
6710
6711 * tests/output.at: New test.
6712 * src/files.c (compute_base_names): Don't map extensions when
6713 the YACC flag is set, use defaults.
6714 Reported by Evgeny Stambulchik.
6715
44ea3fbd
MA
67162002-01-20 Marc Autret <marc@gnu.org>
6717
bb0146c2 6718 * src/system.h: Need to define __attribute__ away for non-GCC
44ea3fbd
MA
6719 compilers as well (i.e. the vendor C compiler).
6720 Suggested by Albert Chin-A-Young.
6721
338963d1
TVH
67222002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
6723
6724 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
6725 canonical definition.
6726 * src/system.h: Use the canonical definition for PARAMS (avoids
6727 a conflict with the macro from lib/hash.h).
6728
c57b2479
AD
67292002-01-11 Akim Demaille <akim@epita.fr>
6730
6731 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 6732 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 6733
b85810ae
AD
67342002-01-09 Akim Demaille <akim@epita.fr>
6735
6736 * src/files.c, src/files.h (output_infix): New.
6737 (tab_extension): Remove.
6738 (compute_base_names): Compute the former, drop the latter.
6739 * src/output.c (prepare): Insert the muscles `output-infix', and
6740 `output-suffix'.
6741 * src/parse-skel.y (string, string.1): New.
6742 (section.header): Use it.
6743 (section.yacc): Remove.
6744 (prefix): Remove too.
6745 * src/scan-skel.l: Adjust.
6746 * src/bison.simple, src/bison.hairy: Adjust.
6747
cae60122
AD
67482002-01-09 Akim Demaille <akim@epita.fr>
6749
6750 * configure.in (WERROR_CFLAGS): Compute it.
6751 * src/Makefile.am (CFLAGS): Pass it.
6752 * tests/atlocal.in (CFLAGS): Idem.
6753 * src/files.c: Fix a few warnings.
6754 (get_extension_index): Remove, unused.
6755
ae404801
AD
67562002-01-08 Akim Demaille <akim@epita.fr>
6757
6758 * src/getargs.c (AS_FILE_NAME): New.
6759 (getargs): Use it to convert DOSish file names.
6760 * src/files.c (base_name): Rename as full_base_name to avoid
6761 clashes with `base_name ()'.
6762 (filename_split): New.
6763 (compute_base_names): N-th rewrite, using filename_split.
6764
22312b71
AD
67652002-01-08 Akim Demaille <akim@epita.fr>
6766
6767 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
6768 New, stolen from the Fileutils 4.1.
6769 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
6770 * configure.in: Check for the presence of memrchr, and of its
6771 prototype.
6772
a67cef01
TVH
67732002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
6774
6775 * lib/hash.h (__P): Added definition for this macro.
6776 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
6777 BUILT_SOURCES, to ensure they are generated first.
6778 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
6779 %error-verbose to allow bootstrapping with bison 1.30x.
6780
2b25d624
AD
67812002-01-06 Akim Demaille <akim@epita.fr>
6782
6783 * src/reader.c (parse_braces): Don't fetch the next char, the
6784 convention is to fetch on entry.
6785 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
6786 'switch' without a following semicolon.
6787 * tests/regression.at (braces parsing): New.
6788
3460813b
AD
67892002-01-06 Akim Demaille <akim@epita.fr>
6790
6791 Bison is dead wrong in its RR conflict reports.
6792
6793 * tests/torture.at (GNU Cim Grammar): New.
6794 * src/conflicts.c (count_rr_conflicts): Fix.
6795
73784c64
AD
67962002-01-06 Akim Demaille <akim@epita.fr>
6797
6798 Creating package.m4 from configure.ac causes too many problems.
6799
6800 * tests/Makefile.am (package.m4): Create it by hand,
6801 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
6802
25d81090
AD
68032002-01-06 Akim Demaille <akim@epita.fr>
6804
6805 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
6806 skeleton.h.
6807
a9b8959e
PE
68082002-01-04 Paul Eggert <eggert@twinsun.com>
6809
6810 * doc/bison.texinfo (Debugging):
6811 Remove YYSTDERR; it's no longer defined or used.
6812 Also, s/cstdio.h/cstdio/.
6813
25d81090
AD
68142002-01-03 Akim Demaille <akim@epita.fr>
6815
6816 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
6817
1109455c
AD
68182002-01-03 Akim Demaille <akim@epita.fr>
6819
6820 * src/parse-skel.y (process_skeleton): Don't bind the parser's
6821 tracing code to --trace, wait for a better --trace option, with
6822 args.
6823
7ea5e977
AD
68242002-01-03 Akim Demaille <akim@epita.fr>
6825
6826 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
6827 The ISO C++ standard is extremely clear about it: stderr is
6828 considered a macro, not a regular symbol (see table 94 `Header
6829 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
6830 Therefore std:: does not apply to it. It still does with fprintf.
6831 Also, s/cstdio.h/cstdio/.
6832
fab5b110
AD
68332002-01-03 Akim Demaille <akim@epita.fr>
6834
6835 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
6836 for non system headers.
6837
aed7fd9b
AD
68382002-01-02 Akim Demaille <akim@epita.fr>
6839
6840 Equip the skeleton chain with location tracking, runtime trace,
6841 pure parser and scanner.
6842
6843 * src/parse-skel.y: Request a pure parser, locations, and prefix
6844 renaming.
6845 (%union): Having several members with the same type does not help
6846 type mismatches, simplify.
6847 (YYPRINT, yyprint): New.
6848 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
6849 (skel_error): this.
6850 Handle locations.
6851 * src/scan-skel.l: Adjust to these changes.
6852 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
6853 (LOCATION_PRINT, skel_control_t): New.
6854
24fad99e
AD
68552001-12-30 Akim Demaille <akim@epita.fr>
6856
6857 * src/parse-skel.y: Get rid of the shift/reduce conflict:
6858 replace `gb' with BLANKS.
6859 * src/scan-skel.l: Adjust.
6860
a4b36db4
AD
68612001-12-30 Akim Demaille <akim@epita.fr>
6862
6863 * src/system.h: We don't need nor want bcopy.
6864 Throw away MS-DOS crap: we don't need getpid.
6865 * configure.in: We don't need strndup. It was even causing
6866 problems: because Flex includes the headers *before* us,
6867 _GNU_SOURCE is not defined by config.h, and therefore strndup was
6868 not visible.
6869 * lib/xstrndup.c: New.
6870 * src/scan-skel.l: Use it.
6871 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
6872 * src/parse-skel.y: Use %directives instead of #defines.
6873
1239777d
AD
68742001-12-30 Akim Demaille <akim@epita.fr>
6875
6876 * src/skeleton.h: New.
6877 * src/output.c (output_parser, output_master_parser): Remove, dead
6878 code.
6879 * src/output.h (get_lines_number, actions_output, guards_output)
6880 (token_definitions_output): Prototype them.
6881 * src/parse-skel.y: Add the license notice.
6882 Include output.h and skeleton.h.
6883 (process_skeleton): Returns void, and takes a single parameter.
6884 * src/scan-skel.l: Add the license notice.
6885 Include skeleton.h.
6886 Don't use %option yylineno: it seems that then Flex imagines
6887 REJECT has been used, and therefore it won't reallocate its
6888 buffers (which makes no other sense to me than a bug). It results
6889 in warnings for `unused: yy_flex_realloc'.
6890
9b3add5b
RA
68912001-12-30 Robert Anisko <robert.anisko@epita.fr>
6892
6893 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
6894 (MUSCLE_INSERT_PREFIX): ...to there.
6895 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
6896 (MUSCLE_INSERT_PREFIX): Move from here...
6897
6898 * src/bison.hairy: Add a section directive. Put braces around muscle
6899 names. This parser skeleton is still broken, but Bison should not
6900 choke on a bad muscle 'syntax'.
6901 * src/bison.simple: Add a section directive. Put braces around muscle
6902 names.
6903
6904 * src/files.h (strsuffix, stringappend): Add declarations.
6905 (tab_extension): Add declaration.
6906 (short_base_name): Add declaration.
6907
6908 * src/files.c (strsuffix, stringappend): No longer static. These
6909 functions are used in the skeleton parser.
6910 (tab_extension): New.
6911 (compute_base_names): Use the computations done in this function
fab5b110 6912 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
6913 names.
6914 (short_base_name): No longer static.
6915
6916 * src/output.c (output_skeleton): New.
6917 (output): Disable call to output_master_parser, and give a try to
6918 a new skeleton handling system.
6919 (guards_output, actions_output): No longer static.
6920 (token_definitions_output, get_lines_number): No longer static.
6921
6922 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
6923
fab5b110 6924 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
6925 parse-skel.y.
6926
6927 * src/parse-skel.y: New file.
6928 * src/scan-skel.l: New file.
6929
b5b61c61
AD
69302001-12-29 Akim Demaille <akim@epita.fr>
6931
6932 %name-prefix is broken.
6933
6934 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
6935 Adjust all dependencies.
6936 * tests/headers.at (export YYLTYPE): Strengthen this test: use
6937 %name-prefix.
6938
6939 Renaming yylval but not yylloc is not consistent. Now we do.
6940
6941 * src/bison.simple: Prefix yylloc if used.
6942 * doc/bison.texinfo (Decl Summary): Document that.
6943
8c9a50be
AD
69442001-12-29 Akim Demaille <akim@epita.fr>
6945
6946 * doc/bison.texinfo: Promote `%long-directive' over
6947 `%long_directive'.
6948 Remove all references to fixed-output-files, yacc is enough.
6949
d99361e6
AD
69502001-12-29 Akim Demaille <akim@epita.fr>
6951
6952 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
6953 user prologue. These are defaults.
6954 * tests/actions.at (Mid-rule actions): Make sure the user can
6955 define YYDEBUG and YYERROR_VERBOSE.
6956
b9cecb91
AD
69572001-12-29 Akim Demaille <akim@epita.fr>
6958
6959 * src/output.c (header_output): Don't forget to export YYLTYPE and
6960 yylloc.
6961 * tests/headers.at (export YYLTYPE): New, make sure it does.
6962 * tests/regression.at (%union and --defines, Invalid CPP headers):
6963 Move to...
6964 * tests/headers.at: here.
6965
aea13e97
AD
69662001-12-29 Akim Demaille <akim@epita.fr>
6967
6968 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
6969
931394cb
AD
69702001-12-29 Akim Demaille <akim@epita.fr>
6971
6972 * tests/actions.at (Mid-rule actions): Output on a single line
6973 instead of several.
6974
704a47c4
AD
69752001-12-29 Akim Demaille <akim@epita.fr>
6976
6977 * doc/bison.texinfo: Formatting changes.
6978
091e20bb
AD
69792001-12-29 Akim Demaille <akim@epita.fr>
6980
6981 Don't store the token defs in a muscle, just be ready to output it
6982 on command. Now possible via `symbols'. Fixes a memory leak.
6983
6984 * src/output.c (token_definitions_output): New.
6985 (output_parser, header_output): Use it.
6986 * src/reader.c (symbols_save): Remove.
6987
cce71710
AD
69882001-12-29 Akim Demaille <akim@epita.fr>
6989
6990 * src/bison.simple: Do not provide a default for YYSTYPE and
6991 YYLTYPE before the user's prologue. Otherwise it's hardly... a
6992 default.
6993
82c035a8
AD
69942001-12-29 Akim Demaille <akim@epita.fr>
6995
6996 Mid-rule actions are simply... ignored!
6997
6998 * src/reader.c (readgram): Be sure to attach mid-rule actions to
6999 the empty-rule associated to the dummy symbol, not to the host
7000 rule.
7001 * tests/actions.at (Mid-rule actions): New.
7002
8419d367
AD
70032001-12-29 Akim Demaille <akim@epita.fr>
7004
7005 Memory leak.
7006
7007 * src/reader.c (reader): Free grammar.
7008
375d5806
AD
70092001-12-29 Akim Demaille <akim@epita.fr>
7010
7011 Memory leak.
7012
7013 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
7014 since it allocates it for each state, although only one is needed.
7015 (allocate_storage): Do it here.
7016
f51cb8ff
AD
70172001-12-29 Akim Demaille <akim@epita.fr>
7018
7019 * src/options.h, src/options.c (create_long_option_table): Rename
7020 as...
7021 (long_option_table_new): this, with a clearer prototype.
7022 (percent_table): Remove, unused,
7023 * src/getargs.c (getargs): Adjust.
7024
29e88316
AD
70252001-12-29 Akim Demaille <akim@epita.fr>
7026
7027 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
7028 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
7029 as states.
7030
b9f71f19
AD
70312001-12-29 Akim Demaille <akim@epita.fr>
7032
7033 * src/lalr.c (build_relations): Rename `states' as `states1'.
7034 Sorry, I don't understand exactly what it is, no better name...
7035
1a2b5d37
AD
70362001-12-29 Akim Demaille <akim@epita.fr>
7037
7038 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
7039 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
7040 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
7041 as rules.
7042
1cca533e
AD
70432001-12-29 Akim Demaille <akim@epita.fr>
7044
7045 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
7046 ago.
7047
c03ae966
AD
70482001-12-29 Akim Demaille <akim@epita.fr>
7049
7050 * src/reader.c, src/reader.h (user_toknums): Remove.
7051 Adjust all users to use symbols[i]->user_token_number.
7052
5a670b1e
AD
70532001-12-29 Akim Demaille <akim@epita.fr>
7054
7055 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
7056 Adjust all users to use symbols[i]->prec or ->assoc.
7057
ad949da9
AD
70582001-12-29 Akim Demaille <akim@epita.fr>
7059
7060 * src/reader.c, src/reader.h (tags): Remove.
7061 Adjust all users to use symbols[i]->tag.
7062
0e78e603
AD
70632001-12-29 Akim Demaille <akim@epita.fr>
7064
7065 * src/gram.h, src/gram.c (symbols): New, similar to state_table
7066 and rule_table.
7067 * src/reader.c (packsymbols): Fill this table.
7068 Drop sprec.
7069 * src/conflicts.c (resolve_sr_conflict): Adjust.
7070 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
7071 single table.
7072 Use symbols[i]->tag instead of tags[i].
7073
213e640e
AD
70742001-12-29 Akim Demaille <akim@epita.fr>
7075
7076 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
7077 In addition, put a comment in there, to replace...
7078 * tests/regression.at (%union and C comments): Remove.
7079
e7b8bef1
AD
70802001-12-29 Akim Demaille <akim@epita.fr>
7081
7082 * tests/regression.at (Web2c Actions): Blindly move the actual
7083 output as expected output. The contents *seem* right to me, but I
7084 can't pretend reading perfectly parser tables... Nonetheless, all
7085 the other tests pass correctly, the table look OK, even though the
7086 presence of `$axiom' is to be noted: AFAICS it is useless (but
7087 harmless).
7088
b68e7744
AD
70892001-12-29 Akim Demaille <akim@epita.fr>
7090
7091 * src/reader.c (readgram): Don't add the rule 0 if there were no
7092 rules read. In other words, add it _after_ having performed
7093 grammar sanity checks.
7094 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
7095
78d5bae9
AD
70962001-12-29 Akim Demaille <akim@epita.fr>
7097
7098 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
7099 visible, and some states have now a different number.
7100
ff442794
AD
71012001-12-29 Akim Demaille <akim@epita.fr>
7102
7103 * src/reader.c (readgram): Bind the initial rule's lineno to that
7104 of the first rule.
7105 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
7106 (Solved SR Conflicts): Adjust rule 0's line number.
7107
610ab194
AD
71082001-12-29 Akim Demaille <akim@epita.fr>
7109
7110 Fix the `GAWK Grammar' failure.
7111
7112 * src/LR0.c (final_state): Initialize to -1 so that we do compute
7113 the reductions of the first state which was mistakenly confused
7114 with the final state because precisely final_state was initialized
7115 to 0.
7116 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
7117 now noticed by Bison.
7118 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
7119 have a reduction on $default.
7120
29d29c8f
AD
71212001-12-29 Akim Demaille <akim@epita.fr>
7122
7123 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
7124 rule line numbers.
7125 * src/closure.c (print_closure): Likewise.
7126 * src/derives.c (print_derives): Likewise.
7127 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
7128 now.
7129
7c6b64d0
AD
71302001-12-29 Akim Demaille <akim@epita.fr>
7131
7132 * src/lalr.c (lookaheads_print): New.
7133 (lalr): Call it when --trace-flag.
7134 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
7135 are dumped.
7136
3d4daee3
AD
71372001-12-29 Akim Demaille <akim@epita.fr>
7138
7139 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
7140 when walking through ritem, even via rule->rhs.
7141 * src/reduce.c (dump_grammar, useful_production, reduce_output)
7142 (useful_production, useless_nonterminals): Likewise.
7143 (reduce_grammar_tables): Likewise, plus update nritems.
7144 * src/nullable.c (set_nullable): Likewise.
7145 * src/lalr.c (build_relations): Likewise.
7146 * tests/sets.at (Nullable): Adjust.
7147 Fortunately, now, the $axiom is no longer nullable.
7148
9e7f6bbd
AD
71492001-12-29 Akim Demaille <akim@epita.fr>
7150
7151 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
7152 the 0-sentinel.
7153 * src/gram.c (ritem_longest_rhs): Likewise.
7154 * src/reduce.c (nonterminals_reduce): Likewise.
7155 * src/print_graph.c (print_graph): Likewise.
7156 * src/output.c (output_rule_data): Likewise.
7157 * src/nullable.c (set_nullable): Likewise.
7158
255ef638
AD
71592001-12-29 Akim Demaille <akim@epita.fr>
7160
7161 * src/output.c: Comment changes.
7162
0d8a7363
AD
71632001-12-27 Paul Eggert <eggert@twinsun.com>
7164
7165 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
7166 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
7167 Sparc, as they were causing more porting problems than the
7168 (minor) performance improvement was worth.
7169
7170 Also, catch up with 1.31's YYSTD.
7171
3db472b9
AD
71722001-12-27 Akim Demaille <akim@epita.fr>
7173
7174 * src/output.c (output_gram): Rely on nritems, not the
7175 0-sentinel. See below.
7176 Use -1 as separator, not 0.
7177 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
7178 Rely on -1 as separator in yyrhs, instead of 0.
7179 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
7180 twice `Now at end of input', therefore there are two lines less to
7181 expect.
7182
b365aa05
AD
71832001-12-27 Akim Demaille <akim@epita.fr>
7184
7185 * tests/regression.at (Unresolved SR Conflicts):
7186 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
7187 below.
7188
30171f79
AD
71892001-12-27 Akim Demaille <akim@epita.fr>
7190
7191 * src/LR0.c (new_state): Recognize the final state by the fact it
7192 is reached by eoftoken.
7193 (insert_start_shifting_state, insert_eof_shifting_state)
7194 (insert_accepting_state, augment_automaton): Remove, since now
7195 these states are automatically computed from the initial state.
7196 (generate_states): Adjust.
7197 * src/print.c: When reporting a rule number to the user, substract
7198 1, so that the axiom rule is rule 0, and the first user rule is 1.
7199 * src/reduce.c: Likewise.
7200 * src/print_graph.c (print_core): For the time being, just as for
7201 the report, depend upon --trace-flags to dump the full set of
7202 items.
7203 * src/reader.c (readgram): Once the grammar read, insert the rule
7204 0: `$axiom: START-SYMBOL $'.
7205 * tests/set.at: Adjust: rule 0 is now displayed, and since the
7206 number of the states has changed (the final state is no longer
7207 necessarily the last), catch up.
7208
75142d45
AD
72092001-12-27 Akim Demaille <akim@epita.fr>
7210
7211 Try to make the use of the eoftoken valid. Given that its value
7212 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
7213 is used instead of > 0 where appropriate, (ii), depend upon nritems
7214 instead of the 0-sentinel.
7215
7216 * src/gram.h, src/gram.c (nritems): New.
7217 Expected to be duplication of nitems, but for the time being...
7218 * src/reader.c (packgram): Assert nritems and nitems are equal.
7219 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
7220 * src/closure.c (print_closure, print_fderives): Likewise.
7221 * src/gram.c (ritem_print): Likewise.
7222 * src/print.c (print_core, print_grammar): Likewise.
7223 * src/print_graph.c: Likewise.
7224
b7c49edf
AD
72252001-12-27 Akim Demaille <akim@epita.fr>
7226
7227 * src/main.c (main): If there are complains after grammar
7228 reductions, then output the report anyway if requested, then die.
7229 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
7230 * src/reader.c (eoftoken): New.
7231 (parse_token_decl): If the token being defined has value `0', it
7232 is the eoftoken.
7233 (packsymbols): No longer hack `tags' to insert `$' by hand.
7234 Be sure to preserve the value of the eoftoken.
7235 (reader): Make sure eoftoken is defined.
7236 Initialize nsyms to 0: now eoftoken is created just like the others.
7237 * src/print.c (print_grammar): Don't special case the eof token.
7238 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
7239 lie anyway, albeit pleasant.
7240 * tests/calc.at: Exercise error messages with eoftoken.
7241 Change the grammar so that empty input is invalid.
7242 Adjust expectations.
7243 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
7244
ec2da99f
AD
72452001-12-27 Akim Demaille <akim@epita.fr>
7246
7247 * configure.in: Check the protos of strchr ans strspn.
7248 Replace strchr if needed.
7249 * src/system.h: Provide the protos of strchr, strspn and memchr if
7250 missing.
7251 * lib/strchr.c: New.
7252 * src/reader.c (symbols_save): Use strchr.
7253
8adfa272
AD
72542001-12-27 Akim Demaille <akim@epita.fr>
7255
7256 * src/print.c, src/print_graph.c (escape): New.
7257 Use it to quote the TAGS outputs.
7258 * src/print_graph.c (print_state): Now errors are in red, and
7259 reductions in green.
7260 Prefer high to wide: output the state number on a line of its own.
7261
80dac38c
AD
72622001-12-27 Akim Demaille <akim@epita.fr>
7263
7264 * src/state.h, src/state.c (reductions_new): New.
7265 * src/LR0.c (set_state_table): Let all the states have a
7266 `reductions', even if reduced to 0.
7267 (save_reductions): Adjust.
7268 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
7269 * src/print.c (print_reductions, print_actions): Adjust.
7270 * src/output.c (action_row): Adjust.
7271
2cec70b9
AD
72722001-12-27 Akim Demaille <akim@epita.fr>
7273
7274 * src/state.h, src/state.c (errs_new, errs_dup): New.
7275 * src/LR0.c (set_state_table): Let all the states have an errs,
7276 even if reduced to 0.
7277 * src/print.c (print_errs, print_reductions): Adjust.
7278 * src/output.c (output_actions, action_row): Adjust.
7279 * src/conflicts.c (resolve_sr_conflict): Adjust.
7280
13ca549a
AD
72812001-12-27 Akim Demaille <akim@epita.fr>
7282
7283 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
7284
5092aba5
AD
72852001-12-27 Akim Demaille <akim@epita.fr>
7286
7287 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
7288 * src/print.c: here.
7289 (lookaheadset, shiftset): New, used as additional storage by
7290 print_reductions.
7291 (print_results): Adjust.
7292 (print_shifts, print_gotos, print_errs): New, extracted from...
7293 (print_actions): here.
7294 * src/print_graph.c (print_actions): Remove dead code.
7295
11e2beca
AD
72962001-12-27 Akim Demaille <akim@epita.fr>
7297
7298 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
7299 `$n' and `@n'.
7300
dac3c910
AD
73012001-12-27 Akim Demaille <akim@epita.fr>
7302
7303 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
7304 (build_relations): Adjust.
7305
d0b0fefa
AD
73062001-12-27 Akim Demaille <akim@epita.fr>
7307
7308 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
7309 duplication.
7310
adc8c848
AD
73112001-12-27 Akim Demaille <akim@epita.fr>
7312
7313 * src/reader.c (packgram): Catch nitems overflows.
7314
14d293ac
AD
73152001-12-27 Akim Demaille <akim@epita.fr>
7316
7317 * src/files.c, src/files.h (guard_obstack): Remove.
7318 * src/output.c (output): Adjust.
7319 * src/reader.c (parse_braces): New, factoring...
7320 (copy_action, copy_guard): these two which are renamed as...
7321 (parse_action, parse_guard): these.
7322 As a voluntary consequence, using braces around guards is now
7323 mandatory.
7324
f499b062
AD
73252001-12-27 Akim Demaille <akim@epita.fr>
7326
7327 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
7328 * src/reader.c (symbol_list): `guard' and `guard_line' are new
7329 members.
7330 (symbol_list_new): Adjust.
7331 (copy_action): action_line is the first line, not the last.
7332 (copy_guard): Just as for actions, store the `action' only, not
7333 the switch/case/break flesh.
7334 Don't parse the user action that might follow the guard, let...
7335 (readgram): do it, i.e., now, there can be an action after a
7336 guard.
7337 In other words the guard is just explicitly optional.
7338 (packgram): Adjust.
7339 * src/output.c (guards_output): New.
7340 (output_parser): Call it when needed.
7341 (output): Also free the guard and attrs obstacks.
7342 * src/files.c, src/files.h (obstack_save): Remove.
7343 (output_files): Remove.
7344 As a result, if one needs the former `.act' file, using an
7345 appropriate skeleton which requires actions and guards is now
7346 required.
7347 * src/main.c (main): Adjust.
7348 * tests/semantic.at: New.
7349 * tests/regression.at: Use `input.y' as input file name.
7350 Avoid 8+3 problems by requiring input.c when the test needs the
7351 parser.
7352
d945f5cd
AD
73532001-12-27 Akim Demaille <akim@epita.fr>
7354
7355 * src/reader.c (symbol_list_new): Be sure to initialize all the
7356 fields.
7357
d200e455
AD
73582001-12-27 Akim Demaille <akim@epita.fr>
7359
7360 All the hacks using a final pseudo state are now useless.
7361
7362 * src/LR0.c (set_state_table): state_table holds exactly nstates.
7363 * src/lalr.c (nLA): New.
7364 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
7365 instead of lookaheadsp from the pseudo state (nstate + 1).
7366
f9507c28
AD
73672001-12-27 Akim Demaille <akim@epita.fr>
7368
7369 * src/output.c (action_row, token_actions): Use a state_t instead
7370 of a integer, and nlookaheads instead of the following state's
7371 lookaheadsp.
7372
065fbd27
AD
73732001-12-27 Akim Demaille <akim@epita.fr>
7374
7375 * src/conflicts.c (log_resolution, flush_shift)
7376 (resolve_sr_conflict, set_conflicts, solve_conflicts)
7377 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
7378 (conflicts_print, print_reductions): Use a state_t instead of an
7379 integer when referring to a state.
7380 As much as possible, depend upon nlookaheads, instead of the
7381 `lookaheadsp' member of the following state (since lookaheads of
7382 successive states are successive, the difference between state n + 1
7383 and n served as the number of lookaheads for state n).
7384 * src/lalr.c (add_lookback_edge): Likewise.
7385 * src/print.c (print_core, print_actions, print_state)
7386 (print_results): Likewise.
7387 * src/print_graph.c (print_core, print_actions, print_state)
7388 (print_graph): Likewise.
7389 * src/conflicts.h: Adjust.
7390
1b177bd7
AD
73912001-12-27 Akim Demaille <akim@epita.fr>
7392
7393 * src/bison.hairy: Formatting/comment changes.
7394 ANSIfy.
7395 Remove `register' indications.
7396 Add plenty of `static'.
7397
7742ddeb
AD
73982001-12-27 Akim Demaille <akim@epita.fr>
7399
7400 * src/output.c (prepare): Drop the muscle `ntbase' which
7401 duplicates ntokens.
7402 * src/bison.simple: Formatting/comment changes.
7403 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
7404 is an undocumented synonym.
7405
1fa14068
AD
74062001-12-22 Akim Demaille <akim@epita.fr>
7407
7408 * src/output.c (output_table_data): Change the prototype to use
7409 `int' for array ranges: some invocations do pass an int, not a
7410 short.
7411 Reported by Wayne Green.
7412
b9752825
AD
74132001-12-22 Akim Demaille <akim@epita.fr>
7414
7415 Some actions of web2c.y are improperly triggered.
7416 Reported by Mike Castle.
7417
7418 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
7419 * tests/regression.at (Web2c): Rename as...
7420 (Web2c Report): this.
7421 (Web2c Actions): New.
7422
776209d6
AD
74232001-12-22 Akim Demaille <akim@epita.fr>
7424
7425 Reductions in web2c.y are improperly reported.
7426 Reported by Mike Castle.
7427
7428 * src/conflicts.c (print_reductions): Fix.
7429 * tests/regression.at (Web2c): New.
7430
275fc3ad
AD
74312001-12-18 Akim Demaille <akim@epita.fr>
7432
7433 Some host fail on `assert (!"foo")', which expands to
7434 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
7435 Reported by Nelson Beebee.
7436
7437 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
7438 `#define it_succeeded 0' and `assert (it_succeeded)'.
7439
897668ee
MA
74402001-12-17 Marc Autret <autret_m@epita.fr>
7441
7442 * src/bison.simple: Don't hard code the skeleton line and filename.
7443 * src/output.c (output_parser): Rename 'line' as 'output_line'.
7444 New line counter 'skeleton_line' (skeleton-line muscle).
7445
ab3399e0
PE
74462001-12-17 Paul Eggert <eggert@twinsun.com>
7447
7448 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
7449 YYDEBUG must be defined to a nonzero value.
7450
7451 * src/bison.simple (yytname): Do not assume that the user defines
7452 YYDEBUG to a properly parenthesized expression.
7453
3877f72b
AD
74542001-12-17 Akim Demaille <akim@epita.fr>
7455
7456 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
7457 nlookaheads is a new member.
7458 Adjust all users.
7459 * src/lalr.h (nlookaheads): Remove this orphan declaration.
7460 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
7461 state.
776209d6 7462
331dbc1b
AD
74632001-12-17 Akim Demaille <akim@epita.fr>
7464
7465 * src/files.h, src/files.c (open_files, close_files): Remove.
7466 * src/main.c (main): Don't open/close files, nor invoke lex_free,
7467 let...
7468 * src/reader.c (reader): Do it.
776209d6 7469
be750e4c
AD
74702001-12-17 Akim Demaille <akim@epita.fr>
7471
7472 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 7473
709ae8c6
AD
74742001-12-17 Akim Demaille <akim@epita.fr>
7475
7476 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
7477 (flush_reduce): New.
7478 (resolve_sr_conflict): Adjust.
776209d6 7479
f87685c3
AD
74802001-12-17 Akim Demaille <akim@epita.fr>
7481
7482 * src/output.c (output_obstack): Be static and rename as...
7483 (format_obstack): this, to avoid any confusion with files.c's
7484 output_obstack.
7485 * src/reader.h (muscle_obstack): Move to...
7486 * src/output.h: here, since it's defined in output.c.
7487
837491d8
AD
74882001-12-17 Akim Demaille <akim@epita.fr>
7489
7490 * src/output.c (action_row, save_column, default_goto)
7491 (sort_actions, matching_state, pack_vector): Better variable
7492 locality.
7493
796d61fb
AD
74942001-12-17 Akim Demaille <akim@epita.fr>
7495
7496 * src/output.c: Various formatting changes.
776209d6 7497
64d15509
AD
74982001-12-17 Akim Demaille <akim@epita.fr>
7499
7500 * src/files.c (output_files): Free the output_obstack.
7501 * src/main.c (main): Call print and print_graph conditionally.
7502 * src/print.c (print): Work unconditionally.
7503 * src/print_graph.c (print_graph): Work unconditionally.
7504 * src/conflicts.c (log_resolution): Output only if verbose_flag.
7505
fbc8ecb7
MA
75062001-12-16 Marc Autret <autret_m@epita.fr>
7507
7508 * src/output.c (actions_output): Fix. When we use %no-lines,
7509 there is one less line per action.
7510
f0440388
MA
75112001-12-16 Marc Autret <autret_m@epita.fr>
7512
7513 * src/bison.simple: Remove a useless #line directive.
7514 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
7515 * src/output.c (get_lines_number): New.
776209d6 7516 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
7517 output muscles.
7518 Fix line numbering.
7519 (actions_output): Computes the number of lines taken by actions.
7520 (output_master_parser): Insert new skeleton which is the name of
7521 the output parser file name.
7522
a79986b8
MA
75232001-12-15 Marc Autret <autret_m@epita.fr>
7524
7525 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
7526
4ec8e00f
MA
75272001-12-15 Marc Autret <autret_m@epita.fr>
7528
7529 * src/output.c (output_gram): Keep track of the hairy one.
7530
1a4648ff
AD
75312001-12-15 Akim Demaille <akim@epita.fr>
7532
7533 Make `make distcheck' work.
7534
7535 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
7536 system.h which uses libgettext.h.
7537
9c2c67e6
AD
75382001-12-15 Akim Demaille <akim@epita.fr>
7539
7540 * src/nullable.c (set_nullable): Useless rules must be skipped,
7541 otherwise, since we range over their symbols, we might look at a
7542 nonterminal which no longer ``exists'', i.e., it is not counted in
7543 `nvars', hence we overflow our arrays.
7544
93ede233
AD
75452001-12-15 Akim Demaille <akim@epita.fr>
7546
7547 The header can also be produced directly, without any obstack!
7548 Yahoo!
7549
7550 * src/files.c, src/files.h (defines_obstack): Remove.
7551 (compute_header_macro): Global.
7552 (defines_obstack_save): Remove.
7553 * src/reader.c (parse_union_decl): No longer output to
7554 defines_obstack: its content can be found in the `stype' muscle
7555 anyway.
7556 (output_token_translations): Merge into...
7557 (symbols_output): this.
7558 Rename as...
7559 (symbols_save): this.
7560 (reader): Adjust.
7561 * src/output.c (header_output): New.
7562 (output): Call it.
7563
2666f928
AD
75642001-12-15 Akim Demaille <akim@epita.fr>
7565
7566 * src/reader.c (parse_union_decl): Instead of handling two obstack
7567 simultaneously, use one to define the `stype' muscle, and use the
7568 value of the latter to fill defines_obstack.
7569 (copy_comment): Remove.
7570 (copy_comment2): Work for a single obstack.
7571 Rename as...
7572 (copy_comment): this.
7573
428046f8
AD
75742001-12-15 Akim Demaille <akim@epita.fr>
7575
7576 * src/lex.c, src/lex.h (xgetc): No longer static.
7577 * src/reader.c (parse_union_decl): Revamp.
7578
ea52d706
AD
75792001-12-15 Akim Demaille <akim@epita.fr>
7580
7581 Still making progress in separating Bison into (i) input, (ii)
7582 process, (iii) output: now we can directly output the parser file
7583 without using table_obstack at all.
7584
7585 * src/files.c, src/files.h (table_obstack): Bye bye.
7586 (parser_file_name): New.
7587 * src/files.c (compute_output_file_names): Compute it.
7588 * src/output.c (actions_output, output_parser)
7589 (output_master_parser): To a file instead of an obstack.
7590
3f96f4dc
AD
75912001-12-15 Akim Demaille <akim@epita.fr>
7592
7593 Attach actions to rules, instead of pre-outputting them to
7594 actions_obstack.
7595
7596 * src/gram.h (rule_t): action and action_line are new members.
7597 * src/reader.c (symbol_list): Likewise.
7598 (copy_action): Save the actions within the rule.
7599 (packgram): Save them in rule_table.
7600 * src/output.c (actions_output): New.
7601 (output_parser): Use it on `%%actions'.
7602 (output_rule_data): Don't free rule_table.
7603 (output): Do it.
7604 (prepare): Don't save the `action' muscle.
7605 * src/bison.simple: s/%%action/%%actions/.
7606
51576fb3
AD
76072001-12-15 Akim Demaille <akim@epita.fr>
7608
7609 * src/reader.c (copy_action): When --yacc, don't append a `;'
7610 to the user action: let it fail if lacking.
dee049eb 7611 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 7612
2648a72d
AD
76132001-12-14 Akim Demaille <akim@epita.fr>
7614
7615 * src/lex.c (literalchar): Simply return the char you decoded, non
7616 longer mess around with obstacks and int pointers.
7617 Adjust all callers.
7618
92790e5b
AD
76192001-12-14 Akim Demaille <akim@epita.fr>
7620
7621 * src/lex.c (literalchar): Don't escape the special characters,
7622 just decode them, and keep them as char (before, eol was output as
7623 the 2 char string `\n' etc.).
7624 * src/output.c (output_rule_data): Use quotearg to output the
7625 token strings.
7626
927c1557
PE
76272001-12-13 Paul Eggert <eggert@twinsun.com>
7628
7629 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
7630 Do not infringe on the global user namespace when using C++.
7631 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
7632 All uses of `fprintf' and `stderr' changed.
7633
7634 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
7635
ed8e1f68
AD
76362001-12-13 Akim Demaille <akim@epita.fr>
7637
7638 The computation of nullable is broken: it doesn't handle empty
7639 RHS's properly.
7640
7641 * tests/torture.at (GNU AWK Grammar): New.
7642 * tests/sets.at (Nullable): New.
7643 * src/nullable.c (set_nullable): Instead of blindly looping over
7644 `ritems', loop over the rules, and then over their rhs's.
7645
7646 Work around Autotest bugs.
7647
7648 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
7649 frame, because Autotest understand lines starting with a `+' as
7650 traces from the shell. Then, they are not processed properly.
7651 Admittedly an Autotest bug, but we don't have time to wait for
7652 Autotest to catch up.
7653 * tests/regression.at (Broken Closure): Adjust to the new table
7654 frames.
7655 Move to...
7656 * tests/sets.at: here.
7657
cb581495
AD
76582001-12-13 Akim Demaille <akim@epita.fr>
7659
7660 * src/closure.c (closure): Use nrules instead of playing tricks
7661 with BITS_PER_WORD.
7662
2e729273
AD
76632001-12-13 Akim Demaille <akim@epita.fr>
7664
7665 * src/print.c (print_actions): Output the handling of `$' as the
7666 traces do: shifting the token EOF. Before EOF was treated as a
7667 nonterminal.
7668 * tests/regression.at: Adjust some tests.
7669 * src/print_graph.c (print_core): Complete the set of items via
7670 closure. The next-to-final and final states are still unsatisfying,
7671 but that's to be addressed elsewhere.
7672 No longer output the rule numbers, but do output the state number.
7673 A single loop for the shifts + gotos is enough, but picked a
7674 distinct color for each.
7675 (print_graph): Initialize and finalize closure.
7676
107f7dfb
AD
76772001-12-13 Akim Demaille <akim@epita.fr>
7678
7679 * src/reader.c (readgram): Remove dead code, an strip useless
7680 braces.
7681 (get_type): Remove, unused.
7682
9b53a24f
AD
76832001-12-12 Akim Demaille <akim@epita.fr>
7684
7685 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
7686 on that of lib/error.c.
7687
dbfb6dcd
AD
76882001-12-12 Akim Demaille <akim@epita.fr>
7689
7690 Some hosts don't like `/' in includes.
7691
7692 * src/system.h: Include libgettext.h without qualifying the path.
7693 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
7694 $(top_srcdir).
7695
c25fb648
MA
76962001-12-11 Marc Autret <autret_m@epita.fr>
7697
7698 * src/output.c (output_parser): Remove useless muscle.
7699
710ddc4f
MA
77002001-12-11 Marc Autret <autret_m@epita.fr>
7701
7702 * src/bison.simple: Remove #line just before %%epilogue. It
7703 is now handled in ...
7704 * src/reader.c (read_additionnal_code): Add the output of a
7705 #line for the epilogue.
7706
e83d80b8
MA
77072001-12-10 Marc Autret <autret_m@epita.fr>
7708
927c1557 7709 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
7710 replace precedent remove.
7711 * src/bison.simple: Remove #line before %%prologue because
7712 %%input-line is wrong at this time.
7713
971d5158
MA
77142001-12-10 Marc Autret <autret_m@epita.fr>
7715
7716 * src/reader.c (symbols_output): Clean up.
927c1557 7717 * src/output.c (output_gram, output): Clean up.
971d5158 7718
5edafffd
AD
77192001-12-10 Akim Demaille <akim@epita.fr>
7720
7721 * src/lalr.c (initialize_lookaheads): New. Extracted from...
7722 * src/LR0.c (set_state_table): here.
7723 * src/lalr.c (lalr): Call it.
7724
0279f8e9
AD
77252001-12-10 Akim Demaille <akim@epita.fr>
7726
7727 * src/state.h (shifts): Remove the `number' member: shifts are
7728 attached to state, hence no longer need to be labelled with a
7729 state number.
7730
190c4f5f
AD
77312001-12-10 Akim Demaille <akim@epita.fr>
7732
7733 Now that states have a complete set of members, the linked list of
7734 shifts is useless: just fill directly the state's shifts member.
7735
7736 * src/state.h (shifts): Remove the `next' member.
7737 * src/LR0.c (first_state, last_state): Remove.
7738 Adjust the callers.
7739 (augment_automaton): Don't look for the shifts that must be added
7740 a shift on EOF: it is those of the state we looked for! But now,
7741 since shifts are attached, it is no longer needed to looking
7742 merely by its id: its number.
7743
2a73b93d
AD
77442001-12-10 Akim Demaille <akim@epita.fr>
7745
7746 * src/LR0.c (augment_automaton): Better variable locality.
7747 Remove an impossible branch: if there is a state corresponding to
7748 the start symbol being shifted, then there is shift for the start
7749 symbol from the initial state.
7750
74392f6a
AD
77512001-12-10 Akim Demaille <akim@epita.fr>
7752
7753 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
7754 only when appropriate: when insert_start_shifting_state' is not
7755 invoked.
7756 * tests/regression.at (Rule Line Numbers): Adjust.
7757
37c82725
AD
77582001-12-10 Akim Demaille <akim@epita.fr>
7759
7760 * src/LR0.c (augment_automaton): Now that all states have shifts,
7761 merge the two cases addition shifts to the initial state.
7762
6a164e0c
AD
77632001-12-10 Akim Demaille <akim@epita.fr>
7764
7765 * src/lalr.c (set_state_table): Move to...
7766 * src/LR0.c: here.
7767 * src/lalr.c (lalr): Don't call it...
7768 * src/LR0.c (generate_states): do it.
7769 * src/LR0.h (first_state): Remove, only the table is used.
7770
7215de24
AD
77712001-12-10 Akim Demaille <akim@epita.fr>
7772
7773 * src/LR0.h (first_shift, first_reduction): Remove.
7774 * src/lalr.c: Don't use first_shift: find shifts through the
7775 states.
7776
80e25d4d
AD
77772001-12-10 Akim Demaille <akim@epita.fr>
7778
7779 * src/LR0.c: Attach shifts to states as soon as they are
7780 computed.
7781 * src/lalr.c (set_state_table): Instead of assigning shifts to
7782 state, just assert that the mapping was properly done.
7783
0ab3728b
AD
77842001-12-10 Akim Demaille <akim@epita.fr>
7785
7786 * src/LR0.c (insert_start_shift): Rename as...
7787 (insert_start_shifting_state): this.
7788 (insert_eof_shifting_state, insert_accepting_state): New.
7789 (augment_automaton): Adjust.
7790 Better locality of the variables.
7791 When looking if the start_symbol is shifted from the initial
7792 state, using `while (... symbol != start_symbol ...)' sounds
7793 better than `while (... symbol < start_symbol ...)': If fail
7794 to see how the order between symbols could be relevant!
7795
78af9bbc
AD
77962001-12-10 Akim Demaille <akim@epita.fr>
7797
7798 * src/getargs.h: Don't declare `spec_name_prefix' and
7799 `spec_file_prefix', declared by src/files.h.
7800 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
7801 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
7802 * src/output.c (prepare): Adjust.
7803 * src/reader.c (symbols_output): Likewise.
7804 * src/vmsgetargs.c: Vaguely adjust, but who cares?
7805
bdef2a41
AD
78062001-12-10 Akim Demaille <akim@epita.fr>
7807
7808 * src/muscle_tab.c (muscle_init): NULL is a better default than
7809 `"0"'.
7810
3735969c
AD
78112001-12-10 Akim Demaille <akim@epita.fr>
7812
7813 * src/reader.c (reader): Calling symbols_output once is enough.
7814
49701457
AD
78152001-12-10 Akim Demaille <akim@epita.fr>
7816
7817 Now that states have a complete set of members, the linked list of
7818 reductions is useless: just fill directly the state's reductions
7819 member.
7820
7821 * src/state.h (struct reductions): Remove member `number' and
7822 `next'.
7823 * src/LR0.c (first_reduction, last_reduction): Remove.
7824 (save_reductions): Don't link the new reductions, store them in
7825 this_state.
7826 * src/lalr.c (set_state_table): No need to attach reductions to
7827 states, it's already done.
7828 * src/output.c (output_actions): No longer free the shifts, then
7829 the reductions, then the states: free all the states and their
7830 members.
7831
0edad749
AD
78322001-12-10 Akim Demaille <akim@epita.fr>
7833
7834 * src/options.c (OPTN, DRTV, BOTH): New.
7835 (option_table): Use them.
7836
0edad749
AD
7837 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
7838 the job of system.h.
7839 * src/options.c: Don't include stdio.h and xalloc.h for the same
7840 reasons.
7841
5449dd0f
AD
78422001-12-10 Akim Demaille <akim@epita.fr>
7843
7844 * src/output.c (output, prepare): Make sure the values of the
7845 muscles `action' and `prologue' are 0-terminated.
7846
a870c567
AD
78472001-12-10 Akim Demaille <akim@epita.fr>
7848
7849 Clean up GCC warnings.
7850
7851 * src/reader.c (copy_action): `buf' is not used.
7852 (parse_skel_decl): Be static.
7853 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
7854 * src/options.h (create_long_option_table): Have a real prototype.
7855 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
7856 (hash_delete_at): Return const void *.
7857 Adjust casts to preserve the const.
7858
80df8768
AD
78592001-12-10 Akim Demaille <akim@epita.fr>
7860
7861 * configure.in: Require 2.52g.
7862 M4 is not needed, but AUTOM4TE is.
7863 * m4/m4.m4: Remove.
7864 * tests/Makefile.am: Adjust.
7865
f693ad14
AD
78662001-12-10 Akim Demaille <akim@epita.fr>
7867
7868 One structure for states is enough, even though theoretically
7869 there are LR(0) states and LALR(1) states.
7870
7871 * src/lalr.h (state_t): Remove.
7872 (state_table): Be state_t **, not state_t *.
7873 * src/state.h (core, CORE_ALLOC): Rename as...
7874 (state_t, STATE_ALLOC): this.
7875 Add the LALR(1) members: shifts, reductions, errs.
7876 * src/LR0.c (state_table): Rename as...
7877 (state_hash): this, to avoid name clashes with the global
7878 `state_table'.
7879 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
7880 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
7881
74ffbcb6
AD
78822001-12-10 Akim Demaille <akim@epita.fr>
7883
7884 Bison dumps core on bash.y.
7885 Reported by Pascal Bart.
7886
7887 * src/warshall.c (bitmatrix_print): New.
7888 (TC): Use it.
7889 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
7890 j must be the outer loop.
7891 * tests/regression.at (Broken Closure): New.
7892
07708e19
AD
78932001-12-05 Akim Demaille <akim@epita.fr>
7894
7895 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
7896 its argument.
ba1ecc07 7897 Reported by Peter Hamorsky.
07708e19 7898
92b16366
AD
78992001-12-05 Akim Demaille <akim@epita.fr>
7900
7901 * src/conflicts.c (err_table): Remove.
7902 (resolve_sr_conflict): Adjust.
7903 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
7904 Rename as...
7905 (state_t.reductions, state_t.shifts): this.
7906
076ab033
AD
79072001-12-05 Akim Demaille <akim@epita.fr>
7908
7909 * src/reduce.c (reduce_grammar_tables): No longer disable the
7910 removal of useless rules via CPP but via `if (0)', so that the
7911 compiler still check the code is valid.
7912 For instance, it should have noticed `rline' no longer exists: use
7913 the `line' member of rule_t.
7914 * src/gram.c (dummy, rline): Remove, unused.
7915
3843c413
AD
79162001-12-05 Akim Demaille <akim@epita.fr>
7917
7918 * src/output.c (pack_vector): Use assert, not berror.
7919 * src/main.c (berror): Remove, unused.
7920
43168960
AD
79212001-12-05 Akim Demaille <akim@epita.fr>
7922
7923 New experimental feature: if --verbose --trace output all the
7924 items of a state, not only its kernel.
7925
7926 * src/print.c (print_core): If `trace_flag', then invoke closure
7927 before outputting the items of the state (print_core is no longer
7928 a correct name them).
7929 (print_results): Invoke new_closure/free_closure if needed.
7930
b2872512
AD
79312001-12-05 Akim Demaille <akim@epita.fr>
7932
7933 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
7934 * src/closure.c, src/closure.h (itemsetsize): Rename as...
7935 (nitemset): for consistency with the rest of the project.
7936
23cbcc6c
AD
79372001-12-05 Akim Demaille <akim@epita.fr>
7938
7939 * src/closure.c (print_closure): Improve.
7940 (closure): Use it for printing input and output.
7941
03ec521c
AD
79422001-12-05 Akim Demaille <akim@epita.fr>
7943
7944 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
7945 indexed by nonterminals.
7946
3a7456dd
AD
79472001-12-05 Akim Demaille <akim@epita.fr>
7948
7949 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
7950 what it was!).
7951 * src/warshall.h: Remove accidental duplication of the content.
7952
1cbcf2e7
AD
79532001-12-05 Akim Demaille <akim@epita.fr>
7954
7955 * src/closure.c (set_fderives): De-obfuscate.
7956
84182270
AD
79572001-12-05 Akim Demaille <akim@epita.fr>
7958
7959 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
7960
3f6f053c
AD
79612001-12-05 Akim Demaille <akim@epita.fr>
7962
7963 * src/closure.c (set_firsts): De-obfuscate.
7964
7a5350ba
AD
79652001-12-05 Akim Demaille <akim@epita.fr>
7966
7967 * src/output.c (action_row): De-obfuscate
7968 using the good o' techniques: arrays not pointers, variable
7969 locality, BITISSET, RESETBIT etc.
7970
d954473d
AD
79712001-12-05 Akim Demaille <akim@epita.fr>
7972
7973 Pessimize the code to simplify it: from now on, all the states
7974 have a valid SHIFTS, which NSHIFTS is possibly 0.
7975
7976 * src/LR0.c (shifts_new): Be global and move to..
7977 * src/state.c, src/state.h: here.
7978 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
7979 * src/print_graph: Adjust.
7980
9839bbe5
AD
79812001-12-05 Akim Demaille <akim@epita.fr>
7982
7983 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
7984 * src/conflicts.c: Use it.
7985 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
7986 incorrectly ``simplified''.
7987
9f136c07
AD
79882001-12-05 Akim Demaille <akim@epita.fr>
7989
7990 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
7991 using the good o' techniques: arrays not pointers, variable
7992 locality, BITISSET, RESETBIT etc.
7993
b608206e
AD
79942001-12-05 Akim Demaille <akim@epita.fr>
7995
7996 * src/state.h (SHIFT_SYMBOL): New.
7997 * src/conflicts.c: Use it to deobfuscate.
7998
52afa962
AD
79992001-12-05 Akim Demaille <akim@epita.fr>
8000
8001 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
8002 (print_reductions): De-obfuscate using the good o' techniques:
8003 arrays not pointers, variable locality, BITISSET.
8004
e74dc321
AD
80052001-12-05 Akim Demaille <akim@epita.fr>
8006
8007 * src/conflicts.c (print_reductions): Arrays, not pointers.
8008 Use BITISSET.
8009
768fca83
AD
80102001-12-05 Akim Demaille <akim@epita.fr>
8011
8012 * src/conflicts.c (print_reductions): Pessimize, but clarify.
8013
a17e599f
AD
80142001-12-05 Akim Demaille <akim@epita.fr>
8015
8016 * src/conflicts.c (print_reductions): Improve variable locality.
8017
a04bc341
AD
80182001-12-05 Akim Demaille <akim@epita.fr>
8019
8020 * src/conflicts.c (print_reductions): Pessimize, but clarify.
8021
c8ea038e
AD
80222001-12-05 Akim Demaille <akim@epita.fr>
8023
8024 * src/conflicts.c (print_reductions): Improve variable locality.
8025
aa2aab3c
AD
80262001-12-05 Akim Demaille <akim@epita.fr>
8027
8028 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
8029 * src/lalr.c: Use them.
8030
b178c8cc
AD
80312001-12-05 Akim Demaille <akim@epita.fr>
8032
8033 * src/LR0.c (augment_automaton): Formatting changes.
8034 Better variable locality.
8035
f67d13aa
AD
80362001-12-05 Akim Demaille <akim@epita.fr>
8037
8038 * src/lalr.c (matrix_print): New.
8039 (transpose): Use it.
8040 Use arrays instead of pointers.
8041
c2713865
AD
80422001-12-05 Akim Demaille <akim@epita.fr>
8043
8044 * src/lalr.c (maxrhs): Move to...
8045 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
8046 * src/lalr.c (build_relations): Adjust.
8047
9887c18a
AD
80482001-12-05 Akim Demaille <akim@epita.fr>
8049
8050 * src/lalr.c (transpose): Free the memory allocated to the
8051 argument, as it is replaced by the results by the unique caller.
8052 (build_relations): Merely invoke transpose: it handles the memory
8053 deallocation.
8054 Improve variable locality.
8055 Avoid variables used as mere abbreviations.
8056 (compute_lookaheads): Use arrays instead of pointers.
8057
4d4f699c
AD
80582001-12-05 Akim Demaille <akim@epita.fr>
8059
8060 * src/lalr.c (initialize_F): Improve variable locality.
8061 Avoid variables used as mere abbreviations.
8062
80a69750
AD
80632001-12-05 Akim Demaille <akim@epita.fr>
8064
8065 * src/derives.c (print_derives): Display the ruleno.
8066 * src/lalr.c (initialize_F, transpose): Better variable locality
8067 to improve readability.
8068 Avoid variables used as mere abbreviations.
8069
fe961097
AD
80702001-12-05 Akim Demaille <akim@epita.fr>
8071
8072 * src/lalr.c (traverse): Use arrays instead of pointers.
8073
e3e4e814
AD
80742001-12-05 Akim Demaille <akim@epita.fr>
8075
8076 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
8077 the handling of squeue.
8078 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
8079
630e182b
AD
80802001-12-05 Akim Demaille <akim@epita.fr>
8081
8082 Because useless nonterminals are now kept alive (instead of being
8083 `destroyed'), we now sometimes examine them, and store information
8084 related to them. Hence we need to know their number, and adjust
8085 memory allocations.
8086
8087 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
8088 static.
8089 * src/LR0.c (allocate_itemsets): The memory allocated to
8090 `symbol_count' was used for two different purpose: once to count
8091 the number of occurrences of each symbol, and later reassigned to
8092 `shift_symbol', containing the symbol that can be shifted from a
8093 given state.
8094 Deobfuscate, i.e., allocate, use and free `symbol_count' here
8095 only, and...
8096 (new_itemsets): Allocate `shift_symbol' here.
8097 (allocate_itemsets): symbol_count includes useless nonterminals.
8098 Make room for them.
8099 (free_storage): Use `free', not `XFREE', for pointers that cannot
8100 be null.
8101
81b51460
AD
81022001-12-05 Akim Demaille <akim@epita.fr>
8103
8104 * src/nullable.c (set_nullable): Deobfuscate the handling of
8105 ritem.
8106 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
8107
3067fbef
AD
81082001-12-05 Akim Demaille <akim@epita.fr>
8109
8110 * src/gram.c, src/gram.h (ritem_print): New.
8111 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
8112 (This useless function was defined only to work around VMS linkers
8113 that can't handle compilation units with variables only).
8114 * src/reduce.c (dump_grammar): Use it to trace the construction of
8115 ritem.
8116
c2bea5f9
PE
81172001-12-04 Paul Eggert <eggert@twinsun.com>
8118
7d27c823
PE
8119 * src/bison.simple (union yyalloc): Change member names
8120 to be the same as the stack names.
8121 (yyparse): yyptr is now union yyalloc *, not char *.
8122 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
8123 and may generate better code on some machines.
c2bea5f9
PE
8124 (yystpcpy): Use prototype if __STDC__ is defined, not just
8125 if __cplusplus is defined.
35687a9d 8126
2c8a9dfa
AD
81272001-11-30 Akim Demaille <akim@epita.fr>
8128
8129 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
8130 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
8131 Gettext doesn't compile cleanly, and dies with -Werror.
8132 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
8133 Include WARNING_CFLAGS here.
8134 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
8135 before being defined.
8136
f4e421e6
AD
81372001-11-27 Paul Eggert <eggert@twinsun.com>
8138
8139 * lib/quotearg.h (quotearg_n, quotearg_n_style):
8140 First arg is int, not unsigned.
8141 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
8142 (SIZE_MAX, UINT_MAX): New macros.
8143 (quotearg_n_options): Abort if N is negative.
8144 Avoid overflow check on hosts where size_t is 64 bits and int
8145 is 32 bits, as overflow is impossible there.
8146 Fix off-by-one typo that caused unnecessary reallocation.
8147
7093d0f5
AD
81482001-11-29 Paul Eggert <eggert@twinsun.com>
8149
8150 Name space cleanup in generated parser.
8151
8152 * doc/bison.texinfo (Bison Parser): Discuss system headers
8153 and their effect on the user name space.
8154
8155 * src/bison.simple:
8156 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
8157 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
8158 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
8159
8160 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
8161 on user names when possible.
8162
8163 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
8164 Simplify test for whather <alloca.h> exists.
8165
8166 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
8167
8168 (<stdio.h>): Include if YYDEBUG.
8169
8170 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
8171 ! defined (yyoverflow) && ! defined (yymemcpy).
8172
8173 (yymemcpy, yyparse): Rename local variables as needed so that
8174 they all begin with 'yy'.
8175
8176 (yystrlen, yystpcpy): New functions.
8177
8178 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
8179 All uses changed.
8180
8181 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
8182 instead of relying on string.h functions. Use YYSTACK_ALLOC
8183 and YYSTACK_FREE instead of malloc and free.
8184
fd51e5ff
AD
81852001-11-30 Akim Demaille <akim@epita.fr>
8186
8187 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
8188 before their first uses.
8189 (YYBISON, YYPURE): Move to the top of the output.
8190
7d13ff5f
AD
81912001-11-30 Akim Demaille <akim@epita.fr>
8192
8193 * tests/reduce.at (Useless Nonterminals): Fix.
8194
892a3995
AD
81952001-11-30 Akim Demaille <akim@epita.fr>
8196
8197 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
8198 if body instead of `;' to pacify GCC's warnings.
8199
68f1e3ed
AD
82002001-11-30 Akim Demaille <akim@epita.fr>
8201
8202 Instead of mapping the LHS of unused rules to -1, keep the LHS
8203 valid, but flag the rules as invalid.
8204
8205 * src/gram.h (rule_t): `useful' is a new member.
8206 * src/print.c (print_grammar): Adjust.
8207 * src/derives.c (set_derives): Likewise.
8208 * src/reader.c (packgram, reduce_output): Likewise.
8209 * src/reduce.c (reduce_grammar_tables): Likewise.
8210 * tests/reduce.at (Underivable Rules, Useless Rules): New.
8211
d2d1b42b
AD
82122001-11-30 Akim Demaille <akim@epita.fr>
8213
8214 * src/reduce.c (reduce_output): Formatting changes.
8215 * src/print.c (print_results, print_grammar): Likewise.
8216 * tests/regression.at (Rule Line Numbers)
8217 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
8218
760b53a8
AD
82192001-11-30 Akim Demaille <akim@epita.fr>
8220
8221 * src/reduce.c (nonterminals_reduce): Instead of throwing away
8222 useless nonterminals, move them at the end of the symbol arrays.
8223 (reduce_output): Adjust.
8224 * tests/reduce.at (Useless Nonterminals): Adjust.
8225
00238958
AD
82262001-11-30 Akim Demaille <akim@epita.fr>
8227
8228 * src/reduce.c: Various comment/formatting changes.
8229 (nonterminals_reduce): New, extracted from...
8230 (reduce_grammar_tables): here.
8231 (reduce_grammar): Call nonterminals_reduce.
8232
396452de
PE
82332001-11-29 Paul Eggert <eggert@twinsun.com>
8234
8235 * src/bison.simple (YYSTACK_REALLOC): Remove.
8236 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
8237 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
8238 New macros.
8239 (union yyalloc): New type.
8240 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
8241 an arbitrary restriction on hosts where size_t is wider than int.
8242
8243 (yyparse): Don't dump core if alloca or malloc fails; instead, report
8244 a parser stack overflow. Allocate just one block of memory for all
8245 three stacks, instead of allocating three blocks; this typically is
8246 faster and reduces fragmentation.
8247
8248 Do not limit the number of items in the stack to a value that fits
8249 in 'int', as this is an arbitrary limit on hosts with 64-bit
8250 size_t and 32-bit int.
8251
147e184c
MA
82522001-11-29 Marc Autret <autret_m@epita.fr>
8253
8254 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
8255 of defining YYERROR_VERBOSE.
8256 [AT_DATA]: $4 is now out of C declarations in the prologue.
8257
426cf563
MA
82582001-11-28 Marc Autret <autret_m@epita.fr>
8259
8260 * src/reader.c (parse_dquoted_param): New.
8261 (parse_skel_decl): Use it.
8262 * src/lex.h: Add its prototype.
8263 * src/lex.c (literalchar): Become not static.
8264
c7925b99
MA
82652001-11-28 Marc Autret <autret_m@epita.fr>
8266
8267 * src/output.h: And put its extern declaration here.
8268 * src/output.c (error_verbose): Define here.
8269 (prepare): Echo name modification.
8270 * src/getargs.h: Clean its extern declaration.
8271 * src/getargs.c (error_verbose_flag): Remove.
8272 (getargs): Remove case 'e'.
8273 * src/options.c (option_table): 'error-verbose' is now seen as simple
8274 percent option.
8275 Include output.h.
8276
8277 * src/reader.c (read_declarations): Remove case tok_include.
8278 (parse_include_decl): Remove.
8279 * src/lex.h (token_t): Remove tok_include.
8280 * src/options.c (option_table): 'include' is now a simple command line
8281 option.
8282
5b5d1929
MA
82832001-11-28 Marc Autret <autret_m@epita.fr>
8284
8285 * src/bison.simple: Adjust muscle names.
8286 * src/muscle_tab.c (muscle_init): Also rename the muscles.
8287 * src/output.c (prepare): s/_/-/ for the muscles names.
8288 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
8289
8850be4b
MA
82902001-11-28 Marc Autret <autret_m@epita.fr>
8291
8292 * src/bison.simple: Fix debug.
8293 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
8294
4a38e613
AD
82952001-11-28 Akim Demaille <akim@epita.fr>
8296
8297 * src/LR0.c (shifts_new): New.
8298 (save_shifts, insert_start_shift, augment_automaton): Use it.
8299
4b35e1c1
AD
83002001-11-28 Akim Demaille <akim@epita.fr>
8301
8302 * src/closure.c (closure): `b' and `ruleno' denote the same value:
8303 keep ruleno only.
8304
d2b04478
AD
83052001-11-28 Akim Demaille <akim@epita.fr>
8306
8307 * src/closure.c (closure): Instead of looping over word in array
8308 then bits in words, loop over bits in array.
8309
2c4c30aa
AD
83102001-11-28 Akim Demaille <akim@epita.fr>
8311
8312 * src/closure.c (closure): No longer optimize the special case
8313 where all the bits of `ruleset[r]' are set to 0, to make the code
8314 clearer.
8315
576890b7
AD
83162001-11-28 Akim Demaille <akim@epita.fr>
8317
8318 * src/closure.c (closure): `r' and `c' are new variables, used to
8319 de-obfuscate accesses to RULESET and CORE.
8320
cb487d7d
AD
83212001-11-28 Akim Demaille <akim@epita.fr>
8322
8323 * src/reduce.c (reduce_print): Use ngettext.
8324 (dump_grammar): Improve the trace accuracy.
8325
6013d43f
AD
83262001-11-28 Akim Demaille <akim@epita.fr>
8327
8328 * src/reduce.c (dump_grammar): Don't translate trace messages.
8329
cb4956ee
AD
83302001-11-28 Akim Demaille <akim@epita.fr>
8331
8332 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
8333 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
8334 as all tags are free'ed afterwards.
8335 From Enrico Scholz.
8336
648185ab
PE
83372001-11-27 Paul Eggert <eggert@twinsun.com>
8338
8339 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
8340 use alloca when we didn't want to, and vice versa.
8341
68254a03
MA
83422001-11-27 Marc Autret <autret_m@epita.fr>
8343
9113b58f
AD
8344 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
8345 initialization.
68254a03
MA
8346 * src/output.c (prepare): Remove its update.
8347
04d843a2
MA
83482001-11-27 Marc Autret <autret_m@epita.fr>
8349
8350 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
8351 Use %error-verbose.
8352
d2079671 83532001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
8354
8355 * src/bison.simple: Remove YYERROR_VERBOSE using.
8356 Use %%error_verbose.
8357 (yyparse): Likewise.
8358 * src/output.c (prepare): Give its final value.
8359 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
8360 * src/getargs.h: Add its extern declaration.
8361 * src/getargs.c (error_verbose_flag): New int.
8362 (getargs): Update to catch new case.
8363 * src/options.c (option_table): 'error-verbose' is a new option.
8364 (shortopts): Update.
8365
e0327bc8
AD
83662001-11-27 Akim Demaille <akim@epita.fr>
8367
8368 * src/system.h: Use intl/libgettext.h.
8369 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
8370
000f1a3c
AD
83712001-11-27 Akim Demaille <akim@epita.fr>
8372
8373 * tests/torture.at (Exploding the Stack Size with Malloc):
8374 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
8375
26cfe0be
AD
83762001-11-27 Akim Demaille <akim@epita.fr>
8377
8378 * src/files.c: Include error.h.
8379 Reported by Hans Aberg.
8380
f6bd5427
MA
83812001-11-26 Marc Autret <autret_m@epita.fr>
8382
d2079671 8383 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
8384 (read_declarations): Add case tok_include.
8385 * src/getargs.h (include): Add its extern definition.
8386 * src/getargs.c (include): New const char *.
8387 (getargs): Add case '-I'.
8388 * src/options.c (option_table): Add include as command line and
8389 percent option.
8390 * src/lex.h (token_t): Add tok_include.
8391
2ca209c1
AD
83922001-11-26 Akim Demaille <akim@epita.fr>
8393
8394 * src/reader.c (readgram): Make sure rules for mid-rule actions
8395 have a lineno equal to that of their host rule.
8396 Reported by Hans Aberg.
8397 * tests/regression.at (Rule Line Numbers): New.
8398
0e41b407
AD
83992001-11-26 Akim Demaille <akim@epita.fr>
8400
8401 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
8402 size_ts.
8403
84042001-11-26 Akim Demaille <akim@epita.fr>
8405
8406 * src/complain.c, src/complain.h (error): Remove, provided by
8407 lib/error.[ch].
8408
e0c40012
AD
84092001-11-26 Akim Demaille <akim@epita.fr>
8410
8411 * src/reader.c (read_declarations): Don't abort on tok_illegal,
8412 issue an error message.
8413 * tests/regression.at (Invalid %directive): New.
8414 Reported by Hans Aberg.
8415
5e147124
AD
84162001-11-26 Akim Demaille <akim@epita.fr>
8417
8418 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
8419 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
8420
a034c8b8
AD
84212001-11-26 Akim Demaille <akim@epita.fr>
8422
8423 * src/conflicts.c (conflicts_print): Don't complain at all when
8424 there are no reduce/reduce conflicts, and as many shift/reduce
8425 conflicts as expected.
8426 * tests/regression.at (%expect right): Adjust.
8427
c64a20f3
AD
84282001-11-23 Akim Demaille <akim@epita.fr>
8429
8430 * lib/alloca.c: Update, from fileutils.
8431
5b0d29bb
AD
84322001-11-23 Akim Demaille <akim@epita.fr>
8433
8434 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
8435
722c4bfe
AD
84362001-11-23 Akim Demaille <akim@epita.fr>
8437
8438 * src/system.h: Include alloca.h.
8439 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
8440
6255b435
AD
84412001-11-23 Akim Demaille <akim@epita.fr>
8442
8443 * src/print_graph.c (print_actions): Remove `rule', unused.
8444 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
8445 pacify GCC's signed < unsigned warnings.
8446 * src/closure.c (itemsetsize): Likewise.
8447 * src/reader.c (symbol_list_new): Static.
8448
b29b2ed5
AD
84492001-11-23 Akim Demaille <akim@epita.fr>
8450
8451 Attaching lineno to buckets is stupid, since only one copy of each
8452 symbol is kept, only the line of the first occurrence is kept too.
8453
8454 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
8455 * src/reader.c (rline_allocated): Remove, unused.
8456 (symbol_list): Have a `line' member.
8457 (symbol_list_new): New.
8458 (readgram): Use it.
8459 * src/print.c (print_grammar): Output the rule line numbers.
8460 * tests/regression.at (Solved SR Conflicts)
8461 (Unresolved SR Conflicts): Adjust.
8462 Reported by Hans Aberg.
8463
a81b1d4a
MA
84642001-11-22 Marc Autret <autret_m@epita.fr>
8465
8466 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
8467
c1ecb3c1
MA
84682001-11-22 Marc Autret <autret_m@epita.fr>
8469
8470 * src/muscle_tab.c (muscle_init): Remove initialization of
8471 skeleton muscle.
8472 * src/output.c (output_master_parser): Do it here.
8473
fbe01355
AD
84742001-11-20 Akim Demaille <akim@epita.fr>
8475
8476 * po/sv.po: New.
8477 * configure.in (ALL_LINGUAS): Adjust.
8478 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
8479 longer contains strings to translate.
8480
81e895c0
AD
84812001-11-19 Akim Demaille <akim@epita.fr>
8482
8483 * src/conflicts.c (conflicts_print): Add a missing \n.
8484
6bb1878b
AD
84852001-11-19 Akim Demaille <akim@epita.fr>
8486
8487 * src/nullable.c (nullable_print): New.
8488 (set_nullable): Call it when tracing.
8489 Better locality of variables.
8490
d9ec2d07
AD
84912001-11-19 Akim Demaille <akim@epita.fr>
8492
8493 * src/print.c (print_actions): Better locality of variables.
8494
720e5c1b
AD
84952001-11-19 Akim Demaille <akim@epita.fr>
8496
8497 * src/derives.c (print_derives): Fix and enrich.
8498 * src/closure.c (print_fderives): Likewise.
8499
fb908786
AD
85002001-11-19 Akim Demaille <akim@epita.fr>
8501
8502 * src/closure.c (itemsetend): Remove, replaced with...
8503 (itemsetsize): new.
8504
125ecb56
AD
85052001-11-19 Akim Demaille <akim@epita.fr>
8506
8507 * src/LR0.c (kernel_end): Remove, replaced with...
8508 (kernel_size): new.
8509
d8cf039f
AD
85102001-11-19 Akim Demaille <akim@epita.fr>
8511
8512 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
8513 to clarify.
8514
7bec0760
AD
85152001-11-19 Akim Demaille <akim@epita.fr>
8516
8517 * src/closure.c (closure): Use arrays instead of pointers to clarify.
8518
c87d4863
AD
85192001-11-19 Akim Demaille <akim@epita.fr>
8520
8521 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
8522 trace messages.
8523 * src/LR0.c: Likewise.
8524 (allocate_itemsets): Use arrays instead of pointers to clarify.
8525
9bfe901c
AD
85262001-11-19 Akim Demaille <akim@epita.fr>
8527
8528 * src/getargs.c (statistics_flag): Replace with...
8529 (trace_flag): New.
8530 (longopts): Accept --trace instead of --statistics.
8531 * src/getargs.h, src/options.c: Adjust.
8532 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
8533 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
8534
97db7bd4
AD
85352001-11-19 Akim Demaille <akim@epita.fr>
8536
cc72668c 8537 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
8538 pointers to clarify the code.
8539 (save_reductions, save_shifts): Factor common parts of alternatives.
8540
2c5f66ed
AD
85412001-11-19 Akim Demaille <akim@epita.fr>
8542
8543 * src/LR0.c (new_state, get_state): Complete TRACE code.
8544 * src/closure.c: Include `reader.h' to get `tags', needed by the
8545 trace code.
8546 Rename the conditional DEBUG as TRACE.
8547 Output consistently TRACEs to stderr, not stdout.
8548 * src/derives.c: Likewise.
8549 * src/reduce.c: (inaccessable_symbols): Using if is better style
8550 than goto.
8551 Use `#if TRACE' instead of `#if 0' for tracing code.
8552
300f275f
AD
85532001-11-19 Akim Demaille <akim@epita.fr>
8554
8555 * src/system.h (LIST_FREE, shortcpy): New.
8556 * src/LR0.c: Use them.
8557 * src/output.c (free_itemsets, free_reductions, free_shifts):
8558 Remove, replaced by LIST_FREE.
8559
f59c437a
AD
85602001-11-19 Akim Demaille <akim@epita.fr>
8561
8562 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
8563 (REDUCTIONS_ALLOC): New.
8564 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
8565 allocation.
8566
6986fd9e
AD
85672001-11-19 Akim Demaille <akim@epita.fr>
8568
8569 * src/LR0.c (new_state): Complete trace code.
8570 * src/nullable.c (set_nullable): Don't translate traces.
8571
4bc30f78
AD
85722001-11-19 Akim Demaille <akim@epita.fr>
8573
8574 * src/print_graph.c (print_core): Better locality of variables.
8575 * src/print.c (print_core): Likewise.
8576
08a946e0
AD
85772001-11-19 Akim Demaille <akim@epita.fr>
8578
8579 * src/vcg.c: You do the output, so you are responsible of the
8580 handling of VCG syntax, in particular: use quotearg.
8581 * src/print_graph.c: Don't.
8582 (print_actions): Don't output the actions as part of the nodes,
8583 since that's the job of the edges.
8584 (print_state): Don't output by hand: fill the node description,
9bfe901c 8585 and ask for its output.
08a946e0 8586
f0473484
AD
85872001-11-19 Akim Demaille <akim@epita.fr>
8588
cc72668c
AD
8589 * src/bison.simple (yyparse): When verbosely reporting an error,
8590 no longer put additional quotes around token names.
f0473484
AD
8591 * tests/calc.at: Adjust.
8592
e41dc700
AD
85932001-11-19 Akim Demaille <akim@epita.fr>
8594
8595 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
8596 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
8597 * src/output.c: Adjust.
8598
652a871c
AD
85992001-11-19 Akim Demaille <akim@epita.fr>
8600
8601 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
8602 (rule_t): this.
8603 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
8604
b2ed6e58
AD
86052001-11-19 Akim Demaille <akim@epita.fr>
8606
8607 * src/gram.h (rule_t): New.
8608 (rule_table): New.
8609 (rrhs, rlhs): Remove, part of state_t.
8610 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
8611 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
8612 * src/reader.c, src/reduce.c: Adjust.
8613
edad7067
AD
86142001-11-19 Akim Demaille <akim@epita.fr>
8615
8616 * src/reader.c (symbols_output): New, extracted from...
8617 (packsymbols): Here.
8618 (reader): Call it.
8619
3feec034
AD
86202001-11-19 Akim Demaille <akim@epita.fr>
8621
8622 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
8623 (maxrhs): this new function.
8624
ddcd5fdf
AD
86252001-11-19 Akim Demaille <akim@epita.fr>
8626
cc72668c 8627 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
8628 Adjust.
8629
bb527fc2
AD
86302001-11-19 Akim Demaille <akim@epita.fr>
8631
cc72668c 8632 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
8633 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
8634 * src/lalr.c: Adjust.
8635
a845a697
AD
86362001-11-19 Akim Demaille <akim@epita.fr>
8637
8638 * src/lalr.c (initialize_LA): Only initialize LA. Let...
8639 (set_state_table): handle the `lookaheads' members.
8640
f004bf6a
AD
86412001-11-19 Akim Demaille <akim@epita.fr>
8642
cc72668c
AD
8643 * src/lalr.h (lookaheads): Removed array, whose contents is now
8644 a member of...
f004bf6a
AD
8645 (state_t): this structure.
8646 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
8647 Adjust.
8648
de326cc0
AD
86492001-11-19 Akim Demaille <akim@epita.fr>
8650
cc72668c
AD
8651 * src/lalr.h (consistent): Removed array, whose contents is now
8652 a member of...
de326cc0
AD
8653 (state_t): this structure.
8654 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
8655 Adjust.
8656
90b4416b
AD
86572001-11-19 Akim Demaille <akim@epita.fr>
8658
cc72668c
AD
8659 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
8660 contents are now members of...
90b4416b
AD
8661 (state_t): this structure.
8662 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
8663 Adjust.
8664
9703cc49
AD
86652001-11-19 Akim Demaille <akim@epita.fr>
8666
8667 * src/lalr.h (state_t): New.
8668 (state_table): Be a state_t * instead of a core **.
8669 (accessing_symbol): Remove, part of state_t.
8670 * src/lalr.c: Adjust.
8671 (set_accessing_symbol): Merge into...
8672 (set_state_table): this.
8673 * src/print_graph.c, src/conflicts.c: Adjust.
8674
d803322e
AD
86752001-11-14 Akim Demaille <akim@epita.fr>
8676
8677 * tests/calc.at, tests/output.at, tests/regression.at,
8678 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
8679 now the tests are run in private dirs, therefore AC_CLEANUP and
8680 family can be simplified to 0-ary.
8681 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
8682 use abs. path to find config.h.
8683 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
8684 stderr, there can be way too much random noise.
8685 Instead pass -Werror to GCC and rely on the exit status.
8686 Reported by Wolfram Wagner.
8687
3d76b07d
AD
86882001-11-14 Akim Demaille <akim@epita.fr>
8689
8690 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
8691 defined only if yyoverflow is defined, to avoid `warning: unused
8692 variable `yyvs1''.
8693 Reported by The Test Suite.
8694
09b503c8
AD
86952001-11-14 Akim Demaille <akim@epita.fr>
8696
8697 * src/print.c: Include reduce.h.
8698 Reported by Hans Aberg.
8699
87002001-11-14 Akim Demaille <akim@epita.fr>
8701
8702 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
8703 Revert a previous patch: these are really const.
8704 * src/conflicts.c (conflict_report): Additional useless pair of
8705 braces to pacify GCC's warnings for `if () if () {} else {}'.
8706 * src/lex.c (parse_percent_token): Replace equal_offset with
8707 arg_offset.
8708 arg is const.
8709 Be sure to strdup `arg' when used, since there is no reason for
8710 token_buffer not to change.
8711
0f37a994
AD
87122001-11-14 Akim Demaille <akim@epita.fr>
8713
8714 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
8715 definition.
8716 * src/main.c (main): Use them.
8717 Suggested by Hans Aberg.
8718
d39d93b8
AD
87192001-11-12 Akim Demaille <akim@epita.fr>
8720
8721 * src/system.h (ngettext): Now that we use ngettext, be sure to
8722 provide a default definition when NLS are not used.
8723
9edcd895
AD
87242001-11-12 Akim Demaille <akim@epita.fr>
8725
8726 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
8727 Use @kbd to denote user input.
8728 (Language and Grammar): ANSIfy the example.
8729 Adjust its layout for info/notinfo.
8730 (Location Tracking Calc): Output error messages to stderr.
8731 Output locations in a more GNUtically correct way.
8732 Fix a couple of Englishos.
8733 Adjust @group/@end group pairs.
8734
7da99ede
AD
87352001-11-12 Akim Demaille <akim@epita.fr>
8736
e3aa65c5 8737 %expect was not functioning at all.
7da99ede
AD
8738
8739 * src/conflicts.c (expected_conflicts): Set to -1.
8740 (conflict_report): Use ngettext.
8741 (conflicts_print): Check %expect and make its violation an error.
8742 * doc/bison.texinfo (Expect Decl): Adjust.
8743 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
8744 * tests/regression.at (%expect not enough, %expect right)
8745 (%expect too much): New.
8746
ba9dda1a
AD
87472001-11-12 Akim Demaille <akim@epita.fr>
8748
8749 * tests/regression.at (Conflicts): Rename as...
8750 (Unresolved SR Conflicts): this.
8751 (Solved SR Conflicts): New.
8752
337c5bd1
AD
87532001-11-12 Akim Demaille <akim@epita.fr>
8754
8755 * src/reduce.c (print_results): Rename as...
8756 (reduce_output): This.
8757 Output to OUT, passed as argument, instead of output_obstack.
8758 (dump_grammar): Likewise.
8759 (reduce_free): New.
8760 Also free V1.
8761 (reduce_grammar): No longer call reduce_output, since...
8762 * src/print.c (print_results): do it.
8763 * src/main.c (main): Call reduce_free;
8764
c73a41af
AD
87652001-11-12 Akim Demaille <akim@epita.fr>
8766
8767 * src/conflicts.c (print_reductions): Accept OUT as argument.
8768 Output to it, not to output_obstack.
8769 * src/print.c (print_actions): Adjust.
8770
0df87bb6
AD
87712001-11-12 Akim Demaille <akim@epita.fr>
8772
8773 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
8774 the result instead of using...
8775 (src_total, rrc_total, src_count, rrc_count): Remove.
8776 (any_conflicts): Remove.
8777 (print_conflicts): Split into...
8778 (conflicts_print, conflicts_output): New.
8779 * src/conflicts.h: Adjust.
8780 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 8781 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
8782 * tests/regression.at (Conflicts): New.
8783 Reported by Tom Lane.
8784
e4d3d4de
AD
87852001-11-12 Akim Demaille <akim@epita.fr>
8786
8787 * tests/regression.at (Invalid input): Remove, duplicate with
8788 ``Invalid input: 1''.
8789
6d7d248e
AD
87902001-11-12 Akim Demaille <akim@epita.fr>
8791
8792 * tests/torture.at (AT_DATA_STACK_TORTURE)
8793 (Exploding the Stack Size with Alloca)
8794 (Exploding the Stack Size with Malloc): New.
8795
e9e4c321
AD
87962001-11-12 Akim Demaille <akim@epita.fr>
8797
8798 * src/bison.simple (YYSTACK_REALLOC): New.
8799 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 8800 Reported by Per Allansson.
e9e4c321 8801
5f7e0832
AD
88022001-11-12 Pascal Bart <pascal.bart@epita.fr>
8803
8804 * src/bison.simple: Define type yystype instead of YYSTYPE, and
8805 define CPP macro, which substitute YYSTYPE by yystype.
8806 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
8807 with yyltype/YYLTYPE. This allows inclusion of the generated
8808 header within the parser if the compiler, such as GGC, accepts
8809 multiple equivalent #defines.
8810 From Akim.
8811
e3f1699f
AD
88122001-11-05 Akim Demaille <akim@epita.fr>
8813
8814 * src/reader.c (symbols_output): New, extracted from...
8815 (packsymbols): here.
8816 (reader): Adjust.
8817
65be0866
AD
88182001-11-05 Akim Demaille <akim@epita.fr>
8819
8820 * src/lex.c (parse_percent_token): s/quotearg/quote/.
8821
e4d910bf
AD
88222001-11-05 Akim Demaille <akim@epita.fr>
8823
8824 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
8825 pattern.
8826
951366c1
AD
88272001-11-05 Akim Demaille <akim@epita.fr>
8828
8829 * src/options.h (struct option_table_struct): set_flags is void*.
8830 * src/options.c (longopts): Support `--output' and `%output'.
8831 (usage): Adjust.
8832 * src/lex.h (tok_setopt): Remove, replaced with...
8833 (tok_intopt, tok_stropt): these new guys.
8834 * src/lex.c (getopt.h): Not needed.
8835 (token_buffer, unlexed_token_buffer): Not const.
8836 (percent_table): Promote `-' over `_' in directive names.
8837 Active `%name-prefix', `file-prefix', and `output'.
8838 (parse_percent_token): Accept possible arguments to directives.
8839 Promote `-' over `_' in directive names.
8840
d8988b2f
AD
88412001-11-04 Akim Demaille <akim@epita.fr>
8842
8843 * doc/bison.texinfo (Decl Summary): Split the list into
8844 `directives for grammars' and `directives for bison'.
8845 Sort'em.
8846 Add description of `%name-prefix', `file-prefix', and `output'.
8847 Promote `-' over `_' in directive names.
8848 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
8849 Simplify the description of `--name-prefix'.
8850 Promote `-' over `_' in directive names.
8851 Promote `--output' over `--output-file'.
8852 Fix the description of `--defines'.
8853 * tests/output.at: Exercise %file-prefix and %output.
8854
6468d18e
AD
88552001-11-02 Akim Demaille <akim@epita.fr>
8856
8857 * doc/refcard.tex: Update.
8858
6b7e85b9
AD
88592001-11-02 Akim Demaille <akim@epita.fr>
8860
8861 * src/symtab.h (SUNDEF): New.
8862 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
8863 stand for `uninitialized', instead of 0.
8864 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
8865 * src/lex.c (lex): Adjust.
8866
8867 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
8868 Number it 0.
8869 Let yylex return it instead of a plain 0.
8870 Reported by Dick Streefland.
8871
cd5aafcf
AD
88722001-11-02 Akim Demaille <akim@epita.fr>
8873
8874 * tests/regression.at (Mixing %token styles): New test.
8875
037ca2f1
AD
88762001-11-02 Akim Demaille <akim@epita.fr>
8877
8878 * src/reader.c (parse_thong_decl): Formatting changes.
8879 (token_translations_init): New, extracted from...
8880 (packsymbols): Here.
8881 Adjust.
8882
270a173c
AD
88832001-11-01 Akim Demaille <akim@epita.fr>
8884
8885 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
8886 Check that `9foo.y' produces correct cpp guards.
8887 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
8888 guards.
8889 Reported by Wwp.
8890
561f9a30
AD
88912001-11-01 Akim Demaille <akim@epita.fr>
8892
8893 * tests/regression.at (Invalid input: 2): New.
8894 * src/lex.c (unlexed_token_buffer): New.
8895 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
8896 too.
8897 Reported by Wwp.
8898
f987e9d2
AD
88992001-11-01 Akim Demaille <akim@epita.fr>
8900
8901 * tests/calc.at: Catch up with 1.30.
8902 * configure.in: Bump to 1.49a.
8903 Adjust to newer Autotest.
8904
0846f581
PB
89052001-10-19 Pascal Bart <pascal.bart@epita.fr>
8906
8907 * src/conflicts.c: Move global variables rrc_total and src_total ...
8908 (print_conflicts): here.
8909 * src/output.c (output): Free global variable user_toknums.
8910 * src/lex.c (token_obstack): Become static.
8911
3c1a79b3
AD
89122001-10-18 Akim Demaille <akim@epita.fr>
8913
8914 * tests/atlocal.in (GCC): Add.
8915 * tests/calc.at: s/m4_match/m4_bmatch/.
8916 s/m4_patsubst/m4_bpatsubst/.
8917 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
8918 * configure.in: AC_SUBST(GCC).
8919
5d52e7d0
MA
89202001-10-14 Marc Autret <autret_m@epita.fr>
8921
8922 * src/options.c (create_long_option_table): Fix.
8923
631aa1d3
AD
89242001-10-10 Akim Demaille <akim@epita.fr>
8925
8926 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
8927
f6ec6d13
AD
89282001-10-04 Akim Demaille <akim@epita.fr>
8929
8930 * src/reader.c (parse_union_decl): Push the caracters in
8931 union_obstack, not attrs_obstack.
8932
342b8b6e
AD
89332001-10-04 Akim Demaille <akim@epita.fr>
8934
8935 Merge in the branch 1.29.
8936
8937 * src/reader.c (packsymbols): Use a temporary obstack for
8938 `%%tokendef', since output_stack is already used elsewhere.
8939
8940 2001-10-02 Akim Demaille <akim@epita.fr>
8941
8942 Bump 1.29d.
8943
8944 2001-10-02 Akim Demaille <akim@epita.fr>
8945
8946 Version 1.29c.
8947
8948 2001-10-02 Akim Demaille <akim@epita.fr>
8949
8950 * tests/regression.at (Invalid CPP headers): New.
8951 From Alexander Belopolsky.
8952 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
8953
8954 2001-10-02 Akim Demaille <akim@epita.fr>
8955
8956 * tests/regression.at (Invalid input): New.
8957 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
8958 Reported by Shura.
8959
8960 2001-10-02 Akim Demaille <akim@epita.fr>
8961
8962 * tests/calc.at: Now that --debug works, the tests must be adjusted.
8963
8964 2001-10-02 Akim Demaille <akim@epita.fr>
8965
8966 * src/output.c (output_parser): Assert `skeleton'.
8967 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
8968 systems.
8969 From Shura.
8970
8971 2001-10-01 Marc Autret <autret_m@epita.fr>
8972
8973 * src/lex.h: Echo modifications.
8974 * src/lex.c (unlex): Parameter is now token_t.
8975 From Hans Aberg.
8976
8977 2001-10-01 Marc Autret <autret_m@epita.fr>
8978
8979 * src/main.c: Include lex.h.
8980 From Hans Aberg.
8981
8982 2001-09-29 Akim Demaille <akim@epita.fr>
8983
8984 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
8985
8986 2001-09-28 Akim Demaille <akim@epita.fr>
8987
8988 * tests/testsuite.at: Update to newer Autotest.
8989 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
8990
8991 2001-09-27 Akim Demaille <akim@epita.fr>
8992
8993 Position independent wrapper.
8994
8995 * tests/bison: Remove.
8996 * tests/bison.in: New.
8997 * configure.in: Adjust.
8998
8999 2001-09-27 Paul Eggert <eggert@twinsun.com>
9000
9001 Port quotearg fixes from tar 1.13.24.
9002
9003 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
9004 tm to be declared.
9005 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
9006 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
9007
9008 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
9009 * m4/mbrtowc.m4: New file.
9010 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
9011 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
9012
9013 2001-09-27 Akim Demaille <akim@epita.fr>
9014
9015 Bump to 1.29c.
9016
9017 2001-09-27 Akim Demaille <akim@epita.fr>
9018
9019 Version 1.29b.
9020
9021 2001-09-25 Akim Demaille <akim@epita.fr>
9022
9023 * src/system.h: Include `xalloc.h'.
9024 Remove it from the C files.
9025 * src/files.c (output_files): Free the obstacks.
9026 * src/lex.c (init_lex): Rename as...
9027 (lex_init): this.
9028 (lex_free): New.
9029 * src/main.c (main): Use it.
9030
9031 2001-09-24 Marc Autret <autret_m@epita.fr>
9032
9033 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
9034 to output informations in fout (FILE*).
9035 (open_graph, close_graph): Likewise.
9036 (output_graph, output_edge, output_node): Likewise.
9037 * src/vcg.h: Update function prototypes.
9038 * src/print_graph.c (print_graph): Open output graph file.
9039 (print_actions): Adjust.
9040 * src/files.h: Remove extern declaration.
9041 * src/files.c: Remove graph_obstack declaration.
9042 (open_files): Remove graph_obstack initialization.
9043 (output_files): Remove graph_obstack saving.
9044
9045 2001-09-24 Marc Autret <autret_m@epita.fr>
9046
9047 * src/files.c (compute_output_file_names): Fix.
9048
9049 2001-09-24 Marc Autret <autret_m@epita.fr>,
9050 Akim Demaille <akim@epita.fr>
9051
9052 * src/reader.c (reader): Remove call to free_symtab ().
9053 * src/main.c (main): Call it here.
9054 Include symtab.h.
9055 * src/conflicts.c (initialize_conflicts): Rename as...
9056 (solve_conflicts): this.
9057 * src/print.c (print_core, print_actions, print_state)
9058 (print_grammar): Dump to a file instead a `output_obstack'.
9059 (print_results): Dump `output_obstack', and then proceed with the
9060 FILE *.
9061 * src/files.c (compute_output_file_names, close_files): New.
9062 (output_files): Adjust.
9063 * src/main.c (main): Adjust.
9064
9065 2001-09-23 Marc Autret <autret_m@epita.fr>
9066
9067 * src/files.c (compute_header_macro): Computes header macro name
9068 from spec_defines_file when given.
9069
9070 2001-09-23 Marc Autret <autret_m@epita.fr>
9071
9072 * src/files.c (output_files): Add default extensions.
9073
9074 2001-09-22 Akim Demaille <akim@epita.fr>
9075
9076 * src/conflicts.c (finalize_conflicts): Rename as...
9077 (free_conflicts): this.
9078
9079 2001-09-22 Akim Demaille <akim@epita.fr>
9080
9081 * src/gram.c (gram_free): Rename back as...
9082 (dummy): this.
9083 (output_token_translations): Free `token_translations'.
9084 * src/symtab.c (free_symtab): Free the tag field.
9085
9086 2001-09-22 Akim Demaille <akim@epita.fr>
9087
9088 Remove `translations' as it is always set to true.
9089
9090 * src/gram.h: Adjust.
9091 * src/reader.c (packsymbols, parse_token_decl): Adjust
9092 * src/print.c (print_grammar): Adjust.
9093 * src/output.c (output_token_translations): Adjust.
9094 * src/lex.c (lex): Adjust.
9095 * src/gram.c: Be sure the set pointers to NULL.
9096 (dummy): Rename as...
9097 (gram_free): this.
9098
9099 2001-09-22 Akim Demaille <akim@epita.fr>
9100
9101 * configure.in: Invoke AM_LIB_DMALLOC.
9102 * src/system.h: Use dmalloc.
9103 * src/LR0.c: Be sure to have pointers initialized to NULL.
9104 (allocate_itemsets): Allocate kernel_items only if needed.
9105
9106 2001-09-22 Akim Demaille <akim@epita.fr>
9107
9108 * configure.in: Bump to 1.29b.
9109 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
9110 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
9111 need xmalloc.c in calc.y.
9112 From Pascal Bart.
9113
9114 2001-09-21 Akim Demaille <akim@epita.fr>
9115
9116 Version 1.29a.
9117 * Makefile.maint, config/config.guess, config/config.sub,
9118 * config/missing: Update from masters.
9119 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
9120 upon package.m4.
9121 * configure.in (ALL_LINGUAS): Add `tr'.
9122
9123 2001-09-21 Akim Demaille <akim@epita.fr>
9124
9125 * tests/Makefile.am (package.m4): Move to...
9126 ($(srcdir)/$(TESTSUITE)): here.
9127
9128 2001-09-20 Akim Demaille <akim@epita.fr>
9129
9130 * src/complain.c: No longer try to be standalone: use system.h.
9131 Don't assume __STDC__ is defined to 1. Just test if it is defined.
9132 * src/complain.h: Likewise.
9133 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
9134 Remove the unused variable `n'.
9135 From Albert Chin-A-Young.
9136
9137 2001-09-18 Marc Autret <autret_m@epita.fr>
9138
9139 * doc/bison.1: Update.
9140 * doc/bison.texinfo (Bison Options): Update --defines and --graph
9141 descriptions.
9142 (Option Cross Key): Update.
9143 Add --graph.
9144
9145 2001-09-18 Marc Autret <autret_m@epita.fr>
9146
9147 * tests/regression.at: New test (comment in %union).
9148
9149 2001-09-18 Marc Autret <autret_m@epita.fr>
9150
9151 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
9152 do that.
9153 Reported by Keith Browne.
9154
9155 2001-09-18 Marc Autret <autret_m@epita.fr>
9156
9157 * tests/output.at: Add tests for --defines and --graph.
9158
9159 2001-09-18 Marc Autret <autret_m@epita.fr>
9160
9161 * tests/output.at: Removes tests of %{header,src}_extension features.
9162
9163 2001-09-18 Akim Demaille <akim@epita.fr>
9164
9165 * tests/Makefile.am (package.m4): New.
9166 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
9167 (_AT_CHECK_CALC_ERROR): Likewise.
9168 Factor the `, ' part of verbose error messages.
9169
9170 2001-09-18 Marc Autret <autret_m@epita.fr>
9171
9172 * src/getargs.c (longopts): Declare --defines and --graph as options
9173 with optional arguments.
9174 * src/files.h: Add extern declarations.
9175 * src/files.c (spec_graph_file, spec_defines_file): New.
9176 (output_files): Update.
9177 Remove CPP-outed code.
9178
9179 2001-09-18 Marc Autret <autret_m@epita.fr>
9180
9181 Turn off %{source,header}_extension feature.
9182
9183 * src/files.c (compute_exts_from_gf): Update.
9184 (compute_exts_from_src): Update.
9185 (output_files): CPP-out useless code.
9186 * src/files.h: Remove {header,source}_extension extern declarations.
9187 * src/reader.c (parse_dquoted_param): CPP-out.
9188 (parse_header_extension_decl): Remove.
9189 (parse_source_extension_decl): Remove.
9190 (read_declarations): Remove cases tok_{hdrext,srcext}.
9191 * src/lex.c (percent_table): Remove {header,source}_extension entries.
9192 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
9193
9194 2001-09-10 Akim Demaille <akim@epita.fr>
9195
9196 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
9197 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
9198 (AT_CHECK_OUTPUT): this.
9199 Merely check ls' exit status, its output is useless.
9200
9201 2001-09-10 Akim Demaille <akim@epita.fr>
9202
9203 * tests/calc.at: Use m4_match.
9204 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
9205
9206 2001-09-10 Marc Autret <autret_m@epita.fr>,
9207 Akim Demaille <akim@epita.fr>
9208
9209 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
9210 enum color_e.
9211 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
9212 to `normal'.
9213 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
9214 * src/lex.h: Adjust prototype.
9215 (token_t): Add `tok_undef'.
9216 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
9217 (parse_percent_token): Now returns token_t.
9218 Add default statement in switch.
9219 (lex): Separate `c' as an input variable, from the token_t result
9220 part.
9221 (unlexed): Is a token_t.
9222
9223 2001-09-10 Akim Demaille <akim@epita.fr>
9224
9225 * configure.in: Bump to 1.29a.
9226
9227 2001-09-07 Akim Demaille <akim@epita.fr>
9228
9229 Version 1.29.
9230
9231 2001-08-30 Akim Demaille <akim@epita.fr>
9232
9233 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
9234 * m4/atconfig.m4: Remove.
9235 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
9236 * tests/bison: New.
9237 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
9238 m4_if, m4_patsubst, and m4_regexp.
9239 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
9240 `input' file instead of echo.
9241
9242 2001-08-29 Akim Demaille <akim@epita.fr>
9243
9244 Bump to 1.28e.
9245
9246 2001-08-29 Akim Demaille <akim@epita.fr>
9247
9248 Version 1.28d.
9249
9250 2001-08-29 Paul Eggert <eggert@twinsun.com>
9251
9252 * src/bison.simple (yyparse): Don't take the address of an
9253 item before the start of an array, as that doesn't conform to
9254 the C Standard.
9255
9256 2001-08-29 Robert Anisko <anisko_r@epita.fr>
9257
9258 * doc/bison.texinfo (Location Tracking Calc): New node.
9259
9260 2001-08-29 Paul Eggert <eggert@twinsun.com>
9261
9262 * src/output.c (output): Do not define const, as this now
9263 causes more problems than it cures.
9264
9265 2001-08-29 Akim Demaille <akim@epita.fr>
9266
9267 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
9268 the nodes.
9269 Be sure to tag the `detailmenu'.
9270
9271 2001-08-29 Akim Demaille <akim@epita.fr>
9272
9273 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
9274 download in a tmp dir.
9275
9276 2001-08-28 Marc Autret <autret_m@epita.fr>
9277
9278 * config/depcomp: New file.
9279
9280 2001-08-28 Marc Autret <autret_m@epita.fr>
9281
9282 * doc/bison.1 (mandoc): Adjust.
9283 From Juan Manuel Guerrero.
9284
9285 2001-08-28 Marc Autret <autret_m@epita.fr>
9286
9287 * src/print_graph.c (print_state): Fix.
9288
9289 2001-08-27 Marc Autret <autret_m@epita.fr>
9290
9291 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
9292 char * members.
9293 Echo modifications to the functions prototypes.
9294 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
9295
9296 2001-08-27 Marc Autret <autret_m@epita.fr>
9297
9298 * src/vcg.c: Include `xalloc.h'.
9299 (add_colorentry): New.
9300 (add_classname): New.
9301 (add_infoname): New.
9302 * src/vcg.h: Add new prototypes.
9303
9304 2001-08-27 Akim Demaille <akim@epita.fr>
9305
9306 * Makefile.maint: Sync. again with CVS Autoconf.
9307
9308 2001-08-27 Akim Demaille <akim@epita.fr>
9309
9310 * Makefile.maint: Formatting changes.
9311 (po-update, cvs-update, update): New targets.
9312 (AMTAR): Remove.
9313
9314 2001-08-27 Akim Demaille <akim@epita.fr>
9315
9316 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
9317 * Makefile.maint: Sync. with CVS Autoconf.
9318
9319 2001-08-27 Marc Autret <autret_m@epita.fr>
9320
9321 * src/vcg.h (struct infoname_s): New.
9322 (struct colorentry_s): New.
9323 (graph_s): New fields {vertical,horizontal}_order in structure.
9324 Add `infoname' field.
9325 Add `colorentry' field;
9326 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
9327 (G_HORIZONTAL_ORDER): New.
9328 (G_INFONAME): New.
9329 (G_COLORENTRY): New.
9330 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
9331 Add output of `infoname'.
9332 Add output of `colorentry'.
9333
9334 2001-08-27 Marc Autret <autret_m@epita.fr>
9335
9336 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
9337 This one shadowed a global parameter.
9338
9339 2001-08-24 Marc Autret <autret_m@epita.fr>
9340
9341 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
9342 instead of `unsigned'.
9343 (print_state): Do not call obstack_object_size () in obstack_grow ()
9344 to avoid macro variables shadowing.
9345
9346 2001-08-23 Marc Autret <autret_m@epita.fr>
9347
9348 * src/lex.c (percent_table): Typo: s/naem/name/.
9349 Add graph option.
9350 Normalize new options declarations.
9351
9352 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
9353
9354 * tests/suite.at: Exercise %header_extension and %source_extension.
9355
9356 2001-08-16 Marc Autret <autret_m@epita.fr>
9357
9358 * src/reader.c (parse_dquoted_param): New.
9359 (parse_header_extension_decl): Use it.
9360 (parse_source_extension_decl): Likewise.
9361
9362 2001-08-16 Marc Autret <autret_m@epita.fr>
9363
9364 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
9365 (get_xxxx_str): Use assert () instead of complain ().
9366 Remove return invokations in default cases.
9367 (get_decision_str): Modify default behaviour. Remove second argument.
9368 Echo modifications on calls.
9369 (output_graph): Fix.
9370
9371 2001-08-16 Marc Autret <autret_m@epita.fr>
9372
9373 * src/getargs.c (usage): Update with ``-g, --graph''.
9374
9375 2001-08-16 Marc Autret <autret_m@epita.fr>
9376
9377 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
9378 (Option Cross Key): Likewise.
9379 * doc/bison.1: Update.
9380
1c8c2190
PB
93812001-09-25 Pascal Bart <pascal.bart@epita.fr>
9382
9383 * src/output.c (output_master_parser): Don't finish action_obstack.
9384 (output_parser): Don't care about the muscle action, here.
9385 (prepare): Copy the action_obstack in the action muscle.
9386 (output): Free action_obstack.
9387
180d45ba
PB
93882001-09-23 Pascal Bart <pascal.bart@epita.fr>
9389
9390 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
9391 will contain `%union' declaration.
9392 (parse_union_decl): Delete #line directive output.
9393 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
9394 informations about %union.
9395 (parse_union_decl): Copy the union_obstack in the muscle stype.
9396 * src/bison.simple: Add new #line directive.
9397 Add typdef %%stype YYSTYPE.
9398
c51d1a19
PB
93992001-09-23 Pascal Bart <pascal.bart@epita.fr>
9400
9401 * src/bison.simple: Add new `#line' directive.
9402
6f9344da
PB
94032001-09-22 Pascal Bart <pascal.bart@epita.fr>
9404
9405 * src/bison.simple: New `#line' directive.
9406 * src/output.c (output_parser): Support new dynamic muscle input_line.
9407
652def80
MA
94082001-09-22 Marc Autret <autret_m@epita.fr>
9409
9410 * src/output.c (output_master_parser): New.
9411 (output_parser): Be more re-entrant.
9412
25b222fa
MA
94132001-09-21 Marc Autret <autret_m@epita.fr>
9414
9415 * src/reader.c (copy_definition, parse_union_decl): Update and use
9416 `linef' muscle.
9417 (copy_action): Likewise.
9418 Use obstack_1grow ().
9419 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
9420
6bc35ae5
MA
94212001-09-21 Marc Autret <autret_m@epita.fr>
9422
9423 * src/options.c (option_table): Adjust.
9424 * src/lex.c (parse_percent_token): Fix.
9425
c0629aa1
PB
94262001-09-20 Pascal Bart <pascal.bart@epita.fr>
9427
9428 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 9429
82b6d266
PB
94302001-09-20 Pascal Bart <pascal.bart@epita.fr>
9431
9432 * src/lex.c (parse_percent_token): Change type of variable `tx', which
9433 is now an option_table_struct*.
9434 (option_strcmp): New function option_strcmp.
9435 (parse_percent_token): Call option_strcmp.
9436 * src/getargs.c (xalloc.h, options.h): Include it.
9437 (getargs): Call create_long_option_table.
9438 (getargs): Free longopts at the end of the function.
9439 (shortopts): Move in options.c.
9440 * src/options.c (create_long_option_table): New function. Convert
9441 information from option_table to option structure.
9442 * src/reader.c (options.h): Include it.
9443
9444 * src/Makefile.am: Adjust.
9445 * src/options.c (option_table): Create from longopts and percent_table.
9446 * src/getargs.c (longopts): Delete.
9447 * src/lex.c (struct percent_table_struct): Delete.
9448 (percent_table): Delete.
9449 (options.h): Include it.
9450 * src/options.c: Create.
9451 * src/options.h: Create.
9452 Declare enum opt_access_e.
9453 Define struct option_table_struct.
9454
75f5aaea
MA
94552001-09-20 Marc Autret <autret_m@epita.fr>
9456
9457 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
9458 sections of Bison.
9459
f508cb0a
PB
94602001-09-19 Pascal Bart <pascal.bart@epita.fr>
9461
9462 * src/bison.simple: s/%%filename/%%skeleton.
9463 * src/muscle_tab.c (getargs.h): Include it.
9464 (muscle_init): Insert new muscle skeleton.
9465
13105fc1
PB
94662001-09-18 Pascal Bart <pascal.bart@epita.fr>
9467
9468 * src/output.c (output_parser): Delete unused variable actions_dumped.
9469
b0c4483e
PB
94702001-09-07 Pascal Bart <pascal.bart@epita.fr>
9471
9472 * src/output.c (output): Delete call to reader_output_yylsp.
9473 * src/reader.c (reader): Likewise.
9474 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 9475
11d82f03
MA
94762001-09-02 Marc Autret <autret_m@epita.fr>
9477
9478 * src/reader.c: Include muscle_tab.h.
9479 (parse_union_decl): Update.
9480 (parse_macro_decl): Rename parse_muscle_decl.
9481 Update to use renamed functions and variable.
9482 (read_declarations, copy_action, read_additionnal_code, : Updated
9483 with correct variables and functions names.
9484 (packsymbols, reader): Likewise.
342b8b6e 9485
11d82f03 9486 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 9487
11d82f03
MA
9488 * src/output.c: Include muscle_tab.h
9489 In all functions using macro_insert, change by using muscle_insert ().
9490 (macro_obstack): Rename muscle_obstack.
9491 Echo modifications in the whole file.
9492 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
9493 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
9494 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
9495
9496 * src/muscle_tab.h: Update double inclusion macros.
9497 (macro_entry_s): Rename muscle_entry_s.
9498 Update prototypes.
342b8b6e 9499
11d82f03
MA
9500 * src/muscle_tab.c: Include muscle_tab.h.
9501 Rename macro_tabble to muscle_table.
9502 (mhash1, mhash2, mcmp): Use muscle_entry.
9503 (macro_init): Rename muscle_init. Update.
9504 (macro_insert): Rename muscle_insert. Update.
9505 (macro_find): Rename muscle_find. Update.
9506
9507 * src/main.c: Include muscle_tab.h.
9508 (main): Call muscle_init ().
9509 * src/Makefile.am (bison_SOURCES): Echo modifications.
9510
93a37297
MA
95112001-09-02 Marc Autret <autret_m@epita.fr>
9512
f753cd62 9513 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 9514
f753cd62
MA
9515 * src/muscle_tab.c, src/muscle_tab.h: Add files.
9516
95172001-09-02 Marc Autret <autret_m@epita.fr>
9518
9519 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 9520
682d48cd
PB
95212001-09-01 Pascal Bart <pascal.bart@epita.fr>
9522
342b8b6e 9523 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
9524 filename.
9525
087c8fda
MA
95262001-09-01 Marc Autret <autret_m@epita.fr>
9527
9528 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
9529 to an explicit value to activate the feature. We do it here.
9530
dda680cb
PB
95312001-08-31 Pascal Bart <pascal.bart@epita.fr>
9532
9533 * src/output.c (prepare): Delete the `filename' muscule insertion.
9534 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
9535 (parse_union_decl): Likewise.
9536 * src/macrotab.c (macro_init): Initialize filename by infile.
9537
9e644e64
MA
95382001-08-31 Marc Autret <autret_m@epita.fr>
9539
9540 * src/bison.simple (YYLSP_NEEDED): New definition.
9541 * src/output.c (prepare): Add macro insertion of `locations_flag'
9542
17da6427
PB
95432001-08-31 Pascal Bart <pascal.bart@epita.fr>
9544
9545 * src/output.c (prepare): Delete insertion of previous muscles,
9546 and insert the `prefix' muscles.
9547 * src/macrotab.c (macro_init): Likewise.
9548 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 9549 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
9550 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
9551 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 9552 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
9553 name_prefix.
9554
e8cb70b9
PB
95552001-08-31 Pascal Bart <pascal.bart@epita.fr>
9556
9557 * src/main.c (main): Standardize.
9558 * src/output.c (output_table_data, output_parser): Likewise.
9559 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
9560
63c2d5de
MA
95612001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
9562
342b8b6e 9563 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
9564 %%epilogue.
9565 * src/output.c (output): Rename %%declarations to %%prologue.
9566 * src/bison.simple: Echo modifications.
342b8b6e 9567
d8cb5183
MA
95682001-08-31 Marc Autret <autret_m@epita.fr>
9569
9570 * src/reader.c (readgram): CleanUp.
9571 (output_token_defines): Likewise.
9572 (packsymbols): Likewise.
9573 (reader): Likewise.
9574 * src/output.c (output): CPP-out useless code.
9575
6c686258
PB
95762001-08-31 Pascal Bart <pascal.bart@epita.fr>
9577
342b8b6e 9578 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
9579 output_trailers and output_headers.
9580 * src/output.h: Remove obsolete functions prototypes of output_headers
9581 and output_trailers.
9582
8f451ef7
PB
95832001-08-30 Pascal Bart <pascal.bart@epita.fr>
9584
9585 * src/main.c: Include macrotab.h.
342b8b6e 9586 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
9587 Adjust functions prototypes.
9588 * src/macrotab.c (macro_insert): Constify key and value.
9589 (macro_find): Constify key.
9590 (macro_insert): Include 'xalloc.h'
9591 (macro_insert): Use XMALLOC.
9592 (macro_find): Constify return value.
9593 * src/output.c (output_table_data): Rename table to table_data.
9594 (output_parser): Constify macro_key, macro_value.
9595
997b6fd0 95962001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
9597
9598 * src/reader.c (parse_skel_decl): New.
342b8b6e 9599 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
9600 * src/lex.h (token_t): New token `tok_skel'.
9601 * src/lex.c (percent_table): Add skeleton option entry.
9602 Standardize.
9603
ff48177d
MA
96042001-08-29 Marc Autret <autret_m@epita.fr>
9605
9606 * src/bison.simple: Add %%user_code directive at the end.
9607 * src/reader.c (read_additionnal_code): New.
9608 (reader): Use it.
9609 * src/output.c (output_program): Remove.
9610 (output): Update.
9611
b33160bf
MA
96122001-08-28 Marc Autret <autret_m@epita.fr>
9613
9614 * src/output.c (output_actions): Clean up.
4e5caae2 9615 (output_gram): CPP-out useless code.
b33160bf
MA
9616 * src/reader.c (reader): Clean up, CPP-out useless code.
9617
d1a2daf7
PB
96182001-08-28 Pascal Bart <pascal.bart@epita.fr>
9619
342b8b6e 9620 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 9621 directive.
d1a2daf7
PB
9622 * src/bison.simple: Add `%%definitions'.
9623
2b763dfe
MA
96242001-08-28 Marc Autret <autret_m@epita.fr>
9625
9626 * config/depcomp: New file.
9627
f1a87ef6
PE
96282001-08-27 Paul Eggert <eggert@twinsun.com>
9629
9630 * src/bison.simple (yyparse): Don't take the address of an
9631 item before the start of an array, as that doesn't conform to
9632 the C Standard.
9633
82e236e2
RA
96342001-08-27 Robert Anisko <robert.anisko@epita.fr>
9635
f1a87ef6 9636 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
9637 obstack. It was done too late here.
9638
9639 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
9640 completely wrong.
9641 (reader): Initialize the macro obstack here, since we need it to grow
9642 '%define' directives.
9643
9644 * src/reader.h: Declare the macro obstack as extern.
9645
b0cfa28a
RA
96462001-08-27 Robert Anisko <robert.anisko@epita.fr>
9647
9648 * src/output.c (output_parser): Fix. Store single '%' characters in
9649 the output obstack instead of throwing them away.
9650
6fc74234
AD
96512001-08-27 Akim Demaille <akim@epita.fr>
9652
9653 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
9654
9c76d118
RA
96552001-08-25 Robert Anisko <robert.anisko@epita.fr>
9656
9657 * lib/Makefile.am: Adjust.
9658
a8289c62
RA
96592001-08-25 Robert Anisko <robert.anisko@epita.fr>
9660
9661 * src/bison.simple: Update and add '%%' directives.
9662
b6610515
RA
96632001-08-25 Robert Anisko <robert.anisko@epita.fr>
9664
9665 * src/reader.c (reader): Remove calls to 'output_headers' and
9666 'output_trailers'. Remove some C output.
9667 (readgram): Disable a piece of code that was writing a default
9668 definition for 'YYSTYPE'.
9669 (reader_output_yylsp): Remove.
9670 (packsymbols): Output token defintions to a macro.
9671 (copy_definition): Disable C output.
6fc74234 9672
b6610515
RA
9673 * src/reader.c (parse_macro_decl): New function used to parse macro
9674 declarations.
9675 (copy_string2): Put the body of copy_string into this new function.
9676 Add a parameter to let the caller choose whether he wants to copy the
9677 string delimiters or not.
9678 (copy_string): Be a simple call to copy_string2 with the last argument
9679 bound to true.
9680 (read_declarations): Add case for macro definition.
9681 (copy_identifier): New.
6fc74234 9682 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
9683 rather than lex.
9684
26f609ff
RA
96852001-08-25 Robert Anisko <robert.anisko@epita.fr>
9686
9687 * src/output.c (prepare): Add prefixed names.
9688 (output_parser): Output semantic actions.
9689 (output_parser): Fix bug on '%%line' directives.
6fc74234 9690
26f609ff
RA
9691 * src/output.c (output_headers): Remove. The C code printed by this
9692 function should now be in the skeletons.
9693 (output_trailers): Remove.
9694 (output): Disable call to 'reader_output_yylsp'.
9695 (output_rule_data): Do not output tables to the table obstack.
9696
9697 * src/output.c: Remove some C dedicated output.
9698 Improve the use of macro and output obstacks.
9699 (output_defines): Remove.
6fc74234 9700
26f609ff
RA
9701 * src/output.c (output_token_translations): Associate 'translate'
9702 table with a macro. No output to the table obstack.
9703 (output_gram): Same for 'rhs' and 'prhs'.
9704 (output_stos): Same for 'stos'.
9705 (output_rule_data): Same for 'r1' and 'r2'.
9706 (token_actions): Same for 'defact'.
9707 (goto_actions): Same for 'defgoto'.
9708 (output_base): Same for 'pact' and 'pgoto'.
9709 (output_table): Same for 'table'.
9710 (output_check): Same for 'check'.
6fc74234 9711
26f609ff
RA
9712 * src/output.c (output_table_data): New function.
9713 (output_short_table): Remove.
9714 (output_short_or_char_table): Remove.
6fc74234 9715
26f609ff
RA
9716 * src/output.c (output_parser): Replace most of the skeleton copy code
9717 with something new. Skeletons are now processed character by character
9718 rather than line by line, and Bison looks for '%%' macros. This is the
9719 first step in making Bison's output process (a lot) more flexible.
9720 (output_parser): Use the macro table.
9721
6f43b113
RA
97222001-08-25 Robert Anisko <robert.anisko@epita.fr>
9723
9724 * src/main.c (main): Initialize the macro table.
9725
dd3127cf
RA
97262001-08-25 Robert Anisko <robert.anisko@epita.fr>
9727
9728 * src/lex.c (percent_table): Add tok_define.
9729 * src/lex.h: Add tok_define.
9730
aa321494
RA
97312001-08-25 Robert Anisko <robert.anisko@epita.fr>
9732
9733 * src/macrotab.c: New file.
9734 * src/macrotab.h: New file.
9735 * src/Makefile.am: Update.
9736
68bd3b6b
RA
97372001-08-25 Robert Anisko <robert.anisko@epita.fr>
9738
9739 * lib/hash.c: New file.
9740 * lib/hash.h: New file.
9741 * lib/Makefile.am: Update.
9742
45f8dd1e
AD
97432001-08-15 Akim Demaille <akim@epita.fr>
9744
9745 Version 1.28c.
9746
40a64a7a 97472001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
9748
9749 * src/reader.c (readgram): Indent output macro YYSTYPE.
9750 (packsymbols): Likewise.
9751 (output_token_defines): Likewise.
9752 * src/files.c: Standardize.
9753 (compute_header_macro): New.
9754 (defines_obstack_save): New. Use compute_header_macro.
9755 (output_files): Update. Use defines_obstack_save.
9756
f9a8293a
AD
97572001-08-15 Akim Demaille <akim@epita.fr>
9758
9759 * doc/bison.texinfo (Table of Symbols): Document
9760 YYSTACK_USE_ALLOCA.
9761
150ca7a7
AD
97622001-08-15 Akim Demaille <akim@epita.fr>
9763
9764 * missing: Update from CVS Automake.
9765 * config/config.guess, config/config.sub, config/texinfo.tex:
9766 Update from gnu.org.
9767
69b5cec4
AD
97682001-08-15 Akim Demaille <akim@epita.fr>
9769
9770 * Makefile.maint: Sync with CVS Autoconf.
9771
f2b5126e
PB
97722001-08-14 Pascal Bart <pascal.bart@epita.fr>
9773
69b5cec4 9774 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
9775 `fdl.texi'.
9776 * doc/fdl.texi: Add to package.
9777
4ecbf796
MA
97782001-08-14 Marc Autret <autret_m@epita.fr>
9779
9780 Turn on %{source,header}_extension features.
9781
69b5cec4 9782 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
9783 source_extension.
9784 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 9785 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
9786 between options.
9787
95fb5662
MA
97882001-08-14 Marc Autret <autret_m@epita.fr>
9789
9790 * src/files.c (compute_base_names): Add extensions computing when
9791 `--file-prefix' used.
9792 Standardize function calls.
9793
78d09da9
MA
97942001-08-13 Marc Autret <autret_m@epita.fr>
9795
69b5cec4 9796 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
9797 defining it (defined but null disables alloca).
9798
5a009f2c
MA
97992001-08-13 Marc Autret <autret_m@epita.fr>
9800
9801 * src/bison.simple (_yy_memcpy): CPP reformat.
9802
1e41465a
PB
98032001-08-13 Pascal Bart <pascal.bart@epita.fr>
9804
9805 * tests/atconfig.in (CPPFLAGS): Fix.
9806
c67a198d
PB
98072001-08-10 Pascal Bart <pascal.bart@epita.fr>
9808
79282c6c 9809 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
9810 `gpl.texi'.
9811 * doc/gpl.texi: Add to package.
9812
09a6de7e
MA
98132001-08-10 Marc Autret <autret_m@epita.fr>
9814
9815 * src/print_graph.h: Fix.
9816 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
9817
b77b9ee0
AD
98182001-08-10 Akim Demaille <akim@epita.fr>
9819
9820 * src/system.h: Provide default declarations for stpcpy, strndup,
9821 and strnlen.
9822
3e259915
MA
98232001-08-10 Robert Anisko <anisko_r@epita.fr>
9824
9825 * doc/bison.texinfo (Locations): Update @$ stuff.
9826
ca96bc2d
MA
98272001-08-09 Robert Anisko <anisko_r@epita.fr>
9828
9829 * src/bison.simple (YYLLOC_DEFAULT): Update.
9830 (yyparse): Adjust.
9831
fdc6758b
MA
98322001-08-08 Marc Autret <autret_m@epita.fr>
9833
b77b9ee0 9834 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
9835 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
9836 Reported by Fabrice Bauzac.
957d4dbf 9837
600cad3b
MA
98382001-08-08 Marc Autret <autret_m@epita.fr>
9839
9840 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
9841 * src/vcg.c (output_node): Fix.
9842 * src/vcg.h: Cleanup.
9843 * src/print_graph.c: Add comments.
b77b9ee0 9844 (node_output_size): New global variable. Simplify the formatting of
600cad3b 9845 the VCG graph output.
b77b9ee0 9846 (print_actions): Unused code is now used. It notifies the final state
600cad3b 9847 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 9848 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
9849 blue.
9850 Get the current node name and node_obstack by argument.
9851 (node_obstack): New variable.
9852 (print_state): Manage node_obstack.
9853 (print_core): Use node_obstack given by argument.
9854 A node is not only computed here but in print_actions also.
9855 (print_graph): CPP out useless code instead of commenting it.
9856
976e528f
AD
98572001-08-07 Pascal Bart <pascal.bart@epita.fr>
9858
9859 * tests/atconfig.in (CPPFLAGS): Fix.
9860
20e8e5ca
AD
98612001-08-07 Akim Demaille <akim@epita.fr>
9862
9863 * src/print_graph.c (quote): New.
9864 (print_core): Use it.
9865
957d4dbf 98662001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 9867
3e3da797
AD
9868 * src/vcg.c (complain.h): Include it.
9869 Unepitaize `return' invocations.
c4b66126 9870 [NDEBUG] (main): Remove.
79282c6c 9871 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
9872 * src/files.c (open_files): Initialize graph_obstack.
9873 * src/print_graph.c (print_actions): CPP out useless code.
9874 (print_core): Don't output the last `\n' in labels.
9875 Use `quote'.
9876 * src/files.c (output_files): Output the VCG file.
9877 * src/main.c (main): Invoke print_graph ();
3e3da797 9878
957d4dbf 98792001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
9880
9881 Automaton VCG graph output.
9882 Using option ``-g'' or long option ``--graph'', you can generate
9883 a gram_filename.vcg file containing a VCG description of the LALR (1)
9884 automaton of your grammar.
9885
9886 * src/main.c: Call to print_graph() function.
9887 * src/getargs.h: Update.
9888 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
9889 (graph_flag): New flag.
9890 (longopts): Update.
9891 (getargs): Add case `g'.
9892 * src/files.c (graph_obstack): New obstack struct.
9893 (open_files): Initialize new obstack.
9894 (output_files): Saves graph_obstack if required.
9895 * src/files.h (graph_obstack): New extern declaration.
9896 * src/Makefile.am: Add new source files.
9897
927c1557 98982001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
9899
9900 * src/print_graph.c, src/print_graph.h (graph): New.
9901 * src/vcg.h: New file.
9902 * src/vcg.c: New file, VCG graph handling.
9903
7333d403
AD
99042001-08-06 Marc Autret <autret_m@epita.fr>
9905
9906 Add of %source_extension and %header_extension which specify
9907 the source or/and the header output file extension.
9908
9909 * src/files.c (compute_base_names): Remove initialisation of
9910 src_extension and header_extension.
9911 (compute_exts_from_gf): Update.
9912 (compute_exts_from_src): Update.
9913 (output_files): Update.
9914 * src/reader.c (parse_header_extension_decl): New.
9915 (parse_source_extension_decl): New.
9916 (read_declarations): New case statements for the new tokens.
9917 * src/lex.c (percent_table): Add entries for %source_extension
9918 and %header_extension.
9919 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
9920
84163231
AD
99212001-08-06 Marc Autret <autret_m@epita.fr>
9922
9923 * configure.in: Bump to 1.28c.
9924 * doc/bison.texinfo: Texinfo thingies.
9925
8303fc42
AD
99262001-08-04 Pascal Bart <pascal.bart@epita.fr>
9927
9928 * tests/atconfig.in (CPPFLAGS): Add.
9929 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
9930
70a84437
AD
99312001-08-03 Akim Demaille <akim@epita.fr>
9932
9933 Version 1.28b.
9934
2ce10144
AD
99352001-08-03 Akim Demaille <akim@epita.fr>
9936
9937 * tests/Makefile.am (check-local): Ship testsuite.
9938 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
9939 Include `string.h'.
9940
1e3e4bc1
AD
99412001-08-03 Akim Demaille <akim@epita.fr>
9942
9943 * configure.in: Try using -Wformat when compiling.
9944
42b45b7f
AD
99452001-08-03 Akim Demaille <akim@epita.fr>
9946
9947 * configure.in: Bump to 1.28b.
9948
8f13fe33
AD
99492001-08-03 Akim Demaille <akim@epita.fr>
9950
9951 * src/complain.c: Adjust strerror_r portability issues.
9952
b37ba92c
AD
99532001-08-03 Akim Demaille <akim@epita.fr>
9954
9955 Version 1.28a.
9956
b0ce6046
AD
99572001-08-03 Akim Demaille <akim@epita.fr>
9958
9959 * src/getargs.c, src/getarg.h (skeleton)): Constify.
9960 * src/lex.c (literalchar): Avoid name clashes on `buf'.
9961 * src/getargs.c: Include complain.h.
9962 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
9963 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
9964
d01c415b
AD
99652001-08-03 Akim Demaille <akim@epita.fr>
9966
9967 * src/reader.c (readgram): Display hidden chars in error messages.
9968
459dd1a6
AD
99692001-08-03 Akim Demaille <akim@epita.fr>
9970
9971 Update to gettext 0.10.39.
9972
53b74c0c
AD
99732001-08-03 Akim Demaille <akim@epita.fr>
9974
9975 * lib/strspn.c: New.
9976
234a3be3
AD
99772001-08-01 Marc Autret <autret_m@epita.fr>
9978
9979 * doc/bison.texinfo: Update.
9980 * doc/bison.1 (mandoc): Update.
9981 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
9982 * src/files.c: Support output files extensions computing.
9983 (src_extension): New static variable.
9984 (header_extension): New static variable.
9985 (tr): New function.
9986 (get_extension_index): New function, gets the index of an extension
9987 filename in a string.
9988 (compute_exts_from_gf): New function, computes extensions from the
9989 grammar file extension.
9990 (compute_exts_from_src): New functions, computes extensions from the
9991 C source file extension, file given by ``-o'' option.
9992 (compute_base_names): Update.
9993 (output_files): Update.
9994
847bf1f5
AD
99952001-08-01 Robert Anisko <anisko_r@epita.fr>
9996
d995fee7 9997 * doc/bison.texi: Document @$.
847bf1f5
AD
9998 (Locations): New section.
9999
d074a105
AD
100002001-07-18 Akim Demaille <akim@epita.fr>
10001
10002 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
10003 * config/prev-version.txt, config/move-if-change: New.
10004 * Makefile.am: Adjust.
10005
3419715d
AD
100062001-07-08 Pascal Bart <pascal.bart@epita.fr>
10007
10008 * src/bison.simple (yyparse): Suppress warning `comparaison
10009 between signed and unsigned'.
10010
62ab6972
AD
100112001-07-05 Pascal Bart <pascal.bart@epita.fr>
10012
10013 * src/getargs.h (raw_flag): Remove.
10014 * src/getargs.c: Die on `-r'/`--raw'.
10015 * src/lex.c (parse_percent_token): Die on `%raw'.
10016 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
10017 * tests/calc.at: Suppress test with option `--raw'.
10018
1e24cc5b
AD
100192001-07-14 Akim Demaille <akim@epita.fr>
10020
10021 * config/: New.
10022 * configure.in: Require Autoconf 2.50.
10023 Update to gettext 0.10.38.
10024
32dfccf8
AD
100252001-03-16 Akim Demaille <akim@epita.fr>
10026
10027 * doc/bison.texinfo: ANSIfy the examples.
10028
cd5bd6ac
AD
100292001-03-16 Akim Demaille <akim@epita.fr>
10030
10031 * getargs.c (skeleton): New variable.
10032 (longopts): --skeleton is a new option.
10033 (shortopts, getargs): -S is a new option.
10034 * getargs.h: Declare skeleton.
10035 * output.c (output_parser): Use it.
10036
5141b016
AD
100372001-03-16 Akim Demaille <akim@epita.fr>
10038
10039 * m4/strerror_r.m4: New.
10040 * m4/error.m4: Run AC_FUNC_STRERROR_R.
10041 * lib/error.h, lib/error.c: Update.
10042
447992b9
AD
100432001-03-16 Akim Demaille <akim@epita.fr>
10044
10045 * src/getargs.c (longopts): Clean up.
10046
274d42ce
AD
100472001-02-21 Akim Demaille <akim@epita.fr>
10048
10049 * src/reader.c (gensym): `gensym_count' is your own.
10050 Use a static buf to create the symbol name, as token_buffer is no
10051 longer a buffer.
10052
22c821f3
AD
100532001-02-08 Akim Demaille <akim@epita.fr>
10054
10055 * src/conflicts.c (conflict_report): Be sure not to append to res
10056 between two calls, which could happen if both first sprintf were
10057 skipped, but not the first cp += strlen.
10058
18569462
AD
100592001-02-08 Akim Demaille <akim@epita.fr>
10060
10061 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
10062 New, from fileutils 4.0.37.
10063 * configure.in: Require Autoconf 2.49c. I took some time before
10064 making this decision. This is the only way out for portability
10065 issues in Bison, it would mean way too much duplicate effort to
10066 import in Bison features implemented in 2.49c since 2.13.
10067 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
10068
0d8f3c8a
AD
100692001-02-02 Akim Demaille <akim@epita.fr>
10070
10071 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 10072 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 10073
f17bcd1f
AD
100742001-01-19 Akim Demaille <akim@epita.fr>
10075
10076 Get rid of the ad hoc handling of token_buffer in the scanner: use
10077 the obstacks.
10078
10079 * src/lex.c (token_obstack): New.
10080 (init_lex): Initialize it. No longer call...
10081 (grow_token_buffer): this. Remove it.
10082 Adjust all the places which used it to use the obstack.
10083
511e79b3
AD
100842001-01-19 Akim Demaille <akim@epita.fr>
10085
10086 * src/lex.h: Rename all the tokens:
10087 s/\bENDFILE\b/tok_eof/g;
10088 s/\bIDENTIFIER\b/tok_identifier/g;
10089 etc.
10090 Let them be enums, not #define, to ease debugging.
10091 Adjust all the code.
10092
0d6508ef
AD
100932001-01-18 Akim Demaille <akim@epita.fr>
10094
10095 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
10096 * src/lex.c (maxtoken, grow_token_buffer): Static.
10097
6deb4447
AD
100982001-01-18 Akim Demaille <akim@epita.fr>
10099
10100 Since we now use obstacks, more % directives can be enabled.
10101
10102 * src/lex.c (percent_table): Also accept `%yacc',
10103 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
10104 `%debug'.
10105 Handle the actions for `%semantic_parser' and `%pure_parser' here,
10106 instead of returning a token.
10107 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
10108 * src/reader.c (read_declarations): Adjust.
10109 * src/files.c (open_files): Don't call `compute_base_names', don't
10110 compute `attrsfile' since they depend upon data which might be
10111 *in* the input file now.
10112 (output_files): Do it here.
10113 * src/output.c (output_headers): Document the fact that this patch
10114 introduces a guaranteed SEGV for semantic parsers.
10115 * doc/bison.texinfo: Document them.
10116 * tests/suite.at: Exercise these %options.
10117
ff4423cc
AD
101182000-12-20 Akim Demaille <akim@epita.fr>
10119
10120 Also handle the output file (--verbose) with obstacks.
10121
10122 * files.c (foutput): Remove.
10123 (output_obstack): New.
10124 Adjust all dependencies.
10125 * src/conflicts.c: Return a string.
10126 * src/system.h (obstack_grow_string): Rename as...
10127 (obstack_sgrow): this. Be ready to work with non literals.
10128 (obstack_fgrow4): New.
10129
956dba3a
AD
101302000-12-20 Akim Demaille <akim@epita.fr>
10131
10132 * src/files.c (open_files): Fix the computation of short_base_name
10133 in the case of `-o foo.tab.c'.
10134
337bab46
AD
101352000-12-20 Akim Demaille <akim@epita.fr>
10136
10137 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
10138 (copy_dollar): Now that everything uses obstacks, get rid of the
10139 FILE * parameters.
10140
5d3214b8
AD
101412000-12-20 Akim Demaille <akim@epita.fr>
10142
10143 * src/files.c (open_files): Actually the `.output' file is based
10144 on the short_base_name, not base_name.
10145 * tests/suite.at (Checking output file names): Adjust.
10146
29092a57
AD
101472000-12-20 Akim Demaille <akim@epita.fr>
10148
10149 * src/bison.s1: Remove, we now use directly...
10150 * src/bison.simple: this.
10151 * src/Makefile.am: Use pkgdata instead of data.
10152
ea5607fd
AD
101532000-12-20 Akim Demaille <akim@epita.fr>
10154
10155 * src/files.c (guard_obstack): New.
10156 (open_files): Initialize it.
10157 (output_files): Dump it...
10158 * src/files.h: Export it.
10159 * src/reader.c (copy_guard): Use it.
10160
27110317
AD
101612000-12-19 Akim Demaille <akim@epita.fr>
10162
10163 * src/files.c (outfile, defsfile, actfile): Removed as global
10164 vars.
10165 (open_files): Don't compute them.
10166 (output_files): Adjust.
10167 (base_name, short_base_name): Be global.
10168 Adjust dependencies.
10169
19c50364
AD
101702000-12-19 Akim Demaille <akim@epita.fr>
10171
10172 * src/files.c (strsuffix): New.
10173 (stringappend): Be just like strcat but allocate.
10174 (base_names): Eve out from open_files.
10175 Try to simplify the rather hairy computation of base_name and
10176 short_base_name.
10177 (open_files): Use it.
10178 * tests/suite.at (Checking output file names): New test.
10179
573c1d9f
AD
101802000-12-19 Akim Demaille <akim@epita.fr>
10181
10182 * src/system.h (obstack_grow_literal_string): Rename as...
10183 (obstack_grow_string): this.
10184 * src/output.c (output_parser): Recognize `%% actions' instead of
10185 `$'.
10186 * src/bison.s1: s/$/%% actions/.
10187 * src/bison.hairy: Likewise.
10188
ef7ddedd
AD
101892000-12-19 Akim Demaille <akim@epita.fr>
10190
10191 * src/output.c (output_parser): Compute the `#line' lines when
10192 there are.
10193 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
10194 Suggested by Hans Aberg.
10195
ff61dabd
AD
101962000-12-19 Akim Demaille <akim@epita.fr>
10197
10198 Let the handling of the skeleton files be local to the procedures
10199 that use it.
10200
10201 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
10202 longer static.
10203 (fparser, open_extra_files): Remove.
10204 (open_files, output_files): Don't take care of fparser.
10205 * src/files.h: Adjust.
10206 * src/output.c (output_parser): Open and close the file to the
10207 skeleton.
10208 * src/reader.c (read_declarations): When %semantic_parser, open
10209 fguard.
10210
55b96341
AD
102112000-12-19 Akim Demaille <akim@epita.fr>
10212
10213 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
10214 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
10215
358c15b7
AD
102162000-12-19 Akim Demaille <akim@epita.fr>
10217
10218 * src/files.c (open_files): Yipee! We no longer need all the code
10219 looking for `/tmp' since we have no tmp file.
10220
7de3329e
AD
102212000-12-19 Akim Demaille <akim@epita.fr>
10222
10223 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
10224 New macros.
10225 * src/files.c (open_files): Less dependency on MSDOS etc.
10226
3abcd459
AD
102272000-12-14 Akim Demaille <akim@epita.fr>
10228
10229 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
10230 Provide a default definition.
10231 Use it when executing the default @ action.
10232 * src/reader.c (reader_output_yylsp): No longer include
10233 `timestamp' and `text' in the default YYLTYPE.
10234
2a91a95e
AD
102352000-12-12 Akim Demaille <akim@epita.fr>
10236
10237 * src/reader.c (copy_definition, parse_union_decl, copy_action)
10238 (copy_guard): Quote the file names.
10239 Reported by Laurent Mascherpa.
10240
14d3eb9b
AD
102412000-12-12 Akim Demaille <akim@epita.fr>
10242
10243 * src/output.c (output_headers, output_program, output): Be sure
10244 to escape special characters when outputting filenames.
10245 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
10246 (output_headers): Don't depend on them, Use ACTSTR.
10247
d7045ec6
AD
102482000-11-17 Akim Demaille <akim@epita.fr>
10249
10250 * lib/obstack.h: Formatting changes.
10251 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
10252 prevents type checking.
10253 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
10254 cast the value to (void *): assigning a `foo *' to a `void *'
10255 variable is valid.
10256 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
10257 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
10258 append characters.
10259
6fd54b73
AD
102602000-11-17 Akim Demaille <akim@epita.fr>
10261
10262 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
10263 as...
10264 (suite.m4, regression.m4, calc.m4): these.
10265 * tests/atgeneral.m4: Update from CVS Autoconf.
10266
4c50eae6
AD
102672000-11-17 Akim Demaille <akim@epita.fr>
10268
10269 * tests/regression.m4 (%union and --defines): New test,
10270 demonstrating a current bug in the obstack implementation.
10271
a35f64ea
AD
102722000-11-17 Akim Demaille <akim@epita.fr>
10273
10274 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
10275 macros.
10276 Use them to declare the variables which are global or local to
10277 `yyparse'.
10278
7de23534
AD
102792000-11-17 Akim Demaille <akim@epita.fr>
10280
10281 * acconfig.h: Remove, no longer used.
10282
aa7815f5
AD
102832000-11-07 Akim Demaille <akim@epita.fr>
10284
10285 * src: s/Copyright (C)/Copyright/g.
10286
5af1f549
AD
102872000-11-07 Akim Demaille <akim@epita.fr>
10288
10289 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
10290 defining.
10291 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
10292
553e2b22
AD
102932000-11-07 Akim Demaille <akim@epita.fr>
10294
10295 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
10296 Merge in a single CPP if/else.
10297
8a4f41d6
AD
102982000-11-07 Akim Demaille <akim@epita.fr>
10299
10300 * src/output.c (output): Remove useless variables.
10301 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
10302 argument `data' for consistency with the prototypes.
10303 Qualify it `const'.
10304 (obstack_copy, obstack_copy0): Rename the second argument as
10305 `address' for consistency. Qualify it `const'.
10306 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
10307 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
10308 `const' their input argument (`data' or `address').
10309 Adjust the corresponding macros to include `const' in casts.
10310
095a3fb5
AD
103112000-11-03 Akim Demaille <akim@epita.fr>
10312
10313 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
10314 s/PFILE1/BISON_HAIRY/.
10315 Adjust dependencies.
10316
d1cdce7c
AD
103172000-11-03 Akim Demaille <akim@epita.fr>
10318
090c5ebf 10319 For some reason, this was not applied.
d1cdce7c
AD
10320
10321 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
10322 `unlink': it's no longer used.
10323
9311529b
AD
103242000-11-03 Akim Demaille <akim@epita.fr>
10325
10326 * src/files.c (skeleton_find): New function, eved out of...
10327 (open_files, open_extra_files): here.
10328
d8880f69
AD
103292000-11-03 Akim Demaille <akim@epita.fr>
10330
10331 Don't use `atexit'.
10332
10333 * src/files.c (obstack_save): New function.
10334 (done): Rename as...
10335 (output_files): this.
10336 Use `obstack_save'.
10337 * src/main.c (main): Don't use `atexit' to register `done', since
10338 it no longer has to remove tmp files, just call `output_files'
10339 when there are no errors.
10340
0dbb648e
AD
103412000-11-02 Akim Demaille <akim@epita.fr>
10342
10343 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
10344 `unlink': it's no longer used.
10345 * src/files.h: Formatting changes.
10346
896fe5c1
AD
103472000-11-02 Akim Demaille <akim@epita.fr>
10348
10349 Remove the last uses of mktemp and unlink/delete.
10350
10351 * src/files.c (fdefines, ftable): Removed.
10352 (defines_ostack, table_obstack): New.
10353 Adjust dependencies of the former into uses of the latter.
10354 * src/output.c (output_short_or_char_table, output_short_table):
10355 Convert to using obstacks.
10356 * src/reader.c (copy_comment2): Accept one FILE * and two
10357 obstacks.
10358 (output_token_defines, reader_output_yylsp): Use obstacks.
10359 * src/system.h (obstack_fgrow3): New.
1f65350a 10360 * po/POTFILES.in: Adjust.
896fe5c1 10361
dd60faec
AD
103622000-11-01 Akim Demaille <akim@epita.fr>
10363
10364 Change each use of `fattrs' into a use of `attrs_obstack'.
10365
10366 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
10367 * src/files.c (fattrs): Remove.
10368 (attrs_obstack): New.
10369 Adjust all dependencies.
10370 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
10371
8c7ebe49
AD
103722000-11-01 Akim Demaille <akim@epita.fr>
10373
10374 Introduce obstacks.
10375 Change each use of `faction' into a use of `action_obstack'.
10376
10377 * lib/obstack.h, lib/obstack.c: New files.
10378 * src/files.c (faction): Remove.
10379 (action_obstack): New.
10380 Adjust all dependencies.
10381
77aee789
AD
103822000-10-20 Akim Demaille <akim@epita.fr>
10383
10384 * lib/quote.h (PARAMS): New macro. Use it.
10385
43591cec
AD
103862000-10-16 Akim Demaille <akim@epita.fr>
10387
10388 * src/output.c (output_short_or_char_table): New function.
10389 (output_short_table, output_token_translations): Use it.
10390 (goto_actions): Use output_short_table.
10391
1e9798d5
AD
103922000-10-16 Akim Demaille <akim@epita.fr>
10393
10394 * src/symtab.c (bucket_new): New function.
10395 (getsym): Use it.
10396
10397 * src/output.c (output_short_table): New argument to display the
10398 comment associated with the table.
10399 Adjust dependencies.
10400 (output_gram): Use it.
10401 (output_rule_data): Nicer output layout for YYTNAME.
10402
f282676b
AD
104032000-10-16 Akim Demaille <akim@epita.fr>
10404
10405 * src/lex.c (read_typename): New function.
10406 (lex): Use it.
10407 * src/reader.c (copy_dollar): Likewise.
10408
550a72a3
AD
104092000-10-16 Akim Demaille <akim@epita.fr>
10410
10411 * src/reader.c (copy_comment2): Expect the input stream to be on
10412 the `/' which is suspected to open a comment, instead of being
10413 called after `//' or `/*' was read.
10414 (copy_comment, copy_definition, parse_union_decl, copy_action)
10415 (copy_guard): Adjust.
10416
131e2fef
AD
104172000-10-16 Akim Demaille <akim@epita.fr>
10418
10419 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
10420 `read_signed_integer'.
10421
79282c5a
AD
104222000-10-16 Akim Demaille <akim@epita.fr>
10423
10424 * src/reader.c (copy_dollar): New function.
10425 (copy_guard, copy_action): Use it.
10426
ff4a34be
AD
104272000-10-16 Akim Demaille <akim@epita.fr>
10428
10429 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
10430 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
10431 New files, from Fileutils 4.0.27.
10432 * src/main.c (printable_version): Remove.
10433 * src/lex.c, src/reader.c: Use `quote'.
10434
104352000-10-04 Akim Demaille <akim@epita.fr>
10436
10437 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
10438
14ded682
AD
104392000-10-04 Akim Demaille <akim@epita.fr>
10440
10441 * doc/bison.texinfo: Various typos spotted by Neil Booth.
10442
8e03724b
AD
104432000-10-04 Akim Demaille <akim@epita.fr>
10444
10445 When a literal string is used to define two different tokens,
10446 `bison -v' segfaults.
10447 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
10448
10449 * tests/regression.m4: New file.
10450 Include the core of the sample provided by Piotr Gackiewicz.
10451 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
10452 properly.
10453
a9e64249
AD
104542000-10-04 Akim Demaille <akim@epita.fr>
10455
10456 * src/reader.c (parse_expect_decl): Keep `count' within the size
10457 of `buffer'.
10458 From Neil Booth.
10459
da9abf43
AD
104602000-10-02 Paul Eggert <eggert@twinsun.com>
10461
10462 * bison.s1 (yyparse): Assign the default value
10463 unconditionally, to avoid a GCC warning and make the parser a
10464 tad smaller.
10465
c33638bb
AD
104662000-10-02 Akim Demaille <akim@epita.fr>
10467
10468 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
10469 options.
10470
444c570a
AD
104712000-10-02 Akim Demaille <akim@epita.fr>
10472
10473 * src/derives.c, src/print.c, src/reduce.c: To ease the
10474 translation, move some `\n' out of the translated strings.
10475
89cab50d
AD
104762000-10-02 Akim Demaille <akim@epita.fr>
10477
10478 The location tracking mechanism is precious for parse error
10479 messages. Nevertheless, it is enabled only when `@n' is used in
10480 the grammar, which is a different issue (you can use it in error
10481 message, but not in the grammar per se). Therefore, there should
10482 be another means to enable it.
10483
10484 * src/getargs.c (getargs): Support `--locations'.
10485 (usage): Report it.
10486 * src/getargs.h (locationsflag): Export it.
10487 * src/lex.c (percent_table): Support `%locations'.
10488 * src/reader.c (yylsp_needed): Remove this variable, now replaced
10489 with `locationsflag'.
10490 * doc/bison.texinfo: Document `--locations' and `%locations'.
10491 Sort the options.
10492 * tests/calc.m4: Test it.
10493
10494 For regularity of the names, replace each
10495 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
10496 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
10497 In addition replace each `flag' with `_flag'.
10498
d6c2cba0
AD
104992000-10-02 Akim Demaille <akim@epita.fr>
10500
10501 Also test parse error messages, including with YYERROR_VERBOSE.
10502
10503 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
10504 associative).
10505 Use it to check the computations.
10506 Use it to check `nonassoc' is honored.
10507 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
10508 `--yyerror-verbose'.
10509 (_AT_CHECK_CALC): Adjust to this option.
10510 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
10511
5a35a6cb
AD
105122000-10-02 Akim Demaille <akim@epita.fr>
10513
10514 Test also `--verbose', `--defines' and `--name-prefix'. Testing
10515 the latter demonstrates a flaw in the handling of non debugging
10516 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
10517 was used in order to simplify:
10518
10519 #if YYDEBUG
10520 if (yydebug)
10521 {
10522 ...
10523 }
10524 #endif
10525
10526 into
10527
10528 if (yydebug)
10529 {
10530 ...
10531 }
10532
10533 unfortunately this leads to a CPP conflict when
10534 `--name-prefix=foo' is used since it produces `#define yydebug
10535 foodebug'.
10536
10537 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
10538 (YYDPRINTF): New macro.
10539 Spread its use.
10540 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
10541 the bison options.
10542 Also test `--verbose', `--defines' and `--name-prefix'.
10543
71da9eea
AD
105442000-10-02 Akim Demaille <akim@epita.fr>
10545
10546 Improve the readability of the produced parsers.
10547
10548 * src/bison.s1: Formatting changes.
10549 Improve the comment related to the `$' mark.
10550 (yydefault): Don't fall through to `yyresume': `goto' there.
10551 * src/output.c (output_parser): When the `$' is met, skip the end
10552 of its line.
10553 New variable, `number_of_dollar_signs', to check there's exactly
10554 one `$' in the parser skeleton.
10555
95e36146
AD
105562000-10-02 Akim Demaille <akim@epita.fr>
10557
10558 * lib/xstrdup.c: New file, from the fileutils.
10559 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
10560 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
10561 instead of strlen + xmalloc + strcpy.
10562 * src/symtab.c (copys): Remove, use xstrdup instead.
10563
d7020c20
AD
105642000-10-02 Akim Demaille <akim@epita.fr>
10565
10566 * src/gram.h (associativity): New enum type which replaces the
10567 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
10568 `right_assoc', `left_assoc' and `non_assoc'.
10569 Adjust all dependencies.
10570 * src/reader.c: Formatting changes.
10571 (LTYPESTR): Don't define it, use it as a literal in
10572 `reader_output_yylsp'.
10573 * src/symtab.h (symbol_class): New enum type which replaces the
10574 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
10575 `sunknown', `stoken and `snterm'.
10576
1916f98e
AD
105772000-10-02 Akim Demaille <akim@epita.fr>
10578
10579 * src/getargs.c (fixed_outfiles): Rename as...
10580 (yaccflag): for consistency and accuracy.
10581 Adjust dependencies.
10582
d7913476
AD
105832000-10-02 Akim Demaille <akim@epita.fr>
10584
10585 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
10586 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
10587 difficult and introduced a lot of core dump. It turns out that
10588 Bison used an implementation of `xmalloc' based on `calloc', and
10589 at various places it does depend upon the initialization to 0. I
10590 have not tried to isolate the pertinent places, and all the former
10591 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
10592 someone should address this issue.
10593
10594 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
10595 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
10596 files.
10597 Adjust dependencies.
10598 * src/warshall.h: New file.
10599 Propagate.
10600
340ef489
AD
106012000-10-02 Akim Demaille <akim@epita.fr>
10602
10603 Various anti-`extern in *.c' changes.
10604
10605 * src/system.h: Include `assert.h'.
10606
b2ca4022
AD
106072000-10-02 Akim Demaille <akim@epita.fr>
10608
10609 * src/state.h (nstates, final_state, first_state, first_shift)
10610 (first_reduction): Move their exportation from here...
10611 * src/LR0.h: to here.
10612 Adjust dependencies.
10613 * src/getargs.c (statisticsflag): New variable.
10614 Add support for `--statistics'.
10615 Adjust dependencies.
10616
10617 Remove a lot of now useless `extern' statements in most files.
10618
403b315b
AD
106192000-10-02 Akim Demaille <akim@epita.fr>
10620
10621 * src/LR0.h: New file.
10622 Propagate its use.
10623
07a58c13
AD
106242000-10-02 Akim Demaille <akim@epita.fr>
10625
10626 * src/print.h: New file.
10627 Propagate its use.
10628 * src/print.c: Formatting and ordering changes.
10629 (verbose, terse): Replace with...
10630 (print_results): this new function.
10631 Adjust dependencies.
10632
0619caf0
AD
106332000-10-02 Akim Demaille <akim@epita.fr>
10634
10635 * src/conflicts.c (conflict_report): New function.
10636 (conflict_log, verbose_conflict_log): Replace with...
10637 (print_conflicts): this function.
10638 Adjust dependencies.
10639 * src/conflicts.h: New file.
10640 Propagate its inclusion.
10641
3519ec76
AD
106422000-10-02 Akim Demaille <akim@epita.fr>
10643
10644 * src/nullable.h: New file.
10645 Propagate its inclusion.
10646 * src/nullable.c: Formatting changes.
10647
015acc48
AD
106482000-10-02 Akim Demaille <akim@epita.fr>
10649
10650 * src/reduce.h: New file.
10651 Propagate its inclusion.
10652 * src/reduce.c: Topological sort and other formatting changes.
10653 (bool, TRUE, FALSE): Move their definition to...
10654 * src/system.h: here.
10655
8963a27b
AD
106562000-10-02 Akim Demaille <akim@epita.fr>
10657
10658 * src/files.c: Formatting changes.
10659 (tryopen, tryclose, openfiles): Rename as...
10660 (xfopen, xfclose, open_files): this.
10661 (stringappend): static.
10662 * src/files.h: Complete the list of exported symbols.
10663 Propagate its use.
10664
a70083a3
AD
106652000-10-02 Akim Demaille <akim@epita.fr>
10666
10667 * src/reader.h: New file.
10668 Propagate its use instead of tedious list of `extern' and
10669 prototypes.
10670 * src/reader.c: Formatting changes, topological sort,
10671 s/register//.
10672
abadc117
AD
106732000-10-02 Akim Demaille <akim@epita.fr>
10674
10675 * src/lex.h: Prototype `lex.c' exported functions.
10676 * src/reader.c: Adjust.
10677 * src/lex.c: Formatting changes.
10678 (safegetc): Rename as...
10679 (xgetc): this.
10680
720d742f
AD
106812000-10-02 Akim Demaille <akim@epita.fr>
10682
10683 * src/lalr.h: New file.
10684 Propagate its inclusion instead of prototypes and `extern'.
10685 * src/lalr.c: Formatting changes, topological sorting etc.
10686
f2acea59
AD
106872000-10-02 Akim Demaille <akim@epita.fr>
10688
10689 * src/output.c (token_actions): Introduce a temporary array,
10690 YYDEFACT, that makes it possible for this function to use
10691 output_short_table.
10692
d019d655
AD
106932000-10-02 Akim Demaille <akim@epita.fr>
10694
10695 `user_toknums' is output as a `short[]' in `output.c', while it is
10696 defined as a `int[]' in `reader.c'. For consistency with the
10697 other output tables, `user_toknums' is now defined as a table of
10698 shorts.
10699
10700 * src/reader.c (user_toknums): Be a short table instead of an int
10701 table.
10702 Adjust dependencies.
10703
10704 Factor the short table outputs.
10705
10706 * src/output.c (output_short_table): New function.
10707 * src/output.c (output_gram, output_stos, output_rule_data)
10708 (output_base, output_table, output_check): Use it.
10709
6c89f1c1
AD
107102000-10-02 Akim Demaille <akim@epita.fr>
10711
10712 * src/output.c (output): Topological sort of the functions, in
10713 order to get rid of the `static' prototypes.
10714 No longer use `register'.
10715 * src/output.h: New file.
10716 Propagate its inclusion in files explicitly prototyping functions
10717 from output.c.
10718
d9efd181
AD
107192000-09-21 Akim Demaille <akim@epita.fr>
10720
10721 * src/atgeneral.m4: Update from Autoconf.
10722
c29240e7 107232000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
10724
10725 * src/closure.h: New file.
10726 * src/closure.c: Formatting changes, topological sort over the
10727 functions, use of closure.h.
10728 (initialize_closure, finalize_closure): Rename as...
10729 (new_closure, free_closure): these. Adjust dependencies.
10730 * src/LR0.c: Formatting changes, topological sort, use of
10731 cloture.h.
10732 (initialize_states): Rename as...
10733 (new_states): this.
10734 * src/Makefile.am (noinst_HEADERS): Adjust.
10735
499daa50
AD
107362000-09-20 Akim Demaille <akim@epita.fr>
10737
10738 * src/acconfig.h: Don't protect config.h against multiple
10739 inclusion.
10740 Don't define PARAMS.
10741 * src/system.h: Define PARAMS.
10742 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
10743 purpose of config.h. system.h must not try to fix wrong
10744 definitions in config.h.
10745
cc84fd5d
AD
107462000-09-20 Akim Demaille <akim@epita.fr>
10747
10748 * src/derives.h: New file.
10749 * src/main.c, src/derives.h: Use it.
10750 Formatting changes.
10751 * src/Makefile.am (noinst_HEADERS): Adjust.
10752
db5b3a89
AD
107532000-09-20 Akim Demaille <akim@epita.fr>
10754
10755 * tests/atgeneral.m4: Update from Autoconf.
10756 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
10757 (AT_CHECK_CALC): New macros.
10758 Use these macros to test bison with options `', `--raw',
10759 `--debug', `--yacc', `--yacc --debug'.
10760
ceed8467
AD
107612000-09-19 Akim Demaille <akim@epita.fr>
10762
10763 * src/output.c: Formatting changes.
10764 * src/machine.h: Remove, leaving its contents in...
10765 * src/system.h: here.
10766 Include stdio.h.
10767 Adjust all dependencies on stdio.h and machine.h.
10768 * src/getargs.h: New file.
10769 Let all `extern' declarations about getargs.c be replaced with
10770 inclusion of `getargs.h'.
10771 * src/Makefile.am (noinst_HEADERS): Adjust.
10772
10773 * tests/calc.m4 (yyin): Be initialized in main, not on the global
10774 scope.
10775 (yyerror): Returns void, not int.
10776 * doc/bison.texinfo: Formatting changes.
10777
05a1d24b
AD
107782000-09-19 Akim Demaille <akim@epita.fr>
10779
10780 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
10781 portable.
10782
cbd25751
AD
107832000-09-18 Akim Demaille <akim@epita.fr>
10784
10785 * configure.in: Append WARNING_CFLAGS to CFLAGS.
10786 * src/Makefile.am (INCLUDES): Don't.
10787 Be ready to fetch headers in lib/.
10788
13863333
AD
107892000-09-18 Akim Demaille <akim@epita.fr>
10790
10791 * doc/bison.texinfo: Update the copyright.
10792 ANSIfy and GNUify the examples.
10793 Remove the old menu.
10794
0d533154
AD
107952000-09-18 Akim Demaille <akim@epita.fr>
10796
10797 First set of tests: use the `calc' example from the documentation.
10798
10799 * src/bison.s1 (yyparse): Condition the code using `yytname' which
10800 is defined only when YYDEBUG is.
10801 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
10802 * src/files.c (tryopen, tryclose): Formatting changes.
10803 Move to the top and be static.
10804 * src/reader.c (read_signed_integer): Likewise.
10805 * tests/calc.m4: New file.
10806 * Makefile.am, suite.m4: Adjust.
10807 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
10808
e79137ac
AD
108092000-09-18 Akim Demaille <akim@epita.fr>
10810
10811 Add support for an Autotest test suite for Bison.
10812
10813 * m4/m4.m4, m4/atconfig.m4: New files.
10814 * m4/Makefile.am (EXTRA_DIST): Adjust.
10815 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
10816 files.
10817 * src/getargs.c: Display a more standard --version message.
10818 * src/reader.c (reader): Formatting changes.
10819 No longer depend upon VERSION_STRING.
10820 * configure.in: No longer use `dnl'.
10821 Set up the test suite and the new directory `tests/.
10822 (VERSION_STRING): Remove.
10823
27821bff
AD
108242000-04-14 Akim Demaille <akim@epita.fr>
10825
10826 * src/reader.c (copy_comment2): New function, same as former
10827 `copy_comment', but outputs into two FILE *.
10828 (copy_comment): Use it.
10829 (parse_union_decl): Use it.
10830 (get_type, parse_start_decl): Use the same `invalid' message.
10831 (parse_start_decl, parse_union_decl): Use the same `multiple'
10832 message.
10833 (parse_union_decl, copy_guard, copy_action): Use the same
10834 `unmatched' message.
10835 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
10836
cfe5fbc0
AD
108372000-03-31 Akim Demaille <akim@epita.fr>
10838
10839 * src/files.c (tryopen, tryclose): Move to the top.
10840 Be static.
10841
cb7db13e
AD
108422000-03-31 Akim Demaille <akim@epita.fr>
10843
10844 * src/main.c (main): Don't call `done', exit does it.
10845
a0f6b076
AD
108462000-03-31 Akim Demaille <akim@epita.fr>
10847
36281465
AD
10848 * allocate.c: s/return (foo)/return foo/.
10849 * lalr.c: Likewise.
10850 * LR0.c: Likewise.
10851 * output.c: Likewise.
10852 * reader.c: Likewise.
10853 * symtab.c: Likewise.
10854 * vmsgetargs.c: Likewise.
10855
108562000-03-31 Akim Demaille <akim@epita.fr>
10857
10858 Clean up the error reporting functions.
a0f6b076
AD
10859
10860 * src/report.c: New file.
10861 * src/report.h: Likewise.
10862 * src/Makefile.am: Adjust.
10863 * m4/error.m4: New file.
10864 * m4/Makefile.am: Adjust.
10865 * configure.in (jm_PREREQ_ERROR): Call it.
10866 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
10867 Remove.
10868 (fatal, fatals): Remove. All callers use complain.c::fatal.
10869 (warn, warni, warns, warnss, warnss): Remove. All callers use
10870 complain.c::complain.
10871 (toomany): Remove, use fatal instead.
10872 * src/files.c (done): No argument, use complain_message_count.
10873 * src/main.c (main): Register `done' to `atexit'.
10874
10875 * src/getargs.c (usage): More `fputs', less `fprintf'.
10876
18539825
AD
108772000-03-28 Akim Demaille <akim@epita.fr>
10878
10879 * lib/: New directory.
10880 * Makefile.am (SUBDIRS): Adjust.
10881 * configure.in: Adjust.
10882 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
10883 useless.
10884 * src/alloca.c: Moved to lib/.
10885 * src/getopt.c: Likewise.
10886 * src/getopt1.c: Likewise.
10887 * src/getopt.h: Likewise.
10888 * src/ansi2knr.c: Likewise.
10889 * src/ansi2knr.1: Likewise.
10890 * src/Makefile.am: Adjust.
10891 * lib/Makefile.am: New file.
10892
9f306f2a
AD
108932000-03-28 Akim Demaille <akim@epita.fr>
10894
10895 * src/getargs.c (usage): Refresh the help message.
10896
0ba347b6
AD
108972000-03-17 Akim Demaille <akim@epita.fr>
10898
10899 * src/getopt1.c: Updated from textutils 2.0e
10900 * src/getopt.c: Likewise.
10901 * src/getopt.h: Likewise.
10902
dbe7f271
AD
109032000-03-17 Akim Demaille <akim@epita.fr>
10904
10905 * src/Makefile.am (bison.simple): Fix the awk program: quote only
10906 the file name, not the whole `#line LINE FILE'.
10907
75bbe78d
AD
109082000-03-17 Akim Demaille <akim@epita.fr>
10909
10910 On syntax errors, report the token on which we choked.
10911
aa5fd0ee
AD
10912 * src/bison.s1 (yyparse): In the label yyerrlab, when
10913 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 10914
7b306f52
AD
109152000-03-17 Akim Demaille <akim@epita.fr>
10916
aa5fd0ee 10917 * src/reader.c (copy_at): New function.
7b306f52
AD
10918 (copy_guard): Use it.
10919 (copy_action): Use it.
10920
e87b5700
AD
109212000-03-17 Akim Demaille <akim@epita.fr>
10922
10923 Be kind to translators, save some useless translations.
10924
aa5fd0ee 10925 * src/main.c (banner): New function.
e87b5700
AD
10926 (fatal_banner): Use it.
10927 (warn_banner): Use it.
10928
ae3c3164
AD
109292000-03-17 Akim Demaille <akim@epita.fr>
10930
aa5fd0ee
AD
10931 * src/reader.c (copy_definition): Use copy_string and
10932 copy_comment. Removed now unused `match', `ended',
10933 `cplus_comment'.
ae3c3164
AD
10934 (copy_comment, copy_string): Moved, to be visible from
10935 copy_definition.
10936
4dc58e7c
AD
109372000-03-17 Akim Demaille <akim@epita.fr>
10938
aa5fd0ee
AD
10939 * src/reader.c (copy_string): Declare `static inline'. No
10940 problems with inline, since it is checked by configure.
4dc58e7c
AD
10941 (copy_comment): Likewise.
10942
0a6384c4
AD
109432000-03-17 Akim Demaille <akim@epita.fr>
10944
aa5fd0ee 10945 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 10946
3cef001a
AD
109472000-03-17 Akim Demaille <akim@epita.fr>
10948
aa5fd0ee 10949 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
10950 (copy_action): Use it. Removed now unused `match', `ended',
10951 `cplus_comment'.
10952 (copy_guard): Likewise.
10953
ca36d2ef
AD
109542000-03-17 Akim Demaille <akim@epita.fr>
10955
aa5fd0ee 10956 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
10957 (copy_action): Use it.
10958 (copy_guard): Likewise.
10959
6666f98f
AD
109602000-03-17 Akim Demaille <akim@epita.fr>
10961
10962 Change the handling of @s so that they behave exactly like $s.
10963 There is now a pseudo variable @$ (readble and writable), location
10964 of the lhs of the rule (by default ranging from the location of
10965 the first symbol of the rhs, to the location of the last symbol,
10966 or, if the rhs is empty, YYLLOC).
10967
10968 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
10969 yyval.
10970 (yyparse): When providing a default semantic action, provide a
10971 default location action.
10972 (after the $): No longer change `*YYLSP', just stack YYLOC the
10973 same way you stack YYVAL.
10974 * src/reader.c (read_declarations): Use warns.
10975 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
10976 (copy_action, case '@'): Likewise.
10977 Use a standard error message, to save useless work from
10978 translators.
10979
41aca2e0
AD
109802000-03-17 Akim Demaille <akim@epita.fr>
10981
aa5fd0ee
AD
10982 * src/bison.s1: Formatting and cosmetics changes.
10983 * src/reader.c: Likewise.
41aca2e0
AD
10984 Update the Copyright notice.
10985
dc08c1d5
AD
109862000-03-17 Akim Demaille <akim@epita.fr>
10987
aa5fd0ee
AD
10988 * src/bison.s1 (#line): All set to `#line' only, since the
10989 Makefile now handles them.
dc08c1d5 10990
9ee3c97b
AD
109912000-03-16 Akim Demaille <akim@epita.fr>
10992
10993 * src/output.c (output_rule_data): Output the documentation of
10994 some of the tables.
10995 (Copyright notice): Update.
10996 Formatting changes.
10997
0de741ca
AD
109982000-03-16 Akim Demaille <akim@epita.fr>
10999
11000 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
11001 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
11002 One `#if YYDEBUG' remains, since it uses variables which are
11003 defined only if `YYDEBUG != 0'.
11004
bb10be54
AD
110052000-03-16 Akim Demaille <akim@epita.fr>
11006
11007 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
11008 and related variables so that the similarities are highlighted.
11009
b07b484a
AD
110102000-03-16 Akim Demaille <akim@epita.fr>
11011
11012 * src/bison.s1: Properly indent CPP directives.
11013
361f60b3
AD
110142000-03-16 Akim Demaille <akim@epita.fr>
11015
11016 * src/bison.s1: Properly indent the `alloca' CPP section.
11017
8c44d3ec
AD
110182000-03-16 Akim Demaille <akim@epita.fr>
11019
11020 Do not hard code values of directories in `configure.in'.
11021 Update the `configure' tool chain.
11022
11023 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
11024 src/makefile.am.
11025 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
11026 (AC_OUTPUT): Add m4/Makefile.
11027 Bump to bison 1.28a, 1.29 has never been released.
11028 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
11029 handled via src/Makefile.am.
11030 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
11031 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
11032 autoheader.
11033 * Makefile.am (SUBDIRS): Add m4.
11034 (ACLOCAL_AM_FLAGS): New variable.
11035 (AUTOMAKE_OPTIONS): Add check-news.
11036 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
11037 the proper line number and file name.
11038 (DEFS): Propagate the location of bison library files and of the
11039 locale files.
11040 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
11041 builddir.
11042 * acinclude.m4: Remove, replaced by the directory m4.
11043 * m4/Makefile.am (EXTRA_DIST): New variable.
11044 * m4/gettext.m4: New file, from the fileutils.
11045 * m4/lcmessage.m4: Likewise
11046 * m4/progtest.m4: Likewise.
11047 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
11048
f95997e7
AD
110492000-03-10 Akim Demaille <akim@epita.fr>
11050
11051 * src/closure.c:
11052 Formatting changes of various comments.
11053 Respect the GNU coding standards at various places.
11054 Don't use `_()' when no translation is needed.
11055
110561999-12-13 Jesse Thilo <jthilo@gnu.org>
11057
11058 * src/files.c:
11059 OS/2 honors TMPDIR environment variable.
11060
110611999-12-13 Jesse Thilo <jthilo@gnu.org>
11062
11063 * doc/bison.texinfo: Tweaked spelling and grammar.
11064 Updated ISBN.
11065 Removed reference to price of printed copy.
11066 Mention BISON_SIMPLE and BISON_HAIRY.
11067
110681999-12-13 Jesse Thilo <jthilo@gnu.org>
11069
11070 * configure.in, NEWS:
11071 Bison 1.29 released.
11072
110731999-10-27 Jesse Thilo <jthilo@gnu.org>
11074
11075 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
11076 Added reference card.
11077
110781999-07-26 Jesse Thilo <jthilo@gnu.org>
11079
11080 * po/ru.po: Added Russian translation.
11081
110821999-07-26 Jesse Thilo <jthilo@gnu.org>
11083
11084 * configure.in: Added Russian translation.
11085
110861999-07-06 Jesse Thilo <jthilo@gnu.org>
11087
11088 * configure.in, NEWS, README:
11089 Released version 1.28.
11090
110911999-06-14 Jesse Thilo <jthilo@gnu.org>
11092
11093 * src/system.h:
11094 Squashed redefinition warning on some systems.
11095
11096 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
11097 Have configure build version string instead of relying on ANSI string
11098 concatentation.
11099
111001999-06-14 Jesse Thilo <jthilo@gnu.org>
11101
11102 * po/POTFILES.in: Got rid of version.c.
11103
111041999-06-14 Jesse Thilo <jthilo@gnu.org>
11105
11106 * acconfig.h, configure.in:
11107 Have configure build version string instead of relying on ANSI string
11108 concatentation.
11109
111101999-06-08 Jesse Thilo <jthilo@gnu.org>
11111
11112 * doc/bison.1:
11113 Dropped mention of `+' for long-named options.
11114
111151999-05-30 Jesse Thilo <jthilo@gnu.org>
11116
11117 * src/files.c: Added <unistd.h> for unlink().
11118
11119 * src/Makefile.am, src/system.h:
11120 I18n fixes.
11121
111221999-05-30 Jesse Thilo <jthilo@gnu.org>
11123
11124 * README: Added a FAQ list.
11125
11126 * configure.in, acconfig.h:
11127 I18n fixes.
11128
111291999-05-30 Jesse Thilo <jthilo@gnu.org>
11130
11131 * doc/FAQ, doc/Makefile.am:
11132 Added a FAQ list.
11133
111341999-05-19 Jesse Thilo <jthilo@gnu.org>
11135
11136 * src/alloc.h, src/symtab.h, src/version.c:
11137 Protected inclusion of "config.h" with HAVE_CONFIG_H.
11138
111391999-04-18 Jesse Thilo <jthilo@gnu.org>
11140
11141 * src/.cvsignore, src/Makefile.am:
11142 Reorganized: sources in `src', documentation in `doc'.
11143
11144 * src/lex.c (literalchar):
11145 fixed the code for escaping double quotes (thanks
11146 Jonathan Czisny.)
11147
111481999-04-18 Jesse Thilo <jthilo@gnu.org>
11149
11150 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
11151 Adjusted paths to reflect directory reorganization.
11152
111531999-04-18 Jesse Thilo <jthilo@gnu.org>
11154
11155 * doc/.cvsignore, doc/Makefile.am:
11156 Reorganized: sources in `src', documentation in `doc'.
11157
111581999-04-18 Jesse Thilo <jthilo@gnu.org>
11159
11160 * configure.in:
11161 Updated AC_INIT file to reflect directory reorganization.
11162
11163 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
11164 Reorganized: sources in `src', documentation in `doc'.
11165
111661999-04-13 Jesse Thilo <jthilo@gnu.org>
11167
11168 * src/allocate.c:
11169 Don't declare calloc() and realloc() if not necessary.
11170
111711999-04-13 Jesse Thilo <jthilo@gnu.org>
11172
11173 * configure.in, acconfig.h, acinclude.m4:
11174 Don't declare calloc() and realloc() if not necessary.
11175
111761999-03-23 Jesse Thilo <jthilo@gnu.org>
11177
11178 * po/.cvsignore: Added i18n support.
11179
111801999-03-23 Jesse Thilo <jthilo@gnu.org>
11181
11182 * acconfig.h, configure.in, Makefile.am:
11183 Added i18n support.
11184
111851999-03-22 Jesse Thilo <jthilo@gnu.org>
11186
11187 * src/bison.s1: Fixed #line numbers.
11188
111891999-03-15 Jesse Thilo <jthilo@gnu.org>
11190
11191 * po/es.po, po/fr.po, po/nl.po, po/de.po:
11192 Added PO files from Translation Project.
11193
111941999-03-03 Jesse Thilo <jthilo@gnu.org>
11195
11196 * Makefile.am:
11197 Added support for non-ANSI compilers (ansi2knr).
11198
111991999-02-16 Jesse Thilo <jthilo@gnu.org>
11200
11201 * configure.in: Bumped version number to 1.27.
11202
11203 * Makefile.am:
11204 Added `bison.simple' to list of files removed by `make distclean'.
11205
112061999-02-12 Jesse Thilo <jthilo@gnu.org>
11207
11208 * src/files.c, src/files.h:
11209 Defined locations of parser files in config.h instead of Makefile.
11210
112111999-02-12 Jesse Thilo <jthilo@gnu.org>
11212
11213 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
11214 Defined locations of parser files in config.h instead of Makefile.
11215
112161999-02-09 Jesse Thilo <jthilo@gnu.org>
11217
11218 * Makefile.am:
11219 Removed inappropriate use of $< macro.
11220
112211999-02-05 Jesse Thilo <jthilo@gnu.org>
11222
11223 * po/Makefile.in.in, po/POTFILES.in:
11224 Add `po' directory skeleton.
11225
112261999-01-27 Jesse Thilo <jthilo@gnu.org>
11227
11228 * README: Document help-bison list.
11229
11230 * configure.in: Add check for mkstemp().
11231
112321999-01-20 Jesse Thilo <jthilo@gnu.org>
11233
11234 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
11235 Hush a few compiler warnings.
11236
11237 * src/files.c:
11238 Add tryclose(), which verifies that fclose was successful.
11239 Hush a couple of compiler warnings.
11240
112411999-01-20 Jesse Thilo <jthilo@gnu.org>
11242
11243 * Makefile.am, OChangeLog:
11244 ChangeLog is now automatically generated. Include the old version as
11245 OChangeLog.
11246
112471999-01-14 Jesse Thilo <jthilo@gnu.org>
11248
11249 * 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:
11250 Update FSF address.
11251
112521999-01-14 Jesse Thilo <jthilo@gnu.org>
11253
11254 * doc/bison.texinfo: Fix formatting glitch.
11255
11256 * doc/bison.texinfo: Update FSF address.
11257
112581999-01-14 Jesse Thilo <jthilo@gnu.org>
11259
11260 * acconfig.h: Update FSF address.
11261
112621999-01-08 Jesse Thilo <jthilo@gnu.org>
11263
11264 * src/system.h:
11265 Don't define PACKAGE here, since config.h defines it.
11266
112671998-12-30 Jesse Thilo <jthilo@gnu.org>
11268
11269 * src/reader.c: Update copyright date.
11270
11271 * src/main.c:
11272 Ditch sprintf to statically-sized buffers in fatal/warn functions in
11273 favor of output directly to stderr (avoids buffer overruns).
11274
11275 * src/reader.c: Some checks for premature EOF.
11276
11277 * 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:
11278 Use prototypes if the compiler understands them.
11279
11280 * src/files.c: Honor TMPDIR on Unix hosts.
11281 Use prototypes if the compiler understands them.
11282
11283 * src/reader.c:
11284 Fix a couple of buffer overrun bugs.
11285 Use prototypes if the compiler understands them.
11286
11287 * src/system.h: Include unistd.h and ctype.h.
11288 Use #ifdef instead of #if for NLS symbols.
11289
112901998-12-30 Jesse Thilo <jthilo@gnu.org>
11291
11292 * doc/bison.texinfo:
11293 Delete comment "consider using @set for edition number, etc..." since
11294 we now are doing so.
11295
112961998-12-30 Jesse Thilo <jthilo@gnu.org>
11297
11298 * configure.in:
11299 Use prototypes if the compiler understands them.
11300
11301 * NEWS: Document 1.26 highlights.
11302
11303 * Makefile.am: Require Automake 1.3 or later.
11304
11305 * acconfig.h:
11306 Use prototypes if the compiler understands them.
11307
113081998-12-29 Jesse Thilo <jthilo@gnu.org>
11309
11310 * src/version.c:
11311 Use VERSION symbol from automake for version number.
11312
113131998-12-29 Jesse Thilo <jthilo@gnu.org>
11314
11315 * acconfig.h, configure.in, version.cin:
11316 Use VERSION symbol from automake for version number.
11317
113181998-11-28 Jesse Thilo <jthilo@gnu.org>
11319
11320 * Makefile.am:
11321 Distribute original version of simple parser (bison.s1), not built
11322 version (bison.simple).
11323
113241998-11-28 Jesse Thilo <jthilo@gnu.org>
11325
11326 * doc/bison.texinfo: Add info dir entry.
11327
11328 * doc/bison.texinfo:
11329 Let automake put version number into documentation.
11330
113311998-11-26 Jesse Thilo <jthilo@gnu.org>
11332
11333 * src/bison.cld, src/build.com, src/vmshlp.mar:
11334 Add non-RCS files from /gd/gnu/bison.
11335
113361998-11-26 Jesse Thilo <jthilo@gnu.org>
11337
11338 * doc/bison.1:
11339 Document the BISON_HAIRY and BISON_SIMPLE variables.
11340
113411998-11-25 Jesse Thilo <jthilo@gnu.org>
11342
11343 * src/version.c: Build version.c automatically.
11344
11345 * src/reader.c:
11346 Fix token numbering (used to start at 258, not 257).
11347
11348 * src/system.h: Include config.h.
11349
11350 * src/getargs.c: Update bug report address.
11351
11352 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
11353 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
11354
113551998-11-25 Jesse Thilo <jthilo@gnu.org>
11356
11357 * Makefile.am:
11358 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
11359
11360 * configure.in, version.cin:
11361 Build version.c automatically.
11362
11363 * AUTHORS: Add AUTHORS file.
11364
11365 * README: Update bug report address.
11366
11367 * bison.simple:
11368 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
11369
11370 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
11371 Add automake stuff.
11372
113731998-11-25 Jesse Thilo <jthilo@gnu.org>
11374
11375 * doc/bison.texinfo: Clean up some formatting.
11376
113771998-05-05 Richard Stallman <rms@gnu.org>
11378
11379 * doc/bison.texinfo:
11380 Explain better why to make a pure parser.
11381
113821998-01-05 Richard Stallman <rms@gnu.org>
11383
11384 * src/files.c (openfiles):
11385 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
11386 find a temporary directory, if possible. Do not unlink files while
11387 they are open.
11388
113891997-08-25 Richard Stallman <rms@gnu.org>
11390
11391 * src/reader.c (stack_offset;):
11392 Change some warni to warns.
11393
11394 * src/lex.c (literalchar): Use warns, not warni.
11395
113961997-06-28 Richard Stallman <rms@gnu.org>
11397
11398 * src/bison.s1: Add a Bison version comment.
11399
11400 * src/main.c (fatal, warn, berror):
11401 Use program_name.
11402
114031997-06-28 Richard Stallman <rms@gnu.org>
11404
11405 * Makefile.in (bison_version): New variable.
11406 (dist): Use that variable.
11407 (bison.s1): Substitute the Bison version into bison.simple.
11408
11409 * bison.simple: Add a Bison version comment.
11410
114111997-06-18 Richard Stallman <rms@gnu.org>
11412
11413 * src/main.c (fatal, warn, berror):
11414 Make error messages standard.
11415 (toomany): Improve error message text.
11416
11417 * 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:
11418 new.h renamed to alloc.h.
11419
114201997-06-18 Richard Stallman <rms@gnu.org>
11421
11422 * Makefile.in: new.h renamed to alloc.h.
11423
114241997-05-24 Richard Stallman <rms@gnu.org>
11425
11426 * src/lex.c (literalchar):
11427 Fix the code for escaping \, " and '.
11428
11429 (lex): Avoid trouble when there are many chars
11430 to discard in a char literal with just several chars in it.
11431
114321997-05-17 Richard Stallman <rms@gnu.org>
11433
11434 * src/bison.s1:
11435 Use malloc, if using alloca is troublesome.
11436 (YYSTACK_USE_ALLOCA): New flag macro.
11437 Define it for some systems and compilers.
11438 (YYSTACK_ALLOC): New macro.
11439 (yyparse): Use YYSTACK_ALLOC to allocate stack.
11440 If it was malloc'd, free it.
11441
114421997-05-17 Richard Stallman <rms@gnu.org>
11443
11444 * bison.simple:
11445 Use malloc, if using alloca is troublesome.
11446 (YYSTACK_USE_ALLOCA): New flag macro.
11447 Define it for some systems and compilers.
11448 (YYSTACK_ALLOC): New macro.
11449 (yyparse): Use YYSTACK_ALLOC to allocate stack.
11450 If it was malloc'd, free it.
11451
114521997-04-23 Richard Stallman <rms@gnu.org>
11453
11454 * src/bison.s1:
11455 (alloca) [__hpux]: Always define as __builtin_alloca.
11456
114571997-04-23 Richard Stallman <rms@gnu.org>
11458
11459 * bison.simple:
11460 (alloca) [__hpux]: Always define as __builtin_alloca.
11461
114621997-04-22 Richard Stallman <rms@gnu.org>
11463
11464 * src/bison.s1:
11465 [__hpux]: Include alloca.h (right for HPUX 10)
11466 instead of declaring alloca (right for HPUX 9).
11467
11468 * src/bison.s1 (__yy_memcpy):
11469 Declare arg `count' as unsigned int.
11470 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
11471
114721997-04-22 Richard Stallman <rms@gnu.org>
11473
11474 * bison.simple:
11475 [__hpux]: Include alloca.h (right for HPUX 10)
11476 instead of declaring alloca (right for HPUX 9).
11477
11478 * bison.simple (__yy_memcpy):
11479 Declare arg `count' as unsigned int.
11480 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
11481
114821997-01-03 Richard Stallman <rms@gnu.org>
11483
11484 * src/allocate.c: [__STDC__ or _MSC_VER]:
11485 Declare calloc and realloc to return void *.
11486
114871997-01-02 Richard Stallman <rms@gnu.org>
11488
11489 * src/system.h:
11490 [_MSC_VER]: Include stdlib.h and process.h.
11491 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
11492
11493 * src/main.c (main): Return FAILURE as a value.
11494 (printable_version): Declare arg as int, not char.
11495
114961997-01-02 Richard Stallman <rms@gnu.org>
11497
11498 * Makefile.in (dist):
11499 Explicitly check for symlinks, and copy them.
11500
115011996-12-19 Richard Stallman <rms@gnu.org>
11502
11503 * src/files.c:
11504 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
11505
115061996-12-18 Paul Eggert <eggert@gnu.org>
11507
11508 * src/bison.s1 (yyparse):
11509 If __GNUC__ and YYPARSE_PARAM are both defined,
11510 declare yyparse to have a void * argument.
11511
115121996-12-18 Paul Eggert <eggert@gnu.org>
11513
11514 * bison.simple (yyparse):
11515 If __GNUC__ and YYPARSE_PARAM are both defined,
11516 declare yyparse to have a void * argument.
11517
115181996-12-17 Richard Stallman <rms@gnu.org>
11519
11520 * src/reduce.c (nbits): Add some casts.
11521
115221996-08-12 Richard Stallman <rms@gnu.org>
11523
11524 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
11525
115261996-08-12 Richard Stallman <rms@gnu.org>
11527
11528 * bison.simple: Test _MSDOS as well as _MSDOS_.
11529
115301996-07-31 Richard Stallman <rms@gnu.org>
11531
11532 * src/bison.s1:
11533 [__sun && __i386]: Include alloca.h.
11534
115351996-07-31 Richard Stallman <rms@gnu.org>
11536
11537 * bison.simple:
11538 [__sun && __i386]: Include alloca.h.
11539
115401996-07-30 Richard Stallman <rms@gnu.org>
11541
11542 * src/bison.s1: Comment change.
11543
11544 * src/bison.s1: Test _MSDOS_, not MSDOS.
11545
115461996-07-30 Richard Stallman <rms@gnu.org>
11547
11548 * bison.simple: Comment change.
11549
11550 * bison.simple: Test _MSDOS_, not MSDOS.
11551
115521996-06-01 Richard Stallman <rms@gnu.org>
11553
11554 * 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:
11555 Insert `_' macro around many string constants.
11556
11557 * src/main.c:
11558 Insert `_' macro around many string constants.
11559
11560 (main): Call setlocale, bindtextdomain and textdomain.
11561
11562 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
11563 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
11564 [ENABLE_NLS]: Include libintl.h.
11565 [ENABLE_NLS] (gettext): Define.
11566 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
11567 (N_, PACKAGE, LOCALEDIR): New macros.
11568
115691996-06-01 Richard Stallman <rms@gnu.org>
11570
11571 * POTFILES.in: New file.
11572
11573 * Makefile.in (allocate.o):
11574 Define target explicitly.
11575
11576 * Makefile.in (CFLAGS): Set to @CFLAGS@.
11577 (LDFLAGS): Set to @LDFLAGS@.
11578 (configure): Run autoconf only if preceding `cd' succeeds.
11579 (bison.s1): Redirect output to temporary file then move the
11580 temporary to the target, rather than redirecting directly to bison.s1.
11581 (clean): Remove config.status and config.log.
11582 (distclean): Don't remove config.status here.
11583
115841996-05-12 Richard Stallman <rms@gnu.org>
11585
11586 * src/bison.s1:
11587 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
11588
115891996-05-12 Richard Stallman <rms@gnu.org>
11590
11591 * bison.simple:
11592 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
11593
115941996-05-11 Richard Stallman <rms@gnu.org>
11595
11596 * src/bison.s1 (__yy_memcpy):
11597 Really reorder the args, as was supposedly done on Feb 14 1995.
11598 (yyparse): Calls changed accordingly.
11599
116001996-05-11 Richard Stallman <rms@gnu.org>
11601
11602 * Makefile.in (dist): Don't use $(srcdir).
11603
11604 * bison.simple (__yy_memcpy):
11605 Really reorder the args, as was supposedly done on Feb 14 1995.
11606 (yyparse): Calls changed accordingly.
11607
116081996-01-27 Richard Stallman <rms@gnu.org>
11609
11610 * src/output.c (output_rule_data):
11611 Test YYERROR_VERBOSE in the conditional
11612 around the definition of ttyname.
11613
116141995-12-29 Richard Stallman <rms@gnu.org>
11615
11616 * src/bison.s1:
11617 Fix line numbers in #line commands.
11618
116191995-12-29 Richard Stallman <rms@gnu.org>
11620
11621 * bison.simple:
11622 Fix line numbers in #line commands.
11623
116241995-12-27 Richard Stallman <rms@gnu.org>
11625
11626 * src/bison.s1 (YYPARSE_PARAM_DECL):
11627 In C++, make it always null.
11628 (YYPARSE_PARAM_ARG): New macro.
11629 (yyparse): Use YYPARSE_PARAM_ARG.
11630
116311995-12-27 Richard Stallman <rms@gnu.org>
11632
11633 * bison.simple (YYPARSE_PARAM_DECL):
11634 In C++, make it always null.
11635 (YYPARSE_PARAM_ARG): New macro.
11636 (yyparse): Use YYPARSE_PARAM_ARG.
11637
116381995-11-29 Richard Stallman <rms@gnu.org>
11639
11640 * doc/bison.texinfo:
11641 Describe literal string tokens, %raw, %no_lines, %token_table.
11642
116431995-11-29 Daniel Hagerty <hag@gnu.org>
11644
11645 * doc/bison.texinfo: Fixed update date
11646
116471995-10-16 Richard Stallman <rms@gnu.org>
11648
11649 * src/version.c: Version 1.25.
11650
116511995-10-16 Richard Stallman <rms@gnu.org>
11652
11653 * NEWS: *** empty log message ***
11654
116551995-10-16 Richard Stallman <rms@gnu.org>
11656
11657 * doc/bison.1, doc/bison.rnh:
11658 Add new options.
11659
116601995-10-15 Richard Stallman <rms@gnu.org>
11661
11662 * src/vmsgetargs.c, src/getargs.c:
11663 Added -n, -k, and -raw switches.
11664 (noparserflag, toknumflag, rawtoknumflag): New variables.
11665
11666 * src/symtab.h (SALIAS):
11667 New #define for adding aliases to %token.
11668 (struct bucket): Added `alias' field.
11669
11670 * src/reduce.c (reduce_grammar):
11671 Revise error message.
11672 (print_notices): Remove final `.' from error message.
11673
11674 * src/reader.c (reader_output_yylsp):
11675 New function.
11676 (readgram): Use `#if 0' around code that accepted %command
11677 inside grammar rules: The documentation doesn't allow it,
11678 and it will fail since the %command processors scan for the next %.
11679 (parse_token_decl): Extended the %token
11680 declaration to allow a multi-character symbol as an alias.
11681 (parse_thong_decl): New function.
11682 (read_declarations): Added %thong declarations.
11683 (read_declarations): Handle NOOP to deal with allowing
11684 % declarations as another means to specify the flags.
11685 (readgram): Allow %prec prior to semantics embedded in a rule.
11686 (skip_to_char, read_declarations, copy_definition)
11687 (parse_token_decl, parse_start_decl, parse_type_decl)
11688 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
11689 (get_type_name, copy_guard, copy_action, readgram)
11690 (get_type, packsymbols): Revised most error messages.
11691 Changed `fatal' to `warnxxx' to avoid aborting for error.
11692 Revised and use multiple warnxxx functions to avoid using VARARGS1.
11693 (read_declarations): Improve the error message for
11694 an invalid character. Do not abort.
11695 (read_declarations, copy_guard, copy_action): Use
11696 printable_version to avoid unprintable characters in printed output.
11697 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
11698 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
11699 Allow the type of a non-terminal can be given
11700 more than once, as long as all specifications give the same type.
11701
11702 * src/output.c:
11703 (output_headers, output_trailers, output, output_gram)
11704 (output_rule_data): Implement noparserflag variable.
11705 Implement toknumflag variable.
11706 (output): Call reader_output_yylsp to output LTYPESTR.
11707
11708 * src/main.c (main):
11709 If reader sees an error, don't process the grammar.
11710 (fatals): Updated to not use VARARGS1.
11711 (printable_version, int_to_string, warn, warni, warns, warnss)
11712 (warnsss): New error reporting functions. Avoid abort for error.
11713
11714 * src/lex.h:
11715 Added THONG and NOOP for alias processing.
11716 Added SETOPT for the new code that allows setting options with %flags.
11717
11718 * src/lex.c:
11719 Include getopt.h. Add some extern decls.
11720 (safegetc): New function to deal with EOF gracefully.
11721 (literalchar); new function to deal with reading \ escapes.
11722 (lex): Use literalchar.
11723 (lex): Implemented "..." tokens.
11724 (literalchar, lex, parse_percent_token): Made tokenbuffer
11725 always contain the token. This includes growing the token
11726 buffer while reading an integer.
11727 (parse_percent_token): Replaced if-else statement with percent_table.
11728 (parse_percent_token): Added % declarations as another
11729 way to specify the flags -n, -l, and -r. Also added hooks for
11730 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
11731 major changes to files.c.
11732 (lex) Retain in the incoming stream a character following
11733 an incorrect '/'.
11734 (skip_white_space, lex): Revised most error messages
11735 and changed fatal to warn to avoid aborting.
11736 (percent_table): Added %thong declarations.
11737
11738 * src/gram.h: Comment changes.
11739
11740 * src/files.c (openfiles, open_extra_files, done):
11741 Add faction flag
11742 and actfile file. Handle noparserflag. Both for -n switch.
11743
11744 * src/conflicts.c (resolve_sr_conflict):
11745 Remove use of alloca.
11746
117471995-06-01 Jim Meyering <meyering@gnu.org>
11748
11749 * doc/bison.texinfo: *** empty log message ***
11750
117511995-05-06 Richard Stallman <rms@gnu.org>
11752
11753 * src/bison.s1: Comment change.
11754
117551995-05-06 Richard Stallman <rms@gnu.org>
11756
11757 * bison.simple: Comment change.
11758
117591995-05-03 Richard Stallman <rms@gnu.org>
11760
11761 * src/version.c: Version now 1.24.
11762
11763 * src/bison.s1: Change distribution terms.
11764
11765 * src/version.c: Version now 1.23.
11766
117671995-05-03 Richard Stallman <rms@gnu.org>
11768
11769 * doc/bison.texinfo:
11770 Rewrite "Conditions for Using Bison".
11771 Update version to 1.24.
11772
117731995-05-03 Richard Stallman <rms@gnu.org>
11774
11775 * bison.simple: Change distribution terms.
11776
117771995-02-23 Richard Stallman <rms@gnu.org>
11778
11779 * src/files.c: Test __VMS_POSIX as well as VMS.
11780
117811995-02-14 Jim Meyering <meyering@gnu.org>
11782
11783 * src/bison.s1 (__yy_memcpy):
11784 Renamed from __yy_bcopy to avoid
11785 confusion. Reverse FROM and TO arguments to be consistent with
11786 those of memcpy.
11787
117881995-02-14 Jim Meyering <meyering@gnu.org>
11789
11790 * bison.simple (__yy_memcpy):
11791 Renamed from __yy_bcopy to avoid
11792 confusion. Reverse FROM and TO arguments to be consistent with
11793 those of memcpy.
11794
117951994-11-10 David J. MacKenzie <djm@gnu.org>
11796
11797 * NEWS: reformat
11798
11799 * NEWS: New file.
11800
11801 * Makefile.in (DISTFILES): Include NEWS.
11802
11803 * Makefile.in (DISTFILES):
11804 Include install-sh, not install.sh.
11805
11806 * configure.in: Update to Autoconf v2 macro names.
11807
118081994-10-05 David J. MacKenzie <djm@gnu.org>
11809
11810 * Makefile.in: fix typo
11811
11812 * Makefile.in (prefix, exec_prefix):
11813 Let configure set them.
11814
118151994-09-28 David J. MacKenzie <djm@gnu.org>
11816
11817 * Makefile.in: Set datadir to $(prefix)/share.
11818
118191994-09-15 Richard Stallman <rms@gnu.org>
11820
11821 * src/bison.s1:
11822 Update copyright notice and GPL version.
11823
118241994-09-15 Richard Stallman <rms@gnu.org>
11825
11826 * bison.simple:
11827 Update copyright notice and GPL version.
11828
118291994-07-12 Richard Stallman <rms@gnu.org>
11830
11831 * src/reduce.c, src/reader.c:
11832 entered into RCS
11833
118341994-05-05 David J. MacKenzie <djm@gnu.org>
11835
11836 * Makefile.in: entered into RCS
11837
118381994-03-26 Richard Stallman <rms@gnu.org>
11839
11840 * src/bison.s1: entered into RCS
11841
118421994-03-26 Richard Stallman <rms@gnu.org>
11843
11844 * bison.simple: entered into RCS
11845
118461994-03-25 Richard Stallman <rms@gnu.org>
11847
11848 * src/main.c: entered into RCS
11849
118501994-03-24 Richard Stallman <rms@gnu.org>
11851
11852 * src/conflicts.c: entered into RCS
11853
118541994-01-02 Richard Stallman <rms@gnu.org>
11855
11856 * Makefile.in: *** empty log message ***
11857
118581993-11-21 Richard Stallman <rms@gnu.org>
11859
11860 * src/bison.s1: *** empty log message ***
11861
118621993-11-21 Richard Stallman <rms@gnu.org>
11863
11864 * doc/bison.texinfo: entered into RCS
11865
11866 * doc/bison.texinfo: *** empty log message ***
11867
118681993-11-21 Richard Stallman <rms@gnu.org>
11869
11870 * bison.simple: *** empty log message ***
11871
118721993-10-25 David J. MacKenzie <djm@gnu.org>
11873
11874 * doc/bison.texinfo: *** empty log message ***
11875
118761993-10-19 Richard Stallman <rms@gnu.org>
11877
11878 * src/bison.s1: *** empty log message ***
11879
118801993-10-19 Richard Stallman <rms@gnu.org>
11881
11882 * bison.simple: *** empty log message ***
11883
118841993-10-14 Richard Stallman <rms@gnu.org>
11885
11886 * src/bison.s1: *** empty log message ***
11887
118881993-10-14 Richard Stallman <rms@gnu.org>
11889
11890 * bison.simple: *** empty log message ***
11891
118921993-09-14 David J. MacKenzie <djm@gnu.org>
11893
11894 * doc/bison.texinfo: *** empty log message ***
11895
118961993-09-13 Noah Friedman <friedman@gnu.org>
11897
11898 * Makefile.in: *** empty log message ***
11899
119001993-09-10 Richard Stallman <rms@gnu.org>
11901
11902 * src/conflicts.c: *** empty log message ***
11903
11904 * src/system.h: entered into RCS
11905
119061993-09-10 Richard Stallman <rms@gnu.org>
11907
11908 * doc/bison.1: entered into RCS
11909
119101993-09-06 Noah Friedman <friedman@gnu.org>
11911
11912 * src/version.c: entered into RCS
11913
119141993-09-06 Noah Friedman <friedman@gnu.org>
11915
11916 * Makefile.in: *** empty log message ***
11917
119181993-07-30 David J. MacKenzie <djm@gnu.org>
11919
11920 * Makefile.in: *** empty log message ***
11921
119221993-07-24 Richard Stallman <rms@gnu.org>
11923
11924 * src/bison.s1: *** empty log message ***
11925
119261993-07-24 Richard Stallman <rms@gnu.org>
11927
11928 * bison.simple: *** empty log message ***
11929
119301993-07-08 David J. MacKenzie <djm@gnu.org>
11931
11932 * Makefile.in: *** empty log message ***
11933
119341993-07-04 Richard Stallman <rms@gnu.org>
11935
11936 * src/bison.s1: *** empty log message ***
11937
119381993-07-04 Richard Stallman <rms@gnu.org>
11939
11940 * bison.simple: *** empty log message ***
11941
119421993-06-26 David J. MacKenzie <djm@gnu.org>
11943
11944 * src/getargs.c: entered into RCS
11945
119461993-06-26 David J. MacKenzie <djm@gnu.org>
11947
11948 * doc/bison.texinfo: *** empty log message ***
11949
11950 * doc/bison.1: New file.
11951
119521993-06-25 Richard Stallman <rms@gnu.org>
11953
11954 * src/getargs.c: New file.
11955
119561993-06-16 Richard Stallman <rms@gnu.org>
11957
11958 * src/bison.s1: *** empty log message ***
11959
119601993-06-16 Richard Stallman <rms@gnu.org>
11961
11962 * bison.simple: *** empty log message ***
11963
119641993-06-03 Richard Stallman <rms@gnu.org>
11965
11966 * src/bison.s1: New file.
11967
119681993-06-03 Richard Stallman <rms@gnu.org>
11969
11970 * doc/bison.texinfo: *** empty log message ***
11971
119721993-06-03 Richard Stallman <rms@gnu.org>
11973
11974 * bison.simple: New file.
11975
119761993-05-19 Richard Stallman <rms@gnu.org>
11977
11978 * doc/bison.texinfo: New file.
11979
119801993-05-07 Noah Friedman <friedman@gnu.org>
11981
11982 * Makefile.in: *** empty log message ***
11983
119841993-04-28 Noah Friedman <friedman@gnu.org>
11985
11986 * src/reader.c: *** empty log message ***
11987
119881993-04-23 Noah Friedman <friedman@gnu.org>
11989
11990 * src/alloc.h: entered into RCS
11991
119921993-04-20 David J. MacKenzie <djm@gnu.org>
11993
11994 * src/version.c: *** empty log message ***
11995
11996 * src/files.c, src/allocate.c:
11997 entered into RCS
11998
11999 * src/reader.c: *** empty log message ***
12000
12001 * src/lex.c: entered into RCS
12002
12003 * src/conflicts.c: New file.
12004
12005 * src/symtab.c: entered into RCS
12006
12007 * src/alloc.h: New file.
12008
12009 * src/LR0.c: entered into RCS
12010
120111993-04-18 Noah Friedman <friedman@gnu.org>
12012
12013 * src/reader.c: New file.
12014
12015 * src/version.c: *** empty log message ***
12016
120171993-04-18 Noah Friedman <friedman@gnu.org>
12018
12019 * Makefile.in: *** empty log message ***
12020
120211993-04-17 Noah Friedman <friedman@gnu.org>
12022
12023 * Makefile.in: *** empty log message ***
12024
120251993-04-15 Richard Stallman <rms@gnu.org>
12026
12027 * src/main.c, src/files.c:
12028 New file.
12029
120301993-04-15 Noah Friedman <friedman@gnu.org>
12031
12032 * configure.in: entered into RCS
12033
12034 * configure.in: *** empty log message ***
12035
12036 * configure.in: New file.
12037
120381993-04-14 Richard Stallman <rms@gnu.org>
12039
12040 * Makefile.in: New file.
12041
120421993-04-13 Richard Stallman <rms@gnu.org>
12043
12044 * src/version.c: New file.
12045
120461993-03-25 Richard Stallman <rms@gnu.org>
12047
12048 * src/output.c: entered into RCS
12049
120501992-09-25 Richard Stallman <rms@gnu.org>
12051
12052 * configure.bat: entered into RCS
12053
120541992-06-22 Richard Stallman <rms@gnu.org>
12055
12056 * src/vmsgetargs.c: entered into RCS
12057
120581992-06-22 Richard Stallman <rms@gnu.org>
12059
12060 * doc/bison.rnh: entered into RCS
12061
120621992-04-20 David J. MacKenzie <djm@gnu.org>
12063
12064 * README: entered into RCS
12065
120661992-01-22 Richard Stallman <rms@gnu.org>
12067
12068 * src/machine.h: entered into RCS
12069
120701991-12-21 Richard Stallman <rms@gnu.org>
12071
12072 * src/lalr.c, src/closure.c:
12073 entered into RCS
12074
120751991-12-20 Richard Stallman <rms@gnu.org>
12076
12077 * src/state.h: entered into RCS
12078
120791991-12-18 Richard Stallman <rms@gnu.org>
12080
12081 * src/print.c, src/nullable.c, src/derives.c:
12082 entered into RCS
12083
120841991-11-03 David J. MacKenzie <djm@gnu.org>
12085
12086 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
12087 entered into RCS
12088
120891988-09-09 Richard Stallman <rms@gnu.org>
12090
12091 * src/bison.hairy: entered into RCS
12092
120931987-12-16 Richard Stallman <rms@gnu.org>
12094
12095 * REFERENCES: entered into RCS
dc546b0f 12096
f294a2c2
AD
12097-----
12098
33167b8b 12099Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
dd0e0635 121001998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
f294a2c2 12101
33167b8b 12102This file is part of Bison, the GNU Compiler Compiler.
f294a2c2 12103
33167b8b 12104Bison is free software; you can redistribute it and/or modify
f294a2c2
AD
12105it under the terms of the GNU General Public License as published by
12106the Free Software Foundation; either version 2, or (at your option)
12107any later version.
12108
33167b8b 12109Bison is distributed in the hope that it will be useful,
f294a2c2
AD
12110but WITHOUT ANY WARRANTY; without even the implied warranty of
12111MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12112GNU General Public License for more details.
12113
12114You should have received a copy of the GNU General Public License
33167b8b 12115along with Bison; see the file COPYING. If not, write to
f294a2c2
AD
12116the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
12117Boston, MA 02111-1307, USA.