]> git.saurik.com Git - bison.git/blame - ChangeLog
Let nondeterministic skeletons be usable with deterministic
[bison.git] / ChangeLog
CommitLineData
ea99527d
AD
12002-10-13 Akim Demaille <akim@epita.fr>
2
3 Let nondeterministic skeletons be usable with deterministic
4 tables.
5
6 With the patch, GAWK compiled by GCC without -O2 passes its test
7 suite using a GLR parser driven by LALR tables. It fails with -O2
8 because `struct stat' gives two different answers on my machine:
9 88 (definition of an auto var) and later 96 (memset on this var).
10 Hence the stack is badly corrumpted. The headers inclusion is to
11 blame: if I move the awk.h inclusion before GLR's system header
12 inclusion, the two struct stat have the same size.
13
14 * src/tables.c (pack_table): Always create conflict_table.
15 (token_actions): Always create conflict_list.
16 * data/glr.c (YYFLAG): Remove, unused.
17
f377f69f
AD
182002-10-13 Akim Demaille <akim@epita.fr>
19
20 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
21 (O0FLAGS): New.
22 (VALGRIND, GXX): New.
23 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
24 * tests/bison.in: Run $PREBISON a pre-command.
25 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
26 (maintainer-check-g++): New.
27 * Makefile.am (maintainer-check): New.
28
2a1fe6ed
AD
292002-10-13 Akim Demaille <akim@epita.fr>
30
31 * data/glr.c: Formatting changes.
32 Tweak some trace messages to match yacc.c's.
33
f50adbbd
AD
342002-10-13 Akim Demaille <akim@epita.fr>
35
36 GLR parsers sometimes raise parse errors instead of performing the
37 default reduction.
38 Reported by Charles-Henry de Boysson.
39
40 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
41 check the length of the traces when %glr.
42 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
43 GLR's traces.
44 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
45 Test GLR parsers.
46 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
47 (yyltype): Remove the yy prefix from the member names.
48 (yytable): Complete its comment.
49 (yygetLRActions): Map error action number from YYTABLE from
50 YYTABLE_NINF to 0.
51 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
52 (which was a bug: it should have been YYTABEL_NINF, and yet it was
53 not satisfying as we could compare an YYACTION computed from
54 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
55 only value for error actions.
56 (yyreportParseError): In verbose parse error messages, don't issue
57 `error' in the list of expected tokens.
58 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
59 next action to perform to match glr.c's decoding.
60 (yytable): Complete its comment.
61
bcbad5b9
PE
622002-10-13 Paul Eggert <eggert@twinsun.com>
63
64 Fix problem reported by Henrik Grubbstroem in
65 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001670.html>:
66 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
67 because the Bison parser reads the second action before reducing
68 the first one.
69 * src/scan-gram.l (rule_length): New static var.
70 Use it to keep track of the rule length in the scanner, since
71 we can't expect the parser to be in lock-step sync with the scanner.
72 (handle_action_dollar, handle_action_at): Use this var.
73 * tests/actions.at (Exotic Dollars): Test for the problem.
74
14904b89
PE
752002-10-12 Paul Eggert <eggert@twinsun.com>
76
1fe611e5
PE
77 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
78 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
79 Include <sys/time.h> when checking for clock_t and struct tms.
80 Use same include order as source.
81 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
82 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001674.html>.
83
84 * lib/timevar.c: Update copyright date and clarify comments.
85 (get_time) [IN_GCC]: Keep the GCC version for reference.
86
87 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
88 GCC version as of today, then merge Bison's changes.
89 Change "GCC" to "Bison" in copyright notice. timevar.def's
90 author is Akim, so change that too.
91
98194095
PE
92 * src/reader.c (grammar_current_rule_check):
93 Don't worry about the default action if $$ is untyped.
94 Prevents bogus warnings reported by Jim Gifford in
95 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001673.html>.
96
14904b89
PE
97 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
98 * data/glr.c, data/lalr1.cc, data/yacc.c:
99 Output token definitions before the first part of user declarations.
100 Fixes compatibility problem reported by Jim Gifford for kbd in
101 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001672.html>.
102
ff6dca18
PE
1032002-10-11 Paul Eggert <eggert@twinsun.com>
104
105 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
106 (yyparse): here. This undoes some of the 2002-07-25 change.
107 Compatibility problem reported by Ralf S. Engelschall with
108 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
109
eb714592
AD
1102002-10-11 Akim Demaille <akim@epita.fr>
111
112 * tests/regression.at Characters Escapes): New.
113 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
114 characters.
115 Reported by Jan Nieuwenhuizen.
116
b7195100
AD
1172002-10-11 Akim Demaille <akim@epita.fr>
118
119 * po/id.po: New.
120
f28a0f2d
PE
1212002-10-10 Paul Eggert <eggert@twinsun.com>
122
123 Portability fixes for bitsets; this also avoids several GCC
124 warnings.
125
126 * lib/abitset.c: Include <stddef.h>, for offsetof.
127 * lib/lbitset.c: Likewise.
128
129 * lib/abitset.c (abitset_bytes): Return a size that is aligned
130 properly for vectors of objects. Do not assume that adding a
131 header size to a multiple of a word size yields a value that is
132 properly aligned for the whole union.
133 * lib/bitsetv.c (bitsetv_alloc): Likewise.
134
135 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
136 unique names for structures.
137 * lib/ebitset.c (ebitset_bytes): Likewise.
138 * lib/lbitset.c (lbitset_bytes): Likewise.
139
140 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
141 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
142 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
143 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
144 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
145 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
146 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
147 to improve the type-checking that GCC can do.
148 * lib/bitset.c (bitset_op4_cmp): Likewise.
149 * lib/bitset_stats.c (bitset_stats_count,
150 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
151 bitset_stats_copy, bitset_stats_disjoint_p,
152 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
153 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
154 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
155 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
156 bitset_stats_and_or_cmp, bitset_stats_andn_or,
157 bitset_stats_andn_or_cmp, bitset_stats_or_and,
158 bitset_stats_or_and_cmp): Likewise.
159 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
160 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
161 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
162 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
163
164 * lib/abitset.h: Include bitset.h, not bbitset.h.
165 * lib/ebitset.h: Likewise.
166 * lib/lbitset.h: Likewise.
167
168 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
169 All instances of parameters of type enum bitset_opts are now of
170 type enum_bitset_opts, to conform to the C Standard, and similarly
171 for enum_bitset_type.
172 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
173 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
174
175 Do not use "struct bitset_struct" to mean different things in
176 different modules. Not only is this confusing, it violates
177 the C Standard, which requires that structure types in different
178 modules must be compatible if one is to be passed to the other.
179 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
180 All instances of "struct bitset_struct *" replaced with "bitset".
181 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
182 (union bitset_union, struct abitset_struct, struct ebitset_struct,
183 struct lbitset_struct, struct bitset_stats_struct): New types.
184 All uses of struct bitset_struct changed to union bitset_union,
185 etc.
186 * lib/abitset.c (struct abitset_struct, abitset,
187 struct bitset_struct): Remove.
188 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
189 struct bitset_struct): Remove.
190 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
191 bitset_struct): Remove.
192 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
193 Likewise.
194
195 Do not call a function of type T using a call that assumes the
196 function is of a different type U. Standard C requires that a
197 function must be called with a type that is compatible with its
198 definition.
199 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
200 New decls.
201 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
202 New functions.
203 * lib/ebitset.c (PFV): Remove.
204 * lib/lbitset.c (PFV): Likewise.
205 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
206 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
207 decls.
208 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
209 (ebitset_vtable): Use them.
210 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
211 lbitset_xor): New functions.
212 (lbitset_vtable): Use them.
213
214 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
215 Declare.
216
217 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
218 GCC warning.
219 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
220 Use offsetof, for simplicity.
221
6fbe4984
PE
2222002-10-06 Paul Eggert <eggert@twinsun.com>
223
224 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
225 the same width as int. This reapplies a hunk of the 2002-08-12 patch
226 <http://mail.gnu.org/pipermail/bison-patches/2002-August/001111.html>,
227 which was inadvertently undone by the 2002-09-30 patch.
228 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
229 the same width as int.
230
420f93c8
PE
2312002-10-04 Paul Eggert <eggert@twinsun.com>
232
233 Version 1.50.
234
235 * configure.ac (AC_INIT), NEWS: Increment version number.
236
237 * doc/bison.texinfo: Minor spelling, grammar, and white space
238 fixes.
239 (Symbols): Mention that any negative value returned from yylex
240 signifies end-of-input. Warn about negative chars. Mention
241 the portable Standard C character set.
242
243 The GNU coding standard says CFLAGS and YFLAGS are reserved
244 for the installer to set.
245 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
246 * src/Makefile.am (AM_CFLAGS): Likewise.
247 (AM_YFLAGS): Renamed from YFLAGS.
248
249 Fix some MAX and MIN problems.
250 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
251 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
252 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
253 * src/reader.c (reader): Use it.
254
255 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
256 POSIX 1003.1-2001 has removed fgrep.
257
2582002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
259
260 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
261 interpreted as signed.
262 * lib/ebitset.c (ebitset_list): Fix bug.
263
ff68026d
PE
2642002-10-01 Paul Eggert <eggert@twinsun.com>
265
266 More fixes for 64-bit hosts and large bitsets.
267
268 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
269 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
270 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
271 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
272 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
273 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
274 bitset_count_): Likewise.
275 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
276 bitset_first, bitset_last): Likewise.
277 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
278 bitset_stats_list_reverse, bitset_stats_size,
279 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
280 Likewise.
281 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
282 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
283 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
284 bitsetv_reflexive_transitive_closure): Likewise.
285 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
286 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
287 Likewise.
288 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
289 Likewise.
420f93c8 290
ff68026d
PE
291 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
292 Use size_t, not unsigned int, to count bytes.
293 * lib/abitset.h (abitset_bytes): Likewise.
294 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
295 Likewise.
296 * lib/bitset.h (bitset_bytes): Likewise.
297 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
298 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
299 * lib/bitsetv.c (bitsetv_alloc): Likewise.
300 * lib/ebitset.c (ebitset_bytes): Likewise.
301 * lib/ebitset.h (ebitset_bytes): Likewise.
302 * lib/lbitset.c (lbitset_bytes): Likewise.
303 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 304
ff68026d
PE
305 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
306 abitset_subset_p, abitset_disjoint_p, abitset_and,
307 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
308 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
309 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
310 abitset_or_and, abitset_or_and_cmp):
311 Use bitset_windex instead of unsigned int.
312 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
313 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
314 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
315 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
316 Likewise.
317 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 318
ff68026d
PE
319 * lib/bitset.c (bitset_print):
320 Use proper printf formats for widths of integer types.
321 * lib/bitset_stats.c (bitset_percent_histogram_print,
322 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
323 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
324 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
325 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 326
ff68026d
PE
327 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
328 BITSET_SIZE_MAX): New macros.
329 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
330 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
331 to BITSET_WINDEX_MAX.
332
333 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
334 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
335 since we now return the bitset_bindex type (not int).
336
337 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
338 when computing sizes.
339 * lib/ebitset.c (ebitset_elts_grow): Likewise.
340
341 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
342 and avoid cast to unsigned.
343
6aa452a6
AD
3442002-09-30 Akim Demaille <akim@epita.fr>
345
346 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
347 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
348 Updates from Michael Hayes.
349
927f7817
AD
3502002-09-30 Art Haas <ahaas@neosoft.com>
351
352 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
353 invocations.
354 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
355 defined.
356
9738f41e
AD
3572002-09-27 Akim Demaille <akim@epita.fr>
358
359 Version 1.49c.
360
a5c75d7f
AD
3612002-09-27 Akim Demaille <akim@epita.fr>
362
363 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
364 (Because of AC_LIBSOURCE).
365
8280e179
AD
3662002-09-27 Akim Demaille <akim@epita.fr>
367
368 Playing with Autoscan.
369
370 * configure.ac: Remove the old LIBOBJ tweaks.
371 (AC_REPLACE_FUNCS): Add strrchr and strtol.
372 * lib/strrchr.c: New.
373 * lib/strtol.c: New, from the Coreutils 4.5.1.
374
ae64af35
AD
3752002-09-27 Akim Demaille <akim@epita.fr>
376
377 Playing with Autoscan.
378
379 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
380 * lib/Makefile.am (libbison_a_SOURCES): No longer include
381 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
382 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
383 Coreutils 4.5.1.
384
d1a1114f
AD
3852002-09-24 Akim Demaille <akim@epita.fr>
386
387 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
388 (Frequently Asked Questions, Parser Stack Overflow): New.
389
b906441c
AD
3902002-09-13 Akim Demaille <akim@epita.fr>
391
392 Playing with autoscan.
393
394 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
395 * src/files.c (skeleton_find): Remove, unused.
396 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
397 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
398
bd701811
AD
3992002-09-13 Akim Demaille <akim@epita.fr>
400
401 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
402 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
403
e0a13e7b
AD
4042002-09-13 Akim Demaille <akim@epita.fr>
405
406 * configure.ac: Require 2.54.
407 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
408 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
409 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
410 Remove, provided by Autoconf macros.
411
c97011bf
AD
4122002-09-12 Akim Demaille <akim@epita.fr>
413
414 * m4/prereq.m4: Update, from Coreutils 4.5.1.
415
d862b1be
AD
4162002-09-12 Akim Demaille <akim@epita.fr>
417
418 * m4/prereq.m4: Update, from Fileutils 4.1.5.
419 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
420 Reported by Martin Mokrejs.
421
3d38c03a
AD
4222002-09-10 Akim Demaille <akim@epita.fr>
423
424 * src/parse-gram.y: Associate a human readable string to each
425 token type.
426 * tests/regression.at (Invalid inputs): Adjust.
427
b6347355
AD
4282002-09-10 Gary V. Vaughan <gary@gnu.org>
429
430 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
431 with an Autoconf-2.5x style configure.ac.
432
09ba4ab2
PE
4332002-09-06 Paul Eggert <eggert@twinsun.com>
434
435 * doc/bison.texinfo (Conditions): Make explicit that the GPL
436 exception applies only to yacc.c. This is a modification of a
437 patch originally suggested by Akim Demaille.
438
21846f69
AD
4392002-09-06 Akim Demaille <akim@epita.fr>
440
09ba4ab2
PE
441 * data/c.m4 (b4_copyright): Move the GPL exception comment from
442 here to...
443 * data/yacc.c: here.
444
21846f69
AD
445 * data/lalr1.cc (struct yyltype): Don't define it, since we use
446 LocationType.
447 (b4_ltype): Default to yy::Location from location.hh.
448
c0ad8bf3
AD
4492002-09-04 Jim Meyering <jim@meyering.net>
450
451 * data/yacc.c: Guard the declaration of yytoknum also with
452 `#ifdef YYPRINT', so it is declared only when used.
453
3a93251e
AD
4542002-09-04 Akim Demaille <akim@epita.fr>
455
456 * configure.in: Rename as...
457 * configure.ac: this.
458 Bump to 1.49c.
459
427c0dda
AD
4602002-09-04 Akim Demaille <akim@epita.fr>
461
462 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
463 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
464 translate maintainer only messages.
465
6a254321
PE
4662002-08-12 Paul Eggert <eggert@twinsun.com>
467
645e30d1
PE
468 Version 1.49b.
469
6a254321
PE
470 * Makefile.am (SUBDIRS): Remove intl.
471 (DISTCLEANFILES): Remove.
472 * NEWS: Mention that GNU M4 is now required. Clarify what is
473 meant by "larger grammars". Mention the pt_BR translation.
474 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
475 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
476 Bump version from 0.11.2 to 0.11.5.
477 (BISON_PREREQ_STAGE): Remove.
478 (AM_GNU_GETTEXT): Use external gettext.
479 (AC_OUTPUT): Remove intl/Makefile.
480
481 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
482
483 * data/glr.c: Include string.h, for strlen.
484 (yyreportParseError): Use size_t for yysize.
485 (yy_yypstack): No longer nested inside yypstates, as nested
486 functions are not portable. Do not assume size_t is the
487 same width as int.
488 (yypstates): Do not assume that ptrdiff_t is the same width
489 as int, and similarly for yyposn and YYINDEX.
490
491 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
492
493 * lib/Makefile.am (INCLUDES): Do not include from the intl
494 directory, which has been removed.
495 * src/Makefile.am (INCLUDES): Likewise.
496
497 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
498 (bitsets_sources, additional_bitsets_sources, timevars_sources):
499 New vars.
500
501 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
502 * tests/Makefile.am (EXTRA_DIST): Likewise.
503
504 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
505 Do not assume that bitset_windex is the same width as unsigned.
506
507 * lib/abitset.c (abitset_unused_clear): Do not assume that
508 bitset_word is the same width as int.
509 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
510 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
511 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
512 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
513 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
514
515 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
516 portability to one's complement hosts!).
517 * lib/ebitset.c (ebitset_op1): Likewise.
518 * lib/lbitset.c (lbitset_op1): Likewise.
519
520 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
521 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
522 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
523 Sync with fileutils.
524 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
525 lib/gettext.h: Sync with diffutils.
526
527 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
528 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
529
530 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
531 PROTOTYPES to check for prototypes, and "defined __STDC__" to
532 check for void *.
533
534 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
535 size_t; the old version tried to do this but casted improperly.
536 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
537 (bitset_test): Now returns int, not unsigned long.
538
539 * lib/bitset_stats.c: Include "gettext.h".
540 (_): New macro.
541 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
542 name locals "index", as it generates unnecessary warnings on some
543 hosts that have an "index" function.
544
545 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
546 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
547 they need translation.
548 * src/LR0.c (state_list_append, new_itemsets, get_state,
549 append_states, generate_states): Likewise.
550 * src/assoc.c (assoc_to_string): Likewise.
551 * src/closure.c (print_closure, set_firsts, closure): Likewise.
552 * src/gram.c (grammar_dump): Likewise.
553 * src/injections.c (injections_compute): Likewise.
554 * src/lalr.c (lookaheads_print): Likewise.
555 * src/relation.c (relation_transpose): Likewise.
556 * src/scan-gram.l: Likewise.
557 * src/tables.c (table_grow, pack_vector): Likewise.
558
559 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
560 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
561 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
562 * m4/mbstate_t.m4: Sync with fileutils.
563 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
564
565 * po/LINGUAS: Add pt_BR.
566 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
567 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
568 lib/timevar.c.
569 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
570 manual recommends.
571 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
572
573 * src/complain.c (strerror_r): Remove decl; not needed.
574 (strerror): Use same pattern as ../lib/error.c.
575
576 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
577
578 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
579
580 * src/main.c (main): Cast result of bindtextdomain and textdomain
581 to void, to avoid a GCC warning when --disable-nls is in effect.
582
583 * src/scan-gram.l: Use strings rather than escapes when possible,
584 to minimize the number of warnings from xgettext.
585 (handle_action_dollar, handle_action_at): Don't use isdigit,
586 as it mishandles negative chars and it may not work as expected
587 outside the C locale.
588
589 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
590 this is a GCC extension and is not portable to other compilers.
591
592 * src/system.h (alloca): Use same pattern as ../lib/error.c.
593 Do not include <ctype.h>; no longer needed.
594 Do not include <malloc.h>; no longer needed (and generates
595 warnings on OpenBSD 3.0).
596
597 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
598 it's not portable.
599
600 * tests/regression.at: Do not use 'cc -c input.c -o input';
601 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
602
603 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
604 exit status as failure, not just exit status 1. Sun C exits
605 with status 2 sometimes.
606
607 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
608 Use it for the two large tests.
609
c8f002c7
AD
6102002-08-02 Akim Demaille <akim@epita.fr>
611
612 * src/conflicts.c (conflicts_output): Don't output rules never
613 reduced here, since anyway that computation doesn't work.
614 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
615 (rule_useless_p, rule_never_reduced_p): New.
616 (grammar_rules_partial_print): Use a filter instead of a range.
617 Display the title only if needed.
618 (grammar_rules_print): Adjust.
619 (grammar_rules_never_reduced_report): New.
620 * src/tables.c (action_row): Move the computation of rules never
621 reduced to...
622 (token_actions): here.
623 * src/main.c (main): Make the parser before making the report, so
624 that rules never reduced are computed.
625 Call grammar_rules_never_reduced_report.
626 * src/print.c (print_results): Report rules never reduced.
627 * tests/conflicts.at, tests/reduce.at: Adjust.
628
cd08e51e
AD
6292002-08-01 Akim Demaille <akim@epita.fr>
630
631 Instead of attaching lookaheads and duplicating the rules being
632 reduced by a state, attach the lookaheads to the reductions.
633
634 * src/state.h (state_t): Remove the `lookaheads',
635 `lookaheads_rule' member.
636 (reductions_t): Add a `lookaheads' member.
637 Use a regular array for the `rules'.
638 * src/state.c (reductions_new): Initialize the lookaheads member
639 to 0.
640 (state_rule_lookaheads_print): Adjust.
641 * src/state.h, src/state.c (state_reductions_find): New.
642 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
643 (count_rr_conflicts): Adjust.
644 * src/lalr.c (LArule): Remove.
645 (add_lookback_edge): Adjust.
646 (state_lookaheads_count): New.
647 (states_lookaheads_initialize): Merge into...
648 (initialize_LA): this.
649 (lalr_free): Adjust.
650 * src/main.c (main): Don't free nullable and derives too early: it
651 is used by --verbose.
652 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
653
bb0027a9
AD
6542002-08-01 Akim Demaille <akim@epita.fr>
655
656 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
657 `rule_number_t**'.
658 (set_derives, free_derives): Rename as...
659 (derives_compute, derives_free): this.
660 Adjust all dependencies.
661 * src/nullable.c (set_nullable, free_nullable): Rename as...
662 (nullable_compute, nullable_free): these.
663 (rule_list_t): Store rule_t *, not rule_number_t.
664 * src/state.c (state_rule_lookaheads_print): Directly compare rule
665 pointers, instead of their numbers.
666 * src/main.c (main): Call nullable_free, and derives_free earlier,
667 as they were lo longer used.
668
3325ddc4
AD
6692002-08-01 Akim Demaille <akim@epita.fr>
670
671 * lib/timevar.c (get_time): Include children time.
672 * src/lalr.h (LA, LArule): Don't export them: used with the
673 state_t.
674 * src/lalr.c (LA, LArule): Static.
675 * src/lalr.h, src/lalr.c (lalr_free): New.
676 * src/main.c (main): Call it.
677 * src/tables.c (pack_vector): Check whether loc is >= to the
678 table_size, not >.
679 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
680 (tables_generate): do it, since that's also it which allocates
681 them.
682 Don't free LA and LArule, main does.
683
c6f1a33c
AD
6842002-07-31 Akim Demaille <akim@epita.fr>
685
686 Separate parser tables computation and output.
687
688 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
689 (conflict_list, conflict_list_cnt, table, check, table_ninf)
690 (yydefgoto, yydefact, high): Move to...
691 * src/tables.h, src/tables.c: here.
692 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
693 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
694 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
695 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
696 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
697 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
698 (action_row, save_row, token_actions, save_column, default_goto)
699 (goto_actions, sort_actions, matching_state, pack_vector)
700 (table_ninf_remap, pack_table, prepare_actions): Move to...
701 * src/tables.c: here.
702 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
703 * src/output.c (token_actions, output_base, output_conflicts)
704 (output_check): Merge into...
705 (prepare_actions): this.
706 (actions_output): Rename as...
707 (user_actions_output): this.
708 * src/main.c (main): Call tables_generate and tables_free.
709
1509d42f
AD
7102002-07-31 Akim Demaille <akim@epita.fr>
711
712 Steal GCC's --time-report support.
713
714 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
715 stolen/adjusted from GCC.
716 * m4/stage.m4: Remove time related checks.
717 * m4/timevar.m4: New.
718 * configure.in: Adjust.
719 * src/system.h: Adjust to using timevar.h.
720 * src/getargs.h, src/getargs.c: Support trace_time for
721 --trace=time.
722 * src/main.c (stage): Remove.
723 (main): Replace `stage' invocations with timevar calls.
724 * src/output.c: Insert pertinent timevar calls.
725
273a74fa
AD
7262002-07-31 Akim Demaille <akim@epita.fr>
727
728 Let --trace have arguments.
729
730 * src/getargs.h (enum trace_e): New.
731 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
732 (long_options, short_options): --trace/-T takes an optional
733 argument.
734 Change all the uses of trace_flag to reflect the new flags.
735 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
736
737 Strengthen `stage' portability.
738
739 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
740 * configure.in: Use it.
741 Don't check for malloc.h and sys/times.h.
742 * src/system.h: Include them when appropriate.
743 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
744 times and struct tms are available.
745
217598da
AD
7462002-07-30 Akim Demaille <akim@epita.fr>
747
748 In verbose parse error message, don't report `error' as an
749 expected token.
750 * tests/actions.at (Printers and Destructors): Adjust.
751 * tests/calc.at (Calculator $1): Adjust.
752 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
753 error message, do not report the parser accepts the error token in
754 that state.
755
52489d44
AD
7562002-07-30 Akim Demaille <akim@epita.fr>
757
758 Normalize conflict related messages.
759
760 * src/complain.h, src/complain.c (warn, complain): New.
761 * src/conflicts.c (conflicts_print): Use them.
762 (conflict_report_yacc): New, extracted from...
763 (conflicts_print): here.
764 * tests/conflicts.at, tests/existing.at: Adjust.
765
e8832397
AD
7662002-07-30 Akim Demaille <akim@epita.fr>
767
768 Report rules which are never reduced by the parser: those hidden
769 by conflicts.
770
771 * src/LR0.c (save_reductions): Don't make the final state too
772 different: save its reduction (accept) instead of having a state
773 without any action (no shift or goto, no reduce).
774 Note: the final state is now a ``regular'' state, i.e., the
775 parsers now contain `reduce 0' as default reduction.
776 Nevertheless, since they decide to `accept' when yystate =
777 final_state, they still will not reduce rule 0.
778 * src/print.c (print_actions, print_reduction): Adjust.
779 * src/output.c (action_row): Track reduced rules.
780 (token_actions): Report rules never reduced.
781 * tests/conflicts.at, tests/regression.at: Adjust.
782
caf23d24
AD
7832002-07-30 Akim Demaille <akim@epita.fr>
784
785 `stage' was accidently included in a previous patch.
786 Initiate its autoconfiscation.
787
788 * configure.in: Look for malloc.h and sys/times.h.
789 * src/main.c (stage): Adjust.
790 Report only when trace_flag.
791
640748ee
AD
7922002-07-29 Akim Demaille <akim@epita.fr>
793
794 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
795 state_number_t.
796 (errs_t): symbol_t*, not symbol_number_t.
797 (reductions_t): rule_t*, not rule_number_t.
798 (FOR_EACH_SHIFT): New.
799 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
800 * src/print.c, src/print_graph.c: Adjust.
801
88bce5a2
AD
8022002-07-29 Akim Demaille <akim@epita.fr>
803
804 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
805
806 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
807 (endtoken, accept): these.
808 * src/reader.c (reader): Set endtoken's default tag to "$end".
809 Set undeftoken's tag to "$undefined" instead of "$undefined.".
810 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
811 Adjust.
812
1bfb97db
AD
8132002-07-29 Akim Demaille <akim@epita.fr>
814
815 * src/reduce.c (reduce_grammar): When the language is empty,
816 complain about the start symbol, not the axiom.
817 Use its location.
818 * tests/reduce.at (Empty Language): New.
819
fc5734fe
AD
8202002-07-26 Akim Demaille <akim@epita.fr>
821
822 * src/reader.h, src/reader.c (gram_error): ... can't get
823 yycontrol without making too strong assumptions on the parser
824 itself.
825 * src/output.c (prepare_tokens): Use the real 0th value of
826 token_translations instead of `0'.
827 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
828 visible here.
829 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
830 for the time being: %locations ought to provide it to yyerror.
831
3650b4b8
AD
8322002-07-25 Akim Demaille <akim@epita.fr>
833
834 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
835 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
836 * tests/regression.at (Web2c Actions): Adjust.
837
4b3d3a8e
AD
8382002-07-25 Akim Demaille <akim@epita.fr>
839
840 Stop storing rules from 1 to nrules + 1.
841
842 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
843 * src/nullable.c, src/output.c, src/print.c, src/reader.c
844 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
845 Iterate from 0 to nrules.
846 Use rule_number_as_item_number and item_number_as_rule_number.
847 Adjust to `derive' now containing possibly 0.
848 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
849 Handle the `- 1' part in rule numbers from/to item numbers.
850 * src/conflicts.c (log_resolution): Fix the message which reversed
851 shift and reduce.
852 * src/output.c (action_row): Initialize default_rule to -1.
853 (token_actions): Adjust.
854 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
855 expected output.
856 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
857
4a2a22f4
AD
8582002-07-25 Akim Demaille <akim@epita.fr>
859
860 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
861 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
862 (b4_c_knr_arg_decl): New.
863 * data/yacc.c: Use it to define yysymprint, yydestruct, and
864 yyreport_parse_error.
865
b8df3223
AD
8662002-07-25 Akim Demaille <akim@epita.fr>
867
868 * data/yacc.c (yyreport_parse_error): New, extracted from...
869 (yyparse): here.
870 (yydestruct, yysymprint): Move above yyparse.
871 Be K&R compliant.
872
a762e609
AD
8732002-07-25 Akim Demaille <akim@epita.fr>
874
875 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
876 replace...
877 (b4_sint_type, b4_uint_type): these.
878 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
879 * tests/regression.at (Web2c Actions): Adjust.
880
12b0043a
AD
8812002-07-25 Akim Demaille <akim@epita.fr>
882
883 * src/gram.h (TIEM_NUMBER_MAX): New.
884 (item_number_of_rule_number, rule_number_of_item_number): Rename
885 as...
886 (rule_number_as_item_number, item_number_as_rule_number): these.
887 Adjust dependencies.
888 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
889 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
890 (symbol_number_to_vector_number): New.
891 (order): Of vector_number_t* type.
892 (base_t, BASE_MAX, BASE_MIN): New.
893 (froms, tos, width, pos, check): Of base_t type.
894 (action_number_t, ACTION_MIN, ACTION_MAX): New.
895 (actrow): Of action_number_t type.
896 (conflrow): Of unsigned int type.
897 (table_ninf, base_ninf): New.
898 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
899 (muscle_insert_int_table, muscle_insert_base_table)
900 (muscle_insert_rule_number_table): New.
901 (prepare_tokens): Output `toknum' as int_table.
902 (action_row): Returns a rule_number_t.
903 Use ACTION_MIN, not SHRT_MIN.
904 (token_actions): yydefact is rule_number_t*.
905 (table_ninf_remap): New.
906 (pack_table): Use it for `base' and `table'.
907 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
908 replaced with...
909 (YYPACT_NINF, YYTABLE_NINF): these.
910 (yypact, yytable): Compute their types instead of hard-coded
911 `short'.
912 * tests/regression.at (Web2c Actions): Adjust.
913
5dde258a
AD
9142002-07-19 Akim Demaille <akim@epita.fr>
915
916 * src/scan-gram.l (id): Can start with an underscore.
917
a945ec39
AD
9182002-07-16 Akim Demaille <akim@epita.fr>
919
920 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
921 Adjust all former `associativity' dependencies.
922 * src/symtab.c (symbol_new): Default associativity is `undef', not
923 `right'.
924 (symbol_check_alias_consistence): Adjust.
925
fae437e8
AD
9262002-07-09 Akim Demaille <akim@epita.fr>
927
928 * doc/bison.texinfo: Properly set the ``header'' part.
929 Use @dircategory ``GNU programming tools'' as per Texinfo's
930 documentation.
931 Use @copying.
932
1a715ef2
AD
9332002-07-09 Akim Demaille <akim@epita.fr>
934
935 * lib/quotearg.h: Protect against multiple inclusions.
936 * src/location.h (location_t): Add a `file' member.
937 (LOCATION_RESET, LOCATION_PRINT): Adjust.
938 * src/complain.c (warn_at, complain_at, fatal_at): Drop
939 `error_one_per_line' support.
940
a5d50994
AD
9412002-07-09 Akim Demaille <akim@epita.fr>
942
943 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
944 * src/reader.c (lineno): Remove.
945 Adjust all dependencies.
946 (get_merge_function): Take a location and use complain_at.
947 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
948 * tests/regression.at (Invalid inputs, Mixing %token styles):
949 Adjust.
950
b275314e
AD
9512002-07-09 Akim Demaille <akim@epita.fr>
952
953 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
954 recovery rule, and forbid extensions when --yacc.
955 (gram_error): Use complain_at.
956 * src/reader.c (reader): Exit if there were parse errors.
957
865b9df1
AD
9582002-07-09 Akim Demaille <akim@epita.fr>
959
960 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
961 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
962 Reported by R Blake <blakers@mac.com>.
963
c76e14da
AD
9642002-07-09 Akim Demaille <akim@epita.fr>
965
966 * data/yacc.c: Output the copyright notive in the header.
967
7db2ed2d
AD
9682002-07-03 Akim Demaille <akim@epita.fr>
969
970 * src/output.c (froms, tos): Are state_number_t.
971 (save_column): sp, sp1, and sp2 are state_number_t.
972 (prepare): Rename `final' as `final_state_number', `nnts' as
973 `nterms_number', `nrules' as `rules_number', `nstates' as
974 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
975 unused.
976 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
977 * data/lalr1.cc (nsym_): Remove, unused.
978
e68e0410
AD
9792002-07-03 Akim Demaille <akim@epita.fr>
980
981 * src/lalr.h, src/lalr.c (goto_number_t): New.
982 * src/lalr.c (goto_list_t): New.
983 Propagate them.
984 * src/nullable.c (rule_list_t): New.
985 Propagate.
986 * src/types.h: Remove.
987
e1a4f3a4
AD
9882002-07-03 Akim Demaille <akim@epita.fr>
989
990 * src/closure.c (print_fderives): Use rule_rhs_print.
991 * src/derives.c (print_derives): Use rule_rhs_print.
992 (rule_list_t): New, replaces `shorts'.
993 (set_derives): Add comments.
994 * tests/sets.at (Nullable, Firsts): Adjust.
995
536545f3
AD
9962002-07-03 Akim Demaille <akim@epita.fr>
997
998 * src/output.c (prepare_actions): Free `tally' and `width'.
999 (prepare_actions): Allocate and free `order'.
1000 * src/symtab.c (symbols_free): Free `symbols'.
1001 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
1002 * src/output.c (m4_invoke): Move to...
1003 * src/scan-skel.l: here.
1004 (<<EOF>>): Close yyout, and free its name.
1005
8b752b00
AD
10062002-07-03 Akim Demaille <akim@epita.fr>
1007
1008 Fix some memory leaks, and fix a bug: state 0 was examined twice.
1009
1010 * src/LR0.c (new_state): Merge into...
1011 (state_list_append): this.
1012 (new_states): Merge into...
1013 (generate_states): here.
1014 (set_states): Don't ensure a proper `errs' state member here, do it...
1015 * src/conflicts.c (conflicts_solve): here.
1016 * src/state.h, src/state.c: Comment changes.
1017 (state_t): Rename member `shifts' as `transitions'.
1018 Adjust all dependencies.
1019 (errs_new): For consistency, also take the values as argument.
1020 (errs_dup): Remove.
1021 (state_errs_set): New.
1022 (state_reductions_set, state_transitions_set): Assert that no
1023 previous value was assigned.
1024 (state_free): New.
1025 (states_free): Use it.
1026 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
1027 temporary storage: use `errs' and `nerrs' as elsewhere.
1028 (set_conflicts): Allocate and free this `errs'.
1029
613f5e1a
AD
10302002-07-02 Akim Demaille <akim@epita.fr>
1031
1032 * lib/libiberty.h: New.
1033 * lib: Update the bitset implementation from upstream.
1034 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
1035 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
1036 * src/main.c: Adjust bitset stats calls.
1037
26e0cadc
PE
10382002-07-01 Paul Eggert <eggert@twinsun.com>
1039
1040 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
1041 char, so that negative chars don't collide with $.
1042
1154cced
AD
10432002-06-30 Akim Demaille <akim@epita.fr>
1044
1045 Have the GLR tests be `warning' checked, and fix the warnings.
1046
1047 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
1048 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
1049 (yyremoveDeletes): `yyi' and `yyj' are size_t.
1050 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
1051 (yyaddDeferredAction): static.
1052 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
1053 (yyreportParseError): yyprefix is const.
1054 yytokenp is used only when verbose.
1055 (yy__GNUC__): Replace with __GNUC__.
1056 (yypdumpstack): yyi is size_t.
1057 (yypreference): Un-yy local variables and arguments, to avoid
1058 clashes with `yyr1'. Anyway, we are not in the user name space.
1059 (yytname_size): be an int, as is compared with ints.
1060 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
1061 Use them.
1062 * tests/cxx-gram.at: Use quotation to protect $1.
1063 Use AT_COMPILE to enable warnings hunts.
1064 Prototype yylex and yyerror.
1065 `Use' argc.
1066 Include `string.h', not `strings.h'.
1067 Produce and prototype stmtMerge only when used.
1068 yylex takes a location.
1069
97650f4e
AD
10702002-06-30 Akim Demaille <akim@epita.fr>
1071
1072 We spend a lot of time in quotearg, in particular when --verbose.
1073
1074 * src/symtab.c (symbol_get): Store a quoted version of the key.
1075 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
1076 Adjust all callers.
1077
d2576365
AD
10782002-06-30 Akim Demaille <akim@epita.fr>
1079
1080 * src/state.h (reductions_t): Rename member `nreds' as num.
1081 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
1082 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
1083
ccaf65bc
AD
10842002-06-30 Akim Demaille <akim@epita.fr>
1085
1086 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
1087 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
1088 (shifts_to): Rename as...
1089 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
1090 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
1091 (TRANSITION_IS_DISABLED, transitions_to): these.
1092
87675353
AD
10932002-06-30 Akim Demaille <akim@epita.fr>
1094
1095 * src/print.c (print_shifts, print_gotos): Merge into...
1096 (print_transitions): this.
1097 (print_transitions, print_errs, print_reductions): Align the
1098 lookaheads columns.
1099 (print_core, print_transitions, print_errs, print_state,
1100 print_grammar): Output empty lines separator before, not after.
1101 (state_default_rule_compute): Rename as...
1102 (state_default_rule): this.
1103 * tests/conflicts.at (Defaulted Conflicted Reduction),
1104 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
1105 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
1106
ce4ccb4b
AD
11072002-06-30 Akim Demaille <akim@epita.fr>
1108
1109 Display items as we display rules.
1110
1111 * src/gram.h, src/gram.c (rule_lhs_print): New.
1112 * src/gram.c (grammar_rules_partial_print): Use it.
1113 * src/print.c (print_core): Likewise.
1114 * tests/conflicts.at (Defaulted Conflicted Reduction),
1115 (Unresolved SR Conflicts): Adjust.
1116 (Unresolved SR Conflicts): Adjust and rename as...
1117 (Resolved SR Conflicts): this, as was meant.
1118 * tests/regression.at (Web2c Report): Adjust.
1119
bc933ef1
AD
11202002-06-30 Akim Demaille <akim@epita.fr>
1121
1122 * src/print.c (state_default_rule_compute): New, extracted from...
1123 (print_reductions): here.
1124 Pessimize, but clarify the code.
1125 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
1126
53d4308d
AD
11272002-06-30 Akim Demaille <akim@epita.fr>
1128
1129 * src/output.c (action_row): Let default_rule be always a rule
1130 number.
1131
574fb2d5
AD
11322002-06-30 Akim Demaille <akim@epita.fr>
1133
1134 * src/closure.c (print_firsts, print_fderives, closure):
1135 Use BITSET_EXECUTE.
1136 * src/lalr.c (lookaheads_print): Likewise.
1137 * src/state.c (state_rule_lookaheads_print): Likewise.
1138 * src/print_graph.c (print_core): Likewise.
1139 * src/print.c (print_reductions): Likewise.
1140 * src/output.c (action_row): Likewise.
1141 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
1142
05811fd7
AD
11432002-06-30 Akim Demaille <akim@epita.fr>
1144
1145 * src/print_graph.c: Use report_flag.
1146
0e4d5753
AD
11472002-06-30 Akim Demaille <akim@epita.fr>
1148
1149 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
1150 to...
1151 * src/relation.h, src/relation.c (traverse, relation_digraph)
1152 (relation_print, relation_transpose): New.
1153
24c7d800
AD
11542002-06-30 Akim Demaille <akim@epita.fr>
1155
1156 * src/state.h, src/state.c (shifts_to): New.
1157 * src/lalr.c (build_relations): Use it.
1158
9222837b
AD
11592002-06-30 Akim Demaille <akim@epita.fr>
1160
1161 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
1162 (item_number_of_rule_number, rule_number_of_item_number): New.
1163 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
1164 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
1165 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
1166 Propagate their use.
1167 Much remains to be done, in particular wrt `shorts' from types.h.
1168
260008e5
AD
11692002-06-30 Akim Demaille <akim@epita.fr>
1170
1171 * src/symtab.c (symbol_new): Initialize the `printer' member.
1172
8a731ca8
AD
11732002-06-30 Akim Demaille <akim@epita.fr>
1174
1175 * src/LR0.c (save_reductions): Remove, replaced by...
1176 * src/state.h, src/state.c (state_reductions_set): New.
1177 (reductions, errs): Rename as...
1178 (reductions_t, errs_t): these.
1179 Adjust all dependencies.
1180
32e1e0a4
AD
11812002-06-30 Akim Demaille <akim@epita.fr>
1182
1183 * src/LR0.c (state_list_t, state_list_append): New.
1184 (first_state, last_state): Now symbol_list_t.
1185 (this_state): Remove.
1186 (new_itemsets, append_states, save_reductions): Take a state_t as
1187 argument.
1188 (set_states, generate_states): Adjust.
1189 (save_shifts): Remove, replaced by...
1190 * src/state.h, src/state.c (state_shifts_set): New.
1191 (shifts): Rename as...
1192 (shifts_t): this.
1193 Adjust all dependencies.
1194 * src/state.h (state_t): Remove the `next' member.
1195
e5fb6710
AD
11962002-06-30 Akim Demaille <akim@epita.fr>
1197
1198 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
1199 escaped in slot 0.
1200
c7ca99d4
AD
12012002-06-30 Akim Demaille <akim@epita.fr>
1202
1203 Use hash.h for the state hash table.
1204
1205 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
1206 (allocate_storage): Use state_hash_new.
1207 (free_storage): Use state_hash_free.
1208 (new_state, get_state): Adjust.
1209 * src/lalr.h, src/lalr.c (states): Move to...
1210 * src/states.h (state_t): Remove the `link' member, no longer
1211 used.
1212 * src/states.h, src/states.c: here.
1213 (state_hash_new, state_hash_free, state_hash_lookup)
1214 (state_hash_insert, states_free): New.
1215 * src/states.c (state_table, state_compare, state_hash): New.
1216 * src/output.c (output_actions): Do not free states now, since we
1217 still need to know the final_state number in `prepare', called
1218 afterwards. Do it...
1219 * src/main.c (main): here: call states_free after `output'.
1220
df0e7316
AD
12212002-06-30 Akim Demaille <akim@epita.fr>
1222
1223 * src/state.h, src/state.c (state_new): New, extracted from...
1224 * src/LR0.c (new_state): here.
1225 * src/state.h (STATE_ALLOC): Move to...
1226 * src/state.c: here.
1227 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
1228 * src/state.h, src/state.c: here.
1229
39f41916
AD
12302002-06-30 Akim Demaille <akim@epita.fr>
1231
1232 * src/reader.c (gensym): Rename as...
1233 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
1234 (getsym): Rename as...
1235 (symbol_get): this.
1236
d57650a5
AD
12372002-06-30 Akim Demaille <akim@epita.fr>
1238
1239 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
1240 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
1241 * src/output.c, src/print.c, src/print_graph.c: Propagate.
1242 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
1243
5a08f1ce
AD
12442002-06-30 Akim Demaille <akim@epita.fr>
1245
1246 Make the test suite pass with warnings checked.
1247
1248 * tests/actions.at (Printers and Destructors): Improve.
1249 Avoid unsigned vs. signed issues.
1250 * tests/calc.at: Don't exercise the scanner here, do it...
1251 * tests/input.at (Torturing the Scanner): here.
1252
720623af
PH
12532002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1254
88e7e941 1255 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
1256 reorganize first lines parallel to yacc.c.
1257
fb8135fa
AD
12582002-06-28 Akim Demaille <akim@epita.fr>
1259
1260 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
1261 (b4_token_enum, b4_token_defines): New, factored from...
1262 * data/lalr1.cc, data/yacc.c, glr.c: here.
1263
41442480
AD
12642002-06-28 Akim Demaille <akim@epita.fr>
1265
1266 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
1267 unused variables.
1268 * src/output.c (merger_output): static.
1269
e0e5bf84
AD
12702002-06-28 Akim Demaille <akim@epita.fr>
1271
1272 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
1273 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
1274 pacify GCC.
1275 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 1276
676385e2
PH
12772002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1278
1279 Accumulated changelog for new GLR parsing features.
1280
6a254321 1281 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
1282 conflicts_total_count.
1283 * src/conflicts.h: Ditto.
1284 * src/output.c (token_actions): Use the new name.
1285 (output_conflicts): Change conflp => conflict_list_heads, and
1286 confl => conflict_list for better readability.
1287 * data/glr.c: Use the new names.
1288 * NEWS: Add self to GLR announcement.
e0e5bf84 1289
676385e2
PH
1290 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
1291
1292 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
1293 Akim Demaille.
1294
1295 * data/bison.glr: Change name to glr.c
1296 * data/glr.c: Renamed from bison.glr.
1297 * data/Makefile.am: Add glr.c
e0e5bf84
AD
1298
1299 * src/getargs.c:
1300
676385e2
PH
1301 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
1302 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 1303
676385e2
PH
1304 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1305
1306 * data/bison.glr: Be sure to restore the
1307 current #line when returning to the skeleton contents after having
1308 exposed the input file's #line.
1309
1310 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1311
1312 * data/bison.glr: Bring up to date with changes to bison.simple.
1313
1314 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1315
1316 * data/bison.glr: Correct definitions that use b4_prefix.
1317 Various reformatting.
1318 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
1319 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
1320 yytokenp argument; now part of stack.
1321 (yychar): Define to behave as documented.
1322 (yyclearin): Ditto.
e0e5bf84 1323
676385e2
PH
1324 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1325
1326 * src/reader.h: Add declaration for free_merger_functions.
1327
1328 * src/reader.c (merge_functions): New variable.
1329 (get_merge_function): New function.
1330 (free_merger_functions): New function.
1331 (readgram): Check for %prec that is not followed by a symbol.
1332 Handle %dprec and %merge declarations.
1333 (packgram): Initialize dprec and merger fields in rules array.
1334
1335 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
1336 conflict_list_cnt, conflict_list_free): New variables.
1337 (table_grow): Also grow conflict_table.
e0e5bf84 1338 (prepare_rules): Output dprec and merger tables.
676385e2 1339 (conflict_row): New function.
e0e5bf84 1340 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
1341 default reduction in conflicted states for GLR parser so that there
1342 are spaces for the conflict lists.
1343 (save_row): Also save conflict information.
1344 (token_actions): Allocate conflict list.
1345 (merger_output): New function.
1346 (pack_vector): Pack conflict table, too.
1347 (output_conflicts): New function to output yyconflp and yyconfl.
1348 (output_check): Allocate conflict_tos.
1349 (output_actions): Output conflict tables, also.
1350 (output_skeleton): Output b4_mergers definition.
1351 (prepare): Output b4_max_rhs_length definition.
1352 Use 'bison.glr' as default skeleton for GLR parsers.
1353
1354 * src/gram.c (glr_parser): New flag.
1355 (grammar_free): Call free_merger_functions.
1356
1357 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
1358 all pairs of conflicting reductions, rather than just all tokens
1359 causing conflicts. Needed to size conflict tables.
e0e5bf84 1360 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
1361 interface.
1362 (conflicts_print): Ditto.
1363 (count_total_conflicts): New function.
1364
1365 * src/reader.h (merger_list): New type.
1366 (merge_functions): New variable.
1367
1368 * src/lex.h (tok_dprec, tok_merge): New token types.
1369
1370 * src/gram.h (rule_s): Add dprec and merger fields.
1371 (glr_parser): New flag.
1372
1373 * src/conflicts.h (count_total_conflicts): New function.
1374
1375 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
1376
1377 * doc/bison.texinfo (Generalized LR Parsing): New section.
1378 (GLR Parsers): New section.
1379 (Language and Grammar): Mention GLR parsing.
1380 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
1381 Correct typo ("tge" -> "the").
1382
1383 * data/bison.glr: New skeleton for GLR parsing.
1384
1385 * tests/cxx-gram.at: New tests for GLR parsing.
1386
1387 * tests/testsuite.at: Include cxx-gram.at.
1388
1389 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 1390
676385e2
PH
1391 * src/parse-gram.y:
1392
1393 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
1394
1395 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 1396
b5480d74 13972002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
1398
1399 * src/options.h, src/options.c: Remove.
1400 * src/getargs.c (short_options, long_options): New.
1401
60491a94
AD
14022002-06-27 Akim Demaille <akim@epita.fr>
1403
1404 * data/bison.simple, data/bison.c++: Rename as...
1405 * data/yacc.c, data/lalr1.cc: these.
1406 * doc/bison.texinfo (Environment Variables): Remove.
1407
9be0c25b
AD
14082002-06-25 Raja R Harinath <harinath@cs.umn.edu>
1409
1410 * src/getargs.c (report_argmatch): Initialize strtok().
1411
1ae72863
AD
14122002-06-20 Akim Demaille <akim@epita.fr>
1413
1414 * data/bison.simple (b4_symbol_actions): New, replaces...
1415 (b4_symbol_destructor, b4_symbol_printer): these.
1416 (yysymprint): Be sure to call YYPRINT only for tokens, and using
1417 user token numbers.
1418
87542d29
AD
14192002-06-20 Akim Demaille <akim@epita.fr>
1420
1421 * data/bison.simple (yydestructor): Rename as...
1422 (yydestruct): this.
1423
1a31ed21
AD
14242002-06-20 Akim Demaille <akim@epita.fr>
1425
1426 * src/symtab.h, src/symtab.c (symbol_type_set)
1427 (symbol_destructor_set, symbol_precedence_set): The location is
1428 the last argument.
1429 Adjust all callers.
1430
e776192e
AD
14312002-06-20 Akim Demaille <akim@epita.fr>
1432
1433 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
1434 internals.
1435 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
1436 Takes a location.
1437 * src/symtab.h, src/symtab.c (symbol_class_set)
1438 (symbol_user_token_number_set): Likewise.
1439 Adjust all callers.
1440 Promote complain_at.
1441 * tests/input.at (Type Clashes): Adjust.
1442
5c1180b3
AD
14432002-06-20 Akim Demaille <akim@epita.fr>
1444
1445 * data/bison.simple (YYLEX): Fix the declaration when
1446 %pure-parser.
1447
e3170060
AD
14482002-06-20 Akim Demaille <akim@epita.fr>
1449
1450 * data/bison.simple (yysymprint): Don't print the token number,
1451 just its name.
1452 * tests/actions.at (Destructors): Rename as...
1453 (Printers and Destructors): this.
1454 Also exercise %printer.
1455
253862fd
AD
14562002-06-20 Akim Demaille <akim@epita.fr>
1457
1458 * data/bison.simple (YYDSYMPRINT): New.
1459 Use it to remove many of the #if YYDEBUG/if (yydebug).
1460
366eea36
AD
14612002-06-20 Akim Demaille <akim@epita.fr>
1462
1463 * src/symtab.h, src/symtab.c (symbol_t): printer and
1464 printer_location are new members.
1465 (symbol_printer_set): New.
1466 * src/parse-gram.y (PERCENT_PRINTER): New token.
1467 Handle its associated rule.
1468 * src/scan-gram.l: Adjust.
1469 (handle_destructor_at, handle_destructor_dollar): Rename as...
1470 (handle_symbol_code_at, handle_symbol_code_dollar): these.
1471 * src/output.c (symbol_printers_output): New.
1472 (output_skeleton): Call it.
1473 * data/bison.simple (yysymprint): New. Cannot be named yyprint
1474 since there are already many grammar files with a user `yyprint'.
1475 Replace the calls to YYPRINT to calls to yysymprint.
1476 * tests/calc.at: Adjust.
1477 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
1478 taking advantage of parser very internal details (stack size!).
1479
4f25ebb0
AD
14802002-06-20 Akim Demaille <akim@epita.fr>
1481
1482 * src/scan-gram.l: Complete the scanner with the missing patterns
1483 to pacify Flex.
1484 Use `quote' and `symbol_tag_get' where appropriate.
1485
93b68a0e
AD
14862002-06-19 Akim Demaille <akim@epita.fr>
1487
1488 * tests/actions.at (Destructors): Augment to test locations.
1489 * data/bison.simple (yydestructor): Pass it the current location
1490 if locations are enabled.
1491 Prototype only when __STDC__ or C++.
1492 Change the argument names to move into the yy name space: there is
1493 user code here.
1494
58612f1d
AD
14952002-06-19 Akim Demaille <akim@epita.fr>
1496
74310291
AD
1497 * data/bison.simple (b4_pure_if): New.
1498 Use it instead of #ifdef YYPURE.
1499
15002002-06-19 Akim Demaille <akim@epita.fr>
1501
1502 * data/bison.simple (b4_location_if): New.
58612f1d
AD
1503 Use it instead of #ifdef YYLSP_NEEDED.
1504
f25bfb75
AD
15052002-06-19 Akim Demaille <akim@epita.fr>
1506
1507 Prepare @$ in %destructor, but currently don't bind it in the
1508 skeleton, as %location use is not cleaned up yet.
1509
1510 * src/scan-gram.l (handle_dollar, handle_destructor_at)
1511 (handle_action_at): New.
1512 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
1513 a braced_code_t and a location as additional arguments.
1514 (handle_destructor_dollar): Instead of requiring `b4_eval', just
1515 unquote one when outputting `b4_dollar_dollar'.
1516 Adjust callers.
1517 * data/bison.simple (b4_eval): Remove.
1518 (b4_symbol_destructor): Adjust.
1519 * tests/input.at (Invalid @n): Adjust.
1520
c732d2c6
AD
15212002-06-19 Zack Weinberg <zack@codesourcery.com>
1522
1523 * doc/bison.texinfo: Document ability to have multiple
1524 prologue sections.
1525
8c165d89
AD
15262002-06-18 Akim Demaille <akim@epita.fr>
1527
1528 * src/files.c (compute_base_names): When computing the output file
1529 names from the input file name, strip the directory part.
1530
ca98bf57
AD
15312002-06-18 Akim Demaille <akim@epita.fr>
1532
1533 * data/bison.simple.new: Comment changes.
1534 Reported by Andreas Schwab.
1535
0bfb02ff
AD
15362002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
1537
1538 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
1539 there are no `label `yyoverflowlab' defined but not used' warnings
1540 when yyoverflow is defined.
1541
24c0aad7
AD
15422002-06-18 Akim Demaille <akim@epita.fr>
1543
1544 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
1545 new member.
1546 (symbol_destructor_set): Adjust.
1547 * src/output.c (symbol_destructors_output): Output the destructor
1548 locations.
1549 Output the symbol name.
1550 * data/bison.simple (b4_symbol_destructor): Adjust.
1551
5719c109
AD
15522002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
1553 and Akim Demaille <akim@epita.fr>
1554
1555 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
1556 what's left on the stack when the error recovery hits EOF.
1557 * tests/actions.at (Destructors): Complete to exercise this case.
1558
9280d3ef
AD
15592002-06-17 Akim Demaille <akim@epita.fr>
1560
1561 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
1562 arguments is really empty, not only equal to `[]'.
1563 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
1564 member.
1565 (symbol_destructor_set): New.
1566 * src/output.c (symbol_destructors_output): New.
1567 * src/reader.h (brace_code_t, current_braced_code): New.
1568 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
1569 (handle_dollar): Rename as...
1570 (handle_action_dollar): this.
1571 (handle_destructor_dollar): New.
1572 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
1573 (grammar_declaration): Use it.
1574 * data/bison.simple (yystos): Is always defined.
1575 (yydestructor): New.
1576 * tests/actions.at (Destructors): New.
1577 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
1578
dafdc66f
AD
15792002-06-17 Akim Demaille <akim@epita.fr>
1580
1581 * src/symlist.h, src/symlist.c (symbol_list_length): New.
1582 * src/scan-gram.l (handle_dollar, handle_at): Compute the
1583 rule_length only when needed.
1584 * src/output.c (actions_output, token_definitions_output): Output
1585 the full M4 block.
1586 * src/symtab.c: Don't access directly to the symbol tag, use
1587 symbol_tag_get.
1588 * src/parse-gram.y: Use symbol_list_free.
1589
56c47203
AD
15902002-06-17 Akim Demaille <akim@epita.fr>
1591
1592 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
1593 (symbol_list_prepend, get_type_name): Move to...
1594 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
1595 (symbol_list_prepend, symbol_list_n_type_name_get): here.
1596 Adjust all callers.
1597 (symbol_list_free): New.
1598 * src/scan-gram.l (handle_dollar): Takes a location.
1599 * tests/input.at (Invalid $n): Adjust.
1600
1e0bab92
AD
16012002-06-17 Akim Demaille <akim@epita.fr>
1602
1603 * src/reader.h, src/reader.c (symbol_list_new): Export it.
1604 (symbol_list_prepend): New.
1605 * src/parse-gram.y (%union): `list' is a new member.
1606 (symbols.1): New, replaces...
1607 (terms_to_prec.1, nterms_to_type.1): these.
1608 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
1609 Take a location as additional argument.
1610 Adjust all callers.
1611
04e60654
AD
16122002-06-15 Akim Demaille <akim@epita.fr>
1613
1614 * src/parse-gram.y: Move %token in the declaration section so that
1615 we don't depend upon CVS Bison.
1616
10e5b8bd
AD
16172002-06-15 Akim Demaille <akim@epita.fr>
1618
1619 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
1620 * src/print.c (print_core): Use it.
1621
9801d40c
AD
16222002-06-15 Akim Demaille <akim@epita.fr>
1623
1624 * src/conflicts.c (log_resolution): Accept the rule involved in
1625 the sr conflicts instead of the lookahead number that points to
1626 that rule.
1627 (flush_reduce): Accept the current lookahead vector as argument,
1628 instead of the index in LA.
1629 (resolve_sr_conflict): Accept the current number of lookahead
1630 bitset to consider for the STATE, instead of the index in LA.
1631 (set_conflicts): Adjust.
1632 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
1633
c0263492
AD
16342002-06-15 Akim Demaille <akim@epita.fr>
1635
1636 * src/state.h (state_t): Replace the `lookaheadsp' member, a
1637 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
1638 Adjust all dependencies.
1639 * src/lalr.c (initialize_lookaheads): Split into...
1640 (states_lookaheads_count, states_lookaheads_initialize): these.
1641 (lalr): Adjust.
1642
9757c359
AD
16432002-06-15 Akim Demaille <akim@epita.fr>
1644
1645 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
1646 out of...
1647 (grammar_rules_print): here.
1648 * src/reduce.c (reduce_output): Use it.
1649 * tests/reduce.at (Useless Rules, Reduced Automaton)
1650 (Underivable Rules): Adjust.
1651
6b98e4b5
AD
16522002-06-15 Akim Demaille <akim@epita.fr>
1653
1654 Copy BYacc's nice way to report the grammar.
1655
1656 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
1657 New.
1658 Don't print the rules' location, it is confusing and useless.
1659 (rule_print): Use grammar_rhs_print.
1660 * src/print.c (print_grammar): Use grammar_rules_print.
1661
6b98e4b5
AD
16622002-06-15 Akim Demaille <akim@epita.fr>
1663
1664 Complete and rationalize `useless thing' warnings.
1665
1666 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
1667 (symbol_tag_print): New.
1668 Use them everywhere in place of accessing directly the tag member.
1669 * src/gram.h, src/gram.c (rule_print): New.
1670 Use it where a rule used to be printed `by hand'.
1671 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
1672 (reduce_grammar_tables): Report the useless rules.
1673 (reduce_print): Useless things are a warning, not an error.
1674 Report it as such.
1675 * tests/reduce.at (Useless Nonterminals, Useless Rules):
1676 (Reduced Automaton, Underivable Rules): Adjust.
1677 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
1678 * tests/conflicts.at (Unresolved SR Conflicts)
1679 (Solved SR Conflicts): Adjust.
1680
ee000ba4
AD
16812002-06-15 Akim Demaille <akim@epita.fr>
1682
1683 Let symbols have a location.
1684
1685 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
1686 (getsym): Adjust.
1687 Adjust all callers.
1688 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
1689 Use location_t, not int.
1690 * src/symtab.c (symbol_check_defined): Take advantage of the
1691 location.
1692 * tests/regression.at (Invalid inputs): Adjust.
1693
8efe435c
AD
16942002-06-15 Akim Demaille <akim@epita.fr>
1695
1696 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
1697 (input): Don't try to initialize yylloc here, do it in the
1698 scanner.
1699 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
1700 * src/gram.h (rule_t): Change line and action_line into location
1701 and action_location, of location_t type.
1702 Adjust all dependencies.
1703 * src/location.h, src/location.c (empty_location): New.
1704 * src/reader.h, src/reader.c (grammar_start_symbol_set)
1705 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
1706 (grammar_current_rule_symbol_append)
1707 (grammar_current_rule_action_append): Expect a location as argument.
1708 * src/reader.c (grammar_midrule_action): Adjust to attach an
1709 action's location as dummy symbol location.
1710 * src/symtab.h, src/symtab.c (startsymbol_location): New.
1711 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
1712 the line numbers.
1713
1921f1d7
AD
17142002-06-14 Akim Demaille <akim@epita.fr>
1715
1716 Grammar declarations may be found in the grammar section.
1717
1718 * src/parse-gram.y (rules_or_grammar_declaration): New.
1719 (declarations): Each declaration may end with a semicolon, not
1720 just...
1721 (grammar_declaration): `"%union"'.
1722 (grammar): Branch to rules_or_grammar_declaration.
1723
4515534c
AD
17242002-06-14 Akim Demaille <akim@epita.fr>
1725
1726 * src/main.c (main): Invoke scanner_free.
1727
f958596b
AD
17282002-06-14 Akim Demaille <akim@epita.fr>
1729
1730 * src/output.c (m4_invoke): Extracted from...
1731 (output_skeleton): here.
1732 Free tempfile.
1733
2c569025
AD
17342002-06-14 Akim Demaille <akim@epita.fr>
1735
1736 * src/parse-gram.y (directives, directive, gram)
1737 (grammar_directives, precedence_directives, precedence_directive):
1738 Rename as...
1739 (declarations, declaration, grammar, grammar_declaration)
1740 (precedence_declaration, precedence_declarator): these.
1741 (symbol_declaration): New.
1742
592e8d4d
AD
17432002-06-14 Akim Demaille <akim@epita.fr>
1744
1745 * src/files.c (action_obstack): Remove, unused.
1746 (output_obstack): Remove it, and all its dependencies, as it is no
1747 longer needed.
1748 * src/reader.c (epilogue_set): Build the epilogue in the
1749 muscle_obstack.
1750 * src/output.h, src/output.c (muscle_obstack): Move to...
1751 * src/muscle_tab.h, src/muscle_tab.h: here.
1752 (muscle_init): Initialize muscle_obstack.
1753 (muscle_free): New.
1754 * src/main.c (main): Call it.
1755
0c15323d
AD
17562002-06-14 Akim Demaille <akim@epita.fr>
1757
1758 * src/location.h: New, extracted from...
1759 * src/reader.h: here.
1760 * src/Makefile.am (noinst_HEADERS): Merge into
1761 (bison_SOURCES): this.
1762 Add location.h.
1763 * src/parse-gram.y: Use location_t instead of Bison's.
1764 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
1765 Use location_t instead of ints.
1766
e96c9728
AD
17672002-06-14 Akim Demaille <akim@epita.fr>
1768
1769 * data/bison.simple, data/bison.c++: Be sure to restore the
1770 current #line when returning to the skeleton contents after having
1771 exposed the input file's #line.
1772
75d1fe16
AD
17732002-06-12 Akim Demaille <akim@epita.fr>
1774
1775 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
1776 eager.
1777 * tests/actions.at (Exotic Dollars): New.
1778
6c35d22c
AD
17792002-06-12 Akim Demaille <akim@epita.fr>
1780
1781 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
1782 ['"/] too eagerly.
1783 * tests/input.at (Torturing the Scanner): New.
1784
1d6412ad
AD
17852002-06-11 Akim Demaille <akim@epita.fr>
1786
1787 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
1788 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
1789 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
1790 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
1791 * src/reader.c (reader): Use it.
1792
4cdb01db
AD
17932002-06-11 Akim Demaille <akim@epita.fr>
1794
1795 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
1796 Adjust all callers.
1797 (scanner_last_string_free): New.
1798
44995b2e
AD
17992002-06-11 Akim Demaille <akim@epita.fr>
1800
1801 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
1802 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
1803 (last_string, YY_OBS_FREE): New.
1804 Use them when returning an ID.
1805
e9955c83
AD
18062002-06-11 Akim Demaille <akim@epita.fr>
1807
1808 Have Bison grammars parsed by a Bison grammar.
1809
1810 * src/reader.c, src/reader.h (prologue_augment): New.
1811 * src/reader.c (copy_definition): Remove.
1812
1813 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
1814 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
1815 (grammar_current_rule_prec_set, grammar_current_rule_check)
1816 (grammar_current_rule_symbol_append)
1817 (grammar_current_rule_action_append): Export.
1818 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
1819 (symbol_list_action_append): Remove.
1820 Hook the routines from reader.
1821 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
1822 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
1823
1824 * src/reader.c (read_declarations): Remove, unused.
1825
1826 * src/parse-gram.y: Handle the epilogue.
1827 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
1828 (grammar_start_symbol_set): this.
1829 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
1830 * src/reader.c (readgram): Remove, unused.
1831 (reader): Adjust to insert eoftoken and axiom where appropriate.
1832
1833 * src/reader.c (copy_dollar): Replace with...
1834 * src/scan-gram.h (handle_dollar): this.
1835 * src/parse-gram.y: Remove `%thong'.
1836
1837 * src/reader.c (copy_at): Replace with...
1838 * src/scan-gram.h (handle_at): this.
1839
1840 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
1841 New.
1842
1843 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
1844 time being.
1845
1846 * src/reader.h, src/reader.c (grammar_rule_end): New.
1847
1848 * src/parse.y (current_type, current_class): New.
1849 Implement `%nterm', `%token' support.
1850 Merge `%term' into `%token'.
1851 (string_as_id): New.
1852 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
1853 type name.
1854
1855 * src/parse-gram.y: Be sure to handle properly the beginning of
1856 rules.
1857
1858 * src/parse-gram.y: Handle %type.
1859 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
1860
1861 * src/parse-gram.y: More directives support.
1862 * src/options.c: No longer handle source directives.
1863
1864 * src/parse-gram.y: Fix %output.
1865
1866 * src/parse-gram.y: Handle %union.
1867 Use the prologue locations.
1868 * src/reader.c (parse_union_decl): Remove.
1869
1870 * src/reader.h, src/reader.c (epilogue_set): New.
1871 * src/parse-gram.y: Use it.
1872
1873 * data/bison.simple, data/bison.c++: b4_stype is now either not
1874 defined, then default to int, or to the contents of %union,
1875 without `union' itself.
1876 Adjust.
1877 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
1878
1879 * src/output.c (actions_output): Don't output braces, as they are
1880 already handled by the scanner.
1881
1882 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
1883 characters to themselves.
1884
1885 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
1886 that the epilogue has a proper #line.
1887
1888 * src/parse-gram.y: Handle precedence/associativity.
1889
1890 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
1891 a terminal.
1892 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
1893 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
1894 at all to define terminals that cannot be emitted.
1895
1896 * src/scan-gram.l: Escape M4 characters.
1897
1898 * src/scan-gram.l: Working properly with escapes in user
1899 strings/characters.
1900
1901 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
1902 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
1903 grammar.
1904 Use more modest sizes, as for the time being the parser does not
1905 release memory, and therefore the process swallows a huge amount
1906 of memory.
1907
1908 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
1909 stricter %token grammar.
1910
1911 * src/symtab.h (associativity): Add `undef_assoc'.
1912 (symbol_precedence_set): Do nothing when passed an undef_assoc.
1913 * src/symtab.c (symbol_check_alias_consistence): Adjust.
1914
1915 * tests/regression.at (Invalid %directive): Remove, as it is now
1916 meaningless.
1917 (Invalid inputs): Adjust to the new error messages.
1918 (Token definitions): The new grammar doesn't allow too many
1919 eccentricities.
1920
1921 * src/lex.h, src/lex.c: Remove.
1922 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
1923 (copy_character, copy_string2, copy_string, copy_identifier)
1924 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
1925 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
1926 (parse_action): Remove.
1927 * po/POTFILES.in: Adjust.
1928
2e047461
AD
19292002-06-11 Akim Demaille <akim@epita.fr>
1930
1931 * src/reader.c (parse_action): Don't store directly into the
1932 rule's action member: return the action as a string.
1933 Don't require `rule_length' as an argument: compute it.
1934 (grammar_current_rule_symbol_append)
1935 (grammar_current_rule_action_append): New, eved out from
1936 (readgram): here.
1937 Remove `action_flag', `rulelength', unused now.
1938
9af3fbce
AD
19392002-06-11 Akim Demaille <akim@epita.fr>
1940
1941 * src/reader.c (grammar_current_rule_prec_set).
1942 (grammar_current_rule_check): New, eved out from...
1943 (readgram): here.
1944 Remove `xaction', `first_rhs': useless.
1945 * tests/input.at (Type clashes): New.
1946 * tests/existing.at (GNU Cim Grammar): Adjust.
1947
1485e106
AD
19482002-06-11 Akim Demaille <akim@epita.fr>
1949
1950 * src/reader.c (grammar_midrule_action): New, Eved out from
1951 (readgram): here.
1952
da4160c3
AD
19532002-06-11 Akim Demaille <akim@epita.fr>
1954
1955 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
1956 New.
1957 (readgram): Use them as replacement of inlined code, crule and
1958 crule1.
1959
f6d0f937
AD
19602002-06-11 Akim Demaille <akim@epita.fr>
1961
1962 * src/reader.c (grammar_end, grammar_symbol_append): New.
1963 (readgram): Use them.
1964 Make the use of `p' as local as possible.
1965
69078d4b
AD
19662002-06-10 Akim Demaille <akim@epita.fr>
1967
1968 GCJ's parser requires the tokens to be defined before the prologue.
1969
1970 * data/bison.simple: Output the token definition before the user's
1971 prologue.
1972 * tests/regression.at (Braces parsing, Duplicate string)
1973 (Mixing %token styles): Check the output from bison.
1974 (Early token definitions): New.
1975
5e424082
AD
19762002-06-10 Akim Demaille <akim@epita.fr>
1977
1978 * src/symtab.c (symbol_user_token_number_set): Don't complain when
1979 assigning twice the same user number to a token, so that we can
1980 use it in...
1981 * src/lex.c (lex): here.
1982 Also use `symbol_class_set' instead of hand written code.
1983 * src/reader.c (parse_assoc_decl): Likewise.
1984
44536b35
AD
19852002-06-10 Akim Demaille <akim@epita.fr>
1986
1987 * src/symtab.c, src/symtab.c (symbol_class_set)
1988 (symbol_user_token_number_set): New.
1989 * src/reader.c (parse_token_decl): Use them.
1990 Use a switch instead of ifs.
1991 Use a single argument.
1992
8b9f2372
AD
19932002-06-10 Akim Demaille <akim@epita.fr>
1994
1995 Remove `%thong' support as it is undocumented, unused, duplicates
1996 `%token's job, and creates useless e-mail traffic with people who
1997 want to know what it is, why it is undocumented, unused, and
1998 duplicates `%token's job.
1999
2000 * src/reader.c (parse_thong_decl): Remove.
2001 * src/options.c (option_table): Remove "thong".
2002 * src/lex.h (tok_thong): Remove.
2003
3ae2b51f
AD
20042002-06-10 Akim Demaille <akim@epita.fr>
2005
2006 * src/symtab.c, src/symtab.c (symbol_type_set)
2007 (symbol_precedence_set): New.
2008 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
2009 (value_components_used): Remove, unused.
2010
2f1afb73
AD
20112002-06-09 Akim Demaille <akim@epita.fr>
2012
2013 Move symbols handling code out of the reader.
2014
2015 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
2016 (axiom): Move to...
2017 * src/symtab.h, src/symtab.c: here.
2018
2019 * src/gram.c (start_symbol): Remove: use startsymbol->number.
2020 * src/reader.c (startval): Rename as...
2021 * src/symtab.h, src/symtab.c (startsymbol): this.
2022 * src/reader.c: Adjust.
2023
2024 * src/reader.c (symbol_check_defined, symbol_make_alias)
2025 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
2026 (token_translations_init)
2027 Move to...
2028 * src/symtab.c: here.
2029 * src/reader.c (packsymbols): Move to...
2030 * src/symtab.h, src/symtab.c (symbols_pack): here.
2031 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
2032 argument.
2033
e9bca3ad
AD
20342002-06-03 Akim Demaille <akim@epita.fr>
2035
2036 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
2037 then statements.
2038
86eff183
AD
20392002-06-03 Akim Demaille <akim@epita.fr>
2040
2041 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
2042 structs with non literals.
2043 * src/scan-skel.l: never-interactive.
2044 * src/conflicts.c (enum conflict_resolution_e): No trailing
2045 comma.
2046 * src/getargs.c (usage): Split long literal strings.
2047 Reported by Hans Aberg.
2048
717be197
AD
20492002-05-28 Akim Demaille <akim@epita.fr>
2050
2051 * data/bison.c++: Use C++ ostreams.
2052 (cdebug_): New member.
2053
670ddffd
AD
20542002-05-28 Akim Demaille <akim@epita.fr>
2055
2056 * src/output.c (output_skeleton): Be sure to allocate enough room
2057 for `/' _and_ for `\0' in full_skeleton.
2058
769b430f
AD
20592002-05-28 Akim Demaille <akim@epita.fr>
2060
2061 * data/bison.c++: Catch up with bison.simple:
2062 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2063 and Paul Eggert <eggert@twinsun.com>: `error' handing.
2064 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
2065 and popping traces.
2066
7067cb36
PH
20672002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2068
2069 * src/output.c (output_skeleton): Put an explicit path in front of
2070 the skeleton file name, rather than relying on the -I directory,
2071 to partially alleviate effects of having a skeleton file lying around
2072 in the current directory.
769b430f 2073
4a713ec2
PH
20742002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2075
769b430f 2076 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
2077 obstack_printf should be obstack_fgrow1.
2078
b408954b
AD
20792002-05-26 Akim Demaille <akim@epita.fr>
2080
2081 * src/state.h (state_t): `solved_conflicts' is a new member.
2082 * src/LR0.c (new_state): Set it to 0.
2083 * src/conflicts.h, src/conflicts.c (print_conflicts)
2084 (free_conflicts, solve_conflicts): Rename as...
2085 (conflicts_print, conflicts_free, conflicts_solve): these.
2086 Adjust callers.
2087 * src/conflicts.c (enum conflict_resolution_e)
2088 (solved_conflicts_obstack): New, used by...
2089 (log_resolution): this.
2090 Adjust to attach the conflict resolution to each state.
2091 Complete the description with the precedence/associativity
2092 information.
2093 (resolve_sr_conflict): Adjust.
2094 * src/print.c (print_state): Output its solved_conflicts.
2095 * tests/conflicts.at (Unresolved SR Conflicts)
2096 (Solved SR Conflicts): Exercise --report=all.
2097
a49aecd5
AD
20982002-05-26 Akim Demaille <akim@epita.fr>
2099
2100 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
2101 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
2102 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
2103 (token_number_t, item_number_as_token_number)
2104 (token_number_as_item_number, muscle_insert_token_number_table):
2105 Rename as...
2106 (symbol_number_t, item_number_as_symbol_number)
2107 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
2108 these, since it is more appropriate.
2109
5504898e
AD
21102002-05-26 Akim Demaille <akim@epita.fr>
2111
2112 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
2113 `Error:' lines.
2114 * data/bison.simple (yystos) [YYDEBUG]: New.
2115 (yyparse) [YYDEBUG]: Display the symbols which are popped during
2116 error recovery.
2117 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
2118
ec3bc396
AD
21192002-05-25 Akim Demaille <akim@epita.fr>
2120
2121 * doc/bison.texinfo (Debugging): Split into...
2122 (Tracing): this new section, its former contents, and...
2123 (Understanding): this new section.
2124 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
2125 by...
2126 (report_flag): this.
2127 Adjust all dependencies.
2128 (report_args, report_types, report_argmatch): New.
2129 (usage, getargs): Report/support -r, --report.
2130 * src/options.h
2131 (struct option_table_struct): Rename as..,
2132 (struct option_table_s): this.
2133 Rename the `set_flag' member to `flag' to match with getopt_long's
2134 struct.
2135 * src/options.c (option_table): Split verbose into an entry for
2136 %verbose, and another for --verbose.
2137 Support --report/-r, so remove -r from the obsolete --raw.
2138 * src/print.c: Attach full item sets and lookaheads reports to
2139 report_flag instead of trace_flag.
2140 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
2141
78df8250
PE
21422002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2143 and Paul Eggert <eggert@twinsun.com>
769b430f 2144
78df8250
PE
2145 * data/bison.simple (yyparse): Correct error handling to conform to
2146 POSIX and yacc. Specifically, after syntax error is discovered,
2147 do not reduce further before shifting the error token.
2148 Clean up the code a bit by removing the labels yyerrdefault,
2149 yyerrhandle, yyerrpop.
2150 * NEWS: Document the above.
2151
c0c9ea05
PH
21522002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2153
2154 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
2155 type; it isn't always big enough, since it doesn't necessarily
2156 include non-terminals.
769b430f 2157 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
2158 the latter can be removed.
2159 (yy_token_number_type): Remove, only one use.
2160 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
2161 don't use TokenNumberType as element type.
769b430f 2162
c0c9ea05
PH
2163 * tests/regression.at: Modify expected output to agree with change
2164 to yyr1 and yytranslate.
769b430f 2165
6390a83f
FK
21662002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
2167
2168 * src/reader.c (parse_action): Use copy_character instead of
2169 obstack_1grow.
2170
db7c8e9a
AD
21712002-05-13 Akim Demaille <akim@epita.fr>
2172
2173 * tests/regression.at (Token definitions): Prototype yylex and
2174 yyerror.
2175
fcc61800
PH
21762002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2177
158c687b 2178 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
2179 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
2180 32-bit arithmetic.
2181 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
2182
5683e9b2
AD
21832002-05-07 Akim Demaille <akim@epita.fr>
2184
2185 * tests/synclines.at: Be sure to prototype yylex and yyerror to
2186 avoid GCC warnings.
2187
0c2d3f4c
AD
21882002-05-07 Akim Demaille <akim@epita.fr>
2189
2190 Kill GCC warnings.
2191
2192 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
2193 over the RHS of each rule.
2194 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
2195 * src/state.h (state_t): Member `nitems' is unsigned short.
2196 * src/LR0.c (get_state): Adjust.
2197 * src/reader.c (packgram): Likewise.
2198 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
2199 `Type'.
2200 (muscle_insert_int_table): Remove, unused.
2201 (prepare_rules): Remove `max'.
2202
1565b720
AD
22032002-05-06 Akim Demaille <akim@epita.fr>
2204
2205 * src/closure.c (print_firsts): Display of the symbol tags.
2206 (bitmatrix_print): Move to...
2207 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
2208 here.
2209 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
2210
cfaee611
AD
22112002-05-06 Akim Demaille <akim@epita.fr>
2212
2213 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
2214 hash_do_for_each.
2215
458be8e0
AD
22162002-05-06 Akim Demaille <akim@epita.fr>
2217
2218 * src/LR0.c (new_state, get_state): Instead of using the global
2219 `kernel_size' and `kernel_base', have two new arguments:
2220 `core_size' and `core'.
2221 Adjust callers.
2222
a900a624
AD
22232002-05-06 Akim Demaille <akim@epita.fr>
2224
2225 * src/reader.c (packgram): No longer end `ritem' with a 0
2226 sentinel: it is not used.
2227
d4e7d3a1
AD
22282002-05-05 Akim Demaille <akim@epita.fr>
2229
2230 New experimental feature: display the lookaheads in the report and
2231 graph.
2232
2233 * src/print (print_core): When --trace-flag, display the rules
2234 lookaheads.
2235 * src/print_graph.c (print_core): Likewise.
2236 Swap the arguments.
2237 Adjust caller.
2238
39ceb25b
AD
22392002-05-05 Akim Demaille <akim@epita.fr>
2240
2241 * tests/torture.at (Many lookaheads): New test.
2242
5372019f
AD
22432002-05-05 Akim Demaille <akim@epita.fr>
2244
2245 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
2246 (GENERATE_MUSCLE_INSERT_TABLE): this.
2247 (output_int_table, output_unsigned_int_table, output_short_table)
2248 (output_token_number_table, output_item_number_table): Replace with...
2249 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
2250 (muscle_insert_short_table, muscle_insert_token_number_table)
2251 (muscle_insert_item_number_table): these.
2252 Adjust all callers.
2253 (prepare_tokens): Don't free `translations', since...
2254 * src/reader.h, src/reader.c (grammar_free): do it.
2255 Move to...
2256 * src/gram.h, src/gram.c (grammar_free): here.
2257 * data/bison.simple, data/bison.c++: b4_token_number_max is now
2258 b4_translate_max.
2259
5df5f6d5
AD
22602002-05-05 Akim Demaille <akim@epita.fr>
2261
2262 * src/output.c (output_unsigned_int_table): New.
2263 (prepare_rules): `i' is unsigned.
2264 `prhs', `rline', `r2' are unsigned int.
2265 Rename muscle `rhs_number_max' as `rhs_max'.
2266 Output muscles `prhs_max', `rline_max', and `r2_max'.
2267 Free rline and r1.
2268 * data/bison.simple, data/bison.c++: Adjust to use these muscles
2269 to compute types instead of constant types.
2270 * tests/regression.at (Web2c Actions): Adjust.
2271
b87f8b21
AD
22722002-05-04 Akim Demaille <akim@epita.fr>
2273
2274 * src/symtab.h (SALIAS, SUNDEF): Rename as...
2275 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
2276 Adjust dependencies.
2277 * src/output.c (token_definitions_output): Be sure not to output a
2278 `#define 'a'' when fed with `%token 'a' "a"'.
2279 * tests/regression.at (Token definitions): New.
2280
8bb936e4
PE
22812002-05-03 Paul Eggert <eggert@twinsun.com>
2282
2283 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
2284 for K&R C.
2285
22862002-05-03 gettextize <bug-gnu-gettext@gnu.org>
2287
2288 * Makefile.am (SUBDIRS): Remove intl.
2289 (EXTRA_DIST): Add config/config.rpath.
2290
53c71a12
AD
22912002-05-03 Akim Demaille <akim@epita.fr>
2292
2293 * data/bison.simple (m4_if): Don't output empty enums.
2294 And actually, output valid enum definitions :(.
2295
289dd0cf
AD
22962002-05-03 Akim Demaille <akim@epita.fr>
2297
2298 * configure.bat: Remove, completely obsolete.
2299 * Makefile.am (EXTRA_DIST): Adjust.
2300 Don't distribute config.rpath...
2301 * config/Makefile.am (EXTRA_DIST): Do it.
2302
db85e524
AD
23032002-05-03 Akim Demaille <akim@epita.fr>
2304
2305 * configure.in (GETTEXT_VERSION): New.
2306 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
2307
83ccf991
AD
23082002-05-03 Akim Demaille <akim@epita.fr>
2309
2310 * data/bison.simple (b4_token_enum): New.
2311 (b4_token_defines): Use it to output tokens both as #define and
2312 enums.
2313 Suggested by Paul Eggert.
2314 * src/output.c (token_definitions_output): Don't output spurious
2315 white spaces.
2316
1f418995
AD
23172002-05-03 Akim Demaille <akim@epita.fr>
2318
2319 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
2320
45119f04
RA
23212002-05-02 Robert Anisko <robert@lrde.epita.fr>
2322
2323 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
2324 Update the stack class, give a try to deque as the default container.
2325
b2d52318
AD
23262002-05-02 Akim Demaille <akim@epita.fr>
2327
2328 * data/bison.simple (yyparse): Do not implement @$ = @1.
2329 (YYLLOC_DEFAULT): Adjust to do it.
2330 * doc/bison.texinfo (Location Default Action): Fix.
2331
3a8b4109
AD
23322002-05-02 Akim Demaille <akim@epita.fr>
2333
2334 * src/reader.c (parse_braces): Merge into...
2335 (parse_action): this.
2336
84614e13
AD
23372002-05-02 Akim Demaille <akim@epita.fr>
2338
2339 * configure.in (ALL_LINGUAS): Remove.
2340 * po/LINGUAS, hr.po: New.
2341
fdbcd8e2
AD
23422002-05-02 Akim Demaille <akim@epita.fr>
2343
2344 Remove the so called hairy (semantic) parsers.
2345
2346 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
2347 * src/gram.h, src/gram.c (semantic_parser): Remove.
2348 (rule_t): Remove the guard and guard_line members.
2349 * src/lex.h (token_t): remove tok_guard.
2350 * src/options.c (option_table): Remove %guard and %semantic_parser
2351 support.
2352 * src/output.c, src/output.h (guards_output): Remove.
2353 (prepare): Adjust.
2354 (token_definitions_output): Don't output the `T'
2355 tokens (???).
2356 (output_skeleton): Don't output the guards.
2357 * src/files.c, src/files.c (attrsfile): Remove.
2358 * src/reader.c (symbol_list): Remove the guard and guard_line
2359 members.
2360 Adjust dependencies.
2361 (parse_guard): Remove.
2362 * data/bison.hairy: Remove.
2363 * doc/bison.texinfo (Environment Variables): Remove occurrences of
2364 BISON_HAIRY.
2365
82b6cb3f
AD
23662002-05-02 Akim Demaille <akim@epita.fr>
2367
2368 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
2369 (parse_guard): Rename the formal argument `stack_offset' as
2370 `rule_length', which is more readable.
2371 Adjust callers.
2372 (copy_at, copy_dollar): Instead of outputting the hard coded
2373 values of $$, $n and so forth, output invocation to b4_lhs_value,
2374 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
2375 Note: this patch partially drops `semantic-parser' support: it
2376 always does `rule_length - n', where semantic parsers ought to
2377 always use `-n'.
82b6cb3f
AD
2378 * data/bison.simple, data/bison.c++ (b4_lhs_value)
2379 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
2380
6cbfbcc5
AD
23812002-05-02 Akim Demaille <akim@epita.fr>
2382
2383 * configure.in (AC_INIT): Bump to 1.49b.
2384 (AM_INIT_AUTOMAKE): Short invocation.
2385
b8548114
AD
23862002-05-02 Akim Demaille <akim@epita.fr>
2387
2388 Version 1.49a.
2389
c20cd1fa
AD
23902002-05-01 Akim Demaille <akim@epita.fr>
2391
2392 * src/skeleton.h: Remove.
2393
8a9566d4
AD
23942002-05-01 Akim Demaille <akim@epita.fr>
2395
2396 * src/skeleton.h: Fix the #endif.
2397 Reported by Magnus Fromreide.
2398
8c6d399a
PE
23992002-04-26 Paul Eggert <eggert@twinsun.com>
2400
2401 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
2402 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 2403 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 2404
2b7ed18a
RA
24052002-04-25 Robert Anisko <robert@lrde.epita.fr>
2406
2407 * src/scan-skel.l: Postprocess quadrigraphs.
2408
2409 * src/reader.c (copy_character): New function, used to output
2410 single characters while replacing `[' and `]' with quadrigraphs, to
2411 avoid troubles with M4 quotes.
2412 (copy_comment): Output characters with copy_character.
2413 (read_additionnal_code): Likewise.
2414 (copy_string2): Likewise.
2415 (copy_definition): Likewise.
2416
2417 * tests/calc.at: Exercise M4 quoting.
2418
34a89c50
AD
24192002-04-25 Akim Demaille <akim@epita.fr>
2420
2421 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
2422 between `!' and the command.
2423 Reported by Paul Eggert.
2424
0dd1580a
RA
24252002-04-24 Robert Anisko <robert@lrde.epita.fr>
2426
2427 * tests/calc.at: Exercise prologue splitting.
2428
2429 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
2430 `b4_post_prologue' instead of `b4_prologue'.
2431
2432 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
2433 muscles.
2434 (output): Free pre_prologue_obstack and post_prologue_obstack.
2435 * src/files.h, src/files.c (attrs_obstack): Remove.
2436 (pre_prologue_obstack, post_prologue_obstack): New.
2437 * src/reader.c (copy_definition): Add a parameter to specify the
2438 obstack to fill, instead of using attrs_obstack unconditionally.
2439 (read_declarations): Pass pre_prologue_obstack to copy_definition if
2440 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
2441
83c1796f
PE
24422002-04-23 Paul Eggert <eggert@twinsun.com>
2443
2444 * data/bison.simple: Remove unnecessary commentary and white
2445 space differences from 1_29-branch.
2446 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
2447
2448 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
2449 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
2450 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
2451 constructors or destructors.
2452
2453 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
2454
1207eeac
AD
24552002-04-23 Akim Demaille <akim@epita.fr>
2456
2457 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
2458 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
2459 location with columns.
2460 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
2461 All reported by Paul Eggert.
2462
78ab8f67
AD
24632002-04-22 Akim Demaille <akim@epita.fr>
2464
2465 * src/reduce.c (dump_grammar): Move to...
2466 * src/gram.h, src/gram.c (grammar_dump): here.
2467 Be sure to separate long item numbers.
2468 Don't read the members of a rule's prec if its nil.
2469
133c20e2
AD
24702002-04-22 Akim Demaille <akim@epita.fr>
2471
2472 * src/output.c (table_size, table_grow): New.
2473 (MAXTABLE): Remove, replace uses with table_size.
2474 (pack_vector): Instead of dying when the table is too big, grow it.
2475
9515e8a7
AD
24762002-04-22 Akim Demaille <akim@epita.fr>
2477
2478 * data/bison.simple (yyr1): Its type is that of a token number.
2479 * data/bison.c++ (r1_): Likewise.
2480 * tests/regression.at (Web2c Actions): Adjust.
2481
23c5a174
AD
24822002-04-22 Akim Demaille <akim@epita.fr>
2483
2484 * src/reader.c (token_translations_init): 256 is now the default
2485 value for the error token, i.e., it will be assigned another
2486 number if the user assigned 256 to one of her tokens.
2487 (reader): Don't force 256 to error.
2488 * doc/bison.texinfo (Symbols): Adjust.
2489 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
2490 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
2491 etc. instead of 10, 20, 30 (which was used to `jump' over error
2492 (256) and undefined (2)).
2493
5fbb0954
AD
24942002-04-22 Akim Demaille <akim@epita.fr>
2495
2496 Propagate more token_number_t.
2497
2498 * src/gram.h (token_number_as_item_number)
2499 (item_number_as_token_number): New.
2500 * src/output.c (GENERATE_OUTPUT_TABLE): New.
2501 Use it to create output_item_number_table and
2502 output_token_number_table.
2503 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
2504 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
2505 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
2506 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
2507
4f940944
AD
25082002-04-22 Akim Demaille <akim@epita.fr>
2509
2510 * src/output.h, src/output.c (get_lines_number): Remove.
2511
3ded9a63
AD
25122002-04-19 Akim Demaille <akim@epita.fr>
2513
2514 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
2515 as Lex/Flex'.
2516 (Debugging): More details about enabling the debugging features.
2517 (Table of Symbols): Describe $$, $n, @$, and @n.
2518 Suggested by Tim Josling.
2519
e0c471a9
AD
25202002-04-19 Akim Demaille <akim@epita.fr>
2521
2522 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
2523
fecc10cd
AD
25242002-04-10 Akim Demaille <akim@epita.fr>
2525
2526 * src/system.h: Rely on HAVE_LIMITS_H.
2527 Suggested by Paul Eggert.
2528
51dec47b
AD
25292002-04-09 Akim Demaille <akim@epita.fr>
2530
2531 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
2532 full stderr, and strip it according to the bison options, instead
2533 of composing the error message from different bits.
2534 This makes it easier to check for several error messages.
2535 Adjust all the invocations.
2536 Add an invocation exercising the error token.
2537 Add an invocation demonstrating a stupid error message.
2538 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
2539 Adjust the tests.
2540 Error message are for stderr, not stdout.
2541
007a50a4
AD
25422002-04-09 Akim Demaille <akim@epita.fr>
2543
2544 * src/gram.h, src/gram.c (error_token_number): Remove, use
2545 errtoken->number.
2546 * src/reader.c (reader): Don't specify the user token number (2)
2547 for $undefined, as it uselessly prevents using it.
2548 * src/gram.h (token_number_t): Move to...
2549 * src/symtab.h: here.
2550 (state_t.number): Is a token_number_t.
2551 * src/print.c, src/reader.c: Use undeftoken->number instead of
2552 hard coded 2.
2553 (Even though this 2 is not the same as above: the number of the
2554 undeftoken remains being 2, it is its user token number which
2555 might not be 2).
2556 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
2557 `user_token_number_max'.
2558 Output `undef_token_number'.
2559 * data/bison.simple, data/bison.c++: Use them.
2560 Be sure to map invalid yylex return values to
2561 `undef_token_number'. This saves us from gratuitous SEGV.
2562
2563 * tests/conflicts.at (Solved SR Conflicts)
2564 (Unresolved SR Conflicts): Adjust.
2565 * tests/regression.at (Web2c Actions): Adjust.
2566
06446ccf
AD
25672002-04-08 Akim Demaille <akim@epita.fr>
2568
2569 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
2570 Adding #line.
2571 Remove the duplicate `typedefs'.
2572 (RhsNumberType): Fix the declaration and various other typos.
2573 Use __ofile__.
2574 * data/bison.simple: Use __ofile__.
2575 * src/scan-skel.l: Handle __ofile__.
2576
62a3e4f0
AD
25772002-04-08 Akim Demaille <akim@epita.fr>
2578
2579 * src/gram.h (item_number_t): New, the type of item numbers in
2580 RITEM. Note that it must be able to code symbol numbers as
2581 positive number, and the negation of rule numbers as negative
2582 numbers.
2583 Adjust all dependencies (pretty many).
2584 * src/reduce.c (rule): Remove this `short *' pointer: use
2585 item_number_t.
2586 * src/system.h (MINSHORT, MAXSHORT): Remove.
2587 Include `limits.h'.
2588 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
2589 (shortcpy): Remove.
2590 (MAXTABLE): Move to...
2591 * src/output.c (MAXTABLE): here.
2592 (prepare_rules): Use output_int_table to output rhs.
2593 * data/bison.simple, data/bison.c++: Adjust.
2594 * tests/torture.at (Big triangle): Move the limit from 254 to
2595 500.
2596 * tests/regression.at (Web2c Actions): Ajust.
2597
2598 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
2599 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
2600 passes, but produces negative #line number, once fixed, GCC is
2601 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
2602 C), it passes.
2603 * src/state.h (state_h): Code input lines on ints, not shorts.
2604
bb88b0fc
AD
26052002-04-08 Akim Demaille <akim@epita.fr>
2606
2607 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
2608 and then the grammar.
2609
9a636f47
AD
26102002-04-08 Akim Demaille <akim@epita.fr>
2611
2612 * src/system.h: No longer using strndup.
2613
680e8701
AD
26142002-04-07 Akim Demaille <akim@epita.fr>
2615
2616 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
2617 * src/output.c (output_table_data): Return the longest number.
2618 (prepare_tokens): Output `token_number_max').
2619 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
2620 New.
2621 Use them to define yy_token_number_type/TokenNumberType.
2622 Use this type for yytranslate.
2623 * tests/torture.at (Big triangle): Push the limit from 124 to
2624 253.
2625 * tests/regression.at (Web2c Actions): Adjust.
2626
817e9f41
AD
26272002-04-07 Akim Demaille <akim@epita.fr>
2628
2629 * tests/torture.at (Big triangle): New.
2630 (GNU AWK Grammar, GNU Cim Grammar): Move to...
2631 * tests/existing.at: here.
2632
5123689b
AD
26332002-04-07 Akim Demaille <akim@epita.fr>
2634
2635 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
2636 nritems.
2637 Adjust dependencies.
2638
f3849179
AD
26392002-04-07 Akim Demaille <akim@epita.fr>
2640
2641 * src/reader.c: Normalize increments to prefix form.
2642
bd02036a
AD
26432002-04-07 Akim Demaille <akim@epita.fr>
2644
2645 * src/reader.c, symtab.c: Remove debugging code.
2646
db8837cb
AD
26472002-04-07 Akim Demaille <akim@epita.fr>
2648
2649 Rename all the `bucket's as `symbol_t'.
2650
2651 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
2652 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
2653 * src/symtab.c, src/symtab.h (bucket): Rename as...
2654 (symbol_t): this.
2655 (symbol_list_new, bucket_check_defined, bucket_make_alias)
2656 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
2657 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
2658 (buckets_new, buckets_free, buckets_do): Rename as...
2659 (symbol_list_new, symbol_check_defined, symbol_make_alias)
2660 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
2661 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
2662 (symbols_new, symbols_free, symbols_do): these.
2663
72a23c97
AD
26642002-04-07 Akim Demaille <akim@epita.fr>
2665
2666 Use lib/hash for the symbol table.
2667
2668 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
2669 EOF.
2670 * src/lex.c (lex): Set the `number' member of new terminals.
2671 * src/reader.c (bucket_check_defined, bucket_make_alias)
2672 (bucket_check_alias_consistence, bucket_translation): New.
2673 (reader, grammar_free, readgram, token_translations_init)
2674 (packsymbols): Adjust.
2675 (reader): Number the predefined tokens.
2676 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
2677 for predefined tokens.
2678 * src/symtab.h (bucket): Remove all the hash table related
2679 members.
2680 * src/symtab.c (symtab): Replace by...
2681 (bucket_table): this.
2682 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
2683 (buckets_new, buckets_do): New.
2684
280a38c3
AD
26852002-04-07 Akim Demaille <akim@epita.fr>
2686
2687 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
2688 (start_symbol, max_user_token_number, semantic_parser)
2689 (error_token_number): Initialize.
2690 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
2691 Initialize.
2692 (reader): Don't.
2693 (errtoken, eoftoken, undeftoken, axiom): Extern.
2694
03b31c0c
AD
26952002-04-07 Akim Demaille <akim@epita.fr>
2696
2697 * src/gram.h (rule_s): prec and precsym are now pointers
2698 to the bucket giving the priority/associativity.
2699 Member `associativity' removed: useless.
2700 * src/reduce.c, src/conflicts.c: Adjust.
2701
8b3df748
AD
27022002-04-07 Akim Demaille <akim@epita.fr>
2703
2704 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
2705 Properly escape the symbols' TAG when outputting them.
2706
e601aa1d
AD
27072002-04-07 Akim Demaille <akim@epita.fr>
2708
2709 * src/lalr.h (LA): Is a bitsetv, not bitset*.
2710
b0299a2e
AD
27112002-04-07 Akim Demaille <akim@epita.fr>
2712
2713 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
2714 (LArule): this, which is an array to rule_t*.
2715 * src/print.c, src/conflicts.c: Adjust.
2716
d7e1f00c
AD
27172002-04-07 Akim Demaille <akim@epita.fr>
2718
2719 * src/gram.h (rule_t): Rename `number' as `user_number'.
2720 `number' is a new member.
2721 Adjust dependencies.
2722 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
2723
cc9305dd
AD
27242002-04-07 Akim Demaille <akim@epita.fr>
2725
2726 As a result of the previous patch, it is no longer needed
2727 to reorder ritem itself.
2728
2729 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
2730
b0940840
AD
27312002-04-07 Akim Demaille <akim@epita.fr>
2732
2733 Be sure never to walk through RITEMS, but use only data related to
2734 the rules themselves. RITEMS should be banished.
2735
2736 * src/output.c (output_token_translations): Rename as...
2737 (prepare_tokens): this.
2738 In addition to `translate', prepare the muscles `tname' and
2739 `toknum', which were handled by...
2740 (output_rule_data): this.
2741 Remove, and move the remainder of its outputs into...
2742 (prepare_rules): this new routines, which also merges content from
2743 (output_gram): this.
2744 (prepare_rules): Be sure never to walk through RITEMS.
2745 (output_stos): Rename as...
2746 (prepare_stos): this.
2747 (output): Always invoke prepare_states, after all, just don't use it
2748 in the output if you don't need it.
2749
643a5994
AD
27502002-04-07 Akim Demaille <akim@epita.fr>
2751
2752 * src/LR0.c (new_state): Display `nstates' as the name of the
2753 newly created state.
2754 Adjust to initialize first_state and last_state if needed.
2755 Be sure to distinguish the initial from the final state.
2756 (new_states): Create the itemset of the initial state, and use
2757 new_state.
2758 * src/closure.c (closure): Now that the initial state has its
2759 items properly set, there is no need for a special case when
2760 creating `ruleset'.
2761
2762 As a result, now the rule 0, reducing to $axiom, is visible in the
2763 outputs. Adjust the test suite.
2764
2765 * tests/conflicts.at (Solved SR Conflicts)
2766 (Unresolved SR Conflicts): Adjust.
2767 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
2768 * tests/conflicts.at (S/R in initial): New.
2769
b4c4ccc2
AD
27702002-04-07 Akim Demaille <akim@epita.fr>
2771
2772 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
2773 the RHS of the rules.
2774 * src/output.c (output_gram): Likewise.
2775
bba97eb2
AD
27762002-04-07 Akim Demaille <akim@epita.fr>
2777
2778 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
2779 bucket.
2780 Adjust all dependencies.
2781 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
2782 `number' of the buckets too.
2783 * src/gram.h: Include `symtab.h'.
2784 (associativity): Move to...
2785 * src/symtab.h: here.
2786 No longer include `gram.h'.
2787
c3b407f4
AD
27882002-04-07 Akim Demaille <akim@epita.fr>
2789
2790 * src/gram.h, src/gram.c (rules_rhs_length): New.
2791 (ritem_longest_rhs): Use it.
2792 * src/gram.h (rule_t): `number' is a new member.
2793 * src/reader.c (packgram): Set it.
2794 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
2795 the end of `rules', and count them out of `nrules'.
2796 (reduce_output, dump_grammar): Adjust.
2797 * src/print.c (print_grammar): It is no longer needed to check for
2798 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
2799 * tests/reduce.at (Reduced Automaton): New test.
2800
11652ab3
AD
28012002-04-07 Akim Demaille <akim@epita.fr>
2802
2803 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
2804 lacking `+ 1' to nrules, Bison reported as useless a token if it
2805 was used solely to set the precedence of the last rule...
2806
26b23c1a
AD
28072002-04-07 Akim Demaille <akim@epita.fr>
2808
2809 * data/bison.c++, data/bison.simple: Don't output the current file
2810 name in #line, to avoid useless diffs between two identical
2811 outputs under different names.
2812
18bcecb0
AD
28132002-04-07 Akim Demaille <akim@epita.fr>
2814
2815 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
2816 Normalize loops to using `< nrules + 1', not `<= nrules'.
2817
fa770c86
AD
28182002-04-07 Akim Demaille <akim@epita.fr>
2819
2820 * TODO: Update.
2821
d9b739c3
AD
28222002-04-07 Akim Demaille <akim@epita.fr>
2823
2824 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
2825 bucket.value as bucket.number.
2826
99013900
AD
28272002-04-07 Akim Demaille <akim@epita.fr>
2828
2829 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
2830 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
2831 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
2832 RHS, instead of being an index in RITEMS.
2833
e966383b
PE
28342002-04-04 Paul Eggert <eggert@twinsun.com>
2835
2836 * doc/bison.texinfo: Update copyright date.
2837 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
2838 (Symbols): Warn about running Bison in one character set,
2839 but compiling and/or running in an incompatible one.
2840 Warn about character code 256, too.
2841
28422002-04-03 Paul Eggert <eggert@twinsun.com>
2843
2844 * src/bison.data (YYSTACK_ALLOC): Depend on whether
2845 YYERROR_VERBOSE is nonzero, not whether it is defined.
2846
2847 Merge changes from bison-1_29-branch.
c307773e 2848
8d6c48b9
PE
28492002-03-20 Paul Eggert <eggert@twinsun.com>
2850
2851 Merge fixes from Debian bison_1.34-1.diff.
2852
2853 * configure.in (AC_PREREQ): 2.53.
2854
e53c6322
AD
28552002-03-20 Akim Demaille <akim@epita.fr>
2856
2857 * src/conflicts.c (log_resolution): Argument `resolution' is const.
2858
9ffbeca7
PE
28592002-03-19 Paul Eggert <eggert@twinsun.com>
2860
21db0b2a
PE
2861 * src/bison.simple (YYCOPY): New macro.
2862 (YYSTACK_RELOCATE): Use it.
2863 Remove Type arg; no longer needed. All callers changed.
2864 (yymemcpy): Remove; no longer needed.
2865
9ffbeca7
PE
2866 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
2867 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
2868
642cb8f8
AD
28692002-03-19 Akim Demaille <akim@epita.fr>
2870
2871 Test and fix the #line outputs.
2872
2873 * tests/atlocal.at (GCC): New.
2874 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
2875 (Prologue synch line, ,%union synch line, Postprologue synch line)
2876 (Action synch line, Epilogue synch line): New tests.
2877 * src/reader.c (parse_union_decl): Define the muscle stype_line.
2878 * data/bison.simple, data/bison.c++: Use it.
2879
3c31a486
AD
28802002-03-19 Akim Demaille <akim@epita.fr>
2881
2882 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
2883 (Solved SR Conflicts, %expect not enough, %expect right)
2884 (%expect too much): Move to...
2885 * tests/conflicts.at: this new file.
2886
0d8bed56
AD
28872002-03-19 Akim Demaille <akim@epita.fr>
2888
2889 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
2890 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
2891 that we can move to enums for instance.
2892 * src/output.c (token_definitions_output): Output a list of
2893 `token-name, token-number' instead of the #define.
2894 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
2895
9208d17f
AD
28962002-03-14 Akim Demaille <akim@epita.fr>
2897
2898 Use Gettext 0.11.1.
2899
af27eacb
RA
29002002-03-09 Robert Anisko <robert@lrde.epita.fr>
2901
2902 * data/bison.c++: Make the user able to add members to the generated
2903 parser by subclassing.
2904
9101a310
RA
29052002-03-05 Robert Anisko <robert@lrde.epita.fr>
2906
2907 * src/reader.c (read_additionnal_code): `c' should be an integer, not
2908 a character.
2909 Reported by Nicolas Tisserand and Nicolas Burrus.
2910
fff9bf0b
RA
29112002-03-04 Robert Anisko <robert@lrde.epita.fr>
2912
2913 * src/reader.c: Warn about lacking semi-colons, do not complain.
2914
64dba31e
RA
29152002-03-04 Robert Anisko <robert@lrde.epita.fr>
2916
2917 * data/bison.c++: Remove a debug line.
2918
374f5a14
RA
29192002-03-04 Robert Anisko <robert@lrde.epita.fr>
2920
2921 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
2922 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
2923 provide a default implementation.
2924
bfcf1f3a
AD
29252002-03-04 Akim Demaille <akim@epita.fr>
2926
2927 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
2928 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
2929 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
2930 * tests/semantic.at (Parsing Guards): Similarly.
2931 * src/reader.at (readgram): Complain if the last rule is not ended
2932 with a semi-colon.
2933
65ccf9fc
AD
29342002-03-04 Akim Demaille <akim@epita.fr>
2935
2936 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
2937 * src/closure.c: here.
2938 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
2939 RTC.
2940 * src/warshall.h, src/warshall.c: Remove.
2941 * tests/sets.at (Broken Closure): Adjust.
2942
d0039cbc
AD
29432002-03-04 Akim Demaille <akim@epita.fr>
2944
2945 * src/output.c (output_skeleton): tempdir is const.
2946 bytes_read is unused.
2947
345cea78
AD
29482002-03-04 Akim Demaille <akim@epita.fr>
2949
2950 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
2951 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
2952 Update.
2953 From Michael Hayes.
2954
564801f7
AD
29552002-03-04 Akim Demaille <akim@epita.fr>
2956
2957 * src/closure.c (closure): `r' is unused.
2958
e5352bc7
AD
29592002-03-04 Akim Demaille <akim@epita.fr>
2960
2961 * tests/sets.at (Broken Closure): Add the ending `;'.
2962 * src/reader.at (readgram): Complain if a rule is not ended with a
2963 semi-colon.
2964
914feea9
AD
29652002-03-04 Akim Demaille <akim@epita.fr>
2966
2967 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
2968 (count_sr_conflicts): Use bitset_count.
2969 * src/reduce.c (inaccessable_symbols): Ditto.
2970 (bits_size): Remove.
2971 * src/warshall.h, src/warshall.c: Convert to bitsetv.
2972
f0250de6
AD
29732002-03-04 Akim Demaille <akim@epita.fr>
2974
2975 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
2976 * src/reduce.c: Remove the `bitset_zero's following the
2977 `bitset_create's, as now it is performed by the latter.
2978
ef017502
AD
29792002-03-04 Akim Demaille <akim@epita.fr>
2980
2981 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
2982 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
2983 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
2984 latest sources from Michael.
2985
76514394
AD
29862002-03-04 Akim Demaille <akim@epita.fr>
2987
2988 * src/output.c (output): Don't free the grammar.
2989 * src/reader.c (grammar_free): New.
2990 * src/main.c (main): Call it and don't free symtab here.
2991
55024580
AD
29922002-03-04 Akim Demaille <akim@epita.fr>
2993
2994 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
2995 before returning.
2996 Reported by Benoit Perrot.
2997
f9abaa2c
AD
29982002-03-04 Akim Demaille <akim@epita.fr>
2999
3000 Use bitset operations when possible, not loops over bits.
3001
3002 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
3003 bitset_or.
3004 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
3005 * src/reduce.c (useless_nonterminals): Formatting changes.
3006 * src/warshall.c (TC): Use bitset_or.
3007
0e721e75
AD
30082002-03-04 Akim Demaille <akim@epita.fr>
3009
3010 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
3011 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
3012 Ditto.
3013
0fb1ffb1
AD
30142002-03-04 Akim Demaille <akim@epita.fr>
3015
3016 * src/lalr.c (F): Now a bitset*.
3017 Adjust all dependencies.
3018
b86796bf
AD
30192002-03-04 Akim Demaille <akim@epita.fr>
3020
3021 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
3022 Adjust all dependencies.
3023
602bbf31
AD
30242002-03-04 Akim Demaille <akim@epita.fr>
3025
3026 * src/L0.c, src/LR0.h (nstates): Be size_t.
3027 Adjust comparisons (signed vs unsigned).
3028 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
3029 bitset*.
3030 Adjust all dependencies.
3031
d8a0245c
AD
30322002-03-04 Akim Demaille <akim@epita.fr>
3033
3034 * src/closure.c (firsts): Now, also a bitset.
3035 Adjust all dependencies.
3036 (varsetsize): Remove, now unused.
3037 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
3038
34ba9743
AD
30392002-03-04 Akim Demaille <akim@epita.fr>
3040
3041 * src/print.c: Convert to use bitset.h, not hand coded iterations
3042 over ints.
3043
ed86e78c
AD
30442002-03-04 Akim Demaille <akim@epita.fr>
3045
3046 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
3047
dfdb1797
AD
30482002-03-04 Akim Demaille <akim@epita.fr>
3049
3050 * src/closure.c (ruleset): Be a bitset.
3051 (rulesetsize): Remove.
3052
7086e707
AD
30532002-03-04 Akim Demaille <akim@epita.fr>
3054
3055 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
3056 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
3057 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
3058 * src/closure.c (fderives): Be an array of bitsets.
3059
98254360
RA
30602002-02-28 Robert Anisko <robert@lrde.epita.fr>
3061
3062 * data/bison.c++: Merge the two generated headers. Insert a copyright
3063 notice in each output file.
3064
a75c057f
AD
30652002-02-28 Akim Demaille <akim@epita.fr>
3066
3067 * data/bison.c++: Copy the prologue of bison.simple to fetch
3068 useful M4 definitions, such as b4_header_guard.
3069
06b00abc
AD
30702002-02-25 Akim Demaille <akim@epita.fr>
3071
3072 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
3073 translator friendly scheme for the bgr
3074 copyright notice.
06b00abc 3075
70e7d534
AD
30762002-02-25 Akim Demaille <akim@epita.fr>
3077
3078 * src/output.c (header_output): Remove, now handled completely via
3079 M4.
3080
abe017f6
AD
30812002-02-25 Akim Demaille <akim@epita.fr>
3082
3083 * m4/m4.m4: New, from CVS Autoconf.
3084 * configure.in: Invoke it.
3085 * src/output.c (output_skeleton): Use its result instead of the
3086 hard coded name.
3087
381fb12e
AD
30882002-02-25 Akim Demaille <akim@epita.fr>
3089
3090 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
3091 Fileutils 4.1.5.
3092 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
3093 * src/output.c (output_skeleton): Use mkstemp to create a real
3094 temporary file.
3095 Move the filling of `skeleton' and its muscle to...
3096 (prepare): here.
3097 (output): Move the definition of the prologue muscle to...
3098 (prepare): here.
3099 * src/system.h (DEFAULT_TMPDIR): New.
3100
6f38107f
PE
31012002-02-14 Paul Eggert <eggert@twinsun.com>
3102
3103 Remove the support for C++ namespace cleanliness; it was
3104 causing more problems than it was curing, since it didn't work
3105 properly on some nonstandard C++ compilers. This can wait
3106 for a proper C++ parser.
3107
3108 * NEWS: Document this.
3109 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
3110 of C++, as it's treated like C now.
3111 * src/bison.simple (YYSTD): Remove.
3112 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
3113 Treat C++ just like Standard C instead of trying to support
3114 namespace cleanliness.
3115
80cce3da
AD
31162002-02-14 Akim Demaille <akim@epita.fr>
3117
3118 * tests/regression.at (else): Adjust to Andreas' change.
3119
842e8679
AD
31202002-02-14 Akim Demaille <akim@epita.fr>
3121
3122 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
3123
4bda3f10
AD
31242002-02-13 Andreas Schwab <schwab@suse.de>
3125
3126 * src/output.c (output_rule_data): Don't output NULL, it might
3127 not be defined yet.
3128
4162fa07 31292002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 3130
4162fa07
RA
3131 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
3132 (Copyright notice): Update.
b418ecd8 3133
bd16a5dc
AD
31342002-02-11 Akim Demaille <akim@epita.fr>
3135
3136 * tests/regression.at (%nonassoc and eof): Don't include
3137 nonportable headers.
3138
8d69a1a3
RA
31392002-02-08 Robert Anisko <robert@lrde.epita.fr>
3140
3141 * data/bison.c++: Correct error recovery. Make the user able to
3142 initialize the starting location.
3143
9b2d0677
AD
31442002-02-07 Akim Demaille <akim@epita.fr>
3145
3146 * tests/input.at: New.
3147
69e2658b
RA
31482002-02-07 Robert Anisko <robert@lrde.epita.fr>
3149
3150 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 3151 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
3152 directives around tables only needed for debugging.
3153
4aacc3a7
RA
31542002-02-07 Robert Anisko <robert@lrde.epita.fr>
3155
3156 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
3157 C++ parsers.
3158 (yy::b4_name::parse): Use print_.
3159
762a801e
RA
31602002-02-07 Robert Anisko <robert@lrde.epita.fr>
3161
3162 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
3163
4bb2bc3f
RA
31642002-02-07 Robert Anisko <robert@lrde.epita.fr>
3165
3166 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
3167 C++ parsers.
3168 (yy::b4_name::parse): Build verbose error messages, and use error_.
3169
6b45a3ca
RA
31702002-02-06 Robert Anisko <robert@lrde.epita.fr>
3171
3172 * data/bison.c++: Fix m4 quoting in comments.
3173
50997c6e
RA
31742002-02-06 Robert Anisko <robert@lrde.epita.fr>
3175
3176 * data/bison.c++: Adjust the parser code. Fix some muscles that were
3177 not expanded by m4.
3178
3f3eed27
AD
31792002-02-05 Akim Demaille <akim@epita.fr>
3180
3181 * data/bison.c++: Adjust to the M4 back end.
3182 More is certainly needed.
3183
be2a1a68
AD
31842002-02-05 Akim Demaille <akim@epita.fr>
3185
3186 Give a try to M4 as a back end.
3187
3188 * lib/readpipe.c: New, from wdiff.
3189 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
3190 BISON_HAIRY.
3191 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
3192 specific values. Now it is m4 that performs the lookup.
3193 * src/parse-skel.y: Remove.
3194 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
3195 * src/output.c (actions_output, guards_output)
3196 (token_definitions_output): No longer keeps track of the output
3197 line number, hence remove the second argument.
3198 (guards_output): Check against the guard member of a rule, not the
3199 action member.
3200 Adjust callers.
3201 (output_skeleton): Don't look for the skeleton location, let m4 do
3202 that.
3203 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
3204 file will be used.
3205 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
3206 (prepare): Given that for the time being changesyntax is not
3207 usable in M4, rename the muscles using `-' to `_'.
3208 Define `defines_flag', `output_parser_name' and `output_header_name'.
3209 * src/output.h (actions_output, guards_output)
3210 (token_definitions_output): Adjust prototypes.
3211 * src/scan-skel.l: Instead of scanning the skeletons, it now
3212 processes the output of m4: `__oline__' and `#output'.
3213 * data/bison.simple: Adjust to be used by M4(sugar).
3214 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
3215 to date.
3216 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
3217 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
3218 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
3219 shamelessly stolen from CVS Autoconf.
3220
beda758b
AD
32212002-02-05 Akim Demaille <akim@epita.fr>
3222
3223 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
3224 * configure.in: Check for the declarations of free and malloc.
3225 * src/muscle_tab.c: Adjust.
3226
5ece6d43
AD
32272002-02-05 Akim Demaille <akim@epita.fr>
3228
3229 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
3230 which have no values.
3231
5bb18f9a
AD
32322002-02-05 Akim Demaille <akim@epita.fr>
3233
3234 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
3235 * data/: here.
3236
894dd62e
PE
32372002-01-29 Paul Eggert <eggert@twinsun.com>
3238
3239 * src/bison.simple (YYSIZE_T): Do not define merely because
3240 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
3241 On some platforms, <alloca.h> does not declare YYSTD (size_t).
3242
82841af7
AD
32432002-01-27 Akim Demaille <akim@epita.fr>
3244
3245 Fix `%nonassoc and eof'.
3246
3247 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
3248 which were not properly copied! Replace
3249 memcpy (res->errs, src->errs, src->nerrs);
3250 with
3251 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
3252 !!!
3253 * tests/regression.at (%nonassoc and eof): Adjust to newest
3254 Autotest: `.' is not in the PATH.
3255
318b76e9
AD
32562002-01-27 Akim Demaille <akim@epita.fr>
3257
3258 * tests/sets.at (AT_EXTRACT_SETS): New.
3259 (Nullable): Use it.
3260 (Firsts): New.
3261
30d2f3d5
AD
32622002-01-26 Akim Demaille <akim@epita.fr>
3263
3264 * tests/actions.at, tests/calc.at, tests/headers.at,
3265 * tests/torture.at: Adjust to the newest Autotest which no longer
3266 forces `.' in the PATH.
3267
30f8c395
AD
32682002-01-25 Akim Demaille <akim@epita.fr>
3269
3270 * tests/regression.at (%nonassoc and eof): New.
3271 Suggested by Robert Anisko.
3272
29ae55f1
AD
32732002-01-24 Akim Demaille <akim@epita.fr>
3274
3275 Bison dumps core when trying to complain about broken input files.
3276 Reported by Cris van Pelt.
3277
3278 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
3279 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
3280 into...
3281 (Invalid inputs): Strengthen: exercise parse_percent_token.
3282
2b548aa6
RA
32832002-01-24 Robert Anisko <robert.anisko@epita.fr>
3284
3285 * src/Makefile.am: Add bison.c++.
3286 * src/bison.c++: New skeleton.
3287
bb0146c2
AD
32882002-01-21 Paolo Bonzini <bonzini@gnu.org>
3289
3290 * po/it.po: New.
3291
bec30531
AD
32922002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
3293
3294 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
3295
fc6edc45
MA
32962002-01-20 Marc Autret <marc@gnu.org>
3297
3298 * src/files.c (compute_output_file_names): Fix
3299
5e5d5415
MA
33002002-01-20 Marc Autret <marc@gnu.org>
3301
3302 * tests/output.at: New test.
3303 * src/files.c (compute_base_names): Don't map extensions when
3304 the YACC flag is set, use defaults.
3305 Reported by Evgeny Stambulchik.
3306
44ea3fbd
MA
33072002-01-20 Marc Autret <marc@gnu.org>
3308
bb0146c2 3309 * src/system.h: Need to define __attribute__ away for non-GCC
44ea3fbd
MA
3310 compilers as well (i.e. the vendor C compiler).
3311 Suggested by Albert Chin-A-Young.
3312
338963d1
TVH
33132002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
3314
3315 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
3316 canonical definition.
3317 * src/system.h: Use the canonical definition for PARAMS (avoids
3318 a conflict with the macro from lib/hash.h).
3319
c57b2479
AD
33202002-01-11 Akim Demaille <akim@epita.fr>
3321
3322 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 3323 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 3324
b85810ae
AD
33252002-01-09 Akim Demaille <akim@epita.fr>
3326
3327 * src/files.c, src/files.h (output_infix): New.
3328 (tab_extension): Remove.
3329 (compute_base_names): Compute the former, drop the latter.
3330 * src/output.c (prepare): Insert the muscles `output-infix', and
3331 `output-suffix'.
3332 * src/parse-skel.y (string, string.1): New.
3333 (section.header): Use it.
3334 (section.yacc): Remove.
3335 (prefix): Remove too.
3336 * src/scan-skel.l: Adjust.
3337 * src/bison.simple, src/bison.hairy: Adjust.
3338
cae60122
AD
33392002-01-09 Akim Demaille <akim@epita.fr>
3340
3341 * configure.in (WERROR_CFLAGS): Compute it.
3342 * src/Makefile.am (CFLAGS): Pass it.
3343 * tests/atlocal.in (CFLAGS): Idem.
3344 * src/files.c: Fix a few warnings.
3345 (get_extension_index): Remove, unused.
3346
ae404801
AD
33472002-01-08 Akim Demaille <akim@epita.fr>
3348
3349 * src/getargs.c (AS_FILE_NAME): New.
3350 (getargs): Use it to convert DOSish file names.
3351 * src/files.c (base_name): Rename as full_base_name to avoid
3352 clashes with `base_name ()'.
3353 (filename_split): New.
3354 (compute_base_names): N-th rewrite, using filename_split.
3355
22312b71
AD
33562002-01-08 Akim Demaille <akim@epita.fr>
3357
3358 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
3359 New, stolen from the Fileutils 4.1.
3360 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
3361 * configure.in: Check for the presence of memrchr, and of its
3362 prototype.
3363
a67cef01
TVH
33642002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
3365
3366 * lib/hash.h (__P): Added definition for this macro.
3367 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
3368 BUILT_SOURCES, to ensure they are generated first.
3369 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
3370 %error-verbose to allow bootstrapping with bison 1.30x.
3371
2b25d624
AD
33722002-01-06 Akim Demaille <akim@epita.fr>
3373
3374 * src/reader.c (parse_braces): Don't fetch the next char, the
3375 convention is to fetch on entry.
3376 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
3377 'switch' without a following semicolon.
3378 * tests/regression.at (braces parsing): New.
3379
3460813b
AD
33802002-01-06 Akim Demaille <akim@epita.fr>
3381
3382 Bison is dead wrong in its RR conflict reports.
3383
3384 * tests/torture.at (GNU Cim Grammar): New.
3385 * src/conflicts.c (count_rr_conflicts): Fix.
3386
73784c64
AD
33872002-01-06 Akim Demaille <akim@epita.fr>
3388
3389 Creating package.m4 from configure.ac causes too many problems.
3390
3391 * tests/Makefile.am (package.m4): Create it by hand,
3392 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
3393
25d81090
AD
33942002-01-06 Akim Demaille <akim@epita.fr>
3395
3396 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
3397 skeleton.h.
3398
a9b8959e
PE
33992002-01-04 Paul Eggert <eggert@twinsun.com>
3400
3401 * doc/bison.texinfo (Debugging):
3402 Remove YYSTDERR; it's no longer defined or used.
3403 Also, s/cstdio.h/cstdio/.
3404
25d81090
AD
34052002-01-03 Akim Demaille <akim@epita.fr>
3406
3407 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
3408
1109455c
AD
34092002-01-03 Akim Demaille <akim@epita.fr>
3410
3411 * src/parse-skel.y (process_skeleton): Don't bind the parser's
3412 tracing code to --trace, wait for a better --trace option, with
3413 args.
3414
7ea5e977
AD
34152002-01-03 Akim Demaille <akim@epita.fr>
3416
3417 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
3418 The ISO C++ standard is extremely clear about it: stderr is
3419 considered a macro, not a regular symbol (see table 94 `Header
3420 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
3421 Therefore std:: does not apply to it. It still does with fprintf.
3422 Also, s/cstdio.h/cstdio/.
3423
fab5b110
AD
34242002-01-03 Akim Demaille <akim@epita.fr>
3425
3426 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
3427 for non system headers.
3428
aed7fd9b
AD
34292002-01-02 Akim Demaille <akim@epita.fr>
3430
3431 Equip the skeleton chain with location tracking, runtime trace,
3432 pure parser and scanner.
3433
3434 * src/parse-skel.y: Request a pure parser, locations, and prefix
3435 renaming.
3436 (%union): Having several members with the same type does not help
3437 type mismatches, simplify.
3438 (YYPRINT, yyprint): New.
3439 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
3440 (skel_error): this.
3441 Handle locations.
3442 * src/scan-skel.l: Adjust to these changes.
3443 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
3444 (LOCATION_PRINT, skel_control_t): New.
3445
24fad99e
AD
34462001-12-30 Akim Demaille <akim@epita.fr>
3447
3448 * src/parse-skel.y: Get rid of the shift/reduce conflict:
3449 replace `gb' with BLANKS.
3450 * src/scan-skel.l: Adjust.
3451
a4b36db4
AD
34522001-12-30 Akim Demaille <akim@epita.fr>
3453
3454 * src/system.h: We don't need nor want bcopy.
3455 Throw away MS-DOS crap: we don't need getpid.
3456 * configure.in: We don't need strndup. It was even causing
3457 problems: because Flex includes the headers *before* us,
3458 _GNU_SOURCE is not defined by config.h, and therefore strndup was
3459 not visible.
3460 * lib/xstrndup.c: New.
3461 * src/scan-skel.l: Use it.
3462 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
3463 * src/parse-skel.y: Use %directives instead of #defines.
3464
1239777d
AD
34652001-12-30 Akim Demaille <akim@epita.fr>
3466
3467 * src/skeleton.h: New.
3468 * src/output.c (output_parser, output_master_parser): Remove, dead
3469 code.
3470 * src/output.h (get_lines_number, actions_output, guards_output)
3471 (token_definitions_output): Prototype them.
3472 * src/parse-skel.y: Add the license notice.
3473 Include output.h and skeleton.h.
3474 (process_skeleton): Returns void, and takes a single parameter.
3475 * src/scan-skel.l: Add the license notice.
3476 Include skeleton.h.
3477 Don't use %option yylineno: it seems that then Flex imagines
3478 REJECT has been used, and therefore it won't reallocate its
3479 buffers (which makes no other sense to me than a bug). It results
3480 in warnings for `unused: yy_flex_realloc'.
3481
9b3add5b
RA
34822001-12-30 Robert Anisko <robert.anisko@epita.fr>
3483
3484 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
3485 (MUSCLE_INSERT_PREFIX): ...to there.
3486 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
3487 (MUSCLE_INSERT_PREFIX): Move from here...
3488
3489 * src/bison.hairy: Add a section directive. Put braces around muscle
3490 names. This parser skeleton is still broken, but Bison should not
3491 choke on a bad muscle 'syntax'.
3492 * src/bison.simple: Add a section directive. Put braces around muscle
3493 names.
3494
3495 * src/files.h (strsuffix, stringappend): Add declarations.
3496 (tab_extension): Add declaration.
3497 (short_base_name): Add declaration.
3498
3499 * src/files.c (strsuffix, stringappend): No longer static. These
3500 functions are used in the skeleton parser.
3501 (tab_extension): New.
3502 (compute_base_names): Use the computations done in this function
fab5b110 3503 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
3504 names.
3505 (short_base_name): No longer static.
3506
3507 * src/output.c (output_skeleton): New.
3508 (output): Disable call to output_master_parser, and give a try to
3509 a new skeleton handling system.
3510 (guards_output, actions_output): No longer static.
3511 (token_definitions_output, get_lines_number): No longer static.
3512
3513 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
3514
fab5b110 3515 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
3516 parse-skel.y.
3517
3518 * src/parse-skel.y: New file.
3519 * src/scan-skel.l: New file.
3520
b5b61c61
AD
35212001-12-29 Akim Demaille <akim@epita.fr>
3522
3523 %name-prefix is broken.
3524
3525 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
3526 Adjust all dependencies.
3527 * tests/headers.at (export YYLTYPE): Strengthen this test: use
3528 %name-prefix.
3529
3530 Renaming yylval but not yylloc is not consistent. Now we do.
3531
3532 * src/bison.simple: Prefix yylloc if used.
3533 * doc/bison.texinfo (Decl Summary): Document that.
3534
8c9a50be
AD
35352001-12-29 Akim Demaille <akim@epita.fr>
3536
3537 * doc/bison.texinfo: Promote `%long-directive' over
3538 `%long_directive'.
3539 Remove all references to fixed-output-files, yacc is enough.
3540
d99361e6
AD
35412001-12-29 Akim Demaille <akim@epita.fr>
3542
3543 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
3544 user prologue. These are defaults.
3545 * tests/actions.at (Mid-rule actions): Make sure the user can
3546 define YYDEBUG and YYERROR_VERBOSE.
3547
b9cecb91
AD
35482001-12-29 Akim Demaille <akim@epita.fr>
3549
3550 * src/output.c (header_output): Don't forget to export YYLTYPE and
3551 yylloc.
3552 * tests/headers.at (export YYLTYPE): New, make sure it does.
3553 * tests/regression.at (%union and --defines, Invalid CPP headers):
3554 Move to...
3555 * tests/headers.at: here.
3556
aea13e97
AD
35572001-12-29 Akim Demaille <akim@epita.fr>
3558
3559 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
3560
931394cb
AD
35612001-12-29 Akim Demaille <akim@epita.fr>
3562
3563 * tests/actions.at (Mid-rule actions): Output on a single line
3564 instead of several.
3565
704a47c4
AD
35662001-12-29 Akim Demaille <akim@epita.fr>
3567
3568 * doc/bison.texinfo: Formatting changes.
3569
091e20bb
AD
35702001-12-29 Akim Demaille <akim@epita.fr>
3571
3572 Don't store the token defs in a muscle, just be ready to output it
3573 on command. Now possible via `symbols'. Fixes a memory leak.
3574
3575 * src/output.c (token_definitions_output): New.
3576 (output_parser, header_output): Use it.
3577 * src/reader.c (symbols_save): Remove.
3578
cce71710
AD
35792001-12-29 Akim Demaille <akim@epita.fr>
3580
3581 * src/bison.simple: Do not provide a default for YYSTYPE and
3582 YYLTYPE before the user's prologue. Otherwise it's hardly... a
3583 default.
3584
82c035a8
AD
35852001-12-29 Akim Demaille <akim@epita.fr>
3586
3587 Mid-rule actions are simply... ignored!
3588
3589 * src/reader.c (readgram): Be sure to attach mid-rule actions to
3590 the empty-rule associated to the dummy symbol, not to the host
3591 rule.
3592 * tests/actions.at (Mid-rule actions): New.
3593
8419d367
AD
35942001-12-29 Akim Demaille <akim@epita.fr>
3595
3596 Memory leak.
3597
3598 * src/reader.c (reader): Free grammar.
3599
375d5806
AD
36002001-12-29 Akim Demaille <akim@epita.fr>
3601
3602 Memory leak.
3603
3604 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
3605 since it allocates it for each state, although only one is needed.
3606 (allocate_storage): Do it here.
3607
f51cb8ff
AD
36082001-12-29 Akim Demaille <akim@epita.fr>
3609
3610 * src/options.h, src/options.c (create_long_option_table): Rename
3611 as...
3612 (long_option_table_new): this, with a clearer prototype.
3613 (percent_table): Remove, unused,
3614 * src/getargs.c (getargs): Adjust.
3615
29e88316
AD
36162001-12-29 Akim Demaille <akim@epita.fr>
3617
3618 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
3619 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
3620 as states.
3621
b9f71f19
AD
36222001-12-29 Akim Demaille <akim@epita.fr>
3623
3624 * src/lalr.c (build_relations): Rename `states' as `states1'.
3625 Sorry, I don't understand exactly what it is, no better name...
3626
1a2b5d37
AD
36272001-12-29 Akim Demaille <akim@epita.fr>
3628
3629 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
3630 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
3631 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
3632 as rules.
3633
1cca533e
AD
36342001-12-29 Akim Demaille <akim@epita.fr>
3635
3636 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
3637 ago.
3638
c03ae966
AD
36392001-12-29 Akim Demaille <akim@epita.fr>
3640
3641 * src/reader.c, src/reader.h (user_toknums): Remove.
3642 Adjust all users to use symbols[i]->user_token_number.
3643
5a670b1e
AD
36442001-12-29 Akim Demaille <akim@epita.fr>
3645
3646 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
3647 Adjust all users to use symbols[i]->prec or ->assoc.
3648
ad949da9
AD
36492001-12-29 Akim Demaille <akim@epita.fr>
3650
3651 * src/reader.c, src/reader.h (tags): Remove.
3652 Adjust all users to use symbols[i]->tag.
3653
0e78e603
AD
36542001-12-29 Akim Demaille <akim@epita.fr>
3655
3656 * src/gram.h, src/gram.c (symbols): New, similar to state_table
3657 and rule_table.
3658 * src/reader.c (packsymbols): Fill this table.
3659 Drop sprec.
3660 * src/conflicts.c (resolve_sr_conflict): Adjust.
3661 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
3662 single table.
3663 Use symbols[i]->tag instead of tags[i].
3664
213e640e
AD
36652001-12-29 Akim Demaille <akim@epita.fr>
3666
3667 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
3668 In addition, put a comment in there, to replace...
3669 * tests/regression.at (%union and C comments): Remove.
3670
e7b8bef1
AD
36712001-12-29 Akim Demaille <akim@epita.fr>
3672
3673 * tests/regression.at (Web2c Actions): Blindly move the actual
3674 output as expected output. The contents *seem* right to me, but I
3675 can't pretend reading perfectly parser tables... Nonetheless, all
3676 the other tests pass correctly, the table look OK, even though the
3677 presence of `$axiom' is to be noted: AFAICS it is useless (but
3678 harmless).
3679
b68e7744
AD
36802001-12-29 Akim Demaille <akim@epita.fr>
3681
3682 * src/reader.c (readgram): Don't add the rule 0 if there were no
3683 rules read. In other words, add it _after_ having performed
3684 grammar sanity checks.
3685 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
3686
78d5bae9
AD
36872001-12-29 Akim Demaille <akim@epita.fr>
3688
3689 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
3690 visible, and some states have now a different number.
3691
ff442794
AD
36922001-12-29 Akim Demaille <akim@epita.fr>
3693
3694 * src/reader.c (readgram): Bind the initial rule's lineno to that
3695 of the first rule.
3696 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
3697 (Solved SR Conflicts): Adjust rule 0's line number.
3698
610ab194
AD
36992001-12-29 Akim Demaille <akim@epita.fr>
3700
3701 Fix the `GAWK Grammar' failure.
3702
3703 * src/LR0.c (final_state): Initialize to -1 so that we do compute
3704 the reductions of the first state which was mistakenly confused
3705 with the final state because precisely final_state was initialized
3706 to 0.
3707 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
3708 now noticed by Bison.
3709 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
3710 have a reduction on $default.
3711
29d29c8f
AD
37122001-12-29 Akim Demaille <akim@epita.fr>
3713
3714 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
3715 rule line numbers.
3716 * src/closure.c (print_closure): Likewise.
3717 * src/derives.c (print_derives): Likewise.
3718 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
3719 now.
3720
7c6b64d0
AD
37212001-12-29 Akim Demaille <akim@epita.fr>
3722
3723 * src/lalr.c (lookaheads_print): New.
3724 (lalr): Call it when --trace-flag.
3725 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
3726 are dumped.
3727
3d4daee3
AD
37282001-12-29 Akim Demaille <akim@epita.fr>
3729
3730 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
3731 when walking through ritem, even via rule->rhs.
3732 * src/reduce.c (dump_grammar, useful_production, reduce_output)
3733 (useful_production, useless_nonterminals): Likewise.
3734 (reduce_grammar_tables): Likewise, plus update nritems.
3735 * src/nullable.c (set_nullable): Likewise.
3736 * src/lalr.c (build_relations): Likewise.
3737 * tests/sets.at (Nullable): Adjust.
3738 Fortunately, now, the $axiom is no longer nullable.
3739
9e7f6bbd
AD
37402001-12-29 Akim Demaille <akim@epita.fr>
3741
3742 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
3743 the 0-sentinel.
3744 * src/gram.c (ritem_longest_rhs): Likewise.
3745 * src/reduce.c (nonterminals_reduce): Likewise.
3746 * src/print_graph.c (print_graph): Likewise.
3747 * src/output.c (output_rule_data): Likewise.
3748 * src/nullable.c (set_nullable): Likewise.
3749
255ef638
AD
37502001-12-29 Akim Demaille <akim@epita.fr>
3751
3752 * src/output.c: Comment changes.
3753
0d8a7363
AD
37542001-12-27 Paul Eggert <eggert@twinsun.com>
3755
3756 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
3757 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
3758 Sparc, as they were causing more porting problems than the
3759 (minor) performance improvement was worth.
3760
3761 Also, catch up with 1.31's YYSTD.
3762
3db472b9
AD
37632001-12-27 Akim Demaille <akim@epita.fr>
3764
3765 * src/output.c (output_gram): Rely on nritems, not the
3766 0-sentinel. See below.
3767 Use -1 as separator, not 0.
3768 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
3769 Rely on -1 as separator in yyrhs, instead of 0.
3770 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
3771 twice `Now at end of input', therefore there are two lines less to
3772 expect.
3773
b365aa05
AD
37742001-12-27 Akim Demaille <akim@epita.fr>
3775
3776 * tests/regression.at (Unresolved SR Conflicts):
3777 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
3778 below.
3779
30171f79
AD
37802001-12-27 Akim Demaille <akim@epita.fr>
3781
3782 * src/LR0.c (new_state): Recognize the final state by the fact it
3783 is reached by eoftoken.
3784 (insert_start_shifting_state, insert_eof_shifting_state)
3785 (insert_accepting_state, augment_automaton): Remove, since now
3786 these states are automatically computed from the initial state.
3787 (generate_states): Adjust.
3788 * src/print.c: When reporting a rule number to the user, substract
3789 1, so that the axiom rule is rule 0, and the first user rule is 1.
3790 * src/reduce.c: Likewise.
3791 * src/print_graph.c (print_core): For the time being, just as for
3792 the report, depend upon --trace-flags to dump the full set of
3793 items.
3794 * src/reader.c (readgram): Once the grammar read, insert the rule
3795 0: `$axiom: START-SYMBOL $'.
3796 * tests/set.at: Adjust: rule 0 is now displayed, and since the
3797 number of the states has changed (the final state is no longer
3798 necessarily the last), catch up.
3799
75142d45
AD
38002001-12-27 Akim Demaille <akim@epita.fr>
3801
3802 Try to make the use of the eoftoken valid. Given that its value
3803 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
3804 is used instead of > 0 where appropriate, (ii), depend upon nritems
3805 instead of the 0-sentinel.
3806
3807 * src/gram.h, src/gram.c (nritems): New.
3808 Expected to be duplication of nitems, but for the time being...
3809 * src/reader.c (packgram): Assert nritems and nitems are equal.
3810 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
3811 * src/closure.c (print_closure, print_fderives): Likewise.
3812 * src/gram.c (ritem_print): Likewise.
3813 * src/print.c (print_core, print_grammar): Likewise.
3814 * src/print_graph.c: Likewise.
3815
b7c49edf
AD
38162001-12-27 Akim Demaille <akim@epita.fr>
3817
3818 * src/main.c (main): If there are complains after grammar
3819 reductions, then output the report anyway if requested, then die.
3820 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
3821 * src/reader.c (eoftoken): New.
3822 (parse_token_decl): If the token being defined has value `0', it
3823 is the eoftoken.
3824 (packsymbols): No longer hack `tags' to insert `$' by hand.
3825 Be sure to preserve the value of the eoftoken.
3826 (reader): Make sure eoftoken is defined.
3827 Initialize nsyms to 0: now eoftoken is created just like the others.
3828 * src/print.c (print_grammar): Don't special case the eof token.
3829 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
3830 lie anyway, albeit pleasant.
3831 * tests/calc.at: Exercise error messages with eoftoken.
3832 Change the grammar so that empty input is invalid.
3833 Adjust expectations.
3834 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
3835
ec2da99f
AD
38362001-12-27 Akim Demaille <akim@epita.fr>
3837
3838 * configure.in: Check the protos of strchr ans strspn.
3839 Replace strchr if needed.
3840 * src/system.h: Provide the protos of strchr, strspn and memchr if
3841 missing.
3842 * lib/strchr.c: New.
3843 * src/reader.c (symbols_save): Use strchr.
3844
8adfa272
AD
38452001-12-27 Akim Demaille <akim@epita.fr>
3846
3847 * src/print.c, src/print_graph.c (escape): New.
3848 Use it to quote the TAGS outputs.
3849 * src/print_graph.c (print_state): Now errors are in red, and
3850 reductions in green.
3851 Prefer high to wide: output the state number on a line of its own.
3852
80dac38c
AD
38532001-12-27 Akim Demaille <akim@epita.fr>
3854
3855 * src/state.h, src/state.c (reductions_new): New.
3856 * src/LR0.c (set_state_table): Let all the states have a
3857 `reductions', even if reduced to 0.
3858 (save_reductions): Adjust.
3859 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
3860 * src/print.c (print_reductions, print_actions): Adjust.
3861 * src/output.c (action_row): Adjust.
3862
2cec70b9
AD
38632001-12-27 Akim Demaille <akim@epita.fr>
3864
3865 * src/state.h, src/state.c (errs_new, errs_dup): New.
3866 * src/LR0.c (set_state_table): Let all the states have an errs,
3867 even if reduced to 0.
3868 * src/print.c (print_errs, print_reductions): Adjust.
3869 * src/output.c (output_actions, action_row): Adjust.
3870 * src/conflicts.c (resolve_sr_conflict): Adjust.
3871
13ca549a
AD
38722001-12-27 Akim Demaille <akim@epita.fr>
3873
3874 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
3875
5092aba5
AD
38762001-12-27 Akim Demaille <akim@epita.fr>
3877
3878 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
3879 * src/print.c: here.
3880 (lookaheadset, shiftset): New, used as additional storage by
3881 print_reductions.
3882 (print_results): Adjust.
3883 (print_shifts, print_gotos, print_errs): New, extracted from...
3884 (print_actions): here.
3885 * src/print_graph.c (print_actions): Remove dead code.
3886
11e2beca
AD
38872001-12-27 Akim Demaille <akim@epita.fr>
3888
3889 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
3890 `$n' and `@n'.
3891
dac3c910
AD
38922001-12-27 Akim Demaille <akim@epita.fr>
3893
3894 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
3895 (build_relations): Adjust.
3896
d0b0fefa
AD
38972001-12-27 Akim Demaille <akim@epita.fr>
3898
3899 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
3900 duplication.
3901
adc8c848
AD
39022001-12-27 Akim Demaille <akim@epita.fr>
3903
3904 * src/reader.c (packgram): Catch nitems overflows.
3905
14d293ac
AD
39062001-12-27 Akim Demaille <akim@epita.fr>
3907
3908 * src/files.c, src/files.h (guard_obstack): Remove.
3909 * src/output.c (output): Adjust.
3910 * src/reader.c (parse_braces): New, factoring...
3911 (copy_action, copy_guard): these two which are renamed as...
3912 (parse_action, parse_guard): these.
3913 As a voluntary consequence, using braces around guards is now
3914 mandatory.
3915
f499b062
AD
39162001-12-27 Akim Demaille <akim@epita.fr>
3917
3918 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
3919 * src/reader.c (symbol_list): `guard' and `guard_line' are new
3920 members.
3921 (symbol_list_new): Adjust.
3922 (copy_action): action_line is the first line, not the last.
3923 (copy_guard): Just as for actions, store the `action' only, not
3924 the switch/case/break flesh.
3925 Don't parse the user action that might follow the guard, let...
3926 (readgram): do it, i.e., now, there can be an action after a
3927 guard.
3928 In other words the guard is just explicitly optional.
3929 (packgram): Adjust.
3930 * src/output.c (guards_output): New.
3931 (output_parser): Call it when needed.
3932 (output): Also free the guard and attrs obstacks.
3933 * src/files.c, src/files.h (obstack_save): Remove.
3934 (output_files): Remove.
3935 As a result, if one needs the former `.act' file, using an
3936 appropriate skeleton which requires actions and guards is now
3937 required.
3938 * src/main.c (main): Adjust.
3939 * tests/semantic.at: New.
3940 * tests/regression.at: Use `input.y' as input file name.
3941 Avoid 8+3 problems by requiring input.c when the test needs the
3942 parser.
3943
d945f5cd
AD
39442001-12-27 Akim Demaille <akim@epita.fr>
3945
3946 * src/reader.c (symbol_list_new): Be sure to initialize all the
3947 fields.
3948
d200e455
AD
39492001-12-27 Akim Demaille <akim@epita.fr>
3950
3951 All the hacks using a final pseudo state are now useless.
3952
3953 * src/LR0.c (set_state_table): state_table holds exactly nstates.
3954 * src/lalr.c (nLA): New.
3955 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
3956 instead of lookaheadsp from the pseudo state (nstate + 1).
3957
f9507c28
AD
39582001-12-27 Akim Demaille <akim@epita.fr>
3959
3960 * src/output.c (action_row, token_actions): Use a state_t instead
3961 of a integer, and nlookaheads instead of the following state's
3962 lookaheadsp.
3963
065fbd27
AD
39642001-12-27 Akim Demaille <akim@epita.fr>
3965
3966 * src/conflicts.c (log_resolution, flush_shift)
3967 (resolve_sr_conflict, set_conflicts, solve_conflicts)
3968 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
3969 (conflicts_print, print_reductions): Use a state_t instead of an
3970 integer when referring to a state.
3971 As much as possible, depend upon nlookaheads, instead of the
3972 `lookaheadsp' member of the following state (since lookaheads of
3973 successive states are successive, the difference between state n + 1
3974 and n served as the number of lookaheads for state n).
3975 * src/lalr.c (add_lookback_edge): Likewise.
3976 * src/print.c (print_core, print_actions, print_state)
3977 (print_results): Likewise.
3978 * src/print_graph.c (print_core, print_actions, print_state)
3979 (print_graph): Likewise.
3980 * src/conflicts.h: Adjust.
3981
1b177bd7
AD
39822001-12-27 Akim Demaille <akim@epita.fr>
3983
3984 * src/bison.hairy: Formatting/comment changes.
3985 ANSIfy.
3986 Remove `register' indications.
3987 Add plenty of `static'.
3988
7742ddeb
AD
39892001-12-27 Akim Demaille <akim@epita.fr>
3990
3991 * src/output.c (prepare): Drop the muscle `ntbase' which
3992 duplicates ntokens.
3993 * src/bison.simple: Formatting/comment changes.
3994 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
3995 is an undocumented synonym.
3996
1fa14068
AD
39972001-12-22 Akim Demaille <akim@epita.fr>
3998
3999 * src/output.c (output_table_data): Change the prototype to use
4000 `int' for array ranges: some invocations do pass an int, not a
4001 short.
4002 Reported by Wayne Green.
4003
b9752825
AD
40042001-12-22 Akim Demaille <akim@epita.fr>
4005
4006 Some actions of web2c.y are improperly triggered.
4007 Reported by Mike Castle.
4008
4009 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
4010 * tests/regression.at (Web2c): Rename as...
4011 (Web2c Report): this.
4012 (Web2c Actions): New.
4013
776209d6
AD
40142001-12-22 Akim Demaille <akim@epita.fr>
4015
4016 Reductions in web2c.y are improperly reported.
4017 Reported by Mike Castle.
4018
4019 * src/conflicts.c (print_reductions): Fix.
4020 * tests/regression.at (Web2c): New.
4021
275fc3ad
AD
40222001-12-18 Akim Demaille <akim@epita.fr>
4023
4024 Some host fail on `assert (!"foo")', which expands to
4025 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
4026 Reported by Nelson Beebee.
4027
4028 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
4029 `#define it_succeeded 0' and `assert (it_succeeded)'.
4030
897668ee
MA
40312001-12-17 Marc Autret <autret_m@epita.fr>
4032
4033 * src/bison.simple: Don't hard code the skeleton line and filename.
4034 * src/output.c (output_parser): Rename 'line' as 'output_line'.
4035 New line counter 'skeleton_line' (skeleton-line muscle).
4036
ab3399e0
PE
40372001-12-17 Paul Eggert <eggert@twinsun.com>
4038
4039 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
4040 YYDEBUG must be defined to a nonzero value.
4041
4042 * src/bison.simple (yytname): Do not assume that the user defines
4043 YYDEBUG to a properly parenthesized expression.
4044
3877f72b
AD
40452001-12-17 Akim Demaille <akim@epita.fr>
4046
4047 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
4048 nlookaheads is a new member.
4049 Adjust all users.
4050 * src/lalr.h (nlookaheads): Remove this orphan declaration.
4051 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
4052 state.
776209d6 4053
331dbc1b
AD
40542001-12-17 Akim Demaille <akim@epita.fr>
4055
4056 * src/files.h, src/files.c (open_files, close_files): Remove.
4057 * src/main.c (main): Don't open/close files, nor invoke lex_free,
4058 let...
4059 * src/reader.c (reader): Do it.
776209d6 4060
be750e4c
AD
40612001-12-17 Akim Demaille <akim@epita.fr>
4062
4063 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 4064
709ae8c6
AD
40652001-12-17 Akim Demaille <akim@epita.fr>
4066
4067 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
4068 (flush_reduce): New.
4069 (resolve_sr_conflict): Adjust.
776209d6 4070
f87685c3
AD
40712001-12-17 Akim Demaille <akim@epita.fr>
4072
4073 * src/output.c (output_obstack): Be static and rename as...
4074 (format_obstack): this, to avoid any confusion with files.c's
4075 output_obstack.
4076 * src/reader.h (muscle_obstack): Move to...
4077 * src/output.h: here, since it's defined in output.c.
4078
837491d8
AD
40792001-12-17 Akim Demaille <akim@epita.fr>
4080
4081 * src/output.c (action_row, save_column, default_goto)
4082 (sort_actions, matching_state, pack_vector): Better variable
4083 locality.
4084
796d61fb
AD
40852001-12-17 Akim Demaille <akim@epita.fr>
4086
4087 * src/output.c: Various formatting changes.
776209d6 4088
64d15509
AD
40892001-12-17 Akim Demaille <akim@epita.fr>
4090
4091 * src/files.c (output_files): Free the output_obstack.
4092 * src/main.c (main): Call print and print_graph conditionally.
4093 * src/print.c (print): Work unconditionally.
4094 * src/print_graph.c (print_graph): Work unconditionally.
4095 * src/conflicts.c (log_resolution): Output only if verbose_flag.
4096
fbc8ecb7
MA
40972001-12-16 Marc Autret <autret_m@epita.fr>
4098
4099 * src/output.c (actions_output): Fix. When we use %no-lines,
4100 there is one less line per action.
4101
f0440388
MA
41022001-12-16 Marc Autret <autret_m@epita.fr>
4103
4104 * src/bison.simple: Remove a useless #line directive.
4105 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
4106 * src/output.c (get_lines_number): New.
776209d6 4107 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
4108 output muscles.
4109 Fix line numbering.
4110 (actions_output): Computes the number of lines taken by actions.
4111 (output_master_parser): Insert new skeleton which is the name of
4112 the output parser file name.
4113
a79986b8
MA
41142001-12-15 Marc Autret <autret_m@epita.fr>
4115
4116 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
4117
4ec8e00f
MA
41182001-12-15 Marc Autret <autret_m@epita.fr>
4119
4120 * src/output.c (output_gram): Keep track of the hairy one.
4121
1a4648ff
AD
41222001-12-15 Akim Demaille <akim@epita.fr>
4123
4124 Make `make distcheck' work.
4125
4126 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
4127 system.h which uses libgettext.h.
4128
9c2c67e6
AD
41292001-12-15 Akim Demaille <akim@epita.fr>
4130
4131 * src/nullable.c (set_nullable): Useless rules must be skipped,
4132 otherwise, since we range over their symbols, we might look at a
4133 nonterminal which no longer ``exists'', i.e., it is not counted in
4134 `nvars', hence we overflow our arrays.
4135
93ede233
AD
41362001-12-15 Akim Demaille <akim@epita.fr>
4137
4138 The header can also be produced directly, without any obstack!
4139 Yahoo!
4140
4141 * src/files.c, src/files.h (defines_obstack): Remove.
4142 (compute_header_macro): Global.
4143 (defines_obstack_save): Remove.
4144 * src/reader.c (parse_union_decl): No longer output to
4145 defines_obstack: its content can be found in the `stype' muscle
4146 anyway.
4147 (output_token_translations): Merge into...
4148 (symbols_output): this.
4149 Rename as...
4150 (symbols_save): this.
4151 (reader): Adjust.
4152 * src/output.c (header_output): New.
4153 (output): Call it.
4154
2666f928
AD
41552001-12-15 Akim Demaille <akim@epita.fr>
4156
4157 * src/reader.c (parse_union_decl): Instead of handling two obstack
4158 simultaneously, use one to define the `stype' muscle, and use the
4159 value of the latter to fill defines_obstack.
4160 (copy_comment): Remove.
4161 (copy_comment2): Work for a single obstack.
4162 Rename as...
4163 (copy_comment): this.
4164
428046f8
AD
41652001-12-15 Akim Demaille <akim@epita.fr>
4166
4167 * src/lex.c, src/lex.h (xgetc): No longer static.
4168 * src/reader.c (parse_union_decl): Revamp.
4169
ea52d706
AD
41702001-12-15 Akim Demaille <akim@epita.fr>
4171
4172 Still making progress in separating Bison into (i) input, (ii)
4173 process, (iii) output: now we can directly output the parser file
4174 without using table_obstack at all.
4175
4176 * src/files.c, src/files.h (table_obstack): Bye bye.
4177 (parser_file_name): New.
4178 * src/files.c (compute_output_file_names): Compute it.
4179 * src/output.c (actions_output, output_parser)
4180 (output_master_parser): To a file instead of an obstack.
4181
3f96f4dc
AD
41822001-12-15 Akim Demaille <akim@epita.fr>
4183
4184 Attach actions to rules, instead of pre-outputting them to
4185 actions_obstack.
4186
4187 * src/gram.h (rule_t): action and action_line are new members.
4188 * src/reader.c (symbol_list): Likewise.
4189 (copy_action): Save the actions within the rule.
4190 (packgram): Save them in rule_table.
4191 * src/output.c (actions_output): New.
4192 (output_parser): Use it on `%%actions'.
4193 (output_rule_data): Don't free rule_table.
4194 (output): Do it.
4195 (prepare): Don't save the `action' muscle.
4196 * src/bison.simple: s/%%action/%%actions/.
4197
51576fb3
AD
41982001-12-15 Akim Demaille <akim@epita.fr>
4199
4200 * src/reader.c (copy_action): When --yacc, don't append a `;'
4201 to the user action: let it fail if lacking.
dee049eb 4202 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 4203
2648a72d
AD
42042001-12-14 Akim Demaille <akim@epita.fr>
4205
4206 * src/lex.c (literalchar): Simply return the char you decoded, non
4207 longer mess around with obstacks and int pointers.
4208 Adjust all callers.
4209
92790e5b
AD
42102001-12-14 Akim Demaille <akim@epita.fr>
4211
4212 * src/lex.c (literalchar): Don't escape the special characters,
4213 just decode them, and keep them as char (before, eol was output as
4214 the 2 char string `\n' etc.).
4215 * src/output.c (output_rule_data): Use quotearg to output the
4216 token strings.
4217
927c1557
PE
42182001-12-13 Paul Eggert <eggert@twinsun.com>
4219
4220 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
4221 Do not infringe on the global user namespace when using C++.
4222 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
4223 All uses of `fprintf' and `stderr' changed.
4224
4225 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
4226
ed8e1f68
AD
42272001-12-13 Akim Demaille <akim@epita.fr>
4228
4229 The computation of nullable is broken: it doesn't handle empty
4230 RHS's properly.
4231
4232 * tests/torture.at (GNU AWK Grammar): New.
4233 * tests/sets.at (Nullable): New.
4234 * src/nullable.c (set_nullable): Instead of blindly looping over
4235 `ritems', loop over the rules, and then over their rhs's.
4236
4237 Work around Autotest bugs.
4238
4239 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
4240 frame, because Autotest understand lines starting with a `+' as
4241 traces from the shell. Then, they are not processed properly.
4242 Admittedly an Autotest bug, but we don't have time to wait for
4243 Autotest to catch up.
4244 * tests/regression.at (Broken Closure): Adjust to the new table
4245 frames.
4246 Move to...
4247 * tests/sets.at: here.
4248
cb581495
AD
42492001-12-13 Akim Demaille <akim@epita.fr>
4250
4251 * src/closure.c (closure): Use nrules instead of playing tricks
4252 with BITS_PER_WORD.
4253
2e729273
AD
42542001-12-13 Akim Demaille <akim@epita.fr>
4255
4256 * src/print.c (print_actions): Output the handling of `$' as the
4257 traces do: shifting the token EOF. Before EOF was treated as a
4258 nonterminal.
4259 * tests/regression.at: Adjust some tests.
4260 * src/print_graph.c (print_core): Complete the set of items via
4261 closure. The next-to-final and final states are still unsatisfying,
4262 but that's to be addressed elsewhere.
4263 No longer output the rule numbers, but do output the state number.
4264 A single loop for the shifts + gotos is enough, but picked a
4265 distinct color for each.
4266 (print_graph): Initialize and finalize closure.
4267
107f7dfb
AD
42682001-12-13 Akim Demaille <akim@epita.fr>
4269
4270 * src/reader.c (readgram): Remove dead code, an strip useless
4271 braces.
4272 (get_type): Remove, unused.
4273
9b53a24f
AD
42742001-12-12 Akim Demaille <akim@epita.fr>
4275
4276 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
4277 on that of lib/error.c.
4278
dbfb6dcd
AD
42792001-12-12 Akim Demaille <akim@epita.fr>
4280
4281 Some hosts don't like `/' in includes.
4282
4283 * src/system.h: Include libgettext.h without qualifying the path.
4284 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
4285 $(top_srcdir).
4286
c25fb648
MA
42872001-12-11 Marc Autret <autret_m@epita.fr>
4288
4289 * src/output.c (output_parser): Remove useless muscle.
4290
710ddc4f
MA
42912001-12-11 Marc Autret <autret_m@epita.fr>
4292
4293 * src/bison.simple: Remove #line just before %%epilogue. It
4294 is now handled in ...
4295 * src/reader.c (read_additionnal_code): Add the output of a
4296 #line for the epilogue.
4297
e83d80b8
MA
42982001-12-10 Marc Autret <autret_m@epita.fr>
4299
927c1557 4300 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
4301 replace precedent remove.
4302 * src/bison.simple: Remove #line before %%prologue because
4303 %%input-line is wrong at this time.
4304
971d5158
MA
43052001-12-10 Marc Autret <autret_m@epita.fr>
4306
4307 * src/reader.c (symbols_output): Clean up.
927c1557 4308 * src/output.c (output_gram, output): Clean up.
971d5158 4309
5edafffd
AD
43102001-12-10 Akim Demaille <akim@epita.fr>
4311
4312 * src/lalr.c (initialize_lookaheads): New. Extracted from...
4313 * src/LR0.c (set_state_table): here.
4314 * src/lalr.c (lalr): Call it.
4315
0279f8e9
AD
43162001-12-10 Akim Demaille <akim@epita.fr>
4317
4318 * src/state.h (shifts): Remove the `number' member: shifts are
4319 attached to state, hence no longer need to be labelled with a
4320 state number.
4321
190c4f5f
AD
43222001-12-10 Akim Demaille <akim@epita.fr>
4323
4324 Now that states have a complete set of members, the linked list of
4325 shifts is useless: just fill directly the state's shifts member.
4326
4327 * src/state.h (shifts): Remove the `next' member.
4328 * src/LR0.c (first_state, last_state): Remove.
4329 Adjust the callers.
4330 (augment_automaton): Don't look for the shifts that must be added
4331 a shift on EOF: it is those of the state we looked for! But now,
4332 since shifts are attached, it is no longer needed to looking
4333 merely by its id: its number.
4334
2a73b93d
AD
43352001-12-10 Akim Demaille <akim@epita.fr>
4336
4337 * src/LR0.c (augment_automaton): Better variable locality.
4338 Remove an impossible branch: if there is a state corresponding to
4339 the start symbol being shifted, then there is shift for the start
4340 symbol from the initial state.
4341
74392f6a
AD
43422001-12-10 Akim Demaille <akim@epita.fr>
4343
4344 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
4345 only when appropriate: when insert_start_shifting_state' is not
4346 invoked.
4347 * tests/regression.at (Rule Line Numbers): Adjust.
4348
37c82725
AD
43492001-12-10 Akim Demaille <akim@epita.fr>
4350
4351 * src/LR0.c (augment_automaton): Now that all states have shifts,
4352 merge the two cases addition shifts to the initial state.
4353
6a164e0c
AD
43542001-12-10 Akim Demaille <akim@epita.fr>
4355
4356 * src/lalr.c (set_state_table): Move to...
4357 * src/LR0.c: here.
4358 * src/lalr.c (lalr): Don't call it...
4359 * src/LR0.c (generate_states): do it.
4360 * src/LR0.h (first_state): Remove, only the table is used.
4361
7215de24
AD
43622001-12-10 Akim Demaille <akim@epita.fr>
4363
4364 * src/LR0.h (first_shift, first_reduction): Remove.
4365 * src/lalr.c: Don't use first_shift: find shifts through the
4366 states.
4367
80e25d4d
AD
43682001-12-10 Akim Demaille <akim@epita.fr>
4369
4370 * src/LR0.c: Attach shifts to states as soon as they are
4371 computed.
4372 * src/lalr.c (set_state_table): Instead of assigning shifts to
4373 state, just assert that the mapping was properly done.
4374
0ab3728b
AD
43752001-12-10 Akim Demaille <akim@epita.fr>
4376
4377 * src/LR0.c (insert_start_shift): Rename as...
4378 (insert_start_shifting_state): this.
4379 (insert_eof_shifting_state, insert_accepting_state): New.
4380 (augment_automaton): Adjust.
4381 Better locality of the variables.
4382 When looking if the start_symbol is shifted from the initial
4383 state, using `while (... symbol != start_symbol ...)' sounds
4384 better than `while (... symbol < start_symbol ...)': If fail
4385 to see how the order between symbols could be relevant!
4386
78af9bbc
AD
43872001-12-10 Akim Demaille <akim@epita.fr>
4388
4389 * src/getargs.h: Don't declare `spec_name_prefix' and
4390 `spec_file_prefix', declared by src/files.h.
4391 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
4392 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
4393 * src/output.c (prepare): Adjust.
4394 * src/reader.c (symbols_output): Likewise.
4395 * src/vmsgetargs.c: Vaguely adjust, but who cares?
4396
bdef2a41
AD
43972001-12-10 Akim Demaille <akim@epita.fr>
4398
4399 * src/muscle_tab.c (muscle_init): NULL is a better default than
4400 `"0"'.
4401
3735969c
AD
44022001-12-10 Akim Demaille <akim@epita.fr>
4403
4404 * src/reader.c (reader): Calling symbols_output once is enough.
4405
49701457
AD
44062001-12-10 Akim Demaille <akim@epita.fr>
4407
4408 Now that states have a complete set of members, the linked list of
4409 reductions is useless: just fill directly the state's reductions
4410 member.
4411
4412 * src/state.h (struct reductions): Remove member `number' and
4413 `next'.
4414 * src/LR0.c (first_reduction, last_reduction): Remove.
4415 (save_reductions): Don't link the new reductions, store them in
4416 this_state.
4417 * src/lalr.c (set_state_table): No need to attach reductions to
4418 states, it's already done.
4419 * src/output.c (output_actions): No longer free the shifts, then
4420 the reductions, then the states: free all the states and their
4421 members.
4422
0edad749
AD
44232001-12-10 Akim Demaille <akim@epita.fr>
4424
4425 * src/options.c (OPTN, DRTV, BOTH): New.
4426 (option_table): Use them.
4427
0edad749
AD
4428 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
4429 the job of system.h.
4430 * src/options.c: Don't include stdio.h and xalloc.h for the same
4431 reasons.
4432
5449dd0f
AD
44332001-12-10 Akim Demaille <akim@epita.fr>
4434
4435 * src/output.c (output, prepare): Make sure the values of the
4436 muscles `action' and `prologue' are 0-terminated.
4437
a870c567
AD
44382001-12-10 Akim Demaille <akim@epita.fr>
4439
4440 Clean up GCC warnings.
4441
4442 * src/reader.c (copy_action): `buf' is not used.
4443 (parse_skel_decl): Be static.
4444 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
4445 * src/options.h (create_long_option_table): Have a real prototype.
4446 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
4447 (hash_delete_at): Return const void *.
4448 Adjust casts to preserve the const.
4449
80df8768
AD
44502001-12-10 Akim Demaille <akim@epita.fr>
4451
4452 * configure.in: Require 2.52g.
4453 M4 is not needed, but AUTOM4TE is.
4454 * m4/m4.m4: Remove.
4455 * tests/Makefile.am: Adjust.
4456
f693ad14
AD
44572001-12-10 Akim Demaille <akim@epita.fr>
4458
4459 One structure for states is enough, even though theoretically
4460 there are LR(0) states and LALR(1) states.
4461
4462 * src/lalr.h (state_t): Remove.
4463 (state_table): Be state_t **, not state_t *.
4464 * src/state.h (core, CORE_ALLOC): Rename as...
4465 (state_t, STATE_ALLOC): this.
4466 Add the LALR(1) members: shifts, reductions, errs.
4467 * src/LR0.c (state_table): Rename as...
4468 (state_hash): this, to avoid name clashes with the global
4469 `state_table'.
4470 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
4471 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
4472
74ffbcb6
AD
44732001-12-10 Akim Demaille <akim@epita.fr>
4474
4475 Bison dumps core on bash.y.
4476 Reported by Pascal Bart.
4477
4478 * src/warshall.c (bitmatrix_print): New.
4479 (TC): Use it.
4480 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
4481 j must be the outer loop.
4482 * tests/regression.at (Broken Closure): New.
4483
07708e19
AD
44842001-12-05 Akim Demaille <akim@epita.fr>
4485
4486 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
4487 its argument.
4488