]> git.saurik.com Git - bison.git/blob - ChangeLog
Regen.
[bison.git] / ChangeLog
1 2002-05-05 Akim Demaille <akim@epita.fr>
2
3 New experimental feature: display the lookaheads in the report and
4 graph.
5
6 * src/print (print_core): When --trace-flag, display the rules
7 lookaheads.
8 * src/print_graph.c (print_core): Likewise.
9 Swap the arguments.
10 Adjust caller.
11
12 2002-05-05 Akim Demaille <akim@epita.fr>
13
14 * tests/torture.at (Many lookaheads): New test.
15
16 2002-05-05 Akim Demaille <akim@epita.fr>
17
18 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
19 (GENERATE_MUSCLE_INSERT_TABLE): this.
20 (output_int_table, output_unsigned_int_table, output_short_table)
21 (output_token_number_table, output_item_number_table): Replace with...
22 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
23 (muscle_insert_short_table, muscle_insert_token_number_table)
24 (muscle_insert_item_number_table): these.
25 Adjust all callers.
26 (prepare_tokens): Don't free `translations', since...
27 * src/reader.h, src/reader.c (grammar_free): do it.
28 Move to...
29 * src/gram.h, src/gram.c (grammar_free): here.
30 * data/bison.simple, data/bison.c++: b4_token_number_max is now
31 b4_translate_max.
32
33
34 2002-05-05 Akim Demaille <akim@epita.fr>
35
36 * src/output.c (output_unsigned_int_table): New.
37 (prepare_rules): `i' is unsigned.
38 `prhs', `rline', `r2' are unsigned int.
39 Rename muscle `rhs_number_max' as `rhs_max'.
40 Output muscles `prhs_max', `rline_max', and `r2_max'.
41 Free rline and r1.
42 * data/bison.simple, data/bison.c++: Adjust to use these muscles
43 to compute types instead of constant types.
44 * tests/regression.at (Web2c Actions): Adjust.
45
46
47 2002-05-04 Akim Demaille <akim@epita.fr>
48
49 * src/symtab.h (SALIAS, SUNDEF): Rename as...
50 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
51 Adjust dependencies.
52 * src/output.c (token_definitions_output): Be sure not to output a
53 `#define 'a'' when fed with `%token 'a' "a"'.
54 * tests/regression.at (Token definitions): New.
55
56 2002-05-03 Paul Eggert <eggert@twinsun.com>
57
58 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
59 for K&R C.
60
61 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
62
63 * Makefile.am (SUBDIRS): Remove intl.
64 (EXTRA_DIST): Add config/config.rpath.
65
66 2002-05-03 Akim Demaille <akim@epita.fr>
67
68 * data/bison.simple (m4_if): Don't output empty enums.
69 And actually, output valid enum definitions :(.
70
71 2002-05-03 Akim Demaille <akim@epita.fr>
72
73 * configure.bat: Remove, completely obsolete.
74 * Makefile.am (EXTRA_DIST): Adjust.
75 Don't distribute config.rpath...
76 * config/Makefile.am (EXTRA_DIST): Do it.
77
78 2002-05-03 Akim Demaille <akim@epita.fr>
79
80 * configure.in (GETTEXT_VERSION): New.
81 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
82
83 2002-05-03 Akim Demaille <akim@epita.fr>
84
85 * data/bison.simple (b4_token_enum): New.
86 (b4_token_defines): Use it to output tokens both as #define and
87 enums.
88 Suggested by Paul Eggert.
89 * src/output.c (token_definitions_output): Don't output spurious
90 white spaces.
91
92 2002-05-03 Akim Demaille <akim@epita.fr>
93
94 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
95
96 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
97
98 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
99 Update the stack class, give a try to deque as the default container.
100
101 2002-05-02 Akim Demaille <akim@epita.fr>
102
103 * data/bison.simple (yyparse): Do not implement @$ = @1.
104 (YYLLOC_DEFAULT): Adjust to do it.
105 * doc/bison.texinfo (Location Default Action): Fix.
106
107 2002-05-02 Akim Demaille <akim@epita.fr>
108
109 * src/reader.c (parse_braces): Merge into...
110 (parse_action): this.
111
112 2002-05-02 Akim Demaille <akim@epita.fr>
113
114 * configure.in (ALL_LINGUAS): Remove.
115 * po/LINGUAS, hr.po: New.
116
117 2002-05-02 Akim Demaille <akim@epita.fr>
118
119 Remove the so called hairy (semantic) parsers.
120
121 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
122 * src/gram.h, src/gram.c (semantic_parser): Remove.
123 (rule_t): Remove the guard and guard_line members.
124 * src/lex.h (token_t): remove tok_guard.
125 * src/options.c (option_table): Remove %guard and %semantic_parser
126 support.
127 * src/output.c, src/output.h (guards_output): Remove.
128 (prepare): Adjust.
129 (token_definitions_output): Don't output the `T'
130 tokens (???).
131 (output_skeleton): Don't output the guards.
132 * src/files.c, src/files.c (attrsfile): Remove.
133 * src/reader.c (symbol_list): Remove the guard and guard_line
134 members.
135 Adjust dependencies.
136 (parse_guard): Remove.
137 * data/bison.hairy: Remove.
138 * doc/bison.texinfo (Environment Variables): Remove occurrences of
139 BISON_HAIRY.
140
141 2002-05-02 Akim Demaille <akim@epita.fr>
142
143 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
144 (parse_guard): Rename the formal argument `stack_offset' as
145 `rule_length', which is more readable.
146 Adjust callers.
147 (copy_at, copy_dollar): Instead of outputting the hard coded
148 values of $$, $n and so forth, output invocation to b4_lhs_value,
149 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
150 Note: this patch partially drops `semantic-parser' support: it
151 always does `rule_length - n', where semantic parsers ought to
152 always use `-n'.
153 * data/bison.simple, data/bison.c++ (b4_lhs_value)
154 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
155
156 2002-05-02 Akim Demaille <akim@epita.fr>
157
158 * configure.in (AC_INIT): Bump to 1.49b.
159 (AM_INIT_AUTOMAKE): Short invocation.
160
161 2002-05-02 Akim Demaille <akim@epita.fr>
162
163 Version 1.49a.
164
165 2002-05-01 Akim Demaille <akim@epita.fr>
166
167 * src/skeleton.h: Remove.
168
169 2002-05-01 Akim Demaille <akim@epita.fr>
170
171 * src/skeleton.h: Fix the #endif.
172 Reported by Magnus Fromreide.
173
174 2002-04-26 Paul Eggert <eggert@twinsun.com>
175
176 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
177 Define if we define YYSTYPE and YYLTYPE, respectively.
178 (YYCOPY): Fix [] quoting problem in the non-GCC case.
179
180 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
181
182 * src/scan-skel.l: Postprocess quadrigraphs.
183
184 * src/reader.c (copy_character): New function, used to output
185 single characters while replacing `[' and `]' with quadrigraphs, to
186 avoid troubles with M4 quotes.
187 (copy_comment): Output characters with copy_character.
188 (read_additionnal_code): Likewise.
189 (copy_string2): Likewise.
190 (copy_definition): Likewise.
191
192 * tests/calc.at: Exercise M4 quoting.
193
194 2002-04-25 Akim Demaille <akim@epita.fr>
195
196 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
197 between `!' and the command.
198 Reported by Paul Eggert.
199
200 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
201
202 * tests/calc.at: Exercise prologue splitting.
203
204 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
205 `b4_post_prologue' instead of `b4_prologue'.
206
207 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
208 muscles.
209 (output): Free pre_prologue_obstack and post_prologue_obstack.
210 * src/files.h, src/files.c (attrs_obstack): Remove.
211 (pre_prologue_obstack, post_prologue_obstack): New.
212 * src/reader.c (copy_definition): Add a parameter to specify the
213 obstack to fill, instead of using attrs_obstack unconditionally.
214 (read_declarations): Pass pre_prologue_obstack to copy_definition if
215 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
216
217 2002-04-23 Paul Eggert <eggert@twinsun.com>
218
219 * data/bison.simple: Remove unnecessary commentary and white
220 space differences from 1_29-branch.
221 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
222
223 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
224 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
225 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
226 constructors or destructors.
227
228 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
229
230 2002-04-23 Akim Demaille <akim@epita.fr>
231
232 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
233 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
234 location with columns.
235 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
236 All reported by Paul Eggert.
237
238 2002-04-22 Akim Demaille <akim@epita.fr>
239
240 * src/reduce.c (dump_grammar): Move to...
241 * src/gram.h, src/gram.c (grammar_dump): here.
242 Be sure to separate long item numbers.
243 Don't read the members of a rule's prec if its nil.
244
245 2002-04-22 Akim Demaille <akim@epita.fr>
246
247 * src/output.c (table_size, table_grow): New.
248 (MAXTABLE): Remove, replace uses with table_size.
249 (pack_vector): Instead of dying when the table is too big, grow it.
250
251 2002-04-22 Akim Demaille <akim@epita.fr>
252
253 * data/bison.simple (yyr1): Its type is that of a token number.
254 * data/bison.c++ (r1_): Likewise.
255 * tests/regression.at (Web2c Actions): Adjust.
256
257 2002-04-22 Akim Demaille <akim@epita.fr>
258
259 * src/reader.c (token_translations_init): 256 is now the default
260 value for the error token, i.e., it will be assigned another
261 number if the user assigned 256 to one of her tokens.
262 (reader): Don't force 256 to error.
263 * doc/bison.texinfo (Symbols): Adjust.
264 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
265 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
266 etc. instead of 10, 20, 30 (which was used to `jump' over error
267 (256) and undefined (2)).
268
269 2002-04-22 Akim Demaille <akim@epita.fr>
270
271 Propagate more token_number_t.
272
273 * src/gram.h (token_number_as_item_number)
274 (item_number_as_token_number): New.
275 * src/output.c (GENERATE_OUTPUT_TABLE): New.
276 Use it to create output_item_number_table and
277 output_token_number_table.
278 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
279 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
280 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
281 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
282
283 2002-04-22 Akim Demaille <akim@epita.fr>
284
285 * src/output.h, src/output.c (get_lines_number): Remove.
286
287 2002-04-19 Akim Demaille <akim@epita.fr>
288
289 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
290 as Lex/Flex'.
291 (Debugging): More details about enabling the debugging features.
292 (Table of Symbols): Describe $$, $n, @$, and @n.
293 Suggested by Tim Josling.
294
295 2002-04-19 Akim Demaille <akim@epita.fr>
296
297 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
298
299 2002-04-10 Akim Demaille <akim@epita.fr>
300
301 * src/system.h: Rely on HAVE_LIMITS_H.
302 Suggested by Paul Eggert.
303
304 2002-04-09 Akim Demaille <akim@epita.fr>
305
306 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
307 full stderr, and strip it according to the bison options, instead
308 of composing the error message from different bits.
309 This makes it easier to check for several error messages.
310 Adjust all the invocations.
311 Add an invocation exercising the error token.
312 Add an invocation demonstrating a stupid error message.
313 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
314 Adjust the tests.
315 Error message are for stderr, not stdout.
316
317 2002-04-09 Akim Demaille <akim@epita.fr>
318
319 * src/gram.h, src/gram.c (error_token_number): Remove, use
320 errtoken->number.
321 * src/reader.c (reader): Don't specify the user token number (2)
322 for $undefined, as it uselessly prevents using it.
323 * src/gram.h (token_number_t): Move to...
324 * src/symtab.h: here.
325 (state_t.number): Is a token_number_t.
326 * src/print.c, src/reader.c: Use undeftoken->number instead of
327 hard coded 2.
328 (Even though this 2 is not the same as above: the number of the
329 undeftoken remains being 2, it is its user token number which
330 might not be 2).
331 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
332 `user_token_number_max'.
333 Output `undef_token_number'.
334 * data/bison.simple, data/bison.c++: Use them.
335 Be sure to map invalid yylex return values to
336 `undef_token_number'. This saves us from gratuitous SEGV.
337
338 * tests/conflicts.at (Solved SR Conflicts)
339 (Unresolved SR Conflicts): Adjust.
340 * tests/regression.at (Web2c Actions): Adjust.
341
342 2002-04-08 Akim Demaille <akim@epita.fr>
343
344 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
345 Adding #line.
346 Remove the duplicate `typedefs'.
347 (RhsNumberType): Fix the declaration and various other typos.
348 Use __ofile__.
349 * data/bison.simple: Use __ofile__.
350 * src/scan-skel.l: Handle __ofile__.
351
352 2002-04-08 Akim Demaille <akim@epita.fr>
353
354 * src/gram.h (item_number_t): New, the type of item numbers in
355 RITEM. Note that it must be able to code symbol numbers as
356 positive number, and the negation of rule numbers as negative
357 numbers.
358 Adjust all dependencies (pretty many).
359 * src/reduce.c (rule): Remove this `short *' pointer: use
360 item_number_t.
361 * src/system.h (MINSHORT, MAXSHORT): Remove.
362 Include `limits.h'.
363 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
364 (shortcpy): Remove.
365 (MAXTABLE): Move to...
366 * src/output.c (MAXTABLE): here.
367 (prepare_rules): Use output_int_table to output rhs.
368 * data/bison.simple, data/bison.c++: Adjust.
369 * tests/torture.at (Big triangle): Move the limit from 254 to
370 500.
371 * tests/regression.at (Web2c Actions): Ajust.
372
373 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
374 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
375 passes, but produces negative #line number, once fixed, GCC is
376 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
377 C), it passes.
378 * src/state.h (state_h): Code input lines on ints, not shorts.
379
380 2002-04-08 Akim Demaille <akim@epita.fr>
381
382 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
383 and then the grammar.
384
385 2002-04-08 Akim Demaille <akim@epita.fr>
386
387 * src/system.h: No longer using strndup.
388
389 2002-04-07 Akim Demaille <akim@epita.fr>
390
391 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
392 * src/output.c (output_table_data): Return the longest number.
393 (prepare_tokens): Output `token_number_max').
394 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
395 New.
396 Use them to define yy_token_number_type/TokenNumberType.
397 Use this type for yytranslate.
398 * tests/torture.at (Big triangle): Push the limit from 124 to
399 253.
400 * tests/regression.at (Web2c Actions): Adjust.
401
402 2002-04-07 Akim Demaille <akim@epita.fr>
403
404 * tests/torture.at (Big triangle): New.
405 (GNU AWK Grammar, GNU Cim Grammar): Move to...
406 * tests/existing.at: here.
407
408 2002-04-07 Akim Demaille <akim@epita.fr>
409
410 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
411 nritems.
412 Adjust dependencies.
413
414 2002-04-07 Akim Demaille <akim@epita.fr>
415
416 * src/reader.c: Normalize increments to prefix form.
417
418 2002-04-07 Akim Demaille <akim@epita.fr>
419
420 * src/reader.c, symtab.c: Remove debugging code.
421
422 2002-04-07 Akim Demaille <akim@epita.fr>
423
424 Rename all the `bucket's as `symbol_t'.
425
426 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
427 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
428 * src/symtab.c, src/symtab.h (bucket): Rename as...
429 (symbol_t): this.
430 (symbol_list_new, bucket_check_defined, bucket_make_alias)
431 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
432 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
433 (buckets_new, buckets_free, buckets_do): Rename as...
434 (symbol_list_new, symbol_check_defined, symbol_make_alias)
435 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
436 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
437 (symbols_new, symbols_free, symbols_do): these.
438
439 2002-04-07 Akim Demaille <akim@epita.fr>
440
441 Use lib/hash for the symbol table.
442
443 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
444 EOF.
445 * src/lex.c (lex): Set the `number' member of new terminals.
446 * src/reader.c (bucket_check_defined, bucket_make_alias)
447 (bucket_check_alias_consistence, bucket_translation): New.
448 (reader, grammar_free, readgram, token_translations_init)
449 (packsymbols): Adjust.
450 (reader): Number the predefined tokens.
451 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
452 for predefined tokens.
453 * src/symtab.h (bucket): Remove all the hash table related
454 members.
455 * src/symtab.c (symtab): Replace by...
456 (bucket_table): this.
457 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
458 (buckets_new, buckets_do): New.
459
460 2002-04-07 Akim Demaille <akim@epita.fr>
461
462 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
463 (start_symbol, max_user_token_number, semantic_parser)
464 (error_token_number): Initialize.
465 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
466 Initialize.
467 (reader): Don't.
468 (errtoken, eoftoken, undeftoken, axiom): Extern.
469
470 2002-04-07 Akim Demaille <akim@epita.fr>
471
472 * src/gram.h (rule_s): prec and precsym are now pointers
473 to the bucket giving the priority/associativity.
474 Member `associativity' removed: useless.
475 * src/reduce.c, src/conflicts.c: Adjust.
476
477 2002-04-07 Akim Demaille <akim@epita.fr>
478
479 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
480 Properly escape the symbols' TAG when outputting them.
481
482 2002-04-07 Akim Demaille <akim@epita.fr>
483
484 * src/lalr.h (LA): Is a bitsetv, not bitset*.
485
486 2002-04-07 Akim Demaille <akim@epita.fr>
487
488 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
489 (LArule): this, which is an array to rule_t*.
490 * src/print.c, src/conflicts.c: Adjust.
491
492 2002-04-07 Akim Demaille <akim@epita.fr>
493
494 * src/gram.h (rule_t): Rename `number' as `user_number'.
495 `number' is a new member.
496 Adjust dependencies.
497 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
498
499 2002-04-07 Akim Demaille <akim@epita.fr>
500
501 As a result of the previous patch, it is no longer needed
502 to reorder ritem itself.
503
504 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
505
506 2002-04-07 Akim Demaille <akim@epita.fr>
507
508 Be sure never to walk through RITEMS, but use only data related to
509 the rules themselves. RITEMS should be banished.
510
511 * src/output.c (output_token_translations): Rename as...
512 (prepare_tokens): this.
513 In addition to `translate', prepare the muscles `tname' and
514 `toknum', which were handled by...
515 (output_rule_data): this.
516 Remove, and move the remainder of its outputs into...
517 (prepare_rules): this new routines, which also merges content from
518 (output_gram): this.
519 (prepare_rules): Be sure never to walk through RITEMS.
520 (output_stos): Rename as...
521 (prepare_stos): this.
522 (output): Always invoke prepare_states, after all, just don't use it
523 in the output if you don't need it.
524
525 2002-04-07 Akim Demaille <akim@epita.fr>
526
527 * src/LR0.c (new_state): Display `nstates' as the name of the
528 newly created state.
529 Adjust to initialize first_state and last_state if needed.
530 Be sure to distinguish the initial from the final state.
531 (new_states): Create the itemset of the initial state, and use
532 new_state.
533 * src/closure.c (closure): Now that the initial state has its
534 items properly set, there is no need for a special case when
535 creating `ruleset'.
536
537 As a result, now the rule 0, reducing to $axiom, is visible in the
538 outputs. Adjust the test suite.
539
540 * tests/conflicts.at (Solved SR Conflicts)
541 (Unresolved SR Conflicts): Adjust.
542 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
543 * tests/conflicts.at (S/R in initial): New.
544
545 2002-04-07 Akim Demaille <akim@epita.fr>
546
547 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
548 the RHS of the rules.
549 * src/output.c (output_gram): Likewise.
550
551 2002-04-07 Akim Demaille <akim@epita.fr>
552
553 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
554 bucket.
555 Adjust all dependencies.
556 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
557 `number' of the buckets too.
558 * src/gram.h: Include `symtab.h'.
559 (associativity): Move to...
560 * src/symtab.h: here.
561 No longer include `gram.h'.
562
563 2002-04-07 Akim Demaille <akim@epita.fr>
564
565 * src/gram.h, src/gram.c (rules_rhs_length): New.
566 (ritem_longest_rhs): Use it.
567 * src/gram.h (rule_t): `number' is a new member.
568 * src/reader.c (packgram): Set it.
569 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
570 the end of `rules', and count them out of `nrules'.
571 (reduce_output, dump_grammar): Adjust.
572 * src/print.c (print_grammar): It is no longer needed to check for
573 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
574 * tests/reduce.at (Reduced Automaton): New test.
575
576 2002-04-07 Akim Demaille <akim@epita.fr>
577
578 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
579 lacking `+ 1' to nrules, Bison reported as useless a token if it
580 was used solely to set the precedence of the last rule...
581
582 2002-04-07 Akim Demaille <akim@epita.fr>
583
584 * data/bison.c++, data/bison.simple: Don't output the current file
585 name in #line, to avoid useless diffs between two identical
586 outputs under different names.
587
588 2002-04-07 Akim Demaille <akim@epita.fr>
589
590 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
591 Normalize loops to using `< nrules + 1', not `<= nrules'.
592
593 2002-04-07 Akim Demaille <akim@epita.fr>
594
595 * TODO: Update.
596
597 2002-04-07 Akim Demaille <akim@epita.fr>
598
599 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
600 bucket.value as bucket.number.
601
602 2002-04-07 Akim Demaille <akim@epita.fr>
603
604 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
605 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
606 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
607 RHS, instead of being an index in RITEMS.
608
609 2002-04-04 Paul Eggert <eggert@twinsun.com>
610
611 * doc/bison.texinfo: Update copyright date.
612 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
613 (Symbols): Warn about running Bison in one character set,
614 but compiling and/or running in an incompatible one.
615 Warn about character code 256, too.
616
617 2002-04-03 Paul Eggert <eggert@twinsun.com>
618
619 * src/bison.data (YYSTACK_ALLOC): Depend on whether
620 YYERROR_VERBOSE is nonzero, not whether it is defined.
621
622 Merge changes from bison-1_29-branch.
623
624 2002-03-20 Paul Eggert <eggert@twinsun.com>
625
626 Merge fixes from Debian bison_1.34-1.diff.
627
628 * configure.in (AC_PREREQ): 2.53.
629
630 2002-03-20 Akim Demaille <akim@epita.fr>
631
632 * src/conflicts.c (log_resolution): Argument `resolution' is const.
633
634 2002-03-19 Paul Eggert <eggert@twinsun.com>
635
636 * src/bison.simple (YYCOPY): New macro.
637 (YYSTACK_RELOCATE): Use it.
638 Remove Type arg; no longer needed. All callers changed.
639 (yymemcpy): Remove; no longer needed.
640
641 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
642 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
643
644 2002-03-19 Akim Demaille <akim@epita.fr>
645
646 Test and fix the #line outputs.
647
648 * tests/atlocal.at (GCC): New.
649 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
650 (Prologue synch line, ,%union synch line, Postprologue synch line)
651 (Action synch line, Epilogue synch line): New tests.
652 * src/reader.c (parse_union_decl): Define the muscle stype_line.
653 * data/bison.simple, data/bison.c++: Use it.
654
655 2002-03-19 Akim Demaille <akim@epita.fr>
656
657 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
658 (Solved SR Conflicts, %expect not enough, %expect right)
659 (%expect too much): Move to...
660 * tests/conflicts.at: this new file.
661
662 2002-03-19 Akim Demaille <akim@epita.fr>
663
664 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
665 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
666 that we can move to enums for instance.
667 * src/output.c (token_definitions_output): Output a list of
668 `token-name, token-number' instead of the #define.
669 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
670
671 2002-03-14 Akim Demaille <akim@epita.fr>
672
673 Use Gettext 0.11.1.
674
675 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
676
677 * data/bison.c++: Make the user able to add members to the generated
678 parser by subclassing.
679
680 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
681
682 * src/reader.c (read_additionnal_code): `c' should be an integer, not
683 a character.
684 Reported by Nicolas Tisserand and Nicolas Burrus.
685
686 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
687
688 * src/reader.c: Warn about lacking semi-colons, do not complain.
689
690 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
691
692 * data/bison.c++: Remove a debug line.
693
694 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
695
696 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
697 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
698 provide a default implementation.
699
700 2002-03-04 Akim Demaille <akim@epita.fr>
701
702 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
703 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
704 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
705 * tests/semantic.at (Parsing Guards): Similarly.
706 * src/reader.at (readgram): Complain if the last rule is not ended
707 with a semi-colon.
708
709 2002-03-04 Akim Demaille <akim@epita.fr>
710
711 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
712 * src/closure.c: here.
713 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
714 RTC.
715 * src/warshall.h, src/warshall.c: Remove.
716 * tests/sets.at (Broken Closure): Adjust.
717
718 2002-03-04 Akim Demaille <akim@epita.fr>
719
720 * src/output.c (output_skeleton): tempdir is const.
721 bytes_read is unused.
722
723 2002-03-04 Akim Demaille <akim@epita.fr>
724
725 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
726 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
727 Update.
728 From Michael Hayes.
729
730 2002-03-04 Akim Demaille <akim@epita.fr>
731
732 * src/closure.c (closure): `r' is unused.
733
734 2002-03-04 Akim Demaille <akim@epita.fr>
735
736 * tests/sets.at (Broken Closure): Add the ending `;'.
737 * src/reader.at (readgram): Complain if a rule is not ended with a
738 semi-colon.
739
740 2002-03-04 Akim Demaille <akim@epita.fr>
741
742 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
743 (count_sr_conflicts): Use bitset_count.
744 * src/reduce.c (inaccessable_symbols): Ditto.
745 (bits_size): Remove.
746 * src/warshall.h, src/warshall.c: Convert to bitsetv.
747
748 2002-03-04 Akim Demaille <akim@epita.fr>
749
750 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
751 * src/reduce.c: Remove the `bitset_zero's following the
752 `bitset_create's, as now it is performed by the latter.
753
754 2002-03-04 Akim Demaille <akim@epita.fr>
755
756 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
757 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
758 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
759 latest sources from Michael.
760
761 2002-03-04 Akim Demaille <akim@epita.fr>
762
763 * src/output.c (output): Don't free the grammar.
764 * src/reader.c (grammar_free): New.
765 * src/main.c (main): Call it and don't free symtab here.
766
767 2002-03-04 Akim Demaille <akim@epita.fr>
768
769 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
770 before returning.
771 Reported by Benoit Perrot.
772
773 2002-03-04 Akim Demaille <akim@epita.fr>
774
775 Use bitset operations when possible, not loops over bits.
776
777 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
778 bitset_or.
779 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
780 * src/reduce.c (useless_nonterminals): Formatting changes.
781 * src/warshall.c (TC): Use bitset_or.
782
783 2002-03-04 Akim Demaille <akim@epita.fr>
784
785 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
786 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
787 Ditto.
788
789 2002-03-04 Akim Demaille <akim@epita.fr>
790
791 * src/lalr.c (F): Now a bitset*.
792 Adjust all dependencies.
793
794 2002-03-04 Akim Demaille <akim@epita.fr>
795
796 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
797 Adjust all dependencies.
798
799 2002-03-04 Akim Demaille <akim@epita.fr>
800
801 * src/L0.c, src/LR0.h (nstates): Be size_t.
802 Adjust comparisons (signed vs unsigned).
803 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
804 bitset*.
805 Adjust all dependencies.
806
807 2002-03-04 Akim Demaille <akim@epita.fr>
808
809 * src/closure.c (firsts): Now, also a bitset.
810 Adjust all dependencies.
811 (varsetsize): Remove, now unused.
812 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
813
814 2002-03-04 Akim Demaille <akim@epita.fr>
815
816 * src/print.c: Convert to use bitset.h, not hand coded iterations
817 over ints.
818
819 2002-03-04 Akim Demaille <akim@epita.fr>
820
821 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
822
823 2002-03-04 Akim Demaille <akim@epita.fr>
824
825 * src/closure.c (ruleset): Be a bitset.
826 (rulesetsize): Remove.
827
828 2002-03-04 Akim Demaille <akim@epita.fr>
829
830 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
831 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
832 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
833 * src/closure.c (fderives): Be an array of bitsets.
834
835 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
836
837 * data/bison.c++: Merge the two generated headers. Insert a copyright
838 notice in each output file.
839
840 2002-02-28 Akim Demaille <akim@epita.fr>
841
842 * data/bison.c++: Copy the prologue of bison.simple to fetch
843 useful M4 definitions, such as b4_header_guard.
844
845 2002-02-25 Akim Demaille <akim@epita.fr>
846
847 * src/getargs.c (version): Give the name of the authors, and use a
848 translator friendly scheme for the bgr
849 copyright notice.
850
851 2002-02-25 Akim Demaille <akim@epita.fr>
852
853 * src/output.c (header_output): Remove, now handled completely via
854 M4.
855
856 2002-02-25 Akim Demaille <akim@epita.fr>
857
858 * m4/m4.m4: New, from CVS Autoconf.
859 * configure.in: Invoke it.
860 * src/output.c (output_skeleton): Use its result instead of the
861 hard coded name.
862
863 2002-02-25 Akim Demaille <akim@epita.fr>
864
865 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
866 Fileutils 4.1.5.
867 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
868 * src/output.c (output_skeleton): Use mkstemp to create a real
869 temporary file.
870 Move the filling of `skeleton' and its muscle to...
871 (prepare): here.
872 (output): Move the definition of the prologue muscle to...
873 (prepare): here.
874 * src/system.h (DEFAULT_TMPDIR): New.
875
876 2002-02-14 Paul Eggert <eggert@twinsun.com>
877
878 Remove the support for C++ namespace cleanliness; it was
879 causing more problems than it was curing, since it didn't work
880 properly on some nonstandard C++ compilers. This can wait
881 for a proper C++ parser.
882
883 * NEWS: Document this.
884 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
885 of C++, as it's treated like C now.
886 * src/bison.simple (YYSTD): Remove.
887 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
888 Treat C++ just like Standard C instead of trying to support
889 namespace cleanliness.
890
891 2002-02-14 Akim Demaille <akim@epita.fr>
892
893 * tests/regression.at (else): Adjust to Andreas' change.
894
895 2002-02-14 Akim Demaille <akim@epita.fr>
896
897 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
898
899 2002-02-13 Andreas Schwab <schwab@suse.de>
900
901 * src/output.c (output_rule_data): Don't output NULL, it might
902 not be defined yet.
903
904 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
905
906 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
907 (Copyright notice): Update.
908
909 2002-02-11 Akim Demaille <akim@epita.fr>
910
911 * tests/regression.at (%nonassoc and eof): Don't include
912 nonportable headers.
913
914 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
915
916 * data/bison.c++: Correct error recovery. Make the user able to
917 initialize the starting location.
918
919 2002-02-07 Akim Demaille <akim@epita.fr>
920
921 * tests/input.at: New.
922
923 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
924
925 * data/bison.c++: Replace some direct m4 expansions by constants. Be
926 more consistent when naming methods and variables. Put preprocessor
927 directives around tables only needed for debugging.
928
929 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
930
931 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
932 C++ parsers.
933 (yy::b4_name::parse): Use print_.
934
935 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
936
937 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
938
939 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
940
941 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
942 C++ parsers.
943 (yy::b4_name::parse): Build verbose error messages, and use error_.
944
945 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
946
947 * data/bison.c++: Fix m4 quoting in comments.
948
949 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
950
951 * data/bison.c++: Adjust the parser code. Fix some muscles that were
952 not expanded by m4.
953
954 2002-02-05 Akim Demaille <akim@epita.fr>
955
956 * data/bison.c++: Adjust to the M4 back end.
957 More is certainly needed.
958
959 2002-02-05 Akim Demaille <akim@epita.fr>
960
961 Give a try to M4 as a back end.
962
963 * lib/readpipe.c: New, from wdiff.
964 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
965 BISON_HAIRY.
966 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
967 specific values. Now it is m4 that performs the lookup.
968 * src/parse-skel.y: Remove.
969 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
970 * src/output.c (actions_output, guards_output)
971 (token_definitions_output): No longer keeps track of the output
972 line number, hence remove the second argument.
973 (guards_output): Check against the guard member of a rule, not the
974 action member.
975 Adjust callers.
976 (output_skeleton): Don't look for the skeleton location, let m4 do
977 that.
978 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
979 file will be used.
980 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
981 (prepare): Given that for the time being changesyntax is not
982 usable in M4, rename the muscles using `-' to `_'.
983 Define `defines_flag', `output_parser_name' and `output_header_name'.
984 * src/output.h (actions_output, guards_output)
985 (token_definitions_output): Adjust prototypes.
986 * src/scan-skel.l: Instead of scanning the skeletons, it now
987 processes the output of m4: `__oline__' and `#output'.
988 * data/bison.simple: Adjust to be used by M4(sugar).
989 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
990 to date.
991 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
992 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
993 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
994 shamelessly stolen from CVS Autoconf.
995
996 2002-02-05 Akim Demaille <akim@epita.fr>
997
998 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
999 * configure.in: Check for the declarations of free and malloc.
1000 * src/muscle_tab.c: Adjust.
1001
1002 2002-02-05 Akim Demaille <akim@epita.fr>
1003
1004 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
1005 which have no values.
1006
1007 2002-02-05 Akim Demaille <akim@epita.fr>
1008
1009 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
1010 * data/: here.
1011
1012 2002-01-29 Paul Eggert <eggert@twinsun.com>
1013
1014 * src/bison.simple (YYSIZE_T): Do not define merely because
1015 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
1016 On some platforms, <alloca.h> does not declare YYSTD (size_t).
1017
1018 2002-01-27 Akim Demaille <akim@epita.fr>
1019
1020 Fix `%nonassoc and eof'.
1021
1022 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
1023 which were not properly copied! Replace
1024 memcpy (res->errs, src->errs, src->nerrs);
1025 with
1026 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
1027 !!!
1028 * tests/regression.at (%nonassoc and eof): Adjust to newest
1029 Autotest: `.' is not in the PATH.
1030
1031 2002-01-27 Akim Demaille <akim@epita.fr>
1032
1033 * tests/sets.at (AT_EXTRACT_SETS): New.
1034 (Nullable): Use it.
1035 (Firsts): New.
1036
1037 2002-01-26 Akim Demaille <akim@epita.fr>
1038
1039 * tests/actions.at, tests/calc.at, tests/headers.at,
1040 * tests/torture.at: Adjust to the newest Autotest which no longer
1041 forces `.' in the PATH.
1042
1043 2002-01-25 Akim Demaille <akim@epita.fr>
1044
1045 * tests/regression.at (%nonassoc and eof): New.
1046 Suggested by Robert Anisko.
1047
1048 2002-01-24 Akim Demaille <akim@epita.fr>
1049
1050 Bison dumps core when trying to complain about broken input files.
1051 Reported by Cris van Pelt.
1052
1053 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
1054 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
1055 into...
1056 (Invalid inputs): Strengthen: exercise parse_percent_token.
1057
1058 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
1059
1060 * src/Makefile.am: Add bison.c++.
1061 * src/bison.c++: New skeleton.
1062
1063 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
1064
1065 * po/it.po: New.
1066
1067 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
1068
1069 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
1070
1071 2002-01-20 Marc Autret <marc@gnu.org>
1072
1073 * src/files.c (compute_output_file_names): Fix
1074
1075 2002-01-20 Marc Autret <marc@gnu.org>
1076
1077 * tests/output.at: New test.
1078 * src/files.c (compute_base_names): Don't map extensions when
1079 the YACC flag is set, use defaults.
1080 Reported by Evgeny Stambulchik.
1081
1082 2002-01-20 Marc Autret <marc@gnu.org>
1083
1084 * src/system.h: Need to define __attribute__ away for non-GCC
1085 compilers as well (i.e. the vendor C compiler).
1086 Suggested by Albert Chin-A-Young.
1087
1088 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
1089
1090 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
1091 canonical definition.
1092 * src/system.h: Use the canonical definition for PARAMS (avoids
1093 a conflict with the macro from lib/hash.h).
1094
1095 2002-01-11 Akim Demaille <akim@epita.fr>
1096
1097 * configure.in: Use AC_FUNC_STRNLEN.
1098 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
1099
1100 2002-01-09 Akim Demaille <akim@epita.fr>
1101
1102 * src/files.c, src/files.h (output_infix): New.
1103 (tab_extension): Remove.
1104 (compute_base_names): Compute the former, drop the latter.
1105 * src/output.c (prepare): Insert the muscles `output-infix', and
1106 `output-suffix'.
1107 * src/parse-skel.y (string, string.1): New.
1108 (section.header): Use it.
1109 (section.yacc): Remove.
1110 (prefix): Remove too.
1111 * src/scan-skel.l: Adjust.
1112 * src/bison.simple, src/bison.hairy: Adjust.
1113
1114 2002-01-09 Akim Demaille <akim@epita.fr>
1115
1116 * configure.in (WERROR_CFLAGS): Compute it.
1117 * src/Makefile.am (CFLAGS): Pass it.
1118 * tests/atlocal.in (CFLAGS): Idem.
1119 * src/files.c: Fix a few warnings.
1120 (get_extension_index): Remove, unused.
1121
1122 2002-01-08 Akim Demaille <akim@epita.fr>
1123
1124 * src/getargs.c (AS_FILE_NAME): New.
1125 (getargs): Use it to convert DOSish file names.
1126 * src/files.c (base_name): Rename as full_base_name to avoid
1127 clashes with `base_name ()'.
1128 (filename_split): New.
1129 (compute_base_names): N-th rewrite, using filename_split.
1130
1131 2002-01-08 Akim Demaille <akim@epita.fr>
1132
1133 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
1134 New, stolen from the Fileutils 4.1.
1135 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
1136 * configure.in: Check for the presence of memrchr, and of its
1137 prototype.
1138
1139 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
1140
1141 * lib/hash.h (__P): Added definition for this macro.
1142 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
1143 BUILT_SOURCES, to ensure they are generated first.
1144 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
1145 %error-verbose to allow bootstrapping with bison 1.30x.
1146
1147 2002-01-06 Akim Demaille <akim@epita.fr>
1148
1149 * src/reader.c (parse_braces): Don't fetch the next char, the
1150 convention is to fetch on entry.
1151 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
1152 'switch' without a following semicolon.
1153 * tests/regression.at (braces parsing): New.
1154
1155 2002-01-06 Akim Demaille <akim@epita.fr>
1156
1157 Bison is dead wrong in its RR conflict reports.
1158
1159 * tests/torture.at (GNU Cim Grammar): New.
1160 * src/conflicts.c (count_rr_conflicts): Fix.
1161
1162 2002-01-06 Akim Demaille <akim@epita.fr>
1163
1164 Creating package.m4 from configure.ac causes too many problems.
1165
1166 * tests/Makefile.am (package.m4): Create it by hand,
1167 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
1168
1169 2002-01-06 Akim Demaille <akim@epita.fr>
1170
1171 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
1172 skeleton.h.
1173
1174 2002-01-04 Paul Eggert <eggert@twinsun.com>
1175
1176 * doc/bison.texinfo (Debugging):
1177 Remove YYSTDERR; it's no longer defined or used.
1178 Also, s/cstdio.h/cstdio/.
1179
1180 2002-01-03 Akim Demaille <akim@epita.fr>
1181
1182 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
1183
1184 2002-01-03 Akim Demaille <akim@epita.fr>
1185
1186 * src/parse-skel.y (process_skeleton): Don't bind the parser's
1187 tracing code to --trace, wait for a better --trace option, with
1188 args.
1189
1190 2002-01-03 Akim Demaille <akim@epita.fr>
1191
1192 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
1193 The ISO C++ standard is extremely clear about it: stderr is
1194 considered a macro, not a regular symbol (see table 94 `Header
1195 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
1196 Therefore std:: does not apply to it. It still does with fprintf.
1197 Also, s/cstdio.h/cstdio/.
1198
1199 2002-01-03 Akim Demaille <akim@epita.fr>
1200
1201 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
1202 for non system headers.
1203
1204 2002-01-02 Akim Demaille <akim@epita.fr>
1205
1206 Equip the skeleton chain with location tracking, runtime trace,
1207 pure parser and scanner.
1208
1209 * src/parse-skel.y: Request a pure parser, locations, and prefix
1210 renaming.
1211 (%union): Having several members with the same type does not help
1212 type mismatches, simplify.
1213 (YYPRINT, yyprint): New.
1214 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
1215 (skel_error): this.
1216 Handle locations.
1217 * src/scan-skel.l: Adjust to these changes.
1218 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
1219 (LOCATION_PRINT, skel_control_t): New.
1220
1221 2001-12-30 Akim Demaille <akim@epita.fr>
1222
1223 * src/parse-skel.y: Get rid of the shift/reduce conflict:
1224 replace `gb' with BLANKS.
1225 * src/scan-skel.l: Adjust.
1226
1227 2001-12-30 Akim Demaille <akim@epita.fr>
1228
1229 * src/system.h: We don't need nor want bcopy.
1230 Throw away MS-DOS crap: we don't need getpid.
1231 * configure.in: We don't need strndup. It was even causing
1232 problems: because Flex includes the headers *before* us,
1233 _GNU_SOURCE is not defined by config.h, and therefore strndup was
1234 not visible.
1235 * lib/xstrndup.c: New.
1236 * src/scan-skel.l: Use it.
1237 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
1238 * src/parse-skel.y: Use %directives instead of #defines.
1239
1240 2001-12-30 Akim Demaille <akim@epita.fr>
1241
1242 * src/skeleton.h: New.
1243 * src/output.c (output_parser, output_master_parser): Remove, dead
1244 code.
1245 * src/output.h (get_lines_number, actions_output, guards_output)
1246 (token_definitions_output): Prototype them.
1247 * src/parse-skel.y: Add the license notice.
1248 Include output.h and skeleton.h.
1249 (process_skeleton): Returns void, and takes a single parameter.
1250 * src/scan-skel.l: Add the license notice.
1251 Include skeleton.h.
1252 Don't use %option yylineno: it seems that then Flex imagines
1253 REJECT has been used, and therefore it won't reallocate its
1254 buffers (which makes no other sense to me than a bug). It results
1255 in warnings for `unused: yy_flex_realloc'.
1256
1257 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
1258
1259 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
1260 (MUSCLE_INSERT_PREFIX): ...to there.
1261 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
1262 (MUSCLE_INSERT_PREFIX): Move from here...
1263
1264 * src/bison.hairy: Add a section directive. Put braces around muscle
1265 names. This parser skeleton is still broken, but Bison should not
1266 choke on a bad muscle 'syntax'.
1267 * src/bison.simple: Add a section directive. Put braces around muscle
1268 names.
1269
1270 * src/files.h (strsuffix, stringappend): Add declarations.
1271 (tab_extension): Add declaration.
1272 (short_base_name): Add declaration.
1273
1274 * src/files.c (strsuffix, stringappend): No longer static. These
1275 functions are used in the skeleton parser.
1276 (tab_extension): New.
1277 (compute_base_names): Use the computations done in this function
1278 to guess if the generated parsers should have '.tab' in their
1279 names.
1280 (short_base_name): No longer static.
1281
1282 * src/output.c (output_skeleton): New.
1283 (output): Disable call to output_master_parser, and give a try to
1284 a new skeleton handling system.
1285 (guards_output, actions_output): No longer static.
1286 (token_definitions_output, get_lines_number): No longer static.
1287
1288 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
1289
1290 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
1291 parse-skel.y.
1292
1293 * src/parse-skel.y: New file.
1294 * src/scan-skel.l: New file.
1295
1296 2001-12-29 Akim Demaille <akim@epita.fr>
1297
1298 %name-prefix is broken.
1299
1300 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
1301 Adjust all dependencies.
1302 * tests/headers.at (export YYLTYPE): Strengthen this test: use
1303 %name-prefix.
1304
1305 Renaming yylval but not yylloc is not consistent. Now we do.
1306
1307 * src/bison.simple: Prefix yylloc if used.
1308 * doc/bison.texinfo (Decl Summary): Document that.
1309
1310 2001-12-29 Akim Demaille <akim@epita.fr>
1311
1312 * doc/bison.texinfo: Promote `%long-directive' over
1313 `%long_directive'.
1314 Remove all references to fixed-output-files, yacc is enough.
1315
1316 2001-12-29 Akim Demaille <akim@epita.fr>
1317
1318 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
1319 user prologue. These are defaults.
1320 * tests/actions.at (Mid-rule actions): Make sure the user can
1321 define YYDEBUG and YYERROR_VERBOSE.
1322
1323 2001-12-29 Akim Demaille <akim@epita.fr>
1324
1325 * src/output.c (header_output): Don't forget to export YYLTYPE and
1326 yylloc.
1327 * tests/headers.at (export YYLTYPE): New, make sure it does.
1328 * tests/regression.at (%union and --defines, Invalid CPP headers):
1329 Move to...
1330 * tests/headers.at: here.
1331
1332 2001-12-29 Akim Demaille <akim@epita.fr>
1333
1334 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
1335
1336 2001-12-29 Akim Demaille <akim@epita.fr>
1337
1338 * tests/actions.at (Mid-rule actions): Output on a single line
1339 instead of several.
1340
1341 2001-12-29 Akim Demaille <akim@epita.fr>
1342
1343 * doc/bison.texinfo: Formatting changes.
1344
1345 2001-12-29 Akim Demaille <akim@epita.fr>
1346
1347 Don't store the token defs in a muscle, just be ready to output it
1348 on command. Now possible via `symbols'. Fixes a memory leak.
1349
1350 * src/output.c (token_definitions_output): New.
1351 (output_parser, header_output): Use it.
1352 * src/reader.c (symbols_save): Remove.
1353
1354 2001-12-29 Akim Demaille <akim@epita.fr>
1355
1356 * src/bison.simple: Do not provide a default for YYSTYPE and
1357 YYLTYPE before the user's prologue. Otherwise it's hardly... a
1358 default.
1359
1360 2001-12-29 Akim Demaille <akim@epita.fr>
1361
1362 Mid-rule actions are simply... ignored!
1363
1364 * src/reader.c (readgram): Be sure to attach mid-rule actions to
1365 the empty-rule associated to the dummy symbol, not to the host
1366 rule.
1367 * tests/actions.at (Mid-rule actions): New.
1368
1369 2001-12-29 Akim Demaille <akim@epita.fr>
1370
1371 Memory leak.
1372
1373 * src/reader.c (reader): Free grammar.
1374
1375 2001-12-29 Akim Demaille <akim@epita.fr>
1376
1377 Memory leak.
1378
1379 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
1380 since it allocates it for each state, although only one is needed.
1381 (allocate_storage): Do it here.
1382
1383 2001-12-29 Akim Demaille <akim@epita.fr>
1384
1385 * src/options.h, src/options.c (create_long_option_table): Rename
1386 as...
1387 (long_option_table_new): this, with a clearer prototype.
1388 (percent_table): Remove, unused,
1389 * src/getargs.c (getargs): Adjust.
1390
1391 2001-12-29 Akim Demaille <akim@epita.fr>
1392
1393 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
1394 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
1395 as states.
1396
1397 2001-12-29 Akim Demaille <akim@epita.fr>
1398
1399 * src/lalr.c (build_relations): Rename `states' as `states1'.
1400 Sorry, I don't understand exactly what it is, no better name...
1401
1402 2001-12-29 Akim Demaille <akim@epita.fr>
1403
1404 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
1405 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
1406 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
1407 as rules.
1408
1409 2001-12-29 Akim Demaille <akim@epita.fr>
1410
1411 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
1412 ago.
1413
1414 2001-12-29 Akim Demaille <akim@epita.fr>
1415
1416 * src/reader.c, src/reader.h (user_toknums): Remove.
1417 Adjust all users to use symbols[i]->user_token_number.
1418
1419 2001-12-29 Akim Demaille <akim@epita.fr>
1420
1421 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
1422 Adjust all users to use symbols[i]->prec or ->assoc.
1423
1424 2001-12-29 Akim Demaille <akim@epita.fr>
1425
1426 * src/reader.c, src/reader.h (tags): Remove.
1427 Adjust all users to use symbols[i]->tag.
1428
1429 2001-12-29 Akim Demaille <akim@epita.fr>
1430
1431 * src/gram.h, src/gram.c (symbols): New, similar to state_table
1432 and rule_table.
1433 * src/reader.c (packsymbols): Fill this table.
1434 Drop sprec.
1435 * src/conflicts.c (resolve_sr_conflict): Adjust.
1436 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
1437 single table.
1438 Use symbols[i]->tag instead of tags[i].
1439
1440 2001-12-29 Akim Demaille <akim@epita.fr>
1441
1442 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
1443 In addition, put a comment in there, to replace...
1444 * tests/regression.at (%union and C comments): Remove.
1445
1446 2001-12-29 Akim Demaille <akim@epita.fr>
1447
1448 * tests/regression.at (Web2c Actions): Blindly move the actual
1449 output as expected output. The contents *seem* right to me, but I
1450 can't pretend reading perfectly parser tables... Nonetheless, all
1451 the other tests pass correctly, the table look OK, even though the
1452 presence of `$axiom' is to be noted: AFAICS it is useless (but
1453 harmless).
1454
1455 2001-12-29 Akim Demaille <akim@epita.fr>
1456
1457 * src/reader.c (readgram): Don't add the rule 0 if there were no
1458 rules read. In other words, add it _after_ having performed
1459 grammar sanity checks.
1460 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
1461
1462 2001-12-29 Akim Demaille <akim@epita.fr>
1463
1464 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
1465 visible, and some states have now a different number.
1466
1467 2001-12-29 Akim Demaille <akim@epita.fr>
1468
1469 * src/reader.c (readgram): Bind the initial rule's lineno to that
1470 of the first rule.
1471 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
1472 (Solved SR Conflicts): Adjust rule 0's line number.
1473
1474 2001-12-29 Akim Demaille <akim@epita.fr>
1475
1476 Fix the `GAWK Grammar' failure.
1477
1478 * src/LR0.c (final_state): Initialize to -1 so that we do compute
1479 the reductions of the first state which was mistakenly confused
1480 with the final state because precisely final_state was initialized
1481 to 0.
1482 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
1483 now noticed by Bison.
1484 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
1485 have a reduction on $default.
1486
1487 2001-12-29 Akim Demaille <akim@epita.fr>
1488
1489 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
1490 rule line numbers.
1491 * src/closure.c (print_closure): Likewise.
1492 * src/derives.c (print_derives): Likewise.
1493 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
1494 now.
1495
1496 2001-12-29 Akim Demaille <akim@epita.fr>
1497
1498 * src/lalr.c (lookaheads_print): New.
1499 (lalr): Call it when --trace-flag.
1500 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
1501 are dumped.
1502
1503 2001-12-29 Akim Demaille <akim@epita.fr>
1504
1505 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
1506 when walking through ritem, even via rule->rhs.
1507 * src/reduce.c (dump_grammar, useful_production, reduce_output)
1508 (useful_production, useless_nonterminals): Likewise.
1509 (reduce_grammar_tables): Likewise, plus update nritems.
1510 * src/nullable.c (set_nullable): Likewise.
1511 * src/lalr.c (build_relations): Likewise.
1512 * tests/sets.at (Nullable): Adjust.
1513 Fortunately, now, the $axiom is no longer nullable.
1514
1515 2001-12-29 Akim Demaille <akim@epita.fr>
1516
1517 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
1518 the 0-sentinel.
1519 * src/gram.c (ritem_longest_rhs): Likewise.
1520 * src/reduce.c (nonterminals_reduce): Likewise.
1521 * src/print_graph.c (print_graph): Likewise.
1522 * src/output.c (output_rule_data): Likewise.
1523 * src/nullable.c (set_nullable): Likewise.
1524
1525 2001-12-29 Akim Demaille <akim@epita.fr>
1526
1527 * src/output.c: Comment changes.
1528
1529 2001-12-27 Paul Eggert <eggert@twinsun.com>
1530
1531 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
1532 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
1533 Sparc, as they were causing more porting problems than the
1534 (minor) performance improvement was worth.
1535
1536 Also, catch up with 1.31's YYSTD.
1537
1538 2001-12-27 Akim Demaille <akim@epita.fr>
1539
1540 * src/output.c (output_gram): Rely on nritems, not the
1541 0-sentinel. See below.
1542 Use -1 as separator, not 0.
1543 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
1544 Rely on -1 as separator in yyrhs, instead of 0.
1545 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
1546 twice `Now at end of input', therefore there are two lines less to
1547 expect.
1548
1549 2001-12-27 Akim Demaille <akim@epita.fr>
1550
1551 * tests/regression.at (Unresolved SR Conflicts):
1552 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
1553 below.
1554
1555 2001-12-27 Akim Demaille <akim@epita.fr>
1556
1557 * src/LR0.c (new_state): Recognize the final state by the fact it
1558 is reached by eoftoken.
1559 (insert_start_shifting_state, insert_eof_shifting_state)
1560 (insert_accepting_state, augment_automaton): Remove, since now
1561 these states are automatically computed from the initial state.
1562 (generate_states): Adjust.
1563 * src/print.c: When reporting a rule number to the user, substract
1564 1, so that the axiom rule is rule 0, and the first user rule is 1.
1565 * src/reduce.c: Likewise.
1566 * src/print_graph.c (print_core): For the time being, just as for
1567 the report, depend upon --trace-flags to dump the full set of
1568 items.
1569 * src/reader.c (readgram): Once the grammar read, insert the rule
1570 0: `$axiom: START-SYMBOL $'.
1571 * tests/set.at: Adjust: rule 0 is now displayed, and since the
1572 number of the states has changed (the final state is no longer
1573 necessarily the last), catch up.
1574
1575 2001-12-27 Akim Demaille <akim@epita.fr>
1576
1577 Try to make the use of the eoftoken valid. Given that its value
1578 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
1579 is used instead of > 0 where appropriate, (ii), depend upon nritems
1580 instead of the 0-sentinel.
1581
1582 * src/gram.h, src/gram.c (nritems): New.
1583 Expected to be duplication of nitems, but for the time being...
1584 * src/reader.c (packgram): Assert nritems and nitems are equal.
1585 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
1586 * src/closure.c (print_closure, print_fderives): Likewise.
1587 * src/gram.c (ritem_print): Likewise.
1588 * src/print.c (print_core, print_grammar): Likewise.
1589 * src/print_graph.c: Likewise.
1590
1591 2001-12-27 Akim Demaille <akim@epita.fr>
1592
1593 * src/main.c (main): If there are complains after grammar
1594 reductions, then output the report anyway if requested, then die.
1595 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
1596 * src/reader.c (eoftoken): New.
1597 (parse_token_decl): If the token being defined has value `0', it
1598 is the eoftoken.
1599 (packsymbols): No longer hack `tags' to insert `$' by hand.
1600 Be sure to preserve the value of the eoftoken.
1601 (reader): Make sure eoftoken is defined.
1602 Initialize nsyms to 0: now eoftoken is created just like the others.
1603 * src/print.c (print_grammar): Don't special case the eof token.
1604 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
1605 lie anyway, albeit pleasant.
1606 * tests/calc.at: Exercise error messages with eoftoken.
1607 Change the grammar so that empty input is invalid.
1608 Adjust expectations.
1609 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
1610
1611 2001-12-27 Akim Demaille <akim@epita.fr>
1612
1613 * configure.in: Check the protos of strchr ans strspn.
1614 Replace strchr if needed.
1615 * src/system.h: Provide the protos of strchr, strspn and memchr if
1616 missing.
1617 * lib/strchr.c: New.
1618 * src/reader.c (symbols_save): Use strchr.
1619
1620 2001-12-27 Akim Demaille <akim@epita.fr>
1621
1622 * src/print.c, src/print_graph.c (escape): New.
1623 Use it to quote the TAGS outputs.
1624 * src/print_graph.c (print_state): Now errors are in red, and
1625 reductions in green.
1626 Prefer high to wide: output the state number on a line of its own.
1627
1628 2001-12-27 Akim Demaille <akim@epita.fr>
1629
1630 * src/state.h, src/state.c (reductions_new): New.
1631 * src/LR0.c (set_state_table): Let all the states have a
1632 `reductions', even if reduced to 0.
1633 (save_reductions): Adjust.
1634 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
1635 * src/print.c (print_reductions, print_actions): Adjust.
1636 * src/output.c (action_row): Adjust.
1637
1638 2001-12-27 Akim Demaille <akim@epita.fr>
1639
1640 * src/state.h, src/state.c (errs_new, errs_dup): New.
1641 * src/LR0.c (set_state_table): Let all the states have an errs,
1642 even if reduced to 0.
1643 * src/print.c (print_errs, print_reductions): Adjust.
1644 * src/output.c (output_actions, action_row): Adjust.
1645 * src/conflicts.c (resolve_sr_conflict): Adjust.
1646
1647 2001-12-27 Akim Demaille <akim@epita.fr>
1648
1649 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
1650
1651 2001-12-27 Akim Demaille <akim@epita.fr>
1652
1653 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
1654 * src/print.c: here.
1655 (lookaheadset, shiftset): New, used as additional storage by
1656 print_reductions.
1657 (print_results): Adjust.
1658 (print_shifts, print_gotos, print_errs): New, extracted from...
1659 (print_actions): here.
1660 * src/print_graph.c (print_actions): Remove dead code.
1661
1662 2001-12-27 Akim Demaille <akim@epita.fr>
1663
1664 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
1665 `$n' and `@n'.
1666
1667 2001-12-27 Akim Demaille <akim@epita.fr>
1668
1669 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
1670 (build_relations): Adjust.
1671
1672 2001-12-27 Akim Demaille <akim@epita.fr>
1673
1674 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
1675 duplication.
1676
1677 2001-12-27 Akim Demaille <akim@epita.fr>
1678
1679 * src/reader.c (packgram): Catch nitems overflows.
1680
1681 2001-12-27 Akim Demaille <akim@epita.fr>
1682
1683 * src/files.c, src/files.h (guard_obstack): Remove.
1684 * src/output.c (output): Adjust.
1685 * src/reader.c (parse_braces): New, factoring...
1686 (copy_action, copy_guard): these two which are renamed as...
1687 (parse_action, parse_guard): these.
1688 As a voluntary consequence, using braces around guards is now
1689 mandatory.
1690
1691 2001-12-27 Akim Demaille <akim@epita.fr>
1692
1693 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
1694 * src/reader.c (symbol_list): `guard' and `guard_line' are new
1695 members.
1696 (symbol_list_new): Adjust.
1697 (copy_action): action_line is the first line, not the last.
1698 (copy_guard): Just as for actions, store the `action' only, not
1699 the switch/case/break flesh.
1700 Don't parse the user action that might follow the guard, let...
1701 (readgram): do it, i.e., now, there can be an action after a
1702 guard.
1703 In other words the guard is just explicitly optional.
1704 (packgram): Adjust.
1705 * src/output.c (guards_output): New.
1706 (output_parser): Call it when needed.
1707 (output): Also free the guard and attrs obstacks.
1708 * src/files.c, src/files.h (obstack_save): Remove.
1709 (output_files): Remove.
1710 As a result, if one needs the former `.act' file, using an
1711 appropriate skeleton which requires actions and guards is now
1712 required.
1713 * src/main.c (main): Adjust.
1714 * tests/semantic.at: New.
1715 * tests/regression.at: Use `input.y' as input file name.
1716 Avoid 8+3 problems by requiring input.c when the test needs the
1717 parser.
1718
1719 2001-12-27 Akim Demaille <akim@epita.fr>
1720
1721 * src/reader.c (symbol_list_new): Be sure to initialize all the
1722 fields.
1723
1724 2001-12-27 Akim Demaille <akim@epita.fr>
1725
1726 All the hacks using a final pseudo state are now useless.
1727
1728 * src/LR0.c (set_state_table): state_table holds exactly nstates.
1729 * src/lalr.c (nLA): New.
1730 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
1731 instead of lookaheadsp from the pseudo state (nstate + 1).
1732
1733 2001-12-27 Akim Demaille <akim@epita.fr>
1734
1735 * src/output.c (action_row, token_actions): Use a state_t instead
1736 of a integer, and nlookaheads instead of the following state's
1737 lookaheadsp.
1738
1739 2001-12-27 Akim Demaille <akim@epita.fr>
1740
1741 * src/conflicts.c (log_resolution, flush_shift)
1742 (resolve_sr_conflict, set_conflicts, solve_conflicts)
1743 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
1744 (conflicts_print, print_reductions): Use a state_t instead of an
1745 integer when referring to a state.
1746 As much as possible, depend upon nlookaheads, instead of the
1747 `lookaheadsp' member of the following state (since lookaheads of
1748 successive states are successive, the difference between state n + 1
1749 and n served as the number of lookaheads for state n).
1750 * src/lalr.c (add_lookback_edge): Likewise.
1751 * src/print.c (print_core, print_actions, print_state)
1752 (print_results): Likewise.
1753 * src/print_graph.c (print_core, print_actions, print_state)
1754 (print_graph): Likewise.
1755 * src/conflicts.h: Adjust.
1756
1757 2001-12-27 Akim Demaille <akim@epita.fr>
1758
1759 * src/bison.hairy: Formatting/comment changes.
1760 ANSIfy.
1761 Remove `register' indications.
1762 Add plenty of `static'.
1763
1764 2001-12-27 Akim Demaille <akim@epita.fr>
1765
1766 * src/output.c (prepare): Drop the muscle `ntbase' which
1767 duplicates ntokens.
1768 * src/bison.simple: Formatting/comment changes.
1769 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
1770 is an undocumented synonym.
1771
1772 2001-12-22 Akim Demaille <akim@epita.fr>
1773
1774 * src/output.c (output_table_data): Change the prototype to use
1775 `int' for array ranges: some invocations do pass an int, not a
1776 short.
1777 Reported by Wayne Green.
1778
1779 2001-12-22 Akim Demaille <akim@epita.fr>
1780
1781 Some actions of web2c.y are improperly triggered.
1782 Reported by Mike Castle.
1783
1784 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
1785 * tests/regression.at (Web2c): Rename as...
1786 (Web2c Report): this.
1787 (Web2c Actions): New.
1788
1789 2001-12-22 Akim Demaille <akim@epita.fr>
1790
1791 Reductions in web2c.y are improperly reported.
1792 Reported by Mike Castle.
1793
1794 * src/conflicts.c (print_reductions): Fix.
1795 * tests/regression.at (Web2c): New.
1796
1797 2001-12-18 Akim Demaille <akim@epita.fr>
1798
1799 Some host fail on `assert (!"foo")', which expands to
1800 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
1801 Reported by Nelson Beebee.
1802
1803 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
1804 `#define it_succeeded 0' and `assert (it_succeeded)'.
1805
1806 2001-12-17 Marc Autret <autret_m@epita.fr>
1807
1808 * src/bison.simple: Don't hard code the skeleton line and filename.
1809 * src/output.c (output_parser): Rename 'line' as 'output_line'.
1810 New line counter 'skeleton_line' (skeleton-line muscle).
1811
1812 2001-12-17 Paul Eggert <eggert@twinsun.com>
1813
1814 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
1815 YYDEBUG must be defined to a nonzero value.
1816
1817 * src/bison.simple (yytname): Do not assume that the user defines
1818 YYDEBUG to a properly parenthesized expression.
1819
1820 2001-12-17 Akim Demaille <akim@epita.fr>
1821
1822 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
1823 nlookaheads is a new member.
1824 Adjust all users.
1825 * src/lalr.h (nlookaheads): Remove this orphan declaration.
1826 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
1827 state.
1828
1829 2001-12-17 Akim Demaille <akim@epita.fr>
1830
1831 * src/files.h, src/files.c (open_files, close_files): Remove.
1832 * src/main.c (main): Don't open/close files, nor invoke lex_free,
1833 let...
1834 * src/reader.c (reader): Do it.
1835
1836 2001-12-17 Akim Demaille <akim@epita.fr>
1837
1838 * src/conflicts.c (print_reductions): Formatting changes.
1839
1840 2001-12-17 Akim Demaille <akim@epita.fr>
1841
1842 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
1843 (flush_reduce): New.
1844 (resolve_sr_conflict): Adjust.
1845
1846 2001-12-17 Akim Demaille <akim@epita.fr>
1847
1848 * src/output.c (output_obstack): Be static and rename as...
1849 (format_obstack): this, to avoid any confusion with files.c's
1850 output_obstack.
1851 * src/reader.h (muscle_obstack): Move to...
1852 * src/output.h: here, since it's defined in output.c.
1853
1854 2001-12-17 Akim Demaille <akim@epita.fr>
1855
1856 * src/output.c (action_row, save_column, default_goto)
1857 (sort_actions, matching_state, pack_vector): Better variable
1858 locality.
1859
1860 2001-12-17 Akim Demaille <akim@epita.fr>
1861
1862 * src/output.c: Various formatting changes.
1863
1864 2001-12-17 Akim Demaille <akim@epita.fr>
1865
1866 * src/files.c (output_files): Free the output_obstack.
1867 * src/main.c (main): Call print and print_graph conditionally.
1868 * src/print.c (print): Work unconditionally.
1869 * src/print_graph.c (print_graph): Work unconditionally.
1870 * src/conflicts.c (log_resolution): Output only if verbose_flag.
1871
1872 2001-12-16 Marc Autret <autret_m@epita.fr>
1873
1874 * src/output.c (actions_output): Fix. When we use %no-lines,
1875 there is one less line per action.
1876
1877 2001-12-16 Marc Autret <autret_m@epita.fr>
1878
1879 * src/bison.simple: Remove a useless #line directive.
1880 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
1881 * src/output.c (get_lines_number): New.
1882 (output_parser): Adjust, now takes care about the lines of a
1883 output muscles.
1884 Fix line numbering.
1885 (actions_output): Computes the number of lines taken by actions.
1886 (output_master_parser): Insert new skeleton which is the name of
1887 the output parser file name.
1888
1889 2001-12-15 Marc Autret <autret_m@epita.fr>
1890
1891 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
1892
1893 2001-12-15 Marc Autret <autret_m@epita.fr>
1894
1895 * src/output.c (output_gram): Keep track of the hairy one.
1896
1897 2001-12-15 Akim Demaille <akim@epita.fr>
1898
1899 Make `make distcheck' work.
1900
1901 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
1902 system.h which uses libgettext.h.
1903
1904 2001-12-15 Akim Demaille <akim@epita.fr>
1905
1906 * src/nullable.c (set_nullable): Useless rules must be skipped,
1907 otherwise, since we range over their symbols, we might look at a
1908 nonterminal which no longer ``exists'', i.e., it is not counted in
1909 `nvars', hence we overflow our arrays.
1910
1911 2001-12-15 Akim Demaille <akim@epita.fr>
1912
1913 The header can also be produced directly, without any obstack!
1914 Yahoo!
1915
1916 * src/files.c, src/files.h (defines_obstack): Remove.
1917 (compute_header_macro): Global.
1918 (defines_obstack_save): Remove.
1919 * src/reader.c (parse_union_decl): No longer output to
1920 defines_obstack: its content can be found in the `stype' muscle
1921 anyway.
1922 (output_token_translations): Merge into...
1923 (symbols_output): this.
1924 Rename as...
1925 (symbols_save): this.
1926 (reader): Adjust.
1927 * src/output.c (header_output): New.
1928 (output): Call it.
1929
1930 2001-12-15 Akim Demaille <akim@epita.fr>
1931
1932 * src/reader.c (parse_union_decl): Instead of handling two obstack
1933 simultaneously, use one to define the `stype' muscle, and use the
1934 value of the latter to fill defines_obstack.
1935 (copy_comment): Remove.
1936 (copy_comment2): Work for a single obstack.
1937 Rename as...
1938 (copy_comment): this.
1939
1940 2001-12-15 Akim Demaille <akim@epita.fr>
1941
1942 * src/lex.c, src/lex.h (xgetc): No longer static.
1943 * src/reader.c (parse_union_decl): Revamp.
1944
1945 2001-12-15 Akim Demaille <akim@epita.fr>
1946
1947 Still making progress in separating Bison into (i) input, (ii)
1948 process, (iii) output: now we can directly output the parser file
1949 without using table_obstack at all.
1950
1951 * src/files.c, src/files.h (table_obstack): Bye bye.
1952 (parser_file_name): New.
1953 * src/files.c (compute_output_file_names): Compute it.
1954 * src/output.c (actions_output, output_parser)
1955 (output_master_parser): To a file instead of an obstack.
1956
1957 2001-12-15 Akim Demaille <akim@epita.fr>
1958
1959 Attach actions to rules, instead of pre-outputting them to
1960 actions_obstack.
1961
1962 * src/gram.h (rule_t): action and action_line are new members.
1963 * src/reader.c (symbol_list): Likewise.
1964 (copy_action): Save the actions within the rule.
1965 (packgram): Save them in rule_table.
1966 * src/output.c (actions_output): New.
1967 (output_parser): Use it on `%%actions'.
1968 (output_rule_data): Don't free rule_table.
1969 (output): Do it.
1970 (prepare): Don't save the `action' muscle.
1971 * src/bison.simple: s/%%action/%%actions/.
1972
1973 2001-12-15 Akim Demaille <akim@epita.fr>
1974
1975 * src/reader.c (copy_action): When --yacc, don't append a `;'
1976 to the user action: let it fail if lacking.
1977 Suggested by Arnold Robbins and Tom Tromey.
1978
1979 2001-12-14 Akim Demaille <akim@epita.fr>
1980
1981 * src/lex.c (literalchar): Simply return the char you decoded, non
1982 longer mess around with obstacks and int pointers.
1983 Adjust all callers.
1984
1985 2001-12-14 Akim Demaille <akim@epita.fr>
1986
1987 * src/lex.c (literalchar): Don't escape the special characters,
1988 just decode them, and keep them as char (before, eol was output as
1989 the 2 char string `\n' etc.).
1990 * src/output.c (output_rule_data): Use quotearg to output the
1991 token strings.
1992
1993 2001-12-13 Paul Eggert <eggert@twinsun.com>
1994
1995 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
1996 Do not infringe on the global user namespace when using C++.
1997 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
1998 All uses of `fprintf' and `stderr' changed.
1999
2000 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
2001
2002 2001-12-13 Akim Demaille <akim@epita.fr>
2003
2004 The computation of nullable is broken: it doesn't handle empty
2005 RHS's properly.
2006
2007 * tests/torture.at (GNU AWK Grammar): New.
2008 * tests/sets.at (Nullable): New.
2009 * src/nullable.c (set_nullable): Instead of blindly looping over
2010 `ritems', loop over the rules, and then over their rhs's.
2011
2012 Work around Autotest bugs.
2013
2014 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
2015 frame, because Autotest understand lines starting with a `+' as
2016 traces from the shell. Then, they are not processed properly.
2017 Admittedly an Autotest bug, but we don't have time to wait for
2018 Autotest to catch up.
2019 * tests/regression.at (Broken Closure): Adjust to the new table
2020 frames.
2021 Move to...
2022 * tests/sets.at: here.
2023
2024 2001-12-13 Akim Demaille <akim@epita.fr>
2025
2026 * src/closure.c (closure): Use nrules instead of playing tricks
2027 with BITS_PER_WORD.
2028
2029 2001-12-13 Akim Demaille <akim@epita.fr>
2030
2031 * src/print.c (print_actions): Output the handling of `$' as the
2032 traces do: shifting the token EOF. Before EOF was treated as a
2033 nonterminal.
2034 * tests/regression.at: Adjust some tests.
2035 * src/print_graph.c (print_core): Complete the set of items via
2036 closure. The next-to-final and final states are still unsatisfying,
2037 but that's to be addressed elsewhere.
2038 No longer output the rule numbers, but do output the state number.
2039 A single loop for the shifts + gotos is enough, but picked a
2040 distinct color for each.
2041 (print_graph): Initialize and finalize closure.
2042
2043 2001-12-13 Akim Demaille <akim@epita.fr>
2044
2045 * src/reader.c (readgram): Remove dead code, an strip useless
2046 braces.
2047 (get_type): Remove, unused.
2048
2049 2001-12-12 Akim Demaille <akim@epita.fr>
2050
2051 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
2052 on that of lib/error.c.
2053
2054 2001-12-12 Akim Demaille <akim@epita.fr>
2055
2056 Some hosts don't like `/' in includes.
2057
2058 * src/system.h: Include libgettext.h without qualifying the path.
2059 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
2060 $(top_srcdir).
2061
2062 2001-12-11 Marc Autret <autret_m@epita.fr>
2063
2064 * src/output.c (output_parser): Remove useless muscle.
2065
2066 2001-12-11 Marc Autret <autret_m@epita.fr>
2067
2068 * src/bison.simple: Remove #line just before %%epilogue. It
2069 is now handled in ...
2070 * src/reader.c (read_additionnal_code): Add the output of a
2071 #line for the epilogue.
2072
2073 2001-12-10 Marc Autret <autret_m@epita.fr>
2074
2075 * src/reader.c (copy_definition): Re-use CPP-outed code which
2076 replace precedent remove.
2077 * src/bison.simple: Remove #line before %%prologue because
2078 %%input-line is wrong at this time.
2079
2080 2001-12-10 Marc Autret <autret_m@epita.fr>
2081
2082 * src/reader.c (symbols_output): Clean up.
2083 * src/output.c (output_gram, output): Clean up.
2084
2085 2001-12-10 Akim Demaille <akim@epita.fr>
2086
2087 * src/lalr.c (initialize_lookaheads): New. Extracted from...
2088 * src/LR0.c (set_state_table): here.
2089 * src/lalr.c (lalr): Call it.
2090
2091 2001-12-10 Akim Demaille <akim@epita.fr>
2092
2093 * src/state.h (shifts): Remove the `number' member: shifts are
2094 attached to state, hence no longer need to be labelled with a
2095 state number.
2096
2097 2001-12-10 Akim Demaille <akim@epita.fr>
2098
2099 Now that states have a complete set of members, the linked list of
2100 shifts is useless: just fill directly the state's shifts member.
2101
2102 * src/state.h (shifts): Remove the `next' member.
2103 * src/LR0.c (first_state, last_state): Remove.
2104 Adjust the callers.
2105 (augment_automaton): Don't look for the shifts that must be added
2106 a shift on EOF: it is those of the state we looked for! But now,
2107 since shifts are attached, it is no longer needed to looking
2108 merely by its id: its number.
2109
2110 2001-12-10 Akim Demaille <akim@epita.fr>
2111
2112 * src/LR0.c (augment_automaton): Better variable locality.
2113 Remove an impossible branch: if there is a state corresponding to
2114 the start symbol being shifted, then there is shift for the start
2115 symbol from the initial state.
2116
2117 2001-12-10 Akim Demaille <akim@epita.fr>
2118
2119 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
2120 only when appropriate: when insert_start_shifting_state' is not
2121 invoked.
2122 * tests/regression.at (Rule Line Numbers): Adjust.
2123
2124 2001-12-10 Akim Demaille <akim@epita.fr>
2125
2126 * src/LR0.c (augment_automaton): Now that all states have shifts,
2127 merge the two cases addition shifts to the initial state.
2128
2129 2001-12-10 Akim Demaille <akim@epita.fr>
2130
2131 * src/lalr.c (set_state_table): Move to...
2132 * src/LR0.c: here.
2133 * src/lalr.c (lalr): Don't call it...
2134 * src/LR0.c (generate_states): do it.
2135 * src/LR0.h (first_state): Remove, only the table is used.
2136
2137 2001-12-10 Akim Demaille <akim@epita.fr>
2138
2139 * src/LR0.h (first_shift, first_reduction): Remove.
2140 * src/lalr.c: Don't use first_shift: find shifts through the
2141 states.
2142
2143 2001-12-10 Akim Demaille <akim@epita.fr>
2144
2145 * src/LR0.c: Attach shifts to states as soon as they are
2146 computed.
2147 * src/lalr.c (set_state_table): Instead of assigning shifts to
2148 state, just assert that the mapping was properly done.
2149
2150 2001-12-10 Akim Demaille <akim@epita.fr>
2151
2152 * src/LR0.c (insert_start_shift): Rename as...
2153 (insert_start_shifting_state): this.
2154 (insert_eof_shifting_state, insert_accepting_state): New.
2155 (augment_automaton): Adjust.
2156 Better locality of the variables.
2157 When looking if the start_symbol is shifted from the initial
2158 state, using `while (... symbol != start_symbol ...)' sounds
2159 better than `while (... symbol < start_symbol ...)': If fail
2160 to see how the order between symbols could be relevant!
2161
2162 2001-12-10 Akim Demaille <akim@epita.fr>
2163
2164 * src/getargs.h: Don't declare `spec_name_prefix' and
2165 `spec_file_prefix', declared by src/files.h.
2166 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
2167 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
2168 * src/output.c (prepare): Adjust.
2169 * src/reader.c (symbols_output): Likewise.
2170 * src/vmsgetargs.c: Vaguely adjust, but who cares?
2171
2172 2001-12-10 Akim Demaille <akim@epita.fr>
2173
2174 * src/muscle_tab.c (muscle_init): NULL is a better default than
2175 `"0"'.
2176
2177 2001-12-10 Akim Demaille <akim@epita.fr>
2178
2179 * src/reader.c (reader): Calling symbols_output once is enough.
2180
2181 2001-12-10 Akim Demaille <akim@epita.fr>
2182
2183 Now that states have a complete set of members, the linked list of
2184 reductions is useless: just fill directly the state's reductions
2185 member.
2186
2187 * src/state.h (struct reductions): Remove member `number' and
2188 `next'.
2189 * src/LR0.c (first_reduction, last_reduction): Remove.
2190 (save_reductions): Don't link the new reductions, store them in
2191 this_state.
2192 * src/lalr.c (set_state_table): No need to attach reductions to
2193 states, it's already done.
2194 * src/output.c (output_actions): No longer free the shifts, then
2195 the reductions, then the states: free all the states and their
2196 members.
2197
2198 2001-12-10 Akim Demaille <akim@epita.fr>
2199
2200 * src/options.c (OPTN, DRTV, BOTH): New.
2201 (option_table): Use them.
2202
2203 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
2204 the job of system.h.
2205 * src/options.c: Don't include stdio.h and xalloc.h for the same
2206 reasons.
2207
2208 2001-12-10 Akim Demaille <akim@epita.fr>
2209
2210 * src/output.c (output, prepare): Make sure the values of the
2211 muscles `action' and `prologue' are 0-terminated.
2212
2213 2001-12-10 Akim Demaille <akim@epita.fr>
2214
2215 Clean up GCC warnings.
2216
2217 * src/reader.c (copy_action): `buf' is not used.
2218 (parse_skel_decl): Be static.
2219 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
2220 * src/options.h (create_long_option_table): Have a real prototype.
2221 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
2222 (hash_delete_at): Return const void *.
2223 Adjust casts to preserve the const.
2224
2225 2001-12-10 Akim Demaille <akim@epita.fr>
2226
2227 * configure.in: Require 2.52g.
2228 M4 is not needed, but AUTOM4TE is.
2229 * m4/m4.m4: Remove.
2230 * tests/Makefile.am: Adjust.
2231
2232 2001-12-10 Akim Demaille <akim@epita.fr>
2233
2234 One structure for states is enough, even though theoretically
2235 there are LR(0) states and LALR(1) states.
2236
2237 * src/lalr.h (state_t): Remove.
2238 (state_table): Be state_t **, not state_t *.
2239 * src/state.h (core, CORE_ALLOC): Rename as...
2240 (state_t, STATE_ALLOC): this.
2241 Add the LALR(1) members: shifts, reductions, errs.
2242 * src/LR0.c (state_table): Rename as...
2243 (state_hash): this, to avoid name clashes with the global
2244 `state_table'.
2245 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
2246 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
2247
2248 2001-12-10 Akim Demaille <akim@epita.fr>
2249
2250 Bison dumps core on bash.y.
2251 Reported by Pascal Bart.
2252
2253 * src/warshall.c (bitmatrix_print): New.
2254 (TC): Use it.
2255 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
2256 j must be the outer loop.
2257 * tests/regression.at (Broken Closure): New.
2258
2259 2001-12-05 Akim Demaille <akim@epita.fr>
2260
2261 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
2262 its argument.
2263 Reported by Peter Hámorský.
2264
2265 2001-12-05 Akim Demaille <akim@epita.fr>
2266
2267 * src/conflicts.c (err_table): Remove.
2268 (resolve_sr_conflict): Adjust.
2269 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
2270 Rename as...
2271 (state_t.reductions, state_t.shifts): this.
2272
2273 2001-12-05 Akim Demaille <akim@epita.fr>
2274
2275 * src/reduce.c (reduce_grammar_tables): No longer disable the
2276 removal of useless rules via CPP but via `if (0)', so that the
2277 compiler still check the code is valid.
2278 For instance, it should have noticed `rline' no longer exists: use
2279 the `line' member of rule_t.
2280 * src/gram.c (dummy, rline): Remove, unused.
2281
2282 2001-12-05 Akim Demaille <akim@epita.fr>
2283
2284 * src/output.c (pack_vector): Use assert, not berror.
2285 * src/main.c (berror): Remove, unused.
2286
2287 2001-12-05 Akim Demaille <akim@epita.fr>
2288
2289 New experimental feature: if --verbose --trace output all the
2290 items of a state, not only its kernel.
2291
2292 * src/print.c (print_core): If `trace_flag', then invoke closure
2293 before outputting the items of the state (print_core is no longer
2294 a correct name them).
2295 (print_results): Invoke new_closure/free_closure if needed.
2296
2297 2001-12-05 Akim Demaille <akim@epita.fr>
2298
2299 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
2300 * src/closure.c, src/closure.h (itemsetsize): Rename as...
2301 (nitemset): for consistency with the rest of the project.
2302
2303 2001-12-05 Akim Demaille <akim@epita.fr>
2304
2305 * src/closure.c (print_closure): Improve.
2306 (closure): Use it for printing input and output.
2307
2308 2001-12-05 Akim Demaille <akim@epita.fr>
2309
2310 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
2311 indexed by nonterminals.
2312
2313 2001-12-05 Akim Demaille <akim@epita.fr>
2314
2315 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
2316 what it was!).
2317 * src/warshall.h: Remove accidental duplication of the content.
2318
2319 2001-12-05 Akim Demaille <akim@epita.fr>
2320
2321 * src/closure.c (set_fderives): De-obfuscate.
2322
2323 2001-12-05 Akim Demaille <akim@epita.fr>
2324
2325 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
2326
2327 2001-12-05 Akim Demaille <akim@epita.fr>
2328
2329 * src/closure.c (set_firsts): De-obfuscate.
2330
2331 2001-12-05 Akim Demaille <akim@epita.fr>
2332
2333 * src/output.c (action_row): De-obfuscate
2334 using the good o' techniques: arrays not pointers, variable
2335 locality, BITISSET, RESETBIT etc.
2336
2337 2001-12-05 Akim Demaille <akim@epita.fr>
2338
2339 Pessimize the code to simplify it: from now on, all the states
2340 have a valid SHIFTS, which NSHIFTS is possibly 0.
2341
2342 * src/LR0.c (shifts_new): Be global and move to..
2343 * src/state.c, src/state.h: here.
2344 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
2345 * src/print_graph: Adjust.
2346
2347 2001-12-05 Akim Demaille <akim@epita.fr>
2348
2349 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
2350 * src/conflicts.c: Use it.
2351 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
2352 incorrectly ``simplified''.
2353
2354 2001-12-05 Akim Demaille <akim@epita.fr>
2355
2356 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
2357 using the good o' techniques: arrays not pointers, variable
2358 locality, BITISSET, RESETBIT etc.
2359
2360 2001-12-05 Akim Demaille <akim@epita.fr>
2361
2362 * src/state.h (SHIFT_SYMBOL): New.
2363 * src/conflicts.c: Use it to deobfuscate.
2364
2365 2001-12-05 Akim Demaille <akim@epita.fr>
2366
2367 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
2368 (print_reductions): De-obfuscate using the good o' techniques:
2369 arrays not pointers, variable locality, BITISSET.
2370
2371 2001-12-05 Akim Demaille <akim@epita.fr>
2372
2373 * src/conflicts.c (print_reductions): Arrays, not pointers.
2374 Use BITISSET.
2375
2376 2001-12-05 Akim Demaille <akim@epita.fr>
2377
2378 * src/conflicts.c (print_reductions): Pessimize, but clarify.
2379
2380 2001-12-05 Akim Demaille <akim@epita.fr>
2381
2382 * src/conflicts.c (print_reductions): Improve variable locality.
2383
2384 2001-12-05 Akim Demaille <akim@epita.fr>
2385
2386 * src/conflicts.c (print_reductions): Pessimize, but clarify.
2387
2388 2001-12-05 Akim Demaille <akim@epita.fr>
2389
2390 * src/conflicts.c (print_reductions): Improve variable locality.
2391
2392 2001-12-05 Akim Demaille <akim@epita.fr>
2393
2394 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
2395 * src/lalr.c: Use them.
2396
2397 2001-12-05 Akim Demaille <akim@epita.fr>
2398
2399 * src/LR0.c (augment_automaton): Formatting changes.
2400 Better variable locality.
2401
2402 2001-12-05 Akim Demaille <akim@epita.fr>
2403
2404 * src/lalr.c (matrix_print): New.
2405 (transpose): Use it.
2406 Use arrays instead of pointers.
2407
2408 2001-12-05 Akim Demaille <akim@epita.fr>
2409
2410 * src/lalr.c (maxrhs): Move to...
2411 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
2412 * src/lalr.c (build_relations): Adjust.
2413
2414 2001-12-05 Akim Demaille <akim@epita.fr>
2415
2416 * src/lalr.c (transpose): Free the memory allocated to the
2417 argument, as it is replaced by the results by the unique caller.
2418 (build_relations): Merely invoke transpose: it handles the memory
2419 deallocation.
2420 Improve variable locality.
2421 Avoid variables used as mere abbreviations.
2422 (compute_lookaheads): Use arrays instead of pointers.
2423
2424 2001-12-05 Akim Demaille <akim@epita.fr>
2425
2426 * src/lalr.c (initialize_F): Improve variable locality.
2427 Avoid variables used as mere abbreviations.
2428
2429 2001-12-05 Akim Demaille <akim@epita.fr>
2430
2431 * src/derives.c (print_derives): Display the ruleno.
2432 * src/lalr.c (initialize_F, transpose): Better variable locality
2433 to improve readability.
2434 Avoid variables used as mere abbreviations.
2435
2436 2001-12-05 Akim Demaille <akim@epita.fr>
2437
2438 * src/lalr.c (traverse): Use arrays instead of pointers.
2439
2440 2001-12-05 Akim Demaille <akim@epita.fr>
2441
2442 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
2443 the handling of squeue.
2444 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
2445
2446 2001-12-05 Akim Demaille <akim@epita.fr>
2447
2448 Because useless nonterminals are now kept alive (instead of being
2449 `destroyed'), we now sometimes examine them, and store information
2450 related to them. Hence we need to know their number, and adjust
2451 memory allocations.
2452
2453 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
2454 static.
2455 * src/LR0.c (allocate_itemsets): The memory allocated to
2456 `symbol_count' was used for two different purpose: once to count
2457 the number of occurrences of each symbol, and later reassigned to
2458 `shift_symbol', containing the symbol that can be shifted from a
2459 given state.
2460 Deobfuscate, i.e., allocate, use and free `symbol_count' here
2461 only, and...
2462 (new_itemsets): Allocate `shift_symbol' here.
2463 (allocate_itemsets): symbol_count includes useless nonterminals.
2464 Make room for them.
2465 (free_storage): Use `free', not `XFREE', for pointers that cannot
2466 be null.
2467
2468 2001-12-05 Akim Demaille <akim@epita.fr>
2469
2470 * src/nullable.c (set_nullable): Deobfuscate the handling of
2471 ritem.
2472 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
2473
2474 2001-12-05 Akim Demaille <akim@epita.fr>
2475
2476 * src/gram.c, src/gram.h (ritem_print): New.
2477 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
2478 (This useless function was defined only to work around VMS linkers
2479 that can't handle compilation units with variables only).
2480 * src/reduce.c (dump_grammar): Use it to trace the construction of
2481 ritem.
2482
2483 2001-12-04 Paul Eggert <eggert@twinsun.com>
2484
2485 * src/bison.simple (union yyalloc): Change member names
2486 to be the same as the stack names.
2487 (yyparse): yyptr is now union yyalloc *, not char *.
2488 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
2489 and may generate better code on some machines.
2490 (yystpcpy): Use prototype if __STDC__ is defined, not just
2491 if __cplusplus is defined.
2492
2493 2001-11-30 Akim Demaille <akim@epita.fr>
2494
2495 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
2496 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
2497 Gettext doesn't compile cleanly, and dies with -Werror.
2498 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
2499 Include WARNING_CFLAGS here.
2500 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
2501 before being defined.
2502
2503 2001-11-27 Paul Eggert <eggert@twinsun.com>
2504
2505 * lib/quotearg.h (quotearg_n, quotearg_n_style):
2506 First arg is int, not unsigned.
2507 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
2508 (SIZE_MAX, UINT_MAX): New macros.
2509 (quotearg_n_options): Abort if N is negative.
2510 Avoid overflow check on hosts where size_t is 64 bits and int
2511 is 32 bits, as overflow is impossible there.
2512 Fix off-by-one typo that caused unnecessary reallocation.
2513
2514 2001-11-29 Paul Eggert <eggert@twinsun.com>
2515
2516 Name space cleanup in generated parser.
2517
2518 * doc/bison.texinfo (Bison Parser): Discuss system headers
2519 and their effect on the user name space.
2520
2521 * src/bison.simple:
2522 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
2523 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
2524 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
2525
2526 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
2527 on user names when possible.
2528
2529 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
2530 Simplify test for whather <alloca.h> exists.
2531
2532 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
2533
2534 (<stdio.h>): Include if YYDEBUG.
2535
2536 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
2537 ! defined (yyoverflow) && ! defined (yymemcpy).
2538
2539 (yymemcpy, yyparse): Rename local variables as needed so that
2540 they all begin with 'yy'.
2541
2542 (yystrlen, yystpcpy): New functions.
2543
2544 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
2545 All uses changed.
2546
2547 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
2548 instead of relying on string.h functions. Use YYSTACK_ALLOC
2549 and YYSTACK_FREE instead of malloc and free.
2550
2551 2001-11-30 Akim Demaille <akim@epita.fr>
2552
2553 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
2554 before their first uses.
2555 (YYBISON, YYPURE): Move to the top of the output.
2556
2557 2001-11-30 Akim Demaille <akim@epita.fr>
2558
2559 * tests/reduce.at (Useless Nonterminals): Fix.
2560
2561 2001-11-30 Akim Demaille <akim@epita.fr>
2562
2563 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
2564 if body instead of `;' to pacify GCC's warnings.
2565
2566 2001-11-30 Akim Demaille <akim@epita.fr>
2567
2568 Instead of mapping the LHS of unused rules to -1, keep the LHS
2569 valid, but flag the rules as invalid.
2570
2571 * src/gram.h (rule_t): `useful' is a new member.
2572 * src/print.c (print_grammar): Adjust.
2573 * src/derives.c (set_derives): Likewise.
2574 * src/reader.c (packgram, reduce_output): Likewise.
2575 * src/reduce.c (reduce_grammar_tables): Likewise.
2576 * tests/reduce.at (Underivable Rules, Useless Rules): New.
2577
2578 2001-11-30 Akim Demaille <akim@epita.fr>
2579
2580 * src/reduce.c (reduce_output): Formatting changes.
2581 * src/print.c (print_results, print_grammar): Likewise.
2582 * tests/regression.at (Rule Line Numbers)
2583 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
2584
2585 2001-11-30 Akim Demaille <akim@epita.fr>
2586
2587 * src/reduce.c (nonterminals_reduce): Instead of throwing away
2588 useless nonterminals, move them at the end of the symbol arrays.
2589 (reduce_output): Adjust.
2590 * tests/reduce.at (Useless Nonterminals): Adjust.
2591
2592 2001-11-30 Akim Demaille <akim@epita.fr>
2593
2594 * src/reduce.c: Various comment/formatting changes.
2595 (nonterminals_reduce): New, extracted from...
2596 (reduce_grammar_tables): here.
2597 (reduce_grammar): Call nonterminals_reduce.
2598
2599 2001-11-29 Paul Eggert <eggert@twinsun.com>
2600
2601 * src/bison.simple (YYSTACK_REALLOC): Remove.
2602 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
2603 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
2604 New macros.
2605 (union yyalloc): New type.
2606 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
2607 an arbitrary restriction on hosts where size_t is wider than int.
2608
2609 (yyparse): Don't dump core if alloca or malloc fails; instead, report
2610 a parser stack overflow. Allocate just one block of memory for all
2611 three stacks, instead of allocating three blocks; this typically is
2612 faster and reduces fragmentation.
2613
2614 Do not limit the number of items in the stack to a value that fits
2615 in 'int', as this is an arbitrary limit on hosts with 64-bit
2616 size_t and 32-bit int.
2617
2618 2001-11-29 Marc Autret <autret_m@epita.fr>
2619
2620 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
2621 of defining YYERROR_VERBOSE.
2622 [AT_DATA]: $4 is now out of C declarations in the prologue.
2623
2624 2001-11-28 Marc Autret <autret_m@epita.fr>
2625
2626 * src/reader.c (parse_dquoted_param): New.
2627 (parse_skel_decl): Use it.
2628 * src/lex.h: Add its prototype.
2629 * src/lex.c (literalchar): Become not static.
2630
2631 2001-11-28 Marc Autret <autret_m@epita.fr>
2632
2633 * src/output.h: And put its extern declaration here.
2634 * src/output.c (error_verbose): Define here.
2635 (prepare): Echo name modification.
2636 * src/getargs.h: Clean its extern declaration.
2637 * src/getargs.c (error_verbose_flag): Remove.
2638 (getargs): Remove case 'e'.
2639 * src/options.c (option_table): 'error-verbose' is now seen as simple
2640 percent option.
2641 Include output.h.
2642
2643 * src/reader.c (read_declarations): Remove case tok_include.
2644 (parse_include_decl): Remove.
2645 * src/lex.h (token_t): Remove tok_include.
2646 * src/options.c (option_table): 'include' is now a simple command line
2647 option.
2648
2649 2001-11-28 Marc Autret <autret_m@epita.fr>
2650
2651 * src/bison.simple: Adjust muscle names.
2652 * src/muscle_tab.c (muscle_init): Also rename the muscles.
2653 * src/output.c (prepare): s/_/-/ for the muscles names.
2654 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
2655
2656 2001-11-28 Marc Autret <autret_m@epita.fr>
2657
2658 * src/bison.simple: Fix debug.
2659 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
2660
2661 2001-11-28 Akim Demaille <akim@epita.fr>
2662
2663 * src/LR0.c (shifts_new): New.
2664 (save_shifts, insert_start_shift, augment_automaton): Use it.
2665
2666 2001-11-28 Akim Demaille <akim@epita.fr>
2667
2668 * src/closure.c (closure): `b' and `ruleno' denote the same value:
2669 keep ruleno only.
2670
2671 2001-11-28 Akim Demaille <akim@epita.fr>
2672
2673 * src/closure.c (closure): Instead of looping over word in array
2674 then bits in words, loop over bits in array.
2675
2676 2001-11-28 Akim Demaille <akim@epita.fr>
2677
2678 * src/closure.c (closure): No longer optimize the special case
2679 where all the bits of `ruleset[r]' are set to 0, to make the code
2680 clearer.
2681
2682 2001-11-28 Akim Demaille <akim@epita.fr>
2683
2684 * src/closure.c (closure): `r' and `c' are new variables, used to
2685 de-obfuscate accesses to RULESET and CORE.
2686
2687 2001-11-28 Akim Demaille <akim@epita.fr>
2688
2689 * src/reduce.c (reduce_print): Use ngettext.
2690 (dump_grammar): Improve the trace accuracy.
2691
2692 2001-11-28 Akim Demaille <akim@epita.fr>
2693
2694 * src/reduce.c (dump_grammar): Don't translate trace messages.
2695
2696 2001-11-28 Akim Demaille <akim@epita.fr>
2697
2698 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
2699 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
2700 as all tags are free'ed afterwards.
2701 From Enrico Scholz.
2702
2703 2001-11-27 Paul Eggert <eggert@twinsun.com>
2704
2705 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
2706 use alloca when we didn't want to, and vice versa.
2707
2708 2001-11-27 Marc Autret <autret_m@epita.fr>
2709
2710 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
2711 initialization.
2712 * src/output.c (prepare): Remove its update.
2713
2714 2001-11-27 Marc Autret <autret_m@epita.fr>
2715
2716 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
2717 Use %error-verbose.
2718
2719 2001-11-27 Marc Autret <autret_m@epita.fr>
2720
2721 * src/bison.simple: Remove YYERROR_VERBOSE using.
2722 Use %%error_verbose.
2723 (yyparse): Likewise.
2724 * src/output.c (prepare): Give its final value.
2725 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
2726 * src/getargs.h: Add its extern declaration.
2727 * src/getargs.c (error_verbose_flag): New int.
2728 (getargs): Update to catch new case.
2729 * src/options.c (option_table): 'error-verbose' is a new option.
2730 (shortopts): Update.
2731
2732 2001-11-27 Akim Demaille <akim@epita.fr>
2733
2734 * src/system.h: Use intl/libgettext.h.
2735 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
2736
2737 2001-11-27 Akim Demaille <akim@epita.fr>
2738
2739 * tests/torture.at (Exploding the Stack Size with Malloc):
2740 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
2741
2742 2001-11-27 Akim Demaille <akim@epita.fr>
2743
2744 * src/files.c: Include error.h.
2745 Reported by Hans Aberg.
2746
2747 2001-11-26 Marc Autret <autret_m@epita.fr>
2748
2749 * src/reader.c (parse_include_decl): New, not yet implemented.
2750 (read_declarations): Add case tok_include.
2751 * src/getargs.h (include): Add its extern definition.
2752 * src/getargs.c (include): New const char *.
2753 (getargs): Add case '-I'.
2754 * src/options.c (option_table): Add include as command line and
2755 percent option.
2756 * src/lex.h (token_t): Add tok_include.
2757
2758 2001-11-26 Akim Demaille <akim@epita.fr>
2759
2760 * src/reader.c (readgram): Make sure rules for mid-rule actions
2761 have a lineno equal to that of their host rule.
2762 Reported by Hans Aberg.
2763 * tests/regression.at (Rule Line Numbers): New.
2764
2765 2001-11-26 Akim Demaille <akim@epita.fr>
2766
2767 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
2768 size_ts.
2769
2770 2001-11-26 Akim Demaille <akim@epita.fr>
2771
2772 * src/complain.c, src/complain.h (error): Remove, provided by
2773 lib/error.[ch].
2774
2775 2001-11-26 Akim Demaille <akim@epita.fr>
2776
2777 * src/reader.c (read_declarations): Don't abort on tok_illegal,
2778 issue an error message.
2779 * tests/regression.at (Invalid %directive): New.
2780 Reported by Hans Aberg.
2781
2782 2001-11-26 Akim Demaille <akim@epita.fr>
2783
2784 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
2785 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
2786
2787 2001-11-26 Akim Demaille <akim@epita.fr>
2788
2789 * src/conflicts.c (conflicts_print): Don't complain at all when
2790 there are no reduce/reduce conflicts, and as many shift/reduce
2791 conflicts as expected.
2792 * tests/regression.at (%expect right): Adjust.
2793
2794 2001-11-23 Akim Demaille <akim@epita.fr>
2795
2796 * lib/alloca.c: Update, from fileutils.
2797
2798 2001-11-23 Akim Demaille <akim@epita.fr>
2799
2800 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
2801
2802 2001-11-23 Akim Demaille <akim@epita.fr>
2803
2804 * src/system.h: Include alloca.h.
2805 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
2806
2807 2001-11-23 Akim Demaille <akim@epita.fr>
2808
2809 * src/print_graph.c (print_actions): Remove `rule', unused.
2810 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
2811 pacify GCC's signed < unsigned warnings.
2812 * src/closure.c (itemsetsize): Likewise.
2813 * src/reader.c (symbol_list_new): Static.
2814
2815 2001-11-23 Akim Demaille <akim@epita.fr>
2816
2817 Attaching lineno to buckets is stupid, since only one copy of each
2818 symbol is kept, only the line of the first occurrence is kept too.
2819
2820 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
2821 * src/reader.c (rline_allocated): Remove, unused.
2822 (symbol_list): Have a `line' member.
2823 (symbol_list_new): New.
2824 (readgram): Use it.
2825 * src/print.c (print_grammar): Output the rule line numbers.
2826 * tests/regression.at (Solved SR Conflicts)
2827 (Unresolved SR Conflicts): Adjust.
2828 Reported by Hans Aberg.
2829
2830 2001-11-22 Marc Autret <autret_m@epita.fr>
2831
2832 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
2833
2834 2001-11-22 Marc Autret <autret_m@epita.fr>
2835
2836 * src/muscle_tab.c (muscle_init): Remove initialization of
2837 skeleton muscle.
2838 * src/output.c (output_master_parser): Do it here.
2839
2840 2001-11-20 Akim Demaille <akim@epita.fr>
2841
2842 * po/sv.po: New.
2843 * configure.in (ALL_LINGUAS): Adjust.
2844 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
2845 longer contains strings to translate.
2846
2847 2001-11-19 Akim Demaille <akim@epita.fr>
2848
2849 * src/conflicts.c (conflicts_print): Add a missing \n.
2850
2851 2001-11-19 Akim Demaille <akim@epita.fr>
2852
2853 * src/nullable.c (nullable_print): New.
2854 (set_nullable): Call it when tracing.
2855 Better locality of variables.
2856
2857 2001-11-19 Akim Demaille <akim@epita.fr>
2858
2859 * src/print.c (print_actions): Better locality of variables.
2860
2861 2001-11-19 Akim Demaille <akim@epita.fr>
2862
2863 * src/derives.c (print_derives): Fix and enrich.
2864 * src/closure.c (print_fderives): Likewise.
2865
2866 2001-11-19 Akim Demaille <akim@epita.fr>
2867
2868 * src/closure.c (itemsetend): Remove, replaced with...
2869 (itemsetsize): new.
2870
2871 2001-11-19 Akim Demaille <akim@epita.fr>
2872
2873 * src/LR0.c (kernel_end): Remove, replaced with...
2874 (kernel_size): new.
2875
2876 2001-11-19 Akim Demaille <akim@epita.fr>
2877
2878 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
2879 to clarify.
2880
2881 2001-11-19 Akim Demaille <akim@epita.fr>
2882
2883 * src/closure.c (closure): Use arrays instead of pointers to clarify.
2884
2885 2001-11-19 Akim Demaille <akim@epita.fr>
2886
2887 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
2888 trace messages.
2889 * src/LR0.c: Likewise.
2890 (allocate_itemsets): Use arrays instead of pointers to clarify.
2891
2892 2001-11-19 Akim Demaille <akim@epita.fr>
2893
2894 * src/getargs.c (statistics_flag): Replace with...
2895 (trace_flag): New.
2896 (longopts): Accept --trace instead of --statistics.
2897 * src/getargs.h, src/options.c: Adjust.
2898 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
2899 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
2900
2901 2001-11-19 Akim Demaille <akim@epita.fr>
2902
2903 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
2904 pointers to clarify the code.
2905 (save_reductions, save_shifts): Factor common parts of alternatives.
2906
2907 2001-11-19 Akim Demaille <akim@epita.fr>
2908
2909 * src/LR0.c (new_state, get_state): Complete TRACE code.
2910 * src/closure.c: Include `reader.h' to get `tags', needed by the
2911 trace code.
2912 Rename the conditional DEBUG as TRACE.
2913 Output consistently TRACEs to stderr, not stdout.
2914 * src/derives.c: Likewise.
2915 * src/reduce.c: (inaccessable_symbols): Using if is better style
2916 than goto.
2917 Use `#if TRACE' instead of `#if 0' for tracing code.
2918
2919 2001-11-19 Akim Demaille <akim@epita.fr>
2920
2921 * src/system.h (LIST_FREE, shortcpy): New.
2922 * src/LR0.c: Use them.
2923 * src/output.c (free_itemsets, free_reductions, free_shifts):
2924 Remove, replaced by LIST_FREE.
2925
2926 2001-11-19 Akim Demaille <akim@epita.fr>
2927
2928 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
2929 (REDUCTIONS_ALLOC): New.
2930 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
2931 allocation.
2932
2933 2001-11-19 Akim Demaille <akim@epita.fr>
2934
2935 * src/LR0.c (new_state): Complete trace code.
2936 * src/nullable.c (set_nullable): Don't translate traces.
2937
2938 2001-11-19 Akim Demaille <akim@epita.fr>
2939
2940 * src/print_graph.c (print_core): Better locality of variables.
2941 * src/print.c (print_core): Likewise.
2942
2943 2001-11-19 Akim Demaille <akim@epita.fr>
2944
2945 * src/vcg.c: You do the output, so you are responsible of the
2946 handling of VCG syntax, in particular: use quotearg.
2947 * src/print_graph.c: Don't.
2948 (print_actions): Don't output the actions as part of the nodes,
2949 since that's the job of the edges.
2950 (print_state): Don't output by hand: fill the node description,
2951 and ask for its output.
2952
2953 2001-11-19 Akim Demaille <akim@epita.fr>
2954
2955 * src/bison.simple (yyparse): When verbosely reporting an error,
2956 no longer put additional quotes around token names.
2957 * tests/calc.at: Adjust.
2958
2959 2001-11-19 Akim Demaille <akim@epita.fr>
2960
2961 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
2962 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
2963 * src/output.c: Adjust.
2964
2965 2001-11-19 Akim Demaille <akim@epita.fr>
2966
2967 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
2968 (rule_t): this.
2969 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
2970
2971 2001-11-19 Akim Demaille <akim@epita.fr>
2972
2973 * src/gram.h (rule_t): New.
2974 (rule_table): New.
2975 (rrhs, rlhs): Remove, part of state_t.
2976 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
2977 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
2978 * src/reader.c, src/reduce.c: Adjust.
2979
2980 2001-11-19 Akim Demaille <akim@epita.fr>
2981
2982 * src/reader.c (symbols_output): New, extracted from...
2983 (packsymbols): Here.
2984 (reader): Call it.
2985
2986 2001-11-19 Akim Demaille <akim@epita.fr>
2987
2988 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
2989 (maxrhs): this new function.
2990
2991 2001-11-19 Akim Demaille <akim@epita.fr>
2992
2993 * src/lalr.c (F): New macro to access the variable F.
2994 Adjust.
2995
2996 2001-11-19 Akim Demaille <akim@epita.fr>
2997
2998 * src/lalr.h (LA): New macro to access the variable LA.
2999 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
3000 * src/lalr.c: Adjust.
3001
3002 2001-11-19 Akim Demaille <akim@epita.fr>
3003
3004 * src/lalr.c (initialize_LA): Only initialize LA. Let...
3005 (set_state_table): handle the `lookaheads' members.
3006
3007 2001-11-19 Akim Demaille <akim@epita.fr>
3008
3009 * src/lalr.h (lookaheads): Removed array, whose contents is now
3010 a member of...
3011 (state_t): this structure.
3012 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
3013 Adjust.
3014
3015 2001-11-19 Akim Demaille <akim@epita.fr>
3016
3017 * src/lalr.h (consistent): Removed array, whose contents is now
3018 a member of...
3019 (state_t): this structure.
3020 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
3021 Adjust.
3022
3023 2001-11-19 Akim Demaille <akim@epita.fr>
3024
3025 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
3026 contents are now members of...
3027 (state_t): this structure.
3028 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
3029 Adjust.
3030
3031 2001-11-19 Akim Demaille <akim@epita.fr>
3032
3033 * src/lalr.h (state_t): New.
3034 (state_table): Be a state_t * instead of a core **.
3035 (accessing_symbol): Remove, part of state_t.
3036 * src/lalr.c: Adjust.
3037 (set_accessing_symbol): Merge into...
3038 (set_state_table): this.
3039 * src/print_graph.c, src/conflicts.c: Adjust.
3040
3041 2001-11-14 Akim Demaille <akim@epita.fr>
3042
3043 * tests/calc.at, tests/output.at, tests/regression.at,
3044 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
3045 now the tests are run in private dirs, therefore AC_CLEANUP and
3046 family can be simplified to 0-ary.
3047 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
3048 use abs. path to find config.h.
3049 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
3050 stderr, there can be way too much random noise.
3051 Instead pass -Werror to GCC and rely on the exit status.
3052 Reported by Wolfram Wagner.
3053
3054 2001-11-14 Akim Demaille <akim@epita.fr>
3055
3056 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
3057 defined only if yyoverflow is defined, to avoid `warning: unused
3058 variable `yyvs1''.
3059 Reported by The Test Suite.
3060
3061 2001-11-14 Akim Demaille <akim@epita.fr>
3062
3063 * src/print.c: Include reduce.h.
3064 Reported by Hans Aberg.
3065
3066 2001-11-14 Akim Demaille <akim@epita.fr>
3067
3068 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
3069 Revert a previous patch: these are really const.
3070 * src/conflicts.c (conflict_report): Additional useless pair of
3071 braces to pacify GCC's warnings for `if () if () {} else {}'.
3072 * src/lex.c (parse_percent_token): Replace equal_offset with
3073 arg_offset.
3074 arg is const.
3075 Be sure to strdup `arg' when used, since there is no reason for
3076 token_buffer not to change.
3077
3078 2001-11-14 Akim Demaille <akim@epita.fr>
3079
3080 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
3081 definition.
3082 * src/main.c (main): Use them.
3083 Suggested by Hans Aberg.
3084
3085 2001-11-12 Akim Demaille <akim@epita.fr>
3086
3087 * src/system.h (ngettext): Now that we use ngettext, be sure to
3088 provide a default definition when NLS are not used.
3089
3090 2001-11-12 Akim Demaille <akim@epita.fr>
3091
3092 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
3093 Use @kbd to denote user input.
3094 (Language and Grammar): ANSIfy the example.
3095 Adjust its layout for info/notinfo.
3096 (Location Tracking Calc): Output error messages to stderr.
3097 Output locations in a more GNUtically correct way.
3098 Fix a couple of Englishos.
3099 Adjust @group/@end group pairs.
3100
3101 2001-11-12 Akim Demaille <akim@epita.fr>
3102
3103 %expext was not functioning at all.
3104
3105 * src/conflicts.c (expected_conflicts): Set to -1.
3106 (conflict_report): Use ngettext.
3107 (conflicts_print): Check %expect and make its violation an error.
3108 * doc/bison.texinfo (Expect Decl): Adjust.
3109 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
3110 * tests/regression.at (%expect not enough, %expect right)
3111 (%expect too much): New.
3112
3113 2001-11-12 Akim Demaille <akim@epita.fr>
3114
3115 * tests/regression.at (Conflicts): Rename as...
3116 (Unresolved SR Conflicts): this.
3117 (Solved SR Conflicts): New.
3118
3119 2001-11-12 Akim Demaille <akim@epita.fr>
3120
3121 * src/reduce.c (print_results): Rename as...
3122 (reduce_output): This.
3123 Output to OUT, passed as argument, instead of output_obstack.
3124 (dump_grammar): Likewise.
3125 (reduce_free): New.
3126 Also free V1.
3127 (reduce_grammar): No longer call reduce_output, since...
3128 * src/print.c (print_results): do it.
3129 * src/main.c (main): Call reduce_free;
3130
3131 2001-11-12 Akim Demaille <akim@epita.fr>
3132
3133 * src/conflicts.c (print_reductions): Accept OUT as argument.
3134 Output to it, not to output_obstack.
3135 * src/print.c (print_actions): Adjust.
3136
3137 2001-11-12 Akim Demaille <akim@epita.fr>
3138
3139 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
3140 the result instead of using...
3141 (src_total, rrc_total, src_count, rrc_count): Remove.
3142 (any_conflicts): Remove.
3143 (print_conflicts): Split into...
3144 (conflicts_print, conflicts_output): New.
3145 * src/conflicts.h: Adjust.
3146 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
3147 * src/print.c (print_grammar): Issue `\n' between two rules.
3148 * tests/regression.at (Conflicts): New.
3149 Reported by Tom Lane.
3150
3151 2001-11-12 Akim Demaille <akim@epita.fr>
3152
3153 * tests/regression.at (Invalid input): Remove, duplicate with
3154 ``Invalid input: 1''.
3155
3156 2001-11-12 Akim Demaille <akim@epita.fr>
3157
3158 * tests/torture.at (AT_DATA_STACK_TORTURE)
3159 (Exploding the Stack Size with Alloca)
3160 (Exploding the Stack Size with Malloc): New.
3161
3162 2001-11-12 Akim Demaille <akim@epita.fr>
3163
3164 * src/bison.simple (YYSTACK_REALLOC): New.
3165 (yyparse) [!yyoverflow]: Use it and free the old stack.
3166 Reported by Per Allansson.
3167
3168 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
3169
3170 * src/bison.simple: Define type yystype instead of YYSTYPE, and
3171 define CPP macro, which substitute YYSTYPE by yystype.
3172 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
3173 with yyltype/YYLTYPE. This allows inclusion of the generated
3174 header within the parser if the compiler, such as GGC, accepts
3175 multiple equivalent #defines.
3176 From Akim.
3177
3178 2001-11-05 Akim Demaille <akim@epita.fr>
3179
3180 * src/reader.c (symbols_output): New, extracted from...
3181 (packsymbols): here.
3182 (reader): Adjust.
3183
3184 2001-11-05 Akim Demaille <akim@epita.fr>
3185
3186 * src/lex.c (parse_percent_token): s/quotearg/quote/.
3187
3188 2001-11-05 Akim Demaille <akim@epita.fr>
3189
3190 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
3191 pattern.
3192
3193 2001-11-05 Akim Demaille <akim@epita.fr>
3194
3195 * src/options.h (struct option_table_struct): set_flags is void*.
3196 * src/options.c (longopts): Support `--output' and `%output'.
3197 (usage): Adjust.
3198 * src/lex.h (tok_setopt): Remove, replaced with...
3199 (tok_intopt, tok_stropt): these new guys.
3200 * src/lex.c (getopt.h): Not needed.
3201 (token_buffer, unlexed_token_buffer): Not const.
3202 (percent_table): Promote `-' over `_' in directive names.
3203 Active `%name-prefix', `file-prefix', and `output'.
3204 (parse_percent_token): Accept possible arguments to directives.
3205 Promote `-' over `_' in directive names.
3206
3207 2001-11-04 Akim Demaille <akim@epita.fr>
3208
3209 * doc/bison.texinfo (Decl Summary): Split the list into
3210 `directives for grammars' and `directives for bison'.
3211 Sort'em.
3212 Add description of `%name-prefix', `file-prefix', and `output'.
3213 Promote `-' over `_' in directive names.
3214 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
3215 Simplify the description of `--name-prefix'.
3216 Promote `-' over `_' in directive names.
3217 Promote `--output' over `--output-file'.
3218 Fix the description of `--defines'.
3219 * tests/output.at: Exercise %file-prefix and %output.
3220
3221 2001-11-02 Akim Demaille <akim@epita.fr>
3222
3223 * doc/refcard.tex: Update.
3224
3225 2001-11-02 Akim Demaille <akim@epita.fr>
3226
3227 * src/symtab.h (SUNDEF): New.
3228 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
3229 stand for `uninitialized', instead of 0.
3230 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
3231 * src/lex.c (lex): Adjust.
3232
3233 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
3234 Number it 0.
3235 Let yylex return it instead of a plain 0.
3236 Reported by Dick Streefland.
3237
3238 2001-11-02 Akim Demaille <akim@epita.fr>
3239
3240 * tests/regression.at (Mixing %token styles): New test.
3241
3242 2001-11-02 Akim Demaille <akim@epita.fr>
3243
3244 * src/reader.c (parse_thong_decl): Formatting changes.
3245 (token_translations_init): New, extracted from...
3246 (packsymbols): Here.
3247 Adjust.
3248
3249 2001-11-01 Akim Demaille <akim@epita.fr>
3250
3251 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
3252 Check that `9foo.y' produces correct cpp guards.
3253 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
3254 guards.
3255 Reported by Wwp.
3256
3257 2001-11-01 Akim Demaille <akim@epita.fr>
3258
3259 * tests/regression.at (Invalid input: 2): New.
3260 * src/lex.c (unlexed_token_buffer): New.
3261 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
3262 too.
3263 Reported by Wwp.
3264
3265 2001-11-01 Akim Demaille <akim@epita.fr>
3266
3267 * tests/calc.at: Catch up with 1.30.
3268 * configure.in: Bump to 1.49a.
3269 Adjust to newer Autotest.
3270
3271 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
3272
3273 * src/conflicts.c: Move global variables rrc_total and src_total ...
3274 (print_conflicts): here.
3275 * src/output.c (output): Free global variable user_toknums.
3276 * src/lex.c (token_obstack): Become static.
3277
3278 2001-10-18 Akim Demaille <akim@epita.fr>
3279
3280 * tests/atlocal.in (GCC): Add.
3281 * tests/calc.at: s/m4_match/m4_bmatch/.
3282 s/m4_patsubst/m4_bpatsubst/.
3283 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
3284 * configure.in: AC_SUBST(GCC).
3285
3286 2001-10-14 Marc Autret <autret_m@epita.fr>
3287
3288 * src/options.c (create_long_option_table): Fix.
3289
3290 2001-10-10 Akim Demaille <akim@epita.fr>
3291
3292 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
3293
3294 2001-10-04 Akim Demaille <akim@epita.fr>
3295
3296 * src/reader.c (parse_union_decl): Push the caracters in
3297 union_obstack, not attrs_obstack.
3298
3299 2001-10-04 Akim Demaille <akim@epita.fr>
3300
3301 Merge in the branch 1.29.
3302
3303 * src/reader.c (packsymbols): Use a temporary obstack for
3304 `%%tokendef', since output_stack is already used elsewhere.
3305
3306 2001-10-02 Akim Demaille <akim@epita.fr>
3307
3308 Bump 1.29d.
3309
3310 2001-10-02 Akim Demaille <akim@epita.fr>
3311
3312 Version 1.29c.
3313
3314 2001-10-02 Akim Demaille <akim@epita.fr>
3315
3316 * tests/regression.at (Invalid CPP headers): New.
3317 From Alexander Belopolsky.
3318 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
3319
3320 2001-10-02 Akim Demaille <akim@epita.fr>
3321
3322 * tests/regression.at (Invalid input): New.
3323 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
3324 Reported by Shura.
3325
3326 2001-10-02 Akim Demaille <akim@epita.fr>
3327
3328 * tests/calc.at: Now that --debug works, the tests must be adjusted.
3329
3330 2001-10-02 Akim Demaille <akim@epita.fr>
3331
3332 * src/output.c (output_parser): Assert `skeleton'.
3333 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
3334 systems.
3335 From Shura.
3336
3337 2001-10-01 Marc Autret <autret_m@epita.fr>
3338
3339 * src/lex.h: Echo modifications.
3340 * src/lex.c (unlex): Parameter is now token_t.
3341 From Hans Aberg.
3342
3343 2001-10-01 Marc Autret <autret_m@epita.fr>
3344
3345 * src/main.c: Include lex.h.
3346 From Hans Aberg.
3347
3348 2001-09-29 Akim Demaille <akim@epita.fr>
3349
3350 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
3351
3352 2001-09-28 Akim Demaille <akim@epita.fr>
3353
3354 * tests/testsuite.at: Update to newer Autotest.
3355 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
3356
3357 2001-09-27 Akim Demaille <akim@epita.fr>
3358
3359 Position independent wrapper.
3360
3361 * tests/bison: Remove.
3362 * tests/bison.in: New.
3363 * configure.in: Adjust.
3364
3365 2001-09-27 Paul Eggert <eggert@twinsun.com>
3366
3367 Port quotearg fixes from tar 1.13.24.
3368
3369 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
3370 tm to be declared.
3371 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
3372 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
3373
3374 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
3375 * m4/mbrtowc.m4: New file.
3376 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
3377 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
3378
3379 2001-09-27 Akim Demaille <akim@epita.fr>
3380
3381 Bump to 1.29c.
3382
3383 2001-09-27 Akim Demaille <akim@epita.fr>
3384
3385 Version 1.29b.
3386
3387 2001-09-25 Akim Demaille <akim@epita.fr>
3388
3389 * src/system.h: Include `xalloc.h'.
3390 Remove it from the C files.
3391 * src/files.c (output_files): Free the obstacks.
3392 * src/lex.c (init_lex): Rename as...
3393 (lex_init): this.
3394 (lex_free): New.
3395 * src/main.c (main): Use it.
3396
3397 2001-09-24 Marc Autret <autret_m@epita.fr>
3398
3399 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
3400 to output informations in fout (FILE*).
3401 (open_graph, close_graph): Likewise.
3402 (output_graph, output_edge, output_node): Likewise.
3403 * src/vcg.h: Update function prototypes.
3404 * src/print_graph.c (print_graph): Open output graph file.
3405 (print_actions): Adjust.
3406 * src/files.h: Remove extern declaration.
3407 * src/files.c: Remove graph_obstack declaration.
3408 (open_files): Remove graph_obstack initialization.
3409 (output_files): Remove graph_obstack saving.
3410
3411 2001-09-24 Marc Autret <autret_m@epita.fr>
3412
3413 * src/files.c (compute_output_file_names): Fix.
3414
3415 2001-09-24 Marc Autret <autret_m@epita.fr>,
3416 Akim Demaille <akim@epita.fr>
3417
3418 * src/reader.c (reader): Remove call to free_symtab ().
3419 * src/main.c (main): Call it here.
3420 Include symtab.h.
3421 * src/conflicts.c (initialize_conflicts): Rename as...
3422 (solve_conflicts): this.
3423 * src/print.c (print_core, print_actions, print_state)
3424 (print_grammar): Dump to a file instead a `output_obstack'.
3425 (print_results): Dump `output_obstack', and then proceed with the
3426 FILE *.
3427 * src/files.c (compute_output_file_names, close_files): New.
3428 (output_files): Adjust.
3429 * src/main.c (main): Adjust.
3430
3431 2001-09-23 Marc Autret <autret_m@epita.fr>
3432
3433 * src/files.c (compute_header_macro): Computes header macro name
3434 from spec_defines_file when given.
3435
3436 2001-09-23 Marc Autret <autret_m@epita.fr>
3437
3438 * src/files.c (output_files): Add default extensions.
3439
3440 2001-09-22 Akim Demaille <akim@epita.fr>
3441
3442 * src/conflicts.c (finalize_conflicts): Rename as...
3443 (free_conflicts): this.
3444
3445 2001-09-22 Akim Demaille <akim@epita.fr>
3446
3447 * src/gram.c (gram_free): Rename back as...
3448 (dummy): this.
3449 (output_token_translations): Free `token_translations'.
3450 * src/symtab.c (free_symtab): Free the tag field.
3451
3452 2001-09-22 Akim Demaille <akim@epita.fr>
3453
3454 Remove `translations' as it is always set to true.
3455
3456 * src/gram.h: Adjust.
3457 * src/reader.c (packsymbols, parse_token_decl): Adjust
3458 * src/print.c (print_grammar): Adjust.
3459 * src/output.c (output_token_translations): Adjust.
3460 * src/lex.c (lex): Adjust.
3461 * src/gram.c: Be sure the set pointers to NULL.
3462 (dummy): Rename as...
3463 (gram_free): this.
3464
3465 2001-09-22 Akim Demaille <akim@epita.fr>
3466
3467 * configure.in: Invoke AM_LIB_DMALLOC.
3468 * src/system.h: Use dmalloc.
3469 * src/LR0.c: Be sure to have pointers initialized to NULL.
3470 (allocate_itemsets): Allocate kernel_items only if needed.
3471
3472 2001-09-22 Akim Demaille <akim@epita.fr>
3473
3474 * configure.in: Bump to 1.29b.
3475 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
3476 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
3477 need xmalloc.c in calc.y.
3478 From Pascal Bart.
3479
3480 2001-09-21 Akim Demaille <akim@epita.fr>
3481
3482 Version 1.29a.
3483 * Makefile.maint, config/config.guess, config/config.sub,
3484 * config/missing: Update from masters.
3485 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
3486 upon package.m4.
3487 * configure.in (ALL_LINGUAS): Add `tr'.
3488
3489 2001-09-21 Akim Demaille <akim@epita.fr>
3490
3491 * tests/Makefile.am (package.m4): Move to...
3492 ($(srcdir)/$(TESTSUITE)): here.
3493
3494 2001-09-20 Akim Demaille <akim@epita.fr>
3495
3496 * src/complain.c: No longer try to be standalone: use system.h.
3497 Don't assume __STDC__ is defined to 1. Just test if it is defined.
3498 * src/complain.h: Likewise.
3499 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
3500 Remove the unused variable `n'.
3501 From Albert Chin-A-Young.
3502
3503 2001-09-18 Marc Autret <autret_m@epita.fr>
3504
3505 * doc/bison.1: Update.
3506 * doc/bison.texinfo (Bison Options): Update --defines and --graph
3507 descriptions.
3508 (Option Cross Key): Update.
3509 Add --graph.
3510
3511 2001-09-18 Marc Autret <autret_m@epita.fr>
3512
3513 * tests/regression.at: New test (comment in %union).
3514
3515 2001-09-18 Marc Autret <autret_m@epita.fr>
3516
3517 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
3518 do that.
3519 Reported by Keith Browne.
3520
3521 2001-09-18 Marc Autret <autret_m@epita.fr>
3522
3523 * tests/output.at: Add tests for --defines and --graph.
3524
3525 2001-09-18 Marc Autret <autret_m@epita.fr>
3526
3527 * tests/output.at: Removes tests of %{header,src}_extension features.
3528
3529 2001-09-18 Akim Demaille <akim@epita.fr>
3530
3531 * tests/Makefile.am (package.m4): New.
3532 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
3533 (_AT_CHECK_CALC_ERROR): Likewise.
3534 Factor the `, ' part of verbose error messages.
3535
3536 2001-09-18 Marc Autret <autret_m@epita.fr>
3537
3538 * src/getargs.c (longopts): Declare --defines and --graph as options
3539 with optional arguments.
3540 * src/files.h: Add extern declarations.
3541 * src/files.c (spec_graph_file, spec_defines_file): New.
3542 (output_files): Update.
3543 Remove CPP-outed code.
3544
3545 2001-09-18 Marc Autret <autret_m@epita.fr>
3546
3547 Turn off %{source,header}_extension feature.
3548
3549 * src/files.c (compute_exts_from_gf): Update.
3550 (compute_exts_from_src): Update.
3551 (output_files): CPP-out useless code.
3552 * src/files.h: Remove {header,source}_extension extern declarations.
3553 * src/reader.c (parse_dquoted_param): CPP-out.
3554 (parse_header_extension_decl): Remove.
3555 (parse_source_extension_decl): Remove.
3556 (read_declarations): Remove cases tok_{hdrext,srcext}.
3557 * src/lex.c (percent_table): Remove {header,source}_extension entries.
3558 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
3559
3560 2001-09-10 Akim Demaille <akim@epita.fr>
3561
3562 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
3563 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
3564 (AT_CHECK_OUTPUT): this.
3565 Merely check ls' exit status, its output is useless.
3566
3567 2001-09-10 Akim Demaille <akim@epita.fr>
3568
3569 * tests/calc.at: Use m4_match.
3570 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
3571
3572 2001-09-10 Marc Autret <autret_m@epita.fr>,
3573 Akim Demaille <akim@epita.fr>
3574
3575 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
3576 enum color_e.
3577 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
3578 to `normal'.
3579 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
3580 * src/lex.h: Adjust prototype.
3581 (token_t): Add `tok_undef'.
3582 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
3583 (parse_percent_token): Now returns token_t.
3584 Add default statement in switch.
3585 (lex): Separate `c' as an input variable, from the token_t result
3586 part.
3587 (unlexed): Is a token_t.
3588
3589 2001-09-10 Akim Demaille <akim@epita.fr>
3590
3591 * configure.in: Bump to 1.29a.
3592
3593 2001-09-07 Akim Demaille <akim@epita.fr>
3594
3595 Version 1.29.
3596
3597 2001-08-30 Akim Demaille <akim@epita.fr>
3598
3599 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
3600 * m4/atconfig.m4: Remove.
3601 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
3602 * tests/bison: New.
3603 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
3604 m4_if, m4_patsubst, and m4_regexp.
3605 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
3606 `input' file instead of echo.
3607
3608 2001-08-29 Akim Demaille <akim@epita.fr>
3609
3610 Bump to 1.28e.
3611
3612 2001-08-29 Akim Demaille <akim@epita.fr>
3613
3614 Version 1.28d.
3615
3616 2001-08-29 Paul Eggert <eggert@twinsun.com>
3617
3618 * src/bison.simple (yyparse): Don't take the address of an
3619 item before the start of an array, as that doesn't conform to
3620 the C Standard.
3621
3622 2001-08-29 Robert Anisko <anisko_r@epita.fr>
3623
3624 * doc/bison.texinfo (Location Tracking Calc): New node.
3625
3626 2001-08-29 Paul Eggert <eggert@twinsun.com>
3627
3628 * src/output.c (output): Do not define const, as this now
3629 causes more problems than it cures.
3630
3631 2001-08-29 Akim Demaille <akim@epita.fr>
3632
3633 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
3634 the nodes.
3635 Be sure to tag the `detailmenu'.
3636
3637 2001-08-29 Akim Demaille <akim@epita.fr>
3638
3639 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
3640 download in a tmp dir.
3641
3642 2001-08-28 Marc Autret <autret_m@epita.fr>
3643
3644 * config/depcomp: New file.
3645
3646 2001-08-28 Marc Autret <autret_m@epita.fr>
3647
3648 * doc/bison.1 (mandoc): Adjust.
3649 From Juan Manuel Guerrero.
3650
3651 2001-08-28 Marc Autret <autret_m@epita.fr>
3652
3653 * src/print_graph.c (print_state): Fix.
3654
3655 2001-08-27 Marc Autret <autret_m@epita.fr>
3656
3657 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
3658 char * members.
3659 Echo modifications to the functions prototypes.
3660 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
3661
3662 2001-08-27 Marc Autret <autret_m@epita.fr>
3663
3664 * src/vcg.c: Include `xalloc.h'.
3665 (add_colorentry): New.
3666 (add_classname): New.
3667 (add_infoname): New.
3668 * src/vcg.h: Add new prototypes.
3669
3670 2001-08-27 Akim Demaille <akim@epita.fr>
3671
3672 * Makefile.maint: Sync. again with CVS Autoconf.
3673
3674 2001-08-27 Akim Demaille <akim@epita.fr>
3675
3676 * Makefile.maint: Formatting changes.
3677 (po-update, cvs-update, update): New targets.
3678 (AMTAR): Remove.
3679
3680 2001-08-27 Akim Demaille <akim@epita.fr>
3681
3682 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
3683 * Makefile.maint: Sync. with CVS Autoconf.
3684
3685 2001-08-27 Marc Autret <autret_m@epita.fr>
3686
3687 * src/vcg.h (struct infoname_s): New.
3688 (struct colorentry_s): New.
3689 (graph_s): New fields {vertical,horizontal}_order in structure.
3690 Add `infoname' field.
3691 Add `colorentry' field;
3692 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
3693 (G_HORIZONTAL_ORDER): New.
3694 (G_INFONAME): New.
3695 (G_COLORENTRY): New.
3696 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
3697 Add output of `infoname'.
3698 Add output of `colorentry'.
3699
3700 2001-08-27 Marc Autret <autret_m@epita.fr>
3701
3702 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
3703 This one shadowed a global parameter.
3704
3705 2001-08-24 Marc Autret <autret_m@epita.fr>
3706
3707 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
3708 instead of `unsigned'.
3709 (print_state): Do not call obstack_object_size () in obstack_grow ()
3710 to avoid macro variables shadowing.
3711
3712 2001-08-23 Marc Autret <autret_m@epita.fr>
3713
3714 * src/lex.c (percent_table): Typo: s/naem/name/.
3715 Add graph option.
3716 Normalize new options declarations.
3717
3718 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
3719
3720 * tests/suite.at: Exercise %header_extension and %source_extension.
3721
3722 2001-08-16 Marc Autret <autret_m@epita.fr>
3723
3724 * src/reader.c (parse_dquoted_param): New.
3725 (parse_header_extension_decl): Use it.
3726 (parse_source_extension_decl): Likewise.
3727
3728 2001-08-16 Marc Autret <autret_m@epita.fr>
3729
3730 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
3731 (get_xxxx_str): Use assert () instead of complain ().
3732 Remove return invokations in default cases.
3733 (get_decision_str): Modify default behaviour. Remove second argument.
3734 Echo modifications on calls.
3735 (output_graph): Fix.
3736
3737 2001-08-16 Marc Autret <autret_m@epita.fr>
3738
3739 * src/getargs.c (usage): Update with ``-g, --graph''.
3740
3741 2001-08-16 Marc Autret <autret_m@epita.fr>
3742
3743 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
3744 (Option Cross Key): Likewise.
3745 * doc/bison.1: Update.
3746
3747 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
3748
3749 * src/output.c (output_master_parser): Don't finish action_obstack.
3750 (output_parser): Don't care about the muscle action, here.
3751 (prepare): Copy the action_obstack in the action muscle.
3752 (output): Free action_obstack.
3753
3754 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
3755
3756 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
3757 will contain `%union' declaration.
3758 (parse_union_decl): Delete #line directive output.
3759 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
3760 informations about %union.
3761 (parse_union_decl): Copy the union_obstack in the muscle stype.
3762 * src/bison.simple: Add new #line directive.
3763 Add typdef %%stype YYSTYPE.
3764
3765 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
3766
3767 * src/bison.simple: Add new `#line' directive.
3768
3769 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
3770
3771 * src/bison.simple: New `#line' directive.
3772 * src/output.c (output_parser): Support new dynamic muscle input_line.
3773
3774 2001-09-22 Marc Autret <autret_m@epita.fr>
3775
3776 * src/output.c (output_master_parser): New.
3777 (output_parser): Be more re-entrant.
3778
3779 2001-09-21 Marc Autret <autret_m@epita.fr>
3780
3781 * src/reader.c (copy_definition, parse_union_decl): Update and use
3782 `linef' muscle.
3783 (copy_action): Likewise.
3784 Use obstack_1grow ().
3785 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
3786
3787 2001-09-21 Marc Autret <autret_m@epita.fr>
3788
3789 * src/options.c (option_table): Adjust.
3790 * src/lex.c (parse_percent_token): Fix.
3791
3792 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
3793
3794 * src/options.c (symtab.h): Include it, need by lex.h.
3795
3796 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
3797
3798 * src/lex.c (parse_percent_token): Change type of variable `tx', which
3799 is now an option_table_struct*.
3800 (option_strcmp): New function option_strcmp.
3801 (parse_percent_token): Call option_strcmp.
3802 * src/getargs.c (xalloc.h, options.h): Include it.
3803 (getargs): Call create_long_option_table.
3804 (getargs): Free longopts at the end of the function.
3805 (shortopts): Move in options.c.
3806 * src/options.c (create_long_option_table): New function. Convert
3807 information from option_table to option structure.
3808 * src/reader.c (options.h): Include it.
3809
3810 * src/Makefile.am: Adjust.
3811 * src/options.c (option_table): Create from longopts and percent_table.
3812 * src/getargs.c (longopts): Delete.
3813 * src/lex.c (struct percent_table_struct): Delete.
3814 (percent_table): Delete.
3815 (options.h): Include it.
3816 * src/options.c: Create.
3817 * src/options.h: Create.
3818 Declare enum opt_access_e.
3819 Define struct option_table_struct.
3820
3821 2001-09-20 Marc Autret <autret_m@epita.fr>
3822
3823 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
3824 sections of Bison.
3825
3826 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
3827
3828 * src/bison.simple: s/%%filename/%%skeleton.
3829 * src/muscle_tab.c (getargs.h): Include it.
3830 (muscle_init): Insert new muscle skeleton.
3831
3832 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
3833
3834 * src/output.c (output_parser): Delete unused variable actions_dumped.
3835
3836 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
3837
3838 * src/output.c (output): Delete call to reader_output_yylsp.
3839 * src/reader.c (reader): Likewise.
3840 * src/reader.h: Delete declaration of reader_output_yylsp.
3841
3842 2001-09-02 Marc Autret <autret_m@epita.fr>
3843
3844 * src/reader.c: Include muscle_tab.h.
3845 (parse_union_decl): Update.
3846 (parse_macro_decl): Rename parse_muscle_decl.
3847 Update to use renamed functions and variable.
3848 (read_declarations, copy_action, read_additionnal_code, : Updated
3849 with correct variables and functions names.
3850 (packsymbols, reader): Likewise.
3851
3852 * src/reader.h (muscle_obstack): Extern declaration update.
3853
3854 * src/output.c: Include muscle_tab.h
3855 In all functions using macro_insert, change by using muscle_insert ().
3856 (macro_obstack): Rename muscle_obstack.
3857 Echo modifications in the whole file.
3858 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
3859 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
3860 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
3861
3862 * src/muscle_tab.h: Update double inclusion macros.
3863 (macro_entry_s): Rename muscle_entry_s.
3864 Update prototypes.
3865
3866 * src/muscle_tab.c: Include muscle_tab.h.
3867 Rename macro_tabble to muscle_table.
3868 (mhash1, mhash2, mcmp): Use muscle_entry.
3869 (macro_init): Rename muscle_init. Update.
3870 (macro_insert): Rename muscle_insert. Update.
3871 (macro_find): Rename muscle_find. Update.
3872
3873 * src/main.c: Include muscle_tab.h.
3874 (main): Call muscle_init ().
3875 * src/Makefile.am (bison_SOURCES): Echo modifications.
3876
3877 2001-09-02 Marc Autret <autret_m@epita.fr>
3878
3879 Now the files macro_tab.[ch] are named muscle_tab.[ch].
3880
3881 * src/muscle_tab.c, src/muscle_tab.h: Add files.
3882
3883 2001-09-02 Marc Autret <autret_m@epita.fr>
3884
3885 * src/macrotab.c, src/macrotab.h: Remove.
3886
3887 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
3888
3889 * src/reader.c (copy_guard): Use muscle to specify the `#line'
3890 filename.
3891
3892 2001-09-01 Marc Autret <autret_m@epita.fr>
3893
3894 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
3895 to an explicit value to activate the feature. We do it here.
3896
3897 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
3898
3899 * src/output.c (prepare): Delete the `filename' muscule insertion.
3900 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
3901 (parse_union_decl): Likewise.
3902 * src/macrotab.c (macro_init): Initialize filename by infile.
3903
3904 2001-08-31 Marc Autret <autret_m@epita.fr>
3905
3906 * src/bison.simple (YYLSP_NEEDED): New definition.
3907 * src/output.c (prepare): Add macro insertion of `locations_flag'
3908
3909 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
3910
3911 * src/output.c (prepare): Delete insertion of previous muscles,
3912 and insert the `prefix' muscles.
3913 * src/macrotab.c (macro_init): Likewise.
3914 (macro_init): Initialization prefix directive by `yy'.
3915 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
3916 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
3917 yylval, yydebug, yyerror, yynerrs and yyparse.
3918 New directive `#define' to substitute yydebug, ... with option
3919 name_prefix.
3920
3921 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
3922
3923 * src/main.c (main): Standardize.
3924 * src/output.c (output_table_data, output_parser): Likewise.
3925 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
3926
3927 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
3928
3929 * src/reader.c (read_additionnal_code): Rename %%user_code to
3930 %%epilogue.
3931 * src/output.c (output): Rename %%declarations to %%prologue.
3932 * src/bison.simple: Echo modifications.
3933
3934 2001-08-31 Marc Autret <autret_m@epita.fr>
3935
3936 * src/reader.c (readgram): CleanUp.
3937 (output_token_defines): Likewise.
3938 (packsymbols): Likewise.
3939 (reader): Likewise.
3940 * src/output.c (output): CPP-out useless code.
3941
3942 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
3943
3944 * src/reader.c (reader): Delete obsolete call to function
3945 output_trailers and output_headers.
3946 * src/output.h: Remove obsolete functions prototypes of output_headers
3947 and output_trailers.
3948
3949 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
3950
3951 * src/main.c: Include macrotab.h.
3952 * src/macrotab.h (macro_entry_s): Constify fields.
3953 Adjust functions prototypes.
3954 * src/macrotab.c (macro_insert): Constify key and value.
3955 (macro_find): Constify key.
3956 (macro_insert): Include 'xalloc.h'
3957 (macro_insert): Use XMALLOC.
3958 (macro_find): Constify return value.
3959 * src/output.c (output_table_data): Rename table to table_data.
3960 (output_parser): Constify macro_key, macro_value.
3961
3962 2001-08-30 Marc Autret <autret_m@epita.fr>
3963
3964 * src/reader.c (parse_skel_decl): New.
3965 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
3966 * src/lex.h (token_t): New token `tok_skel'.
3967 * src/lex.c (percent_table): Add skeleton option entry.
3968 Standardize.
3969
3970 2001-08-29 Marc Autret <autret_m@epita.fr>
3971
3972 * src/bison.simple: Add %%user_code directive at the end.
3973 * src/reader.c (read_additionnal_code): New.
3974 (reader): Use it.
3975 * src/output.c (output_program): Remove.
3976 (output): Update.
3977
3978 2001-08-28 Marc Autret <autret_m@epita.fr>
3979
3980 * src/output.c (output_actions): Clean up.
3981 (output_gram): CPP-out useless code.
3982 * src/reader.c (reader): Clean up, CPP-out useless code.
3983
3984 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
3985
3986 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
3987 directive.
3988 * src/bison.simple: Add `%%definitions'.
3989
3990 2001-08-28 Marc Autret <autret_m@epita.fr>
3991
3992 * config/depcomp: New file.
3993
3994 2001-08-27 Paul Eggert <eggert@twinsun.com>
3995
3996 * src/bison.simple (yyparse): Don't take the address of an
3997 item before the start of an array, as that doesn't conform to
3998 the C Standard.
3999
4000 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
4001
4002 * src/output.c (output): Remove the initialization of the macro
4003 obstack. It was done too late here.
4004
4005 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
4006 completely wrong.
4007 (reader): Initialize the macro obstack here, since we need it to grow
4008 '%define' directives.
4009
4010 * src/reader.h: Declare the macro obstack as extern.
4011
4012 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
4013
4014 * src/output.c (output_parser): Fix. Store single '%' characters in
4015 the output obstack instead of throwing them away.
4016
4017 2001-08-27 Akim Demaille <akim@epita.fr>
4018
4019 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
4020
4021 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4022
4023 * lib/Makefile.am: Adjust.
4024
4025 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4026
4027 * src/bison.simple: Update and add '%%' directives.
4028
4029 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4030
4031 * src/reader.c (reader): Remove calls to 'output_headers' and
4032 'output_trailers'. Remove some C output.
4033 (readgram): Disable a piece of code that was writing a default
4034 definition for 'YYSTYPE'.
4035 (reader_output_yylsp): Remove.
4036 (packsymbols): Output token defintions to a macro.
4037 (copy_definition): Disable C output.
4038
4039 * src/reader.c (parse_macro_decl): New function used to parse macro
4040 declarations.
4041 (copy_string2): Put the body of copy_string into this new function.
4042 Add a parameter to let the caller choose whether he wants to copy the
4043 string delimiters or not.
4044 (copy_string): Be a simple call to copy_string2 with the last argument
4045 bound to true.
4046 (read_declarations): Add case for macro definition.
4047 (copy_identifier): New.
4048 (parse_macro_decl): Read macro identifiers using copy_identifier
4049 rather than lex.
4050
4051 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4052
4053 * src/output.c (prepare): Add prefixed names.
4054 (output_parser): Output semantic actions.
4055 (output_parser): Fix bug on '%%line' directives.
4056
4057 * src/output.c (output_headers): Remove. The C code printed by this
4058 function should now be in the skeletons.
4059 (output_trailers): Remove.
4060 (output): Disable call to 'reader_output_yylsp'.
4061 (output_rule_data): Do not output tables to the table obstack.
4062
4063 * src/output.c: Remove some C dedicated output.
4064 Improve the use of macro and output obstacks.
4065 (output_defines): Remove.
4066
4067 * src/output.c (output_token_translations): Associate 'translate'
4068 table with a macro. No output to the table obstack.
4069 (output_gram): Same for 'rhs' and 'prhs'.
4070 (output_stos): Same for 'stos'.
4071 (output_rule_data): Same for 'r1' and 'r2'.
4072 (token_actions): Same for 'defact'.
4073 (goto_actions): Same for 'defgoto'.
4074 (output_base): Same for 'pact' and 'pgoto'.
4075 (output_table): Same for 'table'.
4076 (output_check): Same for 'check'.
4077
4078 * src/output.c (output_table_data): New function.
4079 (output_short_table): Remove.
4080 (output_short_or_char_table): Remove.
4081
4082 * src/output.c (output_parser): Replace most of the skeleton copy code
4083 with something new. Skeletons are now processed character by character
4084 rather than line by line, and Bison looks for '%%' macros. This is the
4085 first step in making Bison's output process (a lot) more flexible.
4086 (output_parser): Use the macro table.
4087
4088 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4089
4090 * src/main.c (main): Initialize the macro table.
4091
4092 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4093
4094 * src/lex.c (percent_table): Add tok_define.
4095 * src/lex.h: Add tok_define.
4096
4097 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4098
4099 * src/macrotab.c: New file.
4100 * src/macrotab.h: New file.
4101 * src/Makefile.am: Update.
4102
4103 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
4104
4105 * lib/hash.c: New file.
4106 * lib/hash.h: New file.
4107 * lib/Makefile.am: Update.
4108
4109 2001-08-15 Akim Demaille <akim@epita.fr>
4110
4111 Version 1.28c.
4112
4113 2001-08-15 Marc Autret <autret_m@epita.fr>
4114
4115 * src/reader.c (readgram): Indent output macro YYSTYPE.
4116 (packsymbols): Likewise.
4117 (output_token_defines): Likewise.
4118 * src/files.c: Standardize.
4119 (compute_header_macro): New.
4120 (defines_obstack_save): New. Use compute_header_macro.
4121 (output_files): Update. Use defines_obstack_save.
4122
4123 2001-08-15 Akim Demaille <akim@epita.fr>
4124
4125 * doc/bison.texinfo (Table of Symbols): Document
4126 YYSTACK_USE_ALLOCA.
4127
4128 2001-08-15 Akim Demaille <akim@epita.fr>
4129
4130 * missing: Update from CVS Automake.
4131 * config/config.guess, config/config.sub, config/texinfo.tex:
4132 Update from gnu.org.
4133
4134 2001-08-15 Akim Demaille <akim@epita.fr>
4135
4136 * Makefile.maint: Sync with CVS Autoconf.
4137
4138 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
4139
4140 * doc/bison.texinfo: Include GNU Free Documentation License from
4141 `fdl.texi'.
4142 * doc/fdl.texi: Add to package.
4143
4144 2001-08-14 Marc Autret <autret_m@epita.fr>
4145
4146 Turn on %{source,header}_extension features.
4147
4148 * src/lex.c (percent_table): Un-CPP out header_extension and
4149 source_extension.
4150 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
4151 (compute_exts_from_src): Remove conditions. It restores priorities
4152 between options.
4153
4154 2001-08-14 Marc Autret <autret_m@epita.fr>
4155
4156 * src/files.c (compute_base_names): Add extensions computing when
4157 `--file-prefix' used.
4158 Standardize function calls.
4159
4160 2001-08-13 Marc Autret <autret_m@epita.fr>
4161
4162 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
4163 defining it (defined but null disables alloca).
4164
4165 2001-08-13 Marc Autret <autret_m@epita.fr>
4166
4167 * src/bison.simple (_yy_memcpy): CPP reformat.
4168
4169 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
4170
4171 * tests/atconfig.in (CPPFLAGS): Fix.
4172
4173 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
4174
4175 * doc/bison.texinfo: Include GNU General Public License from
4176 `gpl.texi'.
4177 * doc/gpl.texi: Add to package.
4178
4179 2001-08-10 Marc Autret <autret_m@epita.fr>
4180
4181 * src/print_graph.h: Fix.
4182 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
4183
4184 2001-08-10 Akim Demaille <akim@epita.fr>
4185
4186 * src/system.h: Provide default declarations for stpcpy, strndup,
4187 and strnlen.
4188
4189 2001-08-10 Robert Anisko <anisko_r@epita.fr>
4190
4191 * doc/bison.texinfo (Locations): Update @$ stuff.
4192
4193 2001-08-09 Robert Anisko <anisko_r@epita.fr>
4194
4195 * src/bison.simple (YYLLOC_DEFAULT): Update.
4196 (yyparse): Adjust.
4197
4198 2001-08-08 Marc Autret <autret_m@epita.fr>
4199
4200 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
4201 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
4202 Reported by Fabrice Bauzac.
4203
4204 2001-08-08 Marc Autret <autret_m@epita.fr>
4205
4206 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
4207 * src/vcg.c (output_node): Fix.
4208 * src/vcg.h: Cleanup.
4209 * src/print_graph.c: Add comments.
4210 (node_output_size): New global variable. Simplify the formatting of
4211 the VCG graph output.
4212 (print_actions): Unused code is now used. It notifies the final state
4213 and no action states in the VCG graph. It also give the reduce actions.
4214 The `shift and goto' edges are red and the `go to state' edges are
4215 blue.
4216 Get the current node name and node_obstack by argument.
4217 (node_obstack): New variable.
4218 (print_state): Manage node_obstack.
4219 (print_core): Use node_obstack given by argument.
4220 A node is not only computed here but in print_actions also.
4221 (print_graph): CPP out useless code instead of commenting it.
4222
4223 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
4224
4225 * tests/atconfig.in (CPPFLAGS): Fix.
4226
4227 2001-08-07 Akim Demaille <akim@epita.fr>
4228
4229 * src/print_graph.c (quote): New.
4230 (print_core): Use it.
4231
4232 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
4233
4234 * src/vcg.c (complain.h): Include it.
4235 Unepitaize `return' invocations.
4236 [NDEBUG] (main): Remove.
4237 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
4238 * src/files.c (open_files): Initialize graph_obstack.
4239 * src/print_graph.c (print_actions): CPP out useless code.
4240 (print_core): Don't output the last `\n' in labels.
4241 Use `quote'.
4242 * src/files.c (output_files): Output the VCG file.
4243 * src/main.c (main): Invoke print_graph ();
4244
4245 2001-08-06 Marc Autret <autret_m@epita.fr>
4246
4247 Automaton VCG graph output.
4248 Using option ``-g'' or long option ``--graph'', you can generate
4249 a gram_filename.vcg file containing a VCG description of the LALR (1)
4250 automaton of your grammar.
4251
4252 * src/main.c: Call to print_graph() function.
4253 * src/getargs.h: Update.
4254 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
4255 (graph_flag): New flag.
4256 (longopts): Update.
4257 (getargs): Add case `g'.
4258 * src/files.c (graph_obstack): New obstack struct.
4259 (open_files): Initialize new obstack.
4260 (output_files): Saves graph_obstack if required.
4261 * src/files.h (graph_obstack): New extern declaration.
4262 * src/Makefile.am: Add new source files.
4263
4264 2001-08-06 Marc Autret <autret_m@epita.fr>
4265
4266 * src/print_graph.c, src/print_graph.h (graph): New.
4267 * src/vcg.h: New file.
4268 * src/vcg.c: New file, VCG graph handling.
4269
4270 2001-08-06 Marc Autret <autret_m@epita.fr>
4271
4272 Add of %source_extension and %header_extension which specify
4273 the source or/and the header output file extension.
4274
4275 * src/files.c (compute_base_names): Remove initialisation of
4276 src_extension and header_extension.
4277 (compute_exts_from_gf): Update.
4278 (compute_exts_from_src): Update.
4279 (output_files): Update.
4280 * src/reader.c (parse_header_extension_decl): New.
4281 (parse_source_extension_decl): New.
4282 (read_declarations): New case statements for the new tokens.
4283 * src/lex.c (percent_table): Add entries for %source_extension
4284 and %header_extension.
4285 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
4286
4287 2001-08-06 Marc Autret <autret_m@epita.fr>
4288
4289 * configure.in: Bump to 1.28c.
4290 * doc/bison.texinfo: Texinfo thingies.
4291
4292 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
4293
4294 * tests/atconfig.in (CPPFLAGS): Add.
4295 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
4296
4297 2001-08-03 Akim Demaille <akim@epita.fr>
4298
4299 Version 1.28b.
4300
4301 2001-08-03 Akim Demaille <akim@epita.fr>
4302
4303 * tests/Makefile.am (check-local): Ship testsuite.
4304 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
4305 Include `string.h'.
4306
4307 2001-08-03 Akim Demaille <akim@epita.fr>
4308
4309 * configure.in: Try using -Wformat when compiling.
4310
4311 2001-08-03 Akim Demaille <akim@epita.fr>
4312
4313 * configure.in: Bump to 1.28b.
4314
4315 2001-08-03 Akim Demaille <akim@epita.fr>
4316
4317 * src/complain.c: Adjust strerror_r portability issues.
4318
4319 2001-08-03 Akim Demaille <akim@epita.fr>
4320
4321 Version 1.28a.
4322
4323 2001-08-03 Akim Demaille <akim@epita.fr>
4324
4325 * src/getargs.c, src/getarg.h (skeleton)): Constify.
4326 * src/lex.c (literalchar): Avoid name clashes on `buf'.
4327 * src/getargs.c: Include complain.h.
4328 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
4329 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
4330
4331 2001-08-03 Akim Demaille <akim@epita.fr>
4332
4333 * src/reader.c (readgram): Display hidden chars in error messages.
4334
4335 2001-08-03 Akim Demaille <akim@epita.fr>
4336
4337 Update to gettext 0.10.39.
4338
4339 2001-08-03 Akim Demaille <akim@epita.fr>
4340
4341 * lib/strspn.c: New.
4342
4343 2001-08-01 Marc Autret <autret_m@epita.fr>
4344
4345 * doc/bison.texinfo: Update.
4346 * doc/bison.1 (mandoc): Update.
4347 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
4348 * src/files.c: Support output files extensions computing.
4349 (src_extension): New static variable.
4350 (header_extension): New static variable.
4351 (tr): New function.
4352 (get_extension_index): New function, gets the index of an extension
4353 filename in a string.
4354 (compute_exts_from_gf): New function, computes extensions from the
4355 grammar file extension.
4356 (compute_exts_from_src): New functions, computes extensions from the
4357 C source file extension, file given by ``-o'' option.
4358 (compute_base_names): Update.
4359 (output_files): Update.
4360
4361 2001-08-01 Robert Anisko <anisko_r@epita.fr>
4362
4363 * doc/bison.texi: Document @$.
4364 (Locations): New section.
4365
4366 2001-07-18 Akim Demaille <akim@epita.fr>
4367
4368 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
4369 * config/prev-version.txt, config/move-if-change: New.
4370 * Makefile.am: Adjust.
4371
4372 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
4373
4374 * src/bison.simple (yyparse): Suppress warning `comparaison
4375 between signed and unsigned'.
4376
4377 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
4378
4379 * src/getargs.h (raw_flag): Remove.
4380 * src/getargs.c: Die on `-r'/`--raw'.
4381 * src/lex.c (parse_percent_token): Die on `%raw'.
4382 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
4383 * tests/calc.at: Suppress test with option `--raw'.
4384
4385 2001-07-14 Akim Demaille <akim@epita.fr>
4386
4387 * config/: New.
4388 * configure.in: Require Autoconf 2.50.
4389 Update to gettext 0.10.38.
4390
4391 2001-03-16 Akim Demaille <akim@epita.fr>
4392
4393 * doc/bison.texinfo: ANSIfy the examples.
4394
4395 2001-03-16 Akim Demaille <akim@epita.fr>
4396
4397 * getargs.c (skeleton): New variable.
4398 (longopts): --skeleton is a new option.
4399 (shortopts, getargs): -S is a new option.
4400 * getargs.h: Declare skeleton.
4401 * output.c (output_parser): Use it.
4402
4403 2001-03-16 Akim Demaille <akim@epita.fr>
4404
4405 * m4/strerror_r.m4: New.
4406 * m4/error.m4: Run AC_FUNC_STRERROR_R.
4407 * lib/error.h, lib/error.c: Update.
4408
4409 2001-03-16 Akim Demaille <akim@epita.fr>
4410
4411 * src/getargs.c (longopts): Clean up.
4412
4413 2001-02-21 Akim Demaille <akim@epita.fr>
4414
4415 * src/reader.c (gensym): `gensym_count' is your own.
4416 Use a static buf to create the symbol name, as token_buffer is no
4417 longer a buffer.
4418
4419 2001-02-08 Akim Demaille <akim@epita.fr>
4420
4421 * src/conflicts.c (conflict_report): Be sure not to append to res
4422 between two calls, which could happen if both first sprintf were
4423 skipped, but not the first cp += strlen.
4424
4425 2001-02-08 Akim Demaille <akim@epita.fr>
4426
4427 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
4428 New, from fileutils 4.0.37.
4429 * configure.in: Require Autoconf 2.49c. I took some time before
4430 making this decision. This is the only way out for portability
4431 issues in Bison, it would mean way too much duplicate effort to
4432 import in Bison features implemented in 2.49c since 2.13.
4433 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
4434
4435 2001-02-02 Akim Demaille <akim@epita.fr>
4436
4437 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
4438 * lib/xalloc.h, lib/xmalloc.c: Update.
4439
4440 2001-01-19 Akim Demaille <akim@epita.fr>
4441
4442 Get rid of the ad hoc handling of token_buffer in the scanner: use
4443 the obstacks.
4444
4445 * src/lex.c (token_obstack): New.
4446 (init_lex): Initialize it. No longer call...
4447 (grow_token_buffer): this. Remove it.
4448 Adjust all the places which used it to use the obstack.
4449
4450 2001-01-19 Akim Demaille <akim@epita.fr>
4451
4452 * src/lex.h: Rename all the tokens:
4453 s/\bENDFILE\b/tok_eof/g;
4454 s/\bIDENTIFIER\b/tok_identifier/g;
4455 etc.
4456 Let them be enums, not #define, to ease debugging.
4457 Adjust all the code.
4458
4459 2001-01-18 Akim Demaille <akim@epita.fr>
4460
4461 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
4462 * src/lex.c (maxtoken, grow_token_buffer): Static.
4463
4464 2001-01-18 Akim Demaille <akim@epita.fr>
4465
4466 Since we now use obstacks, more % directives can be enabled.
4467
4468 * src/lex.c (percent_table): Also accept `%yacc',
4469 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
4470 `%debug'.
4471 Handle the actions for `%semantic_parser' and `%pure_parser' here,
4472 instead of returning a token.
4473 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
4474 * src/reader.c (read_declarations): Adjust.
4475 * src/files.c (open_files): Don't call `compute_base_names', don't
4476 compute `attrsfile' since they depend upon data which might be
4477 *in* the input file now.
4478 (output_files): Do it here.
4479 * src/output.c (output_headers): Document the fact that this patch
4480 introduces a guaranteed SEGV for semantic parsers.
4481 * doc/bison.texinfo: Document them.
4482 * tests/suite.at: Exercise these %options.
4483
4484 2000-12-20 Akim Demaille <akim@epita.fr>
4485
4486 Also handle the output file (--verbose) with obstacks.
4487
4488 * files.c (foutput): Remove.
4489 (output_obstack): New.
4490 Adjust all dependencies.
4491 * src/conflicts.c: Return a string.
4492 * src/system.h (obstack_grow_string): Rename as...
4493 (obstack_sgrow): this. Be ready to work with non literals.
4494 (obstack_fgrow4): New.
4495
4496 2000-12-20 Akim Demaille <akim@epita.fr>
4497
4498 * src/files.c (open_files): Fix the computation of short_base_name
4499 in the case of `-o foo.tab.c'.
4500
4501 2000-12-20 Akim Demaille <akim@epita.fr>
4502
4503 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
4504 (copy_dollar): Now that everything uses obstacks, get rid of the
4505 FILE * parameters.
4506
4507 2000-12-20 Akim Demaille <akim@epita.fr>
4508
4509 * src/files.c (open_files): Actually the `.output' file is based
4510 on the short_base_name, not base_name.
4511 * tests/suite.at (Checking output file names): Adjust.
4512
4513 2000-12-20 Akim Demaille <akim@epita.fr>
4514
4515 * src/bison.s1: Remove, we now use directly...
4516 * src/bison.simple: this.
4517 * src/Makefile.am: Use pkgdata instead of data.
4518
4519 2000-12-20 Akim Demaille <akim@epita.fr>
4520
4521 * src/files.c (guard_obstack): New.
4522 (open_files): Initialize it.
4523 (output_files): Dump it...
4524 * src/files.h: Export it.
4525 * src/reader.c (copy_guard): Use it.
4526
4527 2000-12-19 Akim Demaille <akim@epita.fr>
4528
4529 * src/files.c (outfile, defsfile, actfile): Removed as global
4530 vars.
4531 (open_files): Don't compute them.
4532 (output_files): Adjust.
4533 (base_name, short_base_name): Be global.
4534 Adjust dependencies.
4535
4536 2000-12-19 Akim Demaille <akim@epita.fr>
4537
4538 * src/files.c (strsuffix): New.
4539 (stringappend): Be just like strcat but allocate.
4540 (base_names): Eve out from open_files.
4541 Try to simplify the rather hairy computation of base_name and
4542 short_base_name.
4543 (open_files): Use it.
4544 * tests/suite.at (Checking output file names): New test.
4545
4546 2000-12-19 Akim Demaille <akim@epita.fr>
4547
4548 * src/system.h (obstack_grow_literal_string): Rename as...
4549 (obstack_grow_string): this.
4550 * src/output.c (output_parser): Recognize `%% actions' instead of
4551 `$'.
4552 * src/bison.s1: s/$/%% actions/.
4553 * src/bison.hairy: Likewise.
4554
4555 2000-12-19 Akim Demaille <akim@epita.fr>
4556
4557 * src/output.c (output_parser): Compute the `#line' lines when
4558 there are.
4559 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
4560 Suggested by Hans Aberg.
4561
4562 2000-12-19 Akim Demaille <akim@epita.fr>
4563
4564 Let the handling of the skeleton files be local to the procedures
4565 that use it.
4566
4567 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
4568 longer static.
4569 (fparser, open_extra_files): Remove.
4570 (open_files, output_files): Don't take care of fparser.
4571 * src/files.h: Adjust.
4572 * src/output.c (output_parser): Open and close the file to the
4573 skeleton.
4574 * src/reader.c (read_declarations): When %semantic_parser, open
4575 fguard.
4576
4577 2000-12-19 Akim Demaille <akim@epita.fr>
4578
4579 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
4580 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
4581
4582 2000-12-19 Akim Demaille <akim@epita.fr>
4583
4584 * src/files.c (open_files): Yipee! We no longer need all the code
4585 looking for `/tmp' since we have no tmp file.
4586
4587 2000-12-19 Akim Demaille <akim@epita.fr>
4588
4589 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
4590 New macros.
4591 * src/files.c (open_files): Less dependency on MSDOS etc.
4592
4593 2000-12-14 Akim Demaille <akim@epita.fr>
4594
4595 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
4596 Provide a default definition.
4597 Use it when executing the default @ action.
4598 * src/reader.c (reader_output_yylsp): No longer include
4599 `timestamp' and `text' in the default YYLTYPE.
4600
4601 2000-12-12 Akim Demaille <akim@epita.fr>
4602
4603 * src/reader.c (copy_definition, parse_union_decl, copy_action)
4604 (copy_guard): Quote the file names.
4605 Reported by Laurent Mascherpa.
4606
4607 2000-12-12 Akim Demaille <akim@epita.fr>
4608
4609 * src/output.c (output_headers, output_program, output): Be sure
4610 to escape special characters when outputting filenames.
4611 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
4612 (output_headers): Don't depend on them, Use ACTSTR.
4613
4614 2000-11-17 Akim Demaille <akim@epita.fr>
4615
4616 * lib/obstack.h: Formatting changes.
4617 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
4618 prevents type checking.
4619 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
4620 cast the value to (void *): assigning a `foo *' to a `void *'
4621 variable is valid.
4622 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
4623 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
4624 append characters.
4625
4626 2000-11-17 Akim Demaille <akim@epita.fr>
4627
4628 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
4629 as...
4630 (suite.m4, regression.m4, calc.m4): these.
4631 * tests/atgeneral.m4: Update from CVS Autoconf.
4632
4633 2000-11-17 Akim Demaille <akim@epita.fr>
4634
4635 * tests/regression.m4 (%union and --defines): New test,
4636 demonstrating a current bug in the obstack implementation.
4637
4638 2000-11-17 Akim Demaille <akim@epita.fr>
4639
4640 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
4641 macros.
4642 Use them to declare the variables which are global or local to
4643 `yyparse'.
4644
4645 2000-11-17 Akim Demaille <akim@epita.fr>
4646
4647 * acconfig.h: Remove, no longer used.
4648
4649 2000-11-07 Akim Demaille <akim@epita.fr>
4650
4651 * src: s/Copyright (C)/Copyright/g.
4652
4653 2000-11-07 Akim Demaille <akim@epita.fr>
4654
4655 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
4656 defining.
4657 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
4658
4659 2000-11-07 Akim Demaille <akim@epita.fr>
4660
4661 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
4662 Merge in a single CPP if/else.
4663
4664 2000-11-07 Akim Demaille <akim@epita.fr>
4665
4666 * src/output.c (output): Remove useless variables.
4667 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
4668 argument `data' for consistency with the prototypes.
4669 Qualify it `const'.
4670 (obstack_copy, obstack_copy0): Rename the second argument as
4671 `address' for consistency. Qualify it `const'.
4672 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
4673 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
4674 `const' their input argument (`data' or `address').
4675 Adjust the corresponding macros to include `const' in casts.
4676
4677 2000-11-03 Akim Demaille <akim@epita.fr>
4678
4679 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
4680 s/PFILE1/BISON_HAIRY/.
4681 Adjust dependencies.
4682
4683 2000-11-03 Akim Demaille <akim@epita.fr>
4684
4685 For some reason, this was not applied.
4686
4687 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
4688 `unlink': it's no longer used.
4689
4690 2000-11-03 Akim Demaille <akim@epita.fr>
4691
4692 * src/files.c (skeleton_find): New function, eved out of...
4693 (open_files, open_extra_files): here.
4694
4695 2000-11-03 Akim Demaille <akim@epita.fr>
4696
4697 Don't use `atexit'.
4698
4699 * src/files.c (obstack_save): New function.
4700 (done): Rename as...
4701 (output_files): this.
4702 Use `obstack_save'.
4703 * src/main.c (main): Don't use `atexit' to register `done', since
4704 it no longer has to remove tmp files, just call `output_files'
4705 when there are no errors.
4706
4707 2000-11-02 Akim Demaille <akim@epita.fr>
4708
4709 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
4710 `unlink': it's no longer used.
4711 * src/files.h: Formatting changes.
4712
4713 2000-11-02 Akim Demaille <akim@epita.fr>
4714
4715 Remove the last uses of mktemp and unlink/delete.
4716
4717 * src/files.c (fdefines, ftable): Removed.
4718 (defines_ostack, table_obstack): New.
4719 Adjust dependencies of the former into uses of the latter.
4720 * src/output.c (output_short_or_char_table, output_short_table):
4721 Convert to using obstacks.
4722 * src/reader.c (copy_comment2): Accept one FILE * and two
4723 obstacks.
4724 (output_token_defines, reader_output_yylsp): Use obstacks.
4725 * src/system.h (obstack_fgrow3): New.
4726
4727 2000-11-01 Akim Demaille <akim@epita.fr>
4728
4729 Change each use of `fattrs' into a use of `attrs_obstack'.
4730
4731 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
4732 * src/files.c (fattrs): Remove.
4733 (attrs_obstack): New.
4734 Adjust all dependencies.
4735 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
4736
4737 2000-11-01 Akim Demaille <akim@epita.fr>
4738
4739 Introduce obstacks.
4740 Change each use of `faction' into a use of `action_obstack'.
4741
4742 * lib/obstack.h, lib/obstack.c: New files.
4743 * src/files.c (faction): Remove.
4744 (action_obstack): New.
4745 Adjust all dependencies.
4746
4747 2000-10-20 Akim Demaille <akim@epita.fr>
4748
4749 * lib/quote.h (PARAMS): New macro. Use it.
4750
4751 2000-10-16 Akim Demaille <akim@epita.fr>
4752
4753 * src/output.c (output_short_or_char_table): New function.
4754 (output_short_table, output_token_translations): Use it.
4755 (goto_actions): Use output_short_table.
4756
4757 2000-10-16 Akim Demaille <akim@epita.fr>
4758
4759 * src/symtab.c (bucket_new): New function.
4760 (getsym): Use it.
4761
4762 * src/output.c (output_short_table): New argument to display the
4763 comment associated with the table.
4764 Adjust dependencies.
4765 (output_gram): Use it.
4766 (output_rule_data): Nicer output layout for YYTNAME.
4767
4768 2000-10-16 Akim Demaille <akim@epita.fr>
4769
4770 * src/lex.c (read_typename): New function.
4771 (lex): Use it.
4772 * src/reader.c (copy_dollar): Likewise.
4773
4774 2000-10-16 Akim Demaille <akim@epita.fr>
4775
4776 * src/reader.c (copy_comment2): Expect the input stream to be on
4777 the `/' which is suspected to open a comment, instead of being
4778 called after `//' or `/*' was read.
4779 (copy_comment, copy_definition, parse_union_decl, copy_action)
4780 (copy_guard): Adjust.
4781
4782 2000-10-16 Akim Demaille <akim@epita.fr>
4783
4784 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
4785 `read_signed_integer'.
4786
4787 2000-10-16 Akim Demaille <akim@epita.fr>
4788
4789 * src/reader.c (copy_dollar): New function.
4790 (copy_guard, copy_action): Use it.
4791
4792 2000-10-16 Akim Demaille <akim@epita.fr>
4793
4794 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
4795 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
4796 New files, from Fileutils 4.0.27.
4797 * src/main.c (printable_version): Remove.
4798 * src/lex.c, src/reader.c: Use `quote'.
4799
4800 2000-10-04 Akim Demaille <akim@epita.fr>
4801
4802 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
4803
4804 2000-10-04 Akim Demaille <akim@epita.fr>
4805
4806 * doc/bison.texinfo: Various typos spotted by Neil Booth.
4807
4808 2000-10-04 Akim Demaille <akim@epita.fr>
4809
4810 When a literal string is used to define two different tokens,
4811 `bison -v' segfaults.
4812 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
4813
4814 * tests/regression.m4: New file.
4815 Include the core of the sample provided by Piotr Gackiewicz.
4816 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
4817 properly.
4818
4819 2000-10-04 Akim Demaille <akim@epita.fr>
4820
4821 * src/reader.c (parse_expect_decl): Keep `count' within the size
4822 of `buffer'.
4823 From Neil Booth.
4824
4825 2000-10-02 Paul Eggert <eggert@twinsun.com>
4826
4827 * bison.s1 (yyparse): Assign the default value
4828 unconditionally, to avoid a GCC warning and make the parser a
4829 tad smaller.
4830
4831 2000-10-02 Akim Demaille <akim@epita.fr>
4832
4833 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
4834 options.
4835
4836 2000-10-02 Akim Demaille <akim@epita.fr>
4837
4838 * src/derives.c, src/print.c, src/reduce.c: To ease the
4839 translation, move some `\n' out of the translated strings.
4840
4841 2000-10-02 Akim Demaille <akim@epita.fr>
4842
4843 The location tracking mechanism is precious for parse error
4844 messages. Nevertheless, it is enabled only when `@n' is used in
4845 the grammar, which is a different issue (you can use it in error
4846 message, but not in the grammar per se). Therefore, there should
4847 be another means to enable it.
4848
4849 * src/getargs.c (getargs): Support `--locations'.
4850 (usage): Report it.
4851 * src/getargs.h (locationsflag): Export it.
4852 * src/lex.c (percent_table): Support `%locations'.
4853 * src/reader.c (yylsp_needed): Remove this variable, now replaced
4854 with `locationsflag'.
4855 * doc/bison.texinfo: Document `--locations' and `%locations'.
4856 Sort the options.
4857 * tests/calc.m4: Test it.
4858
4859 For regularity of the names, replace each
4860 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
4861 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
4862 In addition replace each `flag' with `_flag'.
4863
4864 2000-10-02 Akim Demaille <akim@epita.fr>
4865
4866 Also test parse error messages, including with YYERROR_VERBOSE.
4867
4868 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
4869 associative).
4870 Use it to check the computations.
4871 Use it to check `nonassoc' is honored.
4872 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
4873 `--yyerror-verbose'.
4874 (_AT_CHECK_CALC): Adjust to this option.
4875 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
4876
4877 2000-10-02 Akim Demaille <akim@epita.fr>
4878
4879 Test also `--verbose', `--defines' and `--name-prefix'. Testing
4880 the latter demonstrates a flaw in the handling of non debugging
4881 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
4882 was used in order to simplify:
4883
4884 #if YYDEBUG
4885 if (yydebug)
4886 {
4887 ...
4888 }
4889 #endif
4890
4891 into
4892
4893 if (yydebug)
4894 {
4895 ...
4896 }
4897
4898 unfortunately this leads to a CPP conflict when
4899 `--name-prefix=foo' is used since it produces `#define yydebug
4900 foodebug'.
4901
4902 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
4903 (YYDPRINTF): New macro.
4904 Spread its use.
4905 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
4906 the bison options.
4907 Also test `--verbose', `--defines' and `--name-prefix'.
4908
4909 2000-10-02 Akim Demaille <akim@epita.fr>
4910
4911 Improve the readability of the produced parsers.
4912
4913 * src/bison.s1: Formatting changes.
4914 Improve the comment related to the `$' mark.
4915 (yydefault): Don't fall through to `yyresume': `goto' there.
4916 * src/output.c (output_parser): When the `$' is met, skip the end
4917 of its line.
4918 New variable, `number_of_dollar_signs', to check there's exactly
4919 one `$' in the parser skeleton.
4920
4921 2000-10-02 Akim Demaille <akim@epita.fr>
4922
4923 * lib/xstrdup.c: New file, from the fileutils.
4924 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
4925 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
4926 instead of strlen + xmalloc + strcpy.
4927 * src/symtab.c (copys): Remove, use xstrdup instead.
4928
4929 2000-10-02 Akim Demaille <akim@epita.fr>
4930
4931 * src/gram.h (associativity): New enum type which replaces the
4932 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
4933 `right_assoc', `left_assoc' and `non_assoc'.
4934 Adjust all dependencies.
4935 * src/reader.c: Formatting changes.
4936 (LTYPESTR): Don't define it, use it as a literal in
4937 `reader_output_yylsp'.
4938 * src/symtab.h (symbol_class): New enum type which replaces the
4939 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
4940 `sunknown', `stoken and `snterm'.
4941
4942 2000-10-02 Akim Demaille <akim@epita.fr>
4943
4944 * src/getargs.c (fixed_outfiles): Rename as...
4945 (yaccflag): for consistency and accuracy.
4946 Adjust dependencies.
4947
4948 2000-10-02 Akim Demaille <akim@epita.fr>
4949
4950 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
4951 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
4952 difficult and introduced a lot of core dump. It turns out that
4953 Bison used an implementation of `xmalloc' based on `calloc', and
4954 at various places it does depend upon the initialization to 0. I
4955 have not tried to isolate the pertinent places, and all the former
4956 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
4957 someone should address this issue.
4958
4959 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
4960 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
4961 files.
4962 Adjust dependencies.
4963 * src/warshall.h: New file.
4964 Propagate.
4965
4966 2000-10-02 Akim Demaille <akim@epita.fr>
4967
4968 Various anti-`extern in *.c' changes.
4969
4970 * src/system.h: Include `assert.h'.
4971
4972 2000-10-02 Akim Demaille <akim@epita.fr>
4973
4974 * src/state.h (nstates, final_state, first_state, first_shift)
4975 (first_reduction): Move their exportation from here...
4976 * src/LR0.h: to here.
4977 Adjust dependencies.
4978 * src/getargs.c (statisticsflag): New variable.
4979 Add support for `--statistics'.
4980 Adjust dependencies.
4981
4982 Remove a lot of now useless `extern' statements in most files.
4983
4984 2000-10-02 Akim Demaille <akim@epita.fr>
4985
4986 * src/LR0.h: New file.
4987 Propagate its use.
4988
4989 2000-10-02 Akim Demaille <akim@epita.fr>
4990
4991 * src/print.h: New file.
4992 Propagate its use.
4993 * src/print.c: Formatting and ordering changes.
4994 (verbose, terse): Replace with...
4995 (print_results): this new function.
4996 Adjust dependencies.
4997
4998 2000-10-02 Akim Demaille <akim@epita.fr>
4999
5000 * src/conflicts.c (conflict_report): New function.
5001 (conflict_log, verbose_conflict_log): Replace with...
5002 (print_conflicts): this function.
5003 Adjust dependencies.
5004 * src/conflicts.h: New file.
5005 Propagate its inclusion.
5006
5007 2000-10-02 Akim Demaille <akim@epita.fr>
5008
5009 * src/nullable.h: New file.
5010 Propagate its inclusion.
5011 * src/nullable.c: Formatting changes.
5012
5013 2000-10-02 Akim Demaille <akim@epita.fr>
5014
5015 * src/reduce.h: New file.
5016 Propagate its inclusion.
5017 * src/reduce.c: Topological sort and other formatting changes.
5018 (bool, TRUE, FALSE): Move their definition to...
5019 * src/system.h: here.
5020
5021 2000-10-02 Akim Demaille <akim@epita.fr>
5022
5023 * src/files.c: Formatting changes.
5024 (tryopen, tryclose, openfiles): Rename as...
5025 (xfopen, xfclose, open_files): this.
5026 (stringappend): static.
5027 * src/files.h: Complete the list of exported symbols.
5028 Propagate its use.
5029
5030 2000-10-02 Akim Demaille <akim@epita.fr>
5031
5032 * src/reader.h: New file.
5033 Propagate its use instead of tedious list of `extern' and
5034 prototypes.
5035 * src/reader.c: Formatting changes, topological sort,
5036 s/register//.
5037
5038 2000-10-02 Akim Demaille <akim@epita.fr>
5039
5040 * src/lex.h: Prototype `lex.c' exported functions.
5041 * src/reader.c: Adjust.
5042 * src/lex.c: Formatting changes.
5043 (safegetc): Rename as...
5044 (xgetc): this.
5045
5046 2000-10-02 Akim Demaille <akim@epita.fr>
5047
5048 * src/lalr.h: New file.
5049 Propagate its inclusion instead of prototypes and `extern'.
5050 * src/lalr.c: Formatting changes, topological sorting etc.
5051
5052 2000-10-02 Akim Demaille <akim@epita.fr>
5053
5054 * src/output.c (token_actions): Introduce a temporary array,
5055 YYDEFACT, that makes it possible for this function to use
5056 output_short_table.
5057
5058 2000-10-02 Akim Demaille <akim@epita.fr>
5059
5060 `user_toknums' is output as a `short[]' in `output.c', while it is
5061 defined as a `int[]' in `reader.c'. For consistency with the
5062 other output tables, `user_toknums' is now defined as a table of
5063 shorts.
5064
5065 * src/reader.c (user_toknums): Be a short table instead of an int
5066 table.
5067 Adjust dependencies.
5068
5069 Factor the short table outputs.
5070
5071 * src/output.c (output_short_table): New function.
5072 * src/output.c (output_gram, output_stos, output_rule_data)
5073 (output_base, output_table, output_check): Use it.
5074
5075 2000-10-02 Akim Demaille <akim@epita.fr>
5076
5077 * src/output.c (output): Topological sort of the functions, in
5078 order to get rid of the `static' prototypes.
5079 No longer use `register'.
5080 * src/output.h: New file.
5081 Propagate its inclusion in files explicitly prototyping functions
5082 from output.c.
5083
5084 2000-09-21 Akim Demaille <akim@epita.fr>
5085
5086 * src/atgeneral.m4: Update from Autoconf.
5087
5088 2000-09-21 Akim Demaille <akim@epita.fr>
5089
5090 * src/closure.h: New file.
5091 * src/closure.c: Formatting changes, topological sort over the
5092 functions, use of closure.h.
5093 (initialize_closure, finalize_closure): Rename as...
5094 (new_closure, free_closure): these. Adjust dependencies.
5095 * src/LR0.c: Formatting changes, topological sort, use of
5096 cloture.h.
5097 (initialize_states): Rename as...
5098 (new_states): this.
5099 * src/Makefile.am (noinst_HEADERS): Adjust.
5100
5101 2000-09-20 Akim Demaille <akim@epita.fr>
5102
5103 * src/acconfig.h: Don't protect config.h against multiple
5104 inclusion.
5105 Don't define PARAMS.
5106 * src/system.h: Define PARAMS.
5107 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
5108 purpose of config.h. system.h must not try to fix wrong
5109 definitions in config.h.
5110
5111 2000-09-20 Akim Demaille <akim@epita.fr>
5112
5113 * src/derives.h: New file.
5114 * src/main.c, src/derives.h: Use it.
5115 Formatting changes.
5116 * src/Makefile.am (noinst_HEADERS): Adjust.
5117
5118 2000-09-20 Akim Demaille <akim@epita.fr>
5119
5120 * tests/atgeneral.m4: Update from Autoconf.
5121 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
5122 (AT_CHECK_CALC): New macros.
5123 Use these macros to test bison with options `', `--raw',
5124 `--debug', `--yacc', `--yacc --debug'.
5125
5126 2000-09-19 Akim Demaille <akim@epita.fr>
5127
5128 * src/output.c: Formatting changes.
5129 * src/machine.h: Remove, leaving its contents in...
5130 * src/system.h: here.
5131 Include stdio.h.
5132 Adjust all dependencies on stdio.h and machine.h.
5133 * src/getargs.h: New file.
5134 Let all `extern' declarations about getargs.c be replaced with
5135 inclusion of `getargs.h'.
5136 * src/Makefile.am (noinst_HEADERS): Adjust.
5137
5138 * tests/calc.m4 (yyin): Be initialized in main, not on the global
5139 scope.
5140 (yyerror): Returns void, not int.
5141 * doc/bison.texinfo: Formatting changes.
5142
5143 2000-09-19 Akim Demaille <akim@epita.fr>
5144
5145 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
5146 portable.
5147
5148 2000-09-18 Akim Demaille <akim@epita.fr>
5149
5150 * configure.in: Append WARNING_CFLAGS to CFLAGS.
5151 * src/Makefile.am (INCLUDES): Don't.
5152 Be ready to fetch headers in lib/.
5153
5154 2000-09-18 Akim Demaille <akim@epita.fr>
5155
5156 * doc/bison.texinfo: Update the copyright.
5157 ANSIfy and GNUify the examples.
5158 Remove the old menu.
5159
5160 2000-09-18 Akim Demaille <akim@epita.fr>
5161
5162 First set of tests: use the `calc' example from the documentation.
5163
5164 * src/bison.s1 (yyparse): Condition the code using `yytname' which
5165 is defined only when YYDEBUG is.
5166 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
5167 * src/files.c (tryopen, tryclose): Formatting changes.
5168 Move to the top and be static.
5169 * src/reader.c (read_signed_integer): Likewise.
5170 * tests/calc.m4: New file.
5171 * Makefile.am, suite.m4: Adjust.
5172 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
5173
5174 2000-09-18 Akim Demaille <akim@epita.fr>
5175
5176 Add support for an Autotest test suite for Bison.
5177
5178 * m4/m4.m4, m4/atconfig.m4: New files.
5179 * m4/Makefile.am (EXTRA_DIST): Adjust.
5180 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
5181 files.
5182 * src/getargs.c: Display a more standard --version message.
5183 * src/reader.c (reader): Formatting changes.
5184 No longer depend upon VERSION_STRING.
5185 * configure.in: No longer use `dnl'.
5186 Set up the test suite and the new directory `tests/.
5187 (VERSION_STRING): Remove.
5188
5189 2000-04-14 Akim Demaille <akim@epita.fr>
5190
5191 * src/reader.c (copy_comment2): New function, same as former
5192 `copy_comment', but outputs into two FILE *.
5193 (copy_comment): Use it.
5194 (parse_union_decl): Use it.
5195 (get_type, parse_start_decl): Use the same `invalid' message.
5196 (parse_start_decl, parse_union_decl): Use the same `multiple'
5197 message.
5198 (parse_union_decl, copy_guard, copy_action): Use the same
5199 `unmatched' message.
5200 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
5201
5202 2000-03-31 Akim Demaille <akim@epita.fr>
5203
5204 * src/files.c (tryopen, tryclose): Move to the top.
5205 Be static.
5206
5207 2000-03-31 Akim Demaille <akim@epita.fr>
5208
5209 * src/main.c (main): Don't call `done', exit does it.
5210
5211 2000-03-31 Akim Demaille <akim@epita.fr>
5212
5213 * allocate.c: s/return (foo)/return foo/.
5214 * lalr.c: Likewise.
5215 * LR0.c: Likewise.
5216 * output.c: Likewise.
5217 * reader.c: Likewise.
5218 * symtab.c: Likewise.
5219 * vmsgetargs.c: Likewise.
5220
5221 2000-03-31 Akim Demaille <akim@epita.fr>
5222
5223 Clean up the error reporting functions.
5224
5225 * src/report.c: New file.
5226 * src/report.h: Likewise.
5227 * src/Makefile.am: Adjust.
5228 * m4/error.m4: New file.
5229 * m4/Makefile.am: Adjust.
5230 * configure.in (jm_PREREQ_ERROR): Call it.
5231 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
5232 Remove.
5233 (fatal, fatals): Remove. All callers use complain.c::fatal.
5234 (warn, warni, warns, warnss, warnss): Remove. All callers use
5235 complain.c::complain.
5236 (toomany): Remove, use fatal instead.
5237 * src/files.c (done): No argument, use complain_message_count.
5238 * src/main.c (main): Register `done' to `atexit'.
5239
5240 * src/getargs.c (usage): More `fputs', less `fprintf'.
5241
5242 2000-03-28 Akim Demaille <akim@epita.fr>
5243
5244 * lib/: New directory.
5245 * Makefile.am (SUBDIRS): Adjust.
5246 * configure.in: Adjust.
5247 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
5248 useless.
5249 * src/alloca.c: Moved to lib/.
5250 * src/getopt.c: Likewise.
5251 * src/getopt1.c: Likewise.
5252 * src/getopt.h: Likewise.
5253 * src/ansi2knr.c: Likewise.
5254 * src/ansi2knr.1: Likewise.
5255 * src/Makefile.am: Adjust.
5256 * lib/Makefile.am: New file.
5257
5258 2000-03-28 Akim Demaille <akim@epita.fr>
5259
5260 * src/getargs.c (usage): Refresh the help message.
5261
5262 2000-03-17 Akim Demaille <akim@epita.fr>
5263
5264 * src/getopt1.c: Updated from textutils 2.0e
5265 * src/getopt.c: Likewise.
5266 * src/getopt.h: Likewise.
5267
5268 2000-03-17 Akim Demaille <akim@epita.fr>
5269
5270 * src/Makefile.am (bison.simple): Fix the awk program: quote only
5271 the file name, not the whole `#line LINE FILE'.
5272
5273 2000-03-17 Akim Demaille <akim@epita.fr>
5274
5275 On syntax errors, report the token on which we choked.
5276
5277 * src/bison.s1 (yyparse): In the label yyerrlab, when
5278 YYERROR_VERBOSE, add yychar in msg.
5279
5280 2000-03-17 Akim Demaille <akim@epita.fr>
5281
5282 * src/reader.c (copy_at): New function.
5283 (copy_guard): Use it.
5284 (copy_action): Use it.
5285
5286 2000-03-17 Akim Demaille <akim@epita.fr>
5287
5288 Be kind to translators, save some useless translations.
5289
5290 * src/main.c (banner): New function.
5291 (fatal_banner): Use it.
5292 (warn_banner): Use it.
5293
5294 2000-03-17 Akim Demaille <akim@epita.fr>
5295
5296 * src/reader.c (copy_definition): Use copy_string and
5297 copy_comment. Removed now unused `match', `ended',
5298 `cplus_comment'.
5299 (copy_comment, copy_string): Moved, to be visible from
5300 copy_definition.
5301
5302 2000-03-17 Akim Demaille <akim@epita.fr>
5303
5304 * src/reader.c (copy_string): Declare `static inline'. No
5305 problems with inline, since it is checked by configure.
5306 (copy_comment): Likewise.
5307
5308 2000-03-17 Akim Demaille <akim@epita.fr>
5309
5310 * src/reader.c (packsymbols): Formatting changes.
5311
5312 2000-03-17 Akim Demaille <akim@epita.fr>
5313
5314 * src/reader.c (copy_comment): New function, factored out from:
5315 (copy_action): Use it. Removed now unused `match', `ended',
5316 `cplus_comment'.
5317 (copy_guard): Likewise.
5318
5319 2000-03-17 Akim Demaille <akim@epita.fr>
5320
5321 * src/reader.c (copy_string): New function, factored out from:
5322 (copy_action): Use it.
5323 (copy_guard): Likewise.
5324
5325 2000-03-17 Akim Demaille <akim@epita.fr>
5326
5327 Change the handling of @s so that they behave exactly like $s.
5328 There is now a pseudo variable @$ (readble and writable), location
5329 of the lhs of the rule (by default ranging from the location of
5330 the first symbol of the rhs, to the location of the last symbol,
5331 or, if the rhs is empty, YYLLOC).
5332
5333 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
5334 yyval.
5335 (yyparse): When providing a default semantic action, provide a
5336 default location action.
5337 (after the $): No longer change `*YYLSP', just stack YYLOC the
5338 same way you stack YYVAL.
5339 * src/reader.c (read_declarations): Use warns.
5340 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
5341 (copy_action, case '@'): Likewise.
5342 Use a standard error message, to save useless work from
5343 translators.
5344
5345 2000-03-17 Akim Demaille <akim@epita.fr>
5346
5347 * src/bison.s1: Formatting and cosmetics changes.
5348 * src/reader.c: Likewise.
5349 Update the Copyright notice.
5350
5351 2000-03-17 Akim Demaille <akim@epita.fr>
5352
5353 * src/bison.s1 (#line): All set to `#line' only, since the
5354 Makefile now handles them.
5355
5356 2000-03-16 Akim Demaille <akim@epita.fr>
5357
5358 * src/output.c (output_rule_data): Output the documentation of
5359 some of the tables.
5360 (Copyright notice): Update.
5361 Formatting changes.
5362
5363 2000-03-16 Akim Demaille <akim@epita.fr>
5364
5365 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
5366 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
5367 One `#if YYDEBUG' remains, since it uses variables which are
5368 defined only if `YYDEBUG != 0'.
5369
5370 2000-03-16 Akim Demaille <akim@epita.fr>
5371
5372 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
5373 and related variables so that the similarities are highlighted.
5374
5375 2000-03-16 Akim Demaille <akim@epita.fr>
5376
5377 * src/bison.s1: Properly indent CPP directives.
5378
5379 2000-03-16 Akim Demaille <akim@epita.fr>
5380
5381 * src/bison.s1: Properly indent the `alloca' CPP section.
5382
5383 2000-03-16 Akim Demaille <akim@epita.fr>
5384
5385 Do not hard code values of directories in `configure.in'.
5386 Update the `configure' tool chain.
5387
5388 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
5389 src/makefile.am.
5390 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
5391 (AC_OUTPUT): Add m4/Makefile.
5392 Bump to bison 1.28a, 1.29 has never been released.
5393 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
5394 handled via src/Makefile.am.
5395 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
5396 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
5397 autoheader.
5398 * Makefile.am (SUBDIRS): Add m4.
5399 (ACLOCAL_AM_FLAGS): New variable.
5400 (AUTOMAKE_OPTIONS): Add check-news.
5401 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
5402 the proper line number and file name.
5403 (DEFS): Propagate the location of bison library files and of the
5404 locale files.
5405 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
5406 builddir.
5407 * acinclude.m4: Remove, replaced by the directory m4.
5408 * m4/Makefile.am (EXTRA_DIST): New variable.
5409 * m4/gettext.m4: New file, from the fileutils.
5410 * m4/lcmessage.m4: Likewise
5411 * m4/progtest.m4: Likewise.
5412 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
5413
5414 2000-03-10 Akim Demaille <akim@epita.fr>
5415
5416 * src/closure.c:
5417 Formatting changes of various comments.
5418 Respect the GNU coding standards at various places.
5419 Don't use `_()' when no translation is needed.
5420
5421 1999-12-13 Jesse Thilo <jthilo@gnu.org>
5422
5423 * src/files.c:
5424 OS/2 honors TMPDIR environment variable.
5425
5426 1999-12-13 Jesse Thilo <jthilo@gnu.org>
5427
5428 * doc/bison.texinfo: Tweaked spelling and grammar.
5429 Updated ISBN.
5430 Removed reference to price of printed copy.
5431 Mention BISON_SIMPLE and BISON_HAIRY.
5432
5433 1999-12-13 Jesse Thilo <jthilo@gnu.org>
5434
5435 * configure.in, NEWS:
5436 Bison 1.29 released.
5437
5438 1999-10-27 Jesse Thilo <jthilo@gnu.org>
5439
5440 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
5441 Added reference card.
5442
5443 1999-07-26 Jesse Thilo <jthilo@gnu.org>
5444
5445 * po/ru.po: Added Russian translation.
5446
5447 1999-07-26 Jesse Thilo <jthilo@gnu.org>
5448
5449 * configure.in: Added Russian translation.
5450
5451 1999-07-06 Jesse Thilo <jthilo@gnu.org>
5452
5453 * configure.in, NEWS, README:
5454 Released version 1.28.
5455
5456 1999-06-14 Jesse Thilo <jthilo@gnu.org>
5457
5458 * src/system.h:
5459 Squashed redefinition warning on some systems.
5460
5461 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
5462 Have configure build version string instead of relying on ANSI string
5463 concatentation.
5464
5465 1999-06-14 Jesse Thilo <jthilo@gnu.org>
5466
5467 * po/POTFILES.in: Got rid of version.c.
5468
5469 1999-06-14 Jesse Thilo <jthilo@gnu.org>
5470
5471 * acconfig.h, configure.in:
5472 Have configure build version string instead of relying on ANSI string
5473 concatentation.
5474
5475 1999-06-08 Jesse Thilo <jthilo@gnu.org>
5476
5477 * doc/bison.1:
5478 Dropped mention of `+' for long-named options.
5479
5480 1999-05-30 Jesse Thilo <jthilo@gnu.org>
5481
5482 * src/files.c: Added <unistd.h> for unlink().
5483
5484 * src/Makefile.am, src/system.h:
5485 I18n fixes.
5486
5487 1999-05-30 Jesse Thilo <jthilo@gnu.org>
5488
5489 * README: Added a FAQ list.
5490
5491 * configure.in, acconfig.h:
5492 I18n fixes.
5493
5494 1999-05-30 Jesse Thilo <jthilo@gnu.org>
5495
5496 * doc/FAQ, doc/Makefile.am:
5497 Added a FAQ list.
5498
5499 1999-05-19 Jesse Thilo <jthilo@gnu.org>
5500
5501 * src/alloc.h, src/symtab.h, src/version.c:
5502 Protected inclusion of "config.h" with HAVE_CONFIG_H.
5503
5504 1999-04-18 Jesse Thilo <jthilo@gnu.org>
5505
5506 * src/.cvsignore, src/Makefile.am:
5507 Reorganized: sources in `src', documentation in `doc'.
5508
5509 * src/lex.c (literalchar):
5510 fixed the code for escaping double quotes (thanks
5511 Jonathan Czisny.)
5512
5513 1999-04-18 Jesse Thilo <jthilo@gnu.org>
5514
5515 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
5516 Adjusted paths to reflect directory reorganization.
5517
5518 1999-04-18 Jesse Thilo <jthilo@gnu.org>
5519
5520 * doc/.cvsignore, doc/Makefile.am:
5521 Reorganized: sources in `src', documentation in `doc'.
5522
5523 1999-04-18 Jesse Thilo <jthilo@gnu.org>
5524
5525 * configure.in:
5526 Updated AC_INIT file to reflect directory reorganization.
5527
5528 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
5529 Reorganized: sources in `src', documentation in `doc'.
5530
5531 1999-04-13 Jesse Thilo <jthilo@gnu.org>
5532
5533 * src/allocate.c:
5534 Don't declare calloc() and realloc() if not necessary.
5535
5536 1999-04-13 Jesse Thilo <jthilo@gnu.org>
5537
5538 * configure.in, acconfig.h, acinclude.m4:
5539 Don't declare calloc() and realloc() if not necessary.
5540
5541 1999-03-23 Jesse Thilo <jthilo@gnu.org>
5542
5543 * po/.cvsignore: Added i18n support.
5544
5545 1999-03-23 Jesse Thilo <jthilo@gnu.org>
5546
5547 * acconfig.h, configure.in, Makefile.am:
5548 Added i18n support.
5549
5550 1999-03-22 Jesse Thilo <jthilo@gnu.org>
5551
5552 * src/bison.s1: Fixed #line numbers.
5553
5554 1999-03-15 Jesse Thilo <jthilo@gnu.org>
5555
5556 * po/es.po, po/fr.po, po/nl.po, po/de.po:
5557 Added PO files from Translation Project.
5558
5559 1999-03-03 Jesse Thilo <jthilo@gnu.org>
5560
5561 * Makefile.am:
5562 Added support for non-ANSI compilers (ansi2knr).
5563
5564 1999-02-16 Jesse Thilo <jthilo@gnu.org>
5565
5566 * configure.in: Bumped version number to 1.27.
5567
5568 * Makefile.am:
5569 Added `bison.simple' to list of files removed by `make distclean'.
5570
5571 1999-02-12 Jesse Thilo <jthilo@gnu.org>
5572
5573 * src/files.c, src/files.h:
5574 Defined locations of parser files in config.h instead of Makefile.
5575
5576 1999-02-12 Jesse Thilo <jthilo@gnu.org>
5577
5578 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
5579 Defined locations of parser files in config.h instead of Makefile.
5580
5581 1999-02-09 Jesse Thilo <jthilo@gnu.org>
5582
5583 * Makefile.am:
5584 Removed inappropriate use of $< macro.
5585
5586 1999-02-05 Jesse Thilo <jthilo@gnu.org>
5587
5588 * po/Makefile.in.in, po/POTFILES.in:
5589 Add `po' directory skeleton.
5590
5591 1999-01-27 Jesse Thilo <jthilo@gnu.org>
5592
5593 * README: Document help-bison list.
5594
5595 * configure.in: Add check for mkstemp().
5596
5597 1999-01-20 Jesse Thilo <jthilo@gnu.org>
5598
5599 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
5600 Hush a few compiler warnings.
5601
5602 * src/files.c:
5603 Add tryclose(), which verifies that fclose was successful.
5604 Hush a couple of compiler warnings.
5605
5606 1999-01-20 Jesse Thilo <jthilo@gnu.org>
5607
5608 * Makefile.am, OChangeLog:
5609 ChangeLog is now automatically generated. Include the old version as
5610 OChangeLog.
5611
5612 1999-01-14 Jesse Thilo <jthilo@gnu.org>
5613
5614 * src/gram.h, src/lalr.c, src/lex.c, src/lex.h, src/machine.h, src/main.c, src/nullable.c, src/output.c, src/print.c, src/reader.c, src/reduce.c, src/state.h, src/symtab.c, src/symtab.h, src/types.h, src/vmsgetargs.c, src/warshall.c, src/allocate.c, src/alloc.h, src/bison.s1, src/closure.c, src/conflicts.c, src/derives.c, src/files.c, src/files.h, src/getargs.c, src/gram.c, src/LR0.c:
5615 Update FSF address.
5616
5617 1999-01-14 Jesse Thilo <jthilo@gnu.org>
5618
5619 * doc/bison.texinfo: Fix formatting glitch.
5620
5621 * doc/bison.texinfo: Update FSF address.
5622
5623 1999-01-14 Jesse Thilo <jthilo@gnu.org>
5624
5625 * acconfig.h: Update FSF address.
5626
5627 1999-01-08 Jesse Thilo <jthilo@gnu.org>
5628
5629 * src/system.h:
5630 Don't define PACKAGE here, since config.h defines it.
5631
5632 1998-12-30 Jesse Thilo <jthilo@gnu.org>
5633
5634 * src/reader.c: Update copyright date.
5635
5636 * src/main.c:
5637 Ditch sprintf to statically-sized buffers in fatal/warn functions in
5638 favor of output directly to stderr (avoids buffer overruns).
5639
5640 * src/reader.c: Some checks for premature EOF.
5641
5642 * src/allocate.c, src/alloc.h, src/closure.c, src/conflicts.c, src/derives.c, src/getargs.c, src/gram.c, src/lalr.c, src/lex.c, src/LR0.c, src/main.c, src/nullable.c, src/output.c, src/print.c, src/reduce.c, src/symtab.c, src/symtab.h, src/warshall.c:
5643 Use prototypes if the compiler understands them.
5644
5645 * src/files.c: Honor TMPDIR on Unix hosts.
5646 Use prototypes if the compiler understands them.
5647
5648 * src/reader.c:
5649 Fix a couple of buffer overrun bugs.
5650 Use prototypes if the compiler understands them.
5651
5652 * src/system.h: Include unistd.h and ctype.h.
5653 Use #ifdef instead of #if for NLS symbols.
5654
5655 1998-12-30 Jesse Thilo <jthilo@gnu.org>
5656
5657 * doc/bison.texinfo:
5658 Delete comment "consider using @set for edition number, etc..." since
5659 we now are doing so.
5660
5661 1998-12-30 Jesse Thilo <jthilo@gnu.org>
5662
5663 * configure.in:
5664 Use prototypes if the compiler understands them.
5665
5666 * NEWS: Document 1.26 highlights.
5667
5668 * Makefile.am: Require Automake 1.3 or later.
5669
5670 * acconfig.h:
5671 Use prototypes if the compiler understands them.
5672
5673 1998-12-29 Jesse Thilo <jthilo@gnu.org>
5674
5675 * src/version.c:
5676 Use VERSION symbol from automake for version number.
5677
5678 1998-12-29 Jesse Thilo <jthilo@gnu.org>
5679
5680 * acconfig.h, configure.in, version.cin:
5681 Use VERSION symbol from automake for version number.
5682
5683 1998-11-28 Jesse Thilo <jthilo@gnu.org>
5684
5685 * Makefile.am:
5686 Distribute original version of simple parser (bison.s1), not built
5687 version (bison.simple).
5688
5689 1998-11-28 Jesse Thilo <jthilo@gnu.org>
5690
5691 * doc/bison.texinfo: Add info dir entry.
5692
5693 * doc/bison.texinfo:
5694 Let automake put version number into documentation.
5695
5696 1998-11-26 Jesse Thilo <jthilo@gnu.org>
5697
5698 * src/bison.cld, src/build.com, src/vmshlp.mar:
5699 Add non-RCS files from /gd/gnu/bison.
5700
5701 1998-11-26 Jesse Thilo <jthilo@gnu.org>
5702
5703 * doc/bison.1:
5704 Document the BISON_HAIRY and BISON_SIMPLE variables.
5705
5706 1998-11-25 Jesse Thilo <jthilo@gnu.org>
5707
5708 * src/version.c: Build version.c automatically.
5709
5710 * src/reader.c:
5711 Fix token numbering (used to start at 258, not 257).
5712
5713 * src/system.h: Include config.h.
5714
5715 * src/getargs.c: Update bug report address.
5716
5717 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
5718 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
5719
5720 1998-11-25 Jesse Thilo <jthilo@gnu.org>
5721
5722 * Makefile.am:
5723 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
5724
5725 * configure.in, version.cin:
5726 Build version.c automatically.
5727
5728 * AUTHORS: Add AUTHORS file.
5729
5730 * README: Update bug report address.
5731
5732 * bison.simple:
5733 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
5734
5735 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
5736 Add automake stuff.
5737
5738 1998-11-25 Jesse Thilo <jthilo@gnu.org>
5739
5740 * doc/bison.texinfo: Clean up some formatting.
5741
5742 1998-05-05 Richard Stallman <rms@gnu.org>
5743
5744 * doc/bison.texinfo:
5745 Explain better why to make a pure parser.
5746
5747 1998-01-05 Richard Stallman <rms@gnu.org>
5748
5749 * src/files.c (openfiles):
5750 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
5751 find a temporary directory, if possible. Do not unlink files while
5752 they are open.
5753
5754 1997-08-25 Richard Stallman <rms@gnu.org>
5755
5756 * src/reader.c (stack_offset;):
5757 Change some warni to warns.
5758
5759 * src/lex.c (literalchar): Use warns, not warni.
5760
5761 1997-06-28 Richard Stallman <rms@gnu.org>
5762
5763 * src/bison.s1: Add a Bison version comment.
5764
5765 * src/main.c (fatal, warn, berror):
5766 Use program_name.
5767
5768 1997-06-28 Richard Stallman <rms@gnu.org>
5769
5770 * Makefile.in (bison_version): New variable.
5771 (dist): Use that variable.
5772 (bison.s1): Substitute the Bison version into bison.simple.
5773
5774 * bison.simple: Add a Bison version comment.
5775
5776 1997-06-18 Richard Stallman <rms@gnu.org>
5777
5778 * src/main.c (fatal, warn, berror):
5779 Make error messages standard.
5780 (toomany): Improve error message text.
5781
5782 * src/LR0.c, src/closure.c, src/conflicts.c, src/derives.c, src/files.c, src/lalr.c, src/lex.c, src/nullable.c, src/output.c, src/print.c, src/reader.c, src/reduce.c, src/symtab.c:
5783 new.h renamed to alloc.h.
5784
5785 1997-06-18 Richard Stallman <rms@gnu.org>
5786
5787 * Makefile.in: new.h renamed to alloc.h.
5788
5789 1997-05-24 Richard Stallman <rms@gnu.org>
5790
5791 * src/lex.c (literalchar):
5792 Fix the code for escaping \, " and '.
5793
5794 (lex): Avoid trouble when there are many chars
5795 to discard in a char literal with just several chars in it.
5796
5797 1997-05-17 Richard Stallman <rms@gnu.org>
5798
5799 * src/bison.s1:
5800 Use malloc, if using alloca is troublesome.
5801 (YYSTACK_USE_ALLOCA): New flag macro.
5802 Define it for some systems and compilers.
5803 (YYSTACK_ALLOC): New macro.
5804 (yyparse): Use YYSTACK_ALLOC to allocate stack.
5805 If it was malloc'd, free it.
5806
5807 1997-05-17 Richard Stallman <rms@gnu.org>
5808
5809 * bison.simple:
5810 Use malloc, if using alloca is troublesome.
5811 (YYSTACK_USE_ALLOCA): New flag macro.
5812 Define it for some systems and compilers.
5813 (YYSTACK_ALLOC): New macro.
5814 (yyparse): Use YYSTACK_ALLOC to allocate stack.
5815 If it was malloc'd, free it.
5816
5817 1997-04-23 Richard Stallman <rms@gnu.org>
5818
5819 * src/bison.s1:
5820 (alloca) [__hpux]: Always define as __builtin_alloca.
5821
5822 1997-04-23 Richard Stallman <rms@gnu.org>
5823
5824 * bison.simple:
5825 (alloca) [__hpux]: Always define as __builtin_alloca.
5826
5827 1997-04-22 Richard Stallman <rms@gnu.org>
5828
5829 * src/bison.s1:
5830 [__hpux]: Include alloca.h (right for HPUX 10)
5831 instead of declaring alloca (right for HPUX 9).
5832
5833 * src/bison.s1 (__yy_memcpy):
5834 Declare arg `count' as unsigned int.
5835 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
5836
5837 1997-04-22 Richard Stallman <rms@gnu.org>
5838
5839 * bison.simple:
5840 [__hpux]: Include alloca.h (right for HPUX 10)
5841 instead of declaring alloca (right for HPUX 9).
5842
5843 * bison.simple (__yy_memcpy):
5844 Declare arg `count' as unsigned int.
5845 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
5846
5847 1997-01-03 Richard Stallman <rms@gnu.org>
5848
5849 * src/allocate.c: [__STDC__ or _MSC_VER]:
5850 Declare calloc and realloc to return void *.
5851
5852 1997-01-02 Richard Stallman <rms@gnu.org>
5853
5854 * src/system.h:
5855 [_MSC_VER]: Include stdlib.h and process.h.
5856 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
5857
5858 * src/main.c (main): Return FAILURE as a value.
5859 (printable_version): Declare arg as int, not char.
5860
5861 1997-01-02 Richard Stallman <rms@gnu.org>
5862
5863 * Makefile.in (dist):
5864 Explicitly check for symlinks, and copy them.
5865
5866 1996-12-19 Richard Stallman <rms@gnu.org>
5867
5868 * src/files.c:
5869 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
5870
5871 1996-12-18 Paul Eggert <eggert@gnu.org>
5872
5873 * src/bison.s1 (yyparse):
5874 If __GNUC__ and YYPARSE_PARAM are both defined,
5875 declare yyparse to have a void * argument.
5876
5877 1996-12-18 Paul Eggert <eggert@gnu.org>
5878
5879 * bison.simple (yyparse):
5880 If __GNUC__ and YYPARSE_PARAM are both defined,
5881 declare yyparse to have a void * argument.
5882
5883 1996-12-17 Richard Stallman <rms@gnu.org>
5884
5885 * src/reduce.c (nbits): Add some casts.
5886
5887 1996-08-12 Richard Stallman <rms@gnu.org>
5888
5889 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
5890
5891 1996-08-12 Richard Stallman <rms@gnu.org>
5892
5893 * bison.simple: Test _MSDOS as well as _MSDOS_.
5894
5895 1996-07-31 Richard Stallman <rms@gnu.org>
5896
5897 * src/bison.s1:
5898 [__sun && __i386]: Include alloca.h.
5899
5900 1996-07-31 Richard Stallman <rms@gnu.org>
5901
5902 * bison.simple:
5903 [__sun && __i386]: Include alloca.h.
5904
5905 1996-07-30 Richard Stallman <rms@gnu.org>
5906
5907 * src/bison.s1: Comment change.
5908
5909 * src/bison.s1: Test _MSDOS_, not MSDOS.
5910
5911 1996-07-30 Richard Stallman <rms@gnu.org>
5912
5913 * bison.simple: Comment change.
5914
5915 * bison.simple: Test _MSDOS_, not MSDOS.
5916
5917 1996-06-01 Richard Stallman <rms@gnu.org>
5918
5919 * src/reduce.c, src/reader.c, src/print.c, src/output.c, src/nullable.c, src/lex.c, src/lalr.c, src/getargs.c, src/derives.c, src/conflicts.c, src/closure.c, src/allocate.c:
5920 Insert `_' macro around many string constants.
5921
5922 * src/main.c:
5923 Insert `_' macro around many string constants.
5924
5925 (main): Call setlocale, bindtextdomain and textdomain.
5926
5927 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
5928 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
5929 [ENABLE_NLS]: Include libintl.h.
5930 [ENABLE_NLS] (gettext): Define.
5931 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
5932 (N_, PACKAGE, LOCALEDIR): New macros.
5933
5934 1996-06-01 Richard Stallman <rms@gnu.org>
5935
5936 * POTFILES.in: New file.
5937
5938 * Makefile.in (allocate.o):
5939 Define target explicitly.
5940
5941 * Makefile.in (CFLAGS): Set to @CFLAGS@.
5942 (LDFLAGS): Set to @LDFLAGS@.
5943 (configure): Run autoconf only if preceding `cd' succeeds.
5944 (bison.s1): Redirect output to temporary file then move the
5945 temporary to the target, rather than redirecting directly to bison.s1.
5946 (clean): Remove config.status and config.log.
5947 (distclean): Don't remove config.status here.
5948
5949 1996-05-12 Richard Stallman <rms@gnu.org>
5950
5951 * src/bison.s1:
5952 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
5953
5954 1996-05-12 Richard Stallman <rms@gnu.org>
5955
5956 * bison.simple:
5957 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
5958
5959 1996-05-11 Richard Stallman <rms@gnu.org>
5960
5961 * src/bison.s1 (__yy_memcpy):
5962 Really reorder the args, as was supposedly done on Feb 14 1995.
5963 (yyparse): Calls changed accordingly.
5964
5965 1996-05-11 Richard Stallman <rms@gnu.org>
5966
5967 * Makefile.in (dist): Don't use $(srcdir).
5968
5969 * bison.simple (__yy_memcpy):
5970 Really reorder the args, as was supposedly done on Feb 14 1995.
5971 (yyparse): Calls changed accordingly.
5972
5973 1996-01-27 Richard Stallman <rms@gnu.org>
5974
5975 * src/output.c (output_rule_data):
5976 Test YYERROR_VERBOSE in the conditional
5977 around the definition of ttyname.
5978
5979 1995-12-29 Richard Stallman <rms@gnu.org>
5980
5981 * src/bison.s1:
5982 Fix line numbers in #line commands.
5983
5984 1995-12-29 Richard Stallman <rms@gnu.org>
5985
5986 * bison.simple:
5987 Fix line numbers in #line commands.
5988
5989 1995-12-27 Richard Stallman <rms@gnu.org>
5990
5991 * src/bison.s1 (YYPARSE_PARAM_DECL):
5992 In C++, make it always null.
5993 (YYPARSE_PARAM_ARG): New macro.
5994 (yyparse): Use YYPARSE_PARAM_ARG.
5995
5996 1995-12-27 Richard Stallman <rms@gnu.org>
5997
5998 * bison.simple (YYPARSE_PARAM_DECL):
5999 In C++, make it always null.
6000 (YYPARSE_PARAM_ARG): New macro.
6001 (yyparse): Use YYPARSE_PARAM_ARG.
6002
6003 1995-11-29 Richard Stallman <rms@gnu.org>
6004
6005 * doc/bison.texinfo:
6006 Describe literal string tokens, %raw, %no_lines, %token_table.
6007
6008 1995-11-29 Daniel Hagerty <hag@gnu.org>
6009
6010 * doc/bison.texinfo: Fixed update date
6011
6012 1995-10-16 Richard Stallman <rms@gnu.org>
6013
6014 * src/version.c: Version 1.25.
6015
6016 1995-10-16 Richard Stallman <rms@gnu.org>
6017
6018 * NEWS: *** empty log message ***
6019
6020 1995-10-16 Richard Stallman <rms@gnu.org>
6021
6022 * doc/bison.1, doc/bison.rnh:
6023 Add new options.
6024
6025 1995-10-15 Richard Stallman <rms@gnu.org>
6026
6027 * src/vmsgetargs.c, src/getargs.c:
6028 Added -n, -k, and -raw switches.
6029 (noparserflag, toknumflag, rawtoknumflag): New variables.
6030
6031 * src/symtab.h (SALIAS):
6032 New #define for adding aliases to %token.
6033 (struct bucket): Added `alias' field.
6034
6035 * src/reduce.c (reduce_grammar):
6036 Revise error message.
6037 (print_notices): Remove final `.' from error message.
6038
6039 * src/reader.c (reader_output_yylsp):
6040 New function.
6041 (readgram): Use `#if 0' around code that accepted %command
6042 inside grammar rules: The documentation doesn't allow it,
6043 and it will fail since the %command processors scan for the next %.
6044 (parse_token_decl): Extended the %token
6045 declaration to allow a multi-character symbol as an alias.
6046 (parse_thong_decl): New function.
6047 (read_declarations): Added %thong declarations.
6048 (read_declarations): Handle NOOP to deal with allowing
6049 % declarations as another means to specify the flags.
6050 (readgram): Allow %prec prior to semantics embedded in a rule.
6051 (skip_to_char, read_declarations, copy_definition)
6052 (parse_token_decl, parse_start_decl, parse_type_decl)
6053 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
6054 (get_type_name, copy_guard, copy_action, readgram)
6055 (get_type, packsymbols): Revised most error messages.
6056 Changed `fatal' to `warnxxx' to avoid aborting for error.
6057 Revised and use multiple warnxxx functions to avoid using VARARGS1.
6058 (read_declarations): Improve the error message for
6059 an invalid character. Do not abort.
6060 (read_declarations, copy_guard, copy_action): Use
6061 printable_version to avoid unprintable characters in printed output.
6062 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
6063 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
6064 Allow the type of a non-terminal can be given
6065 more than once, as long as all specifications give the same type.
6066
6067 * src/output.c:
6068 (output_headers, output_trailers, output, output_gram)
6069 (output_rule_data): Implement noparserflag variable.
6070 Implement toknumflag variable.
6071 (output): Call reader_output_yylsp to output LTYPESTR.
6072
6073 * src/main.c (main):
6074 If reader sees an error, don't process the grammar.
6075 (fatals): Updated to not use VARARGS1.
6076 (printable_version, int_to_string, warn, warni, warns, warnss)
6077 (warnsss): New error reporting functions. Avoid abort for error.
6078
6079 * src/lex.h:
6080 Added THONG and NOOP for alias processing.
6081 Added SETOPT for the new code that allows setting options with %flags.
6082
6083 * src/lex.c:
6084 Include getopt.h. Add some extern decls.
6085 (safegetc): New function to deal with EOF gracefully.
6086 (literalchar); new function to deal with reading \ escapes.
6087 (lex): Use literalchar.
6088 (lex): Implemented "..." tokens.
6089 (literalchar, lex, parse_percent_token): Made tokenbuffer
6090 always contain the token. This includes growing the token
6091 buffer while reading an integer.
6092 (parse_percent_token): Replaced if-else statement with percent_table.
6093 (parse_percent_token): Added % declarations as another
6094 way to specify the flags -n, -l, and -r. Also added hooks for
6095 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
6096 major changes to files.c.
6097 (lex) Retain in the incoming stream a character following
6098 an incorrect '/'.
6099 (skip_white_space, lex): Revised most error messages
6100 and changed fatal to warn to avoid aborting.
6101 (percent_table): Added %thong declarations.
6102
6103 * src/gram.h: Comment changes.
6104
6105 * src/files.c (openfiles, open_extra_files, done):
6106 Add faction flag
6107 and actfile file. Handle noparserflag. Both for -n switch.
6108
6109 * src/conflicts.c (resolve_sr_conflict):
6110 Remove use of alloca.
6111
6112 1995-06-01 Jim Meyering <meyering@gnu.org>
6113
6114 * doc/bison.texinfo: *** empty log message ***
6115
6116 1995-05-06 Richard Stallman <rms@gnu.org>
6117
6118 * src/bison.s1: Comment change.
6119
6120 1995-05-06 Richard Stallman <rms@gnu.org>
6121
6122 * bison.simple: Comment change.
6123
6124 1995-05-03 Richard Stallman <rms@gnu.org>
6125
6126 * src/version.c: Version now 1.24.
6127
6128 * src/bison.s1: Change distribution terms.
6129
6130 * src/version.c: Version now 1.23.
6131
6132 1995-05-03 Richard Stallman <rms@gnu.org>
6133
6134 * doc/bison.texinfo:
6135 Rewrite "Conditions for Using Bison".
6136 Update version to 1.24.
6137
6138 1995-05-03 Richard Stallman <rms@gnu.org>
6139
6140 * bison.simple: Change distribution terms.
6141
6142 1995-02-23 Richard Stallman <rms@gnu.org>
6143
6144 * src/files.c: Test __VMS_POSIX as well as VMS.
6145
6146 1995-02-14 Jim Meyering <meyering@gnu.org>
6147
6148 * src/bison.s1 (__yy_memcpy):
6149 Renamed from __yy_bcopy to avoid
6150 confusion. Reverse FROM and TO arguments to be consistent with
6151 those of memcpy.
6152
6153 1995-02-14 Jim Meyering <meyering@gnu.org>
6154
6155 * bison.simple (__yy_memcpy):
6156 Renamed from __yy_bcopy to avoid
6157 confusion. Reverse FROM and TO arguments to be consistent with
6158 those of memcpy.
6159
6160 1994-11-10 David J. MacKenzie <djm@gnu.org>
6161
6162 * NEWS: reformat
6163
6164 * NEWS: New file.
6165
6166 * Makefile.in (DISTFILES): Include NEWS.
6167
6168 * Makefile.in (DISTFILES):
6169 Include install-sh, not install.sh.
6170
6171 * configure.in: Update to Autoconf v2 macro names.
6172
6173 1994-10-05 David J. MacKenzie <djm@gnu.org>
6174
6175 * Makefile.in: fix typo
6176
6177 * Makefile.in (prefix, exec_prefix):
6178 Let configure set them.
6179
6180 1994-09-28 David J. MacKenzie <djm@gnu.org>
6181
6182 * Makefile.in: Set datadir to $(prefix)/share.
6183
6184 1994-09-15 Richard Stallman <rms@gnu.org>
6185
6186 * src/bison.s1:
6187 Update copyright notice and GPL version.
6188
6189 1994-09-15 Richard Stallman <rms@gnu.org>
6190
6191 * bison.simple:
6192 Update copyright notice and GPL version.
6193
6194 1994-07-12 Richard Stallman <rms@gnu.org>
6195
6196 * src/reduce.c, src/reader.c:
6197 entered into RCS
6198
6199 1994-05-05 David J. MacKenzie <djm@gnu.org>
6200
6201 * Makefile.in: entered into RCS
6202
6203 1994-03-26 Richard Stallman <rms@gnu.org>
6204
6205 * src/bison.s1: entered into RCS
6206
6207 1994-03-26 Richard Stallman <rms@gnu.org>
6208
6209 * bison.simple: entered into RCS
6210
6211 1994-03-25 Richard Stallman <rms@gnu.org>
6212
6213 * src/main.c: entered into RCS
6214
6215 1994-03-24 Richard Stallman <rms@gnu.org>
6216
6217 * src/conflicts.c: entered into RCS
6218
6219 1994-01-02 Richard Stallman <rms@gnu.org>
6220
6221 * Makefile.in: *** empty log message ***
6222
6223 1993-11-21 Richard Stallman <rms@gnu.org>
6224
6225 * src/bison.s1: *** empty log message ***
6226
6227 1993-11-21 Richard Stallman <rms@gnu.org>
6228
6229 * doc/bison.texinfo: entered into RCS
6230
6231 * doc/bison.texinfo: *** empty log message ***
6232
6233 1993-11-21 Richard Stallman <rms@gnu.org>
6234
6235 * bison.simple: *** empty log message ***
6236
6237 1993-10-25 David J. MacKenzie <djm@gnu.org>
6238
6239 * doc/bison.texinfo: *** empty log message ***
6240
6241 1993-10-19 Richard Stallman <rms@gnu.org>
6242
6243 * src/bison.s1: *** empty log message ***
6244
6245 1993-10-19 Richard Stallman <rms@gnu.org>
6246
6247 * bison.simple: *** empty log message ***
6248
6249 1993-10-14 Richard Stallman <rms@gnu.org>
6250
6251 * src/bison.s1: *** empty log message ***
6252
6253 1993-10-14 Richard Stallman <rms@gnu.org>
6254
6255 * bison.simple: *** empty log message ***
6256
6257 1993-09-14 David J. MacKenzie <djm@gnu.org>
6258
6259 * doc/bison.texinfo: *** empty log message ***
6260
6261 1993-09-13 Noah Friedman <friedman@gnu.org>
6262
6263 * Makefile.in: *** empty log message ***
6264
6265 1993-09-10 Richard Stallman <rms@gnu.org>
6266
6267 * src/conflicts.c: *** empty log message ***
6268
6269 * src/system.h: entered into RCS
6270
6271 1993-09-10 Richard Stallman <rms@gnu.org>
6272
6273 * doc/bison.1: entered into RCS
6274
6275 1993-09-06 Noah Friedman <friedman@gnu.org>
6276
6277 * src/version.c: entered into RCS
6278
6279 1993-09-06 Noah Friedman <friedman@gnu.org>
6280
6281 * Makefile.in: *** empty log message ***
6282
6283 1993-07-30 David J. MacKenzie <djm@gnu.org>
6284
6285 * Makefile.in: *** empty log message ***
6286
6287 1993-07-24 Richard Stallman <rms@gnu.org>
6288
6289 * src/bison.s1: *** empty log message ***
6290
6291 1993-07-24 Richard Stallman <rms@gnu.org>
6292
6293 * bison.simple: *** empty log message ***
6294
6295 1993-07-08 David J. MacKenzie <djm@gnu.org>
6296
6297 * Makefile.in: *** empty log message ***
6298
6299 1993-07-04 Richard Stallman <rms@gnu.org>
6300
6301 * src/bison.s1: *** empty log message ***
6302
6303 1993-07-04 Richard Stallman <rms@gnu.org>
6304
6305 * bison.simple: *** empty log message ***
6306
6307 1993-06-26 David J. MacKenzie <djm@gnu.org>
6308
6309 * src/getargs.c: entered into RCS
6310
6311 1993-06-26 David J. MacKenzie <djm@gnu.org>
6312
6313 * doc/bison.texinfo: *** empty log message ***
6314
6315 * doc/bison.1: New file.
6316
6317 1993-06-25 Richard Stallman <rms@gnu.org>
6318
6319 * src/getargs.c: New file.
6320
6321 1993-06-16 Richard Stallman <rms@gnu.org>
6322
6323 * src/bison.s1: *** empty log message ***
6324
6325 1993-06-16 Richard Stallman <rms@gnu.org>
6326
6327 * bison.simple: *** empty log message ***
6328
6329 1993-06-03 Richard Stallman <rms@gnu.org>
6330
6331 * src/bison.s1: New file.
6332
6333 1993-06-03 Richard Stallman <rms@gnu.org>
6334
6335 * doc/bison.texinfo: *** empty log message ***
6336
6337 1993-06-03 Richard Stallman <rms@gnu.org>
6338
6339 * bison.simple: New file.
6340
6341 1993-05-19 Richard Stallman <rms@gnu.org>
6342
6343 * doc/bison.texinfo: New file.
6344
6345 1993-05-07 Noah Friedman <friedman@gnu.org>
6346
6347 * Makefile.in: *** empty log message ***
6348
6349 1993-04-28 Noah Friedman <friedman@gnu.org>
6350
6351 * src/reader.c: *** empty log message ***
6352
6353 1993-04-23 Noah Friedman <friedman@gnu.org>
6354
6355 * src/alloc.h: entered into RCS
6356
6357 1993-04-20 David J. MacKenzie <djm@gnu.org>
6358
6359 * src/version.c: *** empty log message ***
6360
6361 * src/files.c, src/allocate.c:
6362 entered into RCS
6363
6364 * src/reader.c: *** empty log message ***
6365
6366 * src/lex.c: entered into RCS
6367
6368 * src/conflicts.c: New file.
6369
6370 * src/symtab.c: entered into RCS
6371
6372 * src/alloc.h: New file.
6373
6374 * src/LR0.c: entered into RCS
6375
6376 1993-04-18 Noah Friedman <friedman@gnu.org>
6377
6378 * src/reader.c: New file.
6379
6380 * src/version.c: *** empty log message ***
6381
6382 1993-04-18 Noah Friedman <friedman@gnu.org>
6383
6384 * Makefile.in: *** empty log message ***
6385
6386 1993-04-17 Noah Friedman <friedman@gnu.org>
6387
6388 * Makefile.in: *** empty log message ***
6389
6390 1993-04-15 Richard Stallman <rms@gnu.org>
6391
6392 * src/main.c, src/files.c:
6393 New file.
6394
6395 1993-04-15 Noah Friedman <friedman@gnu.org>
6396
6397 * configure.in: entered into RCS
6398
6399 * configure.in: *** empty log message ***
6400
6401 * configure.in: New file.
6402
6403 1993-04-14 Richard Stallman <rms@gnu.org>
6404
6405 * Makefile.in: New file.
6406
6407 1993-04-13 Richard Stallman <rms@gnu.org>
6408
6409 * src/version.c: New file.
6410
6411 1993-03-25 Richard Stallman <rms@gnu.org>
6412
6413 * src/output.c: entered into RCS
6414
6415 1992-09-25 Richard Stallman <rms@gnu.org>
6416
6417 * configure.bat: entered into RCS
6418
6419 1992-06-22 Richard Stallman <rms@gnu.org>
6420
6421 * src/vmsgetargs.c: entered into RCS
6422
6423 1992-06-22 Richard Stallman <rms@gnu.org>
6424
6425 * doc/bison.rnh: entered into RCS
6426
6427 1992-04-20 David J. MacKenzie <djm@gnu.org>
6428
6429 * README: entered into RCS
6430
6431 1992-01-22 Richard Stallman <rms@gnu.org>
6432
6433 * src/machine.h: entered into RCS
6434
6435 1991-12-21 Richard Stallman <rms@gnu.org>
6436
6437 * src/lalr.c, src/closure.c:
6438 entered into RCS
6439
6440 1991-12-20 Richard Stallman <rms@gnu.org>
6441
6442 * src/state.h: entered into RCS
6443
6444 1991-12-18 Richard Stallman <rms@gnu.org>
6445
6446 * src/print.c, src/nullable.c, src/derives.c:
6447 entered into RCS
6448
6449 1991-11-03 David J. MacKenzie <djm@gnu.org>
6450
6451 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
6452 entered into RCS
6453
6454 1988-09-09 Richard Stallman <rms@gnu.org>
6455
6456 * src/bison.hairy: entered into RCS
6457
6458 1987-12-16 Richard Stallman <rms@gnu.org>
6459
6460 * REFERENCES: entered into RCS
6461 -----
6462
6463 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
6464
6465 This file is part of GNU Autoconf.
6466
6467 GNU Autoconf is free software; you can redistribute it and/or modify
6468 it under the terms of the GNU General Public License as published by
6469 the Free Software Foundation; either version 2, or (at your option)
6470 any later version.
6471
6472 GNU Autoconf is distributed in the hope that it will be useful,
6473 but WITHOUT ANY WARRANTY; without even the implied warranty of
6474 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
6475 GNU General Public License for more details.
6476
6477 You should have received a copy of the GNU General Public License
6478 along with autoconf; see the file COPYING. If not, write to
6479 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
6480 Boston, MA 02111-1307, USA.